ngx-wapp-components 1.24.17-alpha.1 → 1.25.0

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.
@@ -45,7 +45,11 @@ export class WImageFileUploaderComponent {
45
45
  viewPortHeihtPx: 500
46
46
  },
47
47
  confirmDeleteMessageLabel: "",
48
- confirmDeleteButtonLabel: ""
48
+ confirmDeleteButtonLabel: "",
49
+ invalidFileSizeMessageSummary: "",
50
+ invalidFileSizeMessageDetail: "",
51
+ invalidFileTypeMessageSummary: "",
52
+ invalidFileTypeMessageDetail: ""
49
53
  };
50
54
  this.activeFieldVersion = false;
51
55
  this.required = false;
@@ -389,10 +393,10 @@ export class WImageFileUploaderComponent {
389
393
  }
390
394
  }
391
395
  WImageFileUploaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: WImageFileUploaderComponent, deps: [{ token: i1.DialogService }, { token: i2.HttpClient }, { token: i3.ConfirmationService }], target: i0.ɵɵFactoryTarget.Component });
392
- WImageFileUploaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: WImageFileUploaderComponent, selector: "w-image-file-uploader", inputs: { allowMultipleImages: "allowMultipleImages", activeImageUpload: "activeImageUpload", imagesAlreadyUploaded: "imagesAlreadyUploaded", imageSingleMode: "imageSingleMode", uploadUrl: "uploadUrl", updateUrl: "updateUrl", deleteUrl: "deleteUrl", headers: "headers", activePositionProperty: "activePositionProperty", viewSingleMode: "viewSingleMode", viewMultiMode: "viewMultiMode", identificatorName: ["identificatorImageName", "identificatorName"], identificatorValue: ["identificatorImagesCollectionValue", "identificatorValue"], imageUploadConfig: "imageUploadConfig", activeFieldVersion: "activeFieldVersion", label: "label", tooltip: "tooltip", required: "required" }, outputs: { onUploadFinished: "onUploadFinished", onErrorHandler: "onErrorHandler", onReturnImagesB64: "onReturnImagesB64", onDeleteImage: "onDeleteImage" }, providers: [ConfirmationService], viewQueries: [{ propertyName: "fileUpload", first: true, predicate: ["fileUpload"], descendants: true }, { propertyName: "fileuploadOnlyImage", first: true, predicate: ["fileUploadOnlyImage"], descendants: true }, { propertyName: "buttonRemoveOnlyImage", predicate: ["buttonRemoveOnlyImage"], descendants: true }], ngImport: i0, template: "\r\n<w-input-label *ngIf=\"activeFieldVersion == true\" [label]=\"label\" [tooltip]=\"tooltip\" [required]=\"required\"></w-input-label>\r\n<div *ngIf=\"activeFieldVersion == true && (label != undefined && label.length > 0)\" class=\"input-label-gap-divider\"></div>\r\n<p-fileUpload *ngIf=\"allowMultipleImages == false; else withCarousel\" #fileUploadOnlyImage class=\"w-image-file-button\" \r\n [ngClass]=\"{'w-image-file-uploader' : activeFieldVersion == false, \r\n 'w-image-file-uploader-field' : activeFieldVersion == true, \r\n 'w-image-file-uploader-field-no-image' : activeFieldVersion == true && (onlyCroppedImageSelected == null || undefined ) && (imageSingleMode == null || undefined)}\"\r\n mode=\"advanced\" \r\n [accept]=\"imageUploadConfig.acceptImageTypes\" \r\n [multiple]=\"false\" \r\n (onSelect)=\"onCustomUploadSingleMode($event)\" \r\n [uploadLabel]=\"onlyCroppedImageSelected ? (onlyCroppedImageSelected.name.length>6)? (onlyCroppedImageSelected.name | slice:0:6)+'...':(onlyCroppedImageSelected.name) : ''\" \r\n [customUpload]=\"true\" \r\n (uploadHandler)=\"onCustomizeUploadFunctionSingleMode($event)\" \r\n [maxFileSize]=\"imageUploadConfig.maxImageSize\">\r\n <ng-template let-file let-i=\"index\" pTemplate='file'>\r\n <div *ngIf=\"activeImageUpload\"></div>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <p-progressBar *ngIf=\"false\"></p-progressBar>\r\n <div *ngIf=\"(onlyCroppedImageSelected != null || undefined) || (imageSingleMode != null || undefined)\" style=\"flex-grow: 1;\">\r\n <p-galleria \r\n [ngClass]=\"getGalleryClass()\" \r\n [value]=\"(onlyCroppedImageSelected !== null) ? [onlyCroppedImageSelected.fileBase64] : (imageUploadConfig.singleModeImageDefault ? [imageUploadConfig.singleModeImageDefault] : (imageSingleMode ? [imageSingleMode] : ['https://wappingstoragedev.blob.core.windows.net/wapping/appresources/ic_image_blue.png']))\" \r\n [responsiveOptions]=\"carouselImagesResponsiveOptions\" \r\n [containerStyle]=\"{ 'max-width': '100%', 'max-height':'100%'}\" \r\n [numVisible]=\"2\" \r\n [showItemNavigators]=\"false\"\r\n [showThumbnails]=\"false\" [showIndicators]=\"false\">\r\n <ng-template pTemplate=\"item\" let-image>\r\n <div *ngIf=\"(viewSingleMode == false && (imageSingleMode != null || undefined)) || \r\n (viewSingleMode == false && onlyCroppedImageSelected != null)\" class=\"w-image-file-uploader-delete-button flex align-content-center justify-content-center\" style=\"width: 100%;\">\r\n <w-button buttonClass=\"w-image-file-uploader-delete-button-icon\" icon=\"pi pi-trash\" type=\"text\" (click)=\"removeImageSingleMode($event, onlyImageSelected)\"></w-button>\r\n </div>\r\n <div class=\"flex flex-wrap align-content-center justify-content-center\" [ngClass]=\"{'w-image-file-uploader-field-img-container': activeFieldVersion}\" style=\"object-fit: contain; /* width: 300px; height: 300px; */\">\r\n <img [src]=\"image\" style=\"max-width:100%;\r\n max-height:100%;\r\n height: auto;\r\n width:auto;\" />\r\n </div>\r\n </ng-template>\r\n </p-galleria>\r\n </div>\r\n <div *ngIf=\"viewSingleMode == false; else viewSingleModeMessage\" (click)=\"openSingleImageFileSelector()\" \r\n class=\"w-image-file-uploader-space-container flex flex-column justify-content-center align-items-center\" style=\"cursor: pointer;\"\r\n [ngClass]=\"{'w-image-file-uploader-container-height' : (onlyCroppedImageSelected == null || undefined ) && (imageSingleMode == null || undefined) && activeFieldVersion == false, 'w-image-file-uploader-field-container-height' : activeFieldVersion == true && (onlyCroppedImageSelected == null || undefined ) && (imageSingleMode == null || undefined)}\">\r\n <span class=\"pi pi-upload subtitle1 textMainColor\"></span>\r\n <span class=\"subtitle1 textMainColor m-2\">\r\n {{imageUploadConfig.contentHeaderLabel}}\r\n </span>\r\n <span class=\"textSoftColor text-center\">\r\n {{imageUploadConfig.contentSubheaderLabel}}\r\n </span>\r\n </div>\r\n <ng-template #viewSingleModeMessage>\r\n <div *ngIf=\"imageSingleMode == null || undefined\" class=\"textSoftColor flex justify-content-center align-items-center w-image-file-uploader-container-height\">\r\n {{imageUploadConfig.viewModecontentLabel}}\r\n </div>\r\n </ng-template>\r\n </ng-template>\r\n</p-fileUpload>\r\n<ng-template #withCarousel>\r\n <p-fileUpload *ngIf=\"imageUploadConfig\" #fileUpload class=\"w-image-file-button\" \r\n [ngClass]=\"{'w-image-file-uploader' : activeFieldVersion == false, \r\n 'w-image-file-uploader-field' : activeFieldVersion == true, \r\n 'w-image-file-uploader-field-no-image' : activeFieldVersion == true && (imagesAlreadyUploaded.length == 0 || undefined ) || (imagesAlreadyUploaded == null || undefined)}\"\r\n name=\"mediaImages[]\" \r\n [accept]=\"imageUploadConfig.acceptImageTypes\" \r\n mode=\"advanced\" \r\n [customUpload]=\"true\" \r\n (onSelect)=\"onCustomUploadMultiMode($event)\" \r\n (uploadHandler)=\"onCustomizeUploadFunctionMultiMode($event)\" \r\n [uploadLabel]=\"imageUploadConfig.uploadButtonLabel ?? ''\" \r\n [chooseLabel]=\"imageUploadConfig.chooseButtonLabel ?? ''\" \r\n [cancelLabel]=\"imageUploadConfig.cancelButtonLabel ?? ''\" \r\n [showUploadButton]=\"activeImageUpload\"\r\n [showCancelButton]=\"activeImageUpload\"\r\n [auto]=\"imageUploadConfig.allowAuto\" \r\n [multiple]=\"true\" \r\n [maxFileSize]=\"imageUploadConfig.maxImageSize\" \r\n [chooseStyleClass]=\"'p-button-icon p-button-icon-right'\">\r\n <ng-template let-file let-i=\"index\" pTemplate='file'>\r\n <div *ngIf=\"activeImageUpload && cropperImages.length > 0\" class=\"p-fileupload-row\">\r\n <div><img [src]=\"cropperImages[i]?.fileBase64\" width=\"50\"/></div>\r\n <div class=\"p-fileupload-filename\">{{file.name}}</div>\r\n <div> <w-button icon=\"pi pi-times\" (onClick)=\"onDeleteFileMultiMode($event, file, fileUpload)\"></w-button> </div>\r\n </div>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <p-progressBar *ngIf=\"isUploadingMultiMode\" class=\"p-element ng-star-inserted\" [mode]=\"'indeterminate'\">\r\n <div role=\"progressbar\" aria-valuemin=\"0\" aria-valuenow=\"0\" aria-valuemax=\"100\" data-pc-name=\"progressbar\" data-pc-section=\"root\" class=\"p-progressbar p-component p-progressbar-determinate\">\r\n <div class=\"p-progressbar-value p-progressbar-value-animate ng-star-inserted\" style=\"display: flex; width: 0%;\" data-pc-section=\"value\"></div>\r\n </div>\r\n </p-progressBar>\r\n <div *ngIf=\"imagesAlreadyUploaded.length > 0\" style=\"flex-grow: 1;\">\r\n <p-galleria \r\n [ngClass]=\"getGalleryClass()\" \r\n [value]=\"imagesAlreadyUploaded\" \r\n [activeIndex]=\"activeIndexGallery\" \r\n [responsiveOptions]=\"carouselImagesResponsiveOptions\" \r\n [containerStyle]=\"{ 'max-width': '100%', 'max-height':'100%'}\" \r\n [numVisible]=\"3\" \r\n [showItemNavigators]=\"true\"\r\n [showThumbnails]=\"false\">\r\n <ng-template pTemplate=\"item\" let-image>\r\n <div *ngIf=\"viewMultiMode == false\" class=\"w-image-file-uploader-delete-button flex align-content-center justify-content-center\" style=\"width: 100%;\">\r\n <w-button buttonClass=\"w-image-file-uploader-delete-button-icon\" icon=\"pi pi-trash\" type=\"text\" (onClick)=\"confirmDeleteImageMultiMode($event, image)\" [loading]=\"isDeletingMultiMode\"></w-button>\r\n </div>\r\n <div class=\"flex flex-wrap align-content-center justify-content-center\" [ngClass]=\"{'w-image-file-uploader-field-img-container': activeFieldVersion}\" style=\"object-fit: contain;\">\r\n <img [src]=\"readProperty(image, imageUploadConfig.imagePropertyNames[0]) ?? image.fileBase64\" style=\"max-width:100%;\r\n max-height:100%;\r\n height: auto;\r\n width:auto;\" />\r\n </div>\r\n <div class=\"w-image-file-uploader-move-buttons flex align-content-center justify-content-center\" style=\"width: 100%;\">\r\n <div *ngIf=\"viewMultiMode == false && activePositionProperty == true\" class=\"w-image-file-uploader-multi-action-button\" [ngClass]=\"{'w-image-file-uploader-hide-move-button' : findIndex(image) == 0 || disableMoveButtons}\" (click)=\"moveImageToLeft(image)\">\r\n <w-icons name=\"doubleArrowLeft\" class=\"w-image-file-uploader-arrow\" [height]=\"10\" [width]=\"10\" [color]=\"'white'\"></w-icons>\r\n </div>\r\n\r\n <div *ngIf=\"isDeletingMultiMode == false; else indexLoading\" class=\"w-image-file-uploader-multi-images-index flex align-items-center justify-content-center\">\r\n {{ findIndex(image) + 1 }} / {{ imagesAlreadyUploaded.length }}\r\n </div>\r\n <ng-template #indexLoading>\r\n <div class=\"w-image-file-uploader-multi-images-index flex align-items-center justify-content-center\"> - / - </div>\r\n </ng-template>\r\n \r\n <div *ngIf=\"viewMultiMode == false && activePositionProperty == true\" class=\"w-image-file-uploader-multi-action-button\" [ngClass]=\"{'w-image-file-uploader-hide-move-button' : (findIndex(image) == imagesAlreadyUploaded.length-1) || disableMoveButtons}\" (click)=\"moveImageToRight(image)\">\r\n <w-icons name=\"doubleArrowRight\" class=\"w-image-file-uploader-arrow\" [height]=\"10\" [width]=\"10\" [color]=\"'white'\"></w-icons>\r\n </div>\r\n </div>\r\n </ng-template>\r\n </p-galleria>\r\n </div>\r\n <div *ngIf=\"viewMultiMode == false; else viewMultiModeMessage\" (click)=\"openImageFileSelector()\" \r\n class=\"w-image-file-uploader-space-container flex flex-column justify-content-center align-items-center\" \r\n style=\"cursor: pointer;\" \r\n [ngClass]=\"{'w-image-file-uploader-container-height' : (imagesAlreadyUploaded.length == 0 || undefined ) || (imagesAlreadyUploaded == null || undefined) && activeFieldVersion == false, 'w-image-file-uploader-field-container-height' : activeFieldVersion == true && (imagesAlreadyUploaded.length == 0 || undefined ) || (imagesAlreadyUploaded == null || undefined)}\">\r\n <span class=\"pi pi-upload subtitle1 textMainColor\"></span>\r\n <span class=\"subtitle1 textMainColor m-2\">\r\n {{imageUploadConfig.contentHeaderLabel}}\r\n </span>\r\n <span class=\"textSoftColor text-center\">\r\n {{imageUploadConfig.contentSubheaderLabel}}\r\n </span>\r\n </div>\r\n <ng-template #viewMultiModeMessage>\r\n <div *ngIf=\"imagesAlreadyUploaded.length==0\" class=\"textSoftColor flex justify-content-center align-items-center w-image-file-uploader-container-height\">\r\n {{imageUploadConfig.viewModecontentLabel}}\r\n </div>\r\n </ng-template>\r\n </ng-template>\r\n </p-fileUpload>\r\n</ng-template>\r\n\r\n<p-confirmPopup></p-confirmPopup>\r\n", styles: [".heading1{font-size:2.6666666667rem;line-height:3rem;font-weight:700}.heading2{font-size:2.3333333333rem;line-height:2.6666666667rem;font-weight:700}.heading3{font-size:2rem;line-height:2.3333333333rem;font-weight:700}.heading4{font-size:1.6666666667rem;line-height:2rem;font-weight:700}.heading5,.w-sidebar-title-text{font-size:1.5rem;line-height:1.8333333333rem;font-weight:700}.heading6{font-size:1.3333333333rem;line-height:1.6666666667rem;font-weight:700}.subtitle1,.w-tab-text,.w-panel-title-text{font-size:1.1666666667rem;line-height:1.3333333333rem;font-weight:700}.subtitle2,.w-table-th-text,.w-panel-subtitle-text,.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled,.w-view-small-label-text-typography,.w-view-small-label-text,.w-button-small-text-label-text-typography,.w-button-small-text-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:600}.body,.w-image-file-uploader-navigators-text,.w-image-file-uploader-multi-images-index,.w-table-td-text,.w-chip-text,.w-panel-content,.w-input-small-select-options-text,.w-input-small-placeholder-text-typography,.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text,.w-view-small-value-text-typography,.w-view-small-value-text,.w-button-small-label-text-typography,.w-button-small-tertiary-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:400}.caption,.w-input-error-alert-text,.w-input-warning-alert-text,.w-input-success-alert-text{font-size:.6666666667rem;line-height:1rem;font-weight:400}.light,.w-input-small-placeholder-text-only-color{font-size:.9166666667rem;line-height:1.0833333333rem;font-weight:300}.small,.w-button-small-label-text-typography-sm{font-size:.8333333333rem;line-height:1rem;font-weight:400}.textMainColor{color:#1f2224}.textSoftColor{color:#5f6468}.textSofterColor{color:#9aa0a7}.textSoftestColor{color:#e8ebee}.textInverseColor{color:#fff}.spacingXXS{padding:4px}.spacingXSM{padding:6px}.spacingXSMDivider{height:6px}.spacingXS{padding:8px}.spacingS{padding:12px}.spacingM{padding:16px}.spacingL{padding:20px}.spacingXL{padding:24px}.spacingXXL{padding:28px}.spacingXXXL{padding:32px}.panel-title-gap-divider{height:20px}.panel-section-gap-divider{height:32px}.input-vertical-gap-divider{height:24px}.input-label-gap-divider{height:6px}.focusedInput{border:1px solid rgba(0,157,253,.25);box-shadow:0 0 10px #00b3eb40}.focus{box-shadow:0 0 8px #00a6e980}.hover{border-radius:8px;border:1px solid #00b3eb}.hoveredInput{border-radius:8px;border:1px solid rgba(0,179,235,.5)}.input-generic-valid{border-radius:8px;border:1px solid #B3FFD3}.input-generic-valid-focus{border-radius:8px;border:1px solid #B3FFD3!important;box-shadow:0 0 8px #46ff9b80!important;padding-left:16px}.input-generic-warning{border-radius:8px;border:1px solid #FFECB8!important}.input-generic-warning-focus{border-radius:8px;border:1px solid #FFECB8!important;box-shadow:0 0 8px #ffcd4680!important;padding-left:16px}.input-generic-error-focus{border-radius:8px;border:1px solid #FFBDBD!important;box-shadow:0 0 8px #ff555580!important;padding-left:16px}.input-generic-error{border-radius:8px;border:1px solid #FFBDBD}.toggle-small-typography{font-size:12px;line-height:16px;font-weight:600}.w-button-small-label-text-typography,.w-button-small-tertiary-label-text,.w-button-small-label-text-typography-sm{font-weight:600}.w-button-small-tertiary-label-text{color:#5f6468}.w-button-small-text-label-text{color:#1f2224}.w-button-small-icon-text{font-size:12px;font-weight:600}.w-table-button-small-icon-text{font-size:12px;color:#9aa0a7}.w-control-button-small-label-text{font-size:12px;font-weight:600;line-height:16px}.w-control-button-x-small-icon-text{font-size:10px;font-weight:700}.w-control-button-small-icon-text{font-size:8px;font-weight:700}.w-button-medium-label-text-typography,.w-button-medium-tertiary-label-text{font-size:16px;font-weight:600;line-height:16px}.w-button-medium-tertiary-label-text{color:#1f2224}.w-button-medium-icon-text{font-size:16px}.w-control-button-medium-label-text{font-size:14px;font-weight:600;line-height:16px}.w-control-button-medium-icon-text{font-size:12px;font-weight:700}.w-button-large-label-text-typography,.w-button-large-tertiary-label-text{font-size:20px;font-weight:600;line-height:24px}.w-button-large-tertiary-label-text{color:#1f2224}.w-button-x-small-label-text{font-size:10px;font-weight:600;line-height:10px}.w-button-small-only-label-text{font-size:12px;font-weight:600;line-height:16px}.w-button-large-icon-text{font-size:24px}.w-view-small-label-text{color:#1f2224}.w-view-small-value-text{color:#5f6468}.w-input-no-label-height{height:14px}.w-input-disabled{background-color:#f1f3f4;border-color:#e8ebee;opacity:1}.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled{height:-moz-fit-content;height:fit-content}.w-input-small-label-text,.w-input-small-label-disabled{color:#1f2224}.w-input-small-label-disabled{color:#9aa0a7}.w-input-small-label-text-content{padding:12px 8px 8px 0;margin:0}.w-input-small-label-text-content-no-top{padding-top:0}.w-input-small-placeholder-text{color:#1f2224}.w-input-small-placeholder-text-only-color{color:#9aa0a7;line-height:1.3333333333rem}.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text-disabled-only-color{color:#5f6468}.w-input-small-text-icon,.w-input-small-select-options-text{color:#1f2224}.w-input-medium-label-text-typography,.w-input-medium-label-text,.w-input-medium-label-disabled{font-size:14px;font-weight:600;line-height:16px}.w-input-medium-label-text,.w-input-medium-label-disabled{color:#1f2224}.w-input-medium-label-disabled{color:#9aa0a7}.w-input-medium-placeholder-text-typography,.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text{font-size:16px;font-weight:400;line-height:24px}.w-input-medium-placeholder-text,.w-input-medium-placeholder-text-only-color{color:#1f2224}.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text-disabled-only-color{color:#5f6468}.w-input-medium-text-icon{color:#1f2224}.w-input-medium-select-options-text{font-size:16px;font-weight:400;line-height:24px;color:#1f2224}.w-input-success-alert-text{color:#00db5d;padding:8px 8px 0;margin-top:0}.w-input-warning-alert-text{color:#eeae00;padding:8px 8px 0;margin-top:0}.w-input-error-alert-text{color:#e50000;padding:8px 8px 0;margin-top:0}.w-input-alert-message-height{height:32px}.w-sidebar-title-text,.w-panel-title-text,.w-panel-subtitle-text{color:#1f2224}.w-panel-content{color:#5f6468}.w-tab-text,.w-chip-text{color:#1f2224}.w-badge-text{font-size:10px;font-weight:700;line-height:8px}.w-table-th-text{color:#1f2224}.w-table-td-text{color:#5f6468}.w-table-height{padding:6px 8px 5px}.w-table-no-buttons-height{padding:16px 8px 15px!important}.w-tree-table-height{padding:8px 8px 7px}.w-image-file-uploader-navigators-text,.w-image-file-uploader-multi-images-index{font-size:12px;color:#fff}.grid{margin:0}::ng-deep .p-tooltip,.p-tooltip{filter:0px 0px 1px 0px rgba(0,0,0,.1) inset,1px 1px 5px rgba(0,0,0,.06),1px 1px 1px rgba(0,0,0,.08)}::ng-deep .p-tooltip .p-tooltip-text,.p-tooltip .p-tooltip-text{background:#ffffff!important;color:#1f2224;padding:12px 16px;max-width:192px;width:max-content;margin-left:3px}::ng-deep .p-tooltip.p-tooltip-right,.p-tooltip.p-tooltip-right{margin-left:6px;width:max-content;transform:translateY(-1px)}::ng-deep .p-tooltip.p-tooltip-right .p-tooltip-arrow,.p-tooltip.p-tooltip-right .p-tooltip-arrow{border-right-color:#fff!important;top:50%;left:0;margin-top:-4px;border-width:4px 6px 4px 0!important}::ng-deep .p-tooltip.p-tooltip-bottom .p-tooltip-arrow,.p-tooltip.p-tooltip-bottom .p-tooltip-arrow{border-bottom-color:#fff!important;border-width:0 4px 6px 4px!important;margin-top:-3px}.grid{display:flex;flex-wrap:wrap;margin-right:-.5rem;margin-left:-.5rem;margin-top:-.5rem}.grid>.col,.grid>[class*=col]{box-sizing:border-box}.grid-nogutter{margin-right:0;margin-left:0;margin-top:0}.grid-nogutter>.col,.grid-nogutter>[class*=col-]{padding:0}.col{flex-grow:1;flex-basis:0;padding:.5rem}.col-fixed{flex:0 0 auto;padding:.5rem}.col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.col-3{flex:0 0 auto;padding:.5rem;width:25%}.col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.col-6{flex:0 0 auto;padding:.5rem;width:50%}.col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.col-9{flex:0 0 auto;padding:.5rem;width:75%}.col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.col-12{flex:0 0 auto;padding:.5rem;width:100%}@media screen and (min-width: 576px){.sm\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.sm\\:col-fixed{flex:0 0 auto;padding:.5rem}.sm\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.sm\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.sm\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.sm\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.sm\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.sm\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.sm\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.sm\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.sm\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.sm\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.sm\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.sm\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 768px){.md\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.md\\:col-fixed{flex:0 0 auto;padding:.5rem}.md\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.md\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.md\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.md\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.md\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.md\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.md\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.md\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.md\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.md\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.md\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.md\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 992px){.lg\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.lg\\:col-fixed{flex:0 0 auto;padding:.5rem}.lg\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.lg\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.lg\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.lg\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.lg\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.lg\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.lg\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.lg\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.lg\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.lg\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.lg\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.lg\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 1200px){.xl\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.xl\\:col-fixed{flex:0 0 auto;padding:.5rem}.xl\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.xl\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.xl\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.xl\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.xl\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.xl\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.xl\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.xl\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.xl\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.xl\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.xl\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.xl\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}.col-offset-0{margin-left:0!important}.col-offset-1{margin-left:8.3333%!important}.col-offset-2{margin-left:16.6667%!important}.col-offset-3{margin-left:25%!important}.col-offset-4{margin-left:33.3333%!important}.col-offset-5{margin-left:41.6667%!important}.col-offset-6{margin-left:50%!important}.col-offset-7{margin-left:58.3333%!important}.col-offset-8{margin-left:66.6667%!important}.col-offset-9{margin-left:75%!important}.col-offset-10{margin-left:83.3333%!important}.col-offset-11{margin-left:91.6667%!important}.col-offset-12{margin-left:100%!important}@media screen and (min-width: 576px){.sm\\:col-offset-0{margin-left:0!important}.sm\\:col-offset-1{margin-left:8.3333%!important}.sm\\:col-offset-2{margin-left:16.6667%!important}.sm\\:col-offset-3{margin-left:25%!important}.sm\\:col-offset-4{margin-left:33.3333%!important}.sm\\:col-offset-5{margin-left:41.6667%!important}.sm\\:col-offset-6{margin-left:50%!important}.sm\\:col-offset-7{margin-left:58.3333%!important}.sm\\:col-offset-8{margin-left:66.6667%!important}.sm\\:col-offset-9{margin-left:75%!important}.sm\\:col-offset-10{margin-left:83.3333%!important}.sm\\:col-offset-11{margin-left:91.6667%!important}.sm\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 768px){.md\\:col-offset-0{margin-left:0!important}.md\\:col-offset-1{margin-left:8.3333%!important}.md\\:col-offset-2{margin-left:16.6667%!important}.md\\:col-offset-3{margin-left:25%!important}.md\\:col-offset-4{margin-left:33.3333%!important}.md\\:col-offset-5{margin-left:41.6667%!important}.md\\:col-offset-6{margin-left:50%!important}.md\\:col-offset-7{margin-left:58.3333%!important}.md\\:col-offset-8{margin-left:66.6667%!important}.md\\:col-offset-9{margin-left:75%!important}.md\\:col-offset-10{margin-left:83.3333%!important}.md\\:col-offset-11{margin-left:91.6667%!important}.md\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 992px){.lg\\:col-offset-0{margin-left:0!important}.lg\\:col-offset-1{margin-left:8.3333%!important}.lg\\:col-offset-2{margin-left:16.6667%!important}.lg\\:col-offset-3{margin-left:25%!important}.lg\\:col-offset-4{margin-left:33.3333%!important}.lg\\:col-offset-5{margin-left:41.6667%!important}.lg\\:col-offset-6{margin-left:50%!important}.lg\\:col-offset-7{margin-left:58.3333%!important}.lg\\:col-offset-8{margin-left:66.6667%!important}.lg\\:col-offset-9{margin-left:75%!important}.lg\\:col-offset-10{margin-left:83.3333%!important}.lg\\:col-offset-11{margin-left:91.6667%!important}.lg\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 1200px){.xl\\:col-offset-0{margin-left:0!important}.xl\\:col-offset-1{margin-left:8.3333%!important}.xl\\:col-offset-2{margin-left:16.6667%!important}.xl\\:col-offset-3{margin-left:25%!important}.xl\\:col-offset-4{margin-left:33.3333%!important}.xl\\:col-offset-5{margin-left:41.6667%!important}.xl\\:col-offset-6{margin-left:50%!important}.xl\\:col-offset-7{margin-left:58.3333%!important}.xl\\:col-offset-8{margin-left:66.6667%!important}.xl\\:col-offset-9{margin-left:75%!important}.xl\\:col-offset-10{margin-left:83.3333%!important}.xl\\:col-offset-11{margin-left:91.6667%!important}.xl\\:col-offset-12{margin-left:100%!important}}.text-0{color:var(--surface-0)!important}.text-50{color:var(--surface-50)!important}.text-100{color:var(--surface-100)!important}.text-200{color:var(--surface-200)!important}.text-300{color:var(--surface-300)!important}.text-400{color:var(--surface-400)!important}.text-500{color:var(--surface-500)!important}.text-600{color:var(--surface-600)!important}.text-700{color:var(--surface-700)!important}.text-800{color:var(--surface-800)!important}.text-900{color:var(--surface-900)!important}.focus\\:text-0:focus{color:var(--surface-0)!important}.hover\\:text-0:hover,.active\\:text-0:active{color:var(--surface-0)!important}.focus\\:text-50:focus{color:var(--surface-50)!important}.hover\\:text-50:hover,.active\\:text-50:active{color:var(--surface-50)!important}.focus\\:text-100:focus{color:var(--surface-100)!important}.hover\\:text-100:hover,.active\\:text-100:active{color:var(--surface-100)!important}.focus\\:text-200:focus{color:var(--surface-200)!important}.hover\\:text-200:hover,.active\\:text-200:active{color:var(--surface-200)!important}.focus\\:text-300:focus{color:var(--surface-300)!important}.hover\\:text-300:hover,.active\\:text-300:active{color:var(--surface-300)!important}.focus\\:text-400:focus{color:var(--surface-400)!important}.hover\\:text-400:hover,.active\\:text-400:active{color:var(--surface-400)!important}.focus\\:text-500:focus{color:var(--surface-500)!important}.hover\\:text-500:hover,.active\\:text-500:active{color:var(--surface-500)!important}.focus\\:text-600:focus{color:var(--surface-600)!important}.hover\\:text-600:hover,.active\\:text-600:active{color:var(--surface-600)!important}.focus\\:text-700:focus{color:var(--surface-700)!important}.hover\\:text-700:hover,.active\\:text-700:active{color:var(--surface-700)!important}.focus\\:text-800:focus{color:var(--surface-800)!important}.hover\\:text-800:hover,.active\\:text-800:active{color:var(--surface-800)!important}.focus\\:text-900:focus{color:var(--surface-900)!important}.hover\\:text-900:hover,.active\\:text-900:active{color:var(--surface-900)!important}.surface-0{background-color:var(--surface-0)!important}.surface-50{background-color:var(--surface-50)!important}.surface-100{background-color:var(--surface-100)!important}.surface-200{background-color:var(--surface-200)!important}.surface-300{background-color:var(--surface-300)!important}.surface-400{background-color:var(--surface-400)!important}.surface-500{background-color:var(--surface-500)!important}.surface-600{background-color:var(--surface-600)!important}.surface-700{background-color:var(--surface-700)!important}.surface-800{background-color:var(--surface-800)!important}.surface-900{background-color:var(--surface-900)!important}.focus\\:surface-0:focus{background-color:var(--surface-0)!important}.hover\\:surface-0:hover,.active\\:surface-0:active{background-color:var(--surface-0)!important}.focus\\:surface-50:focus{background-color:var(--surface-50)!important}.hover\\:surface-50:hover,.active\\:surface-50:active{background-color:var(--surface-50)!important}.focus\\:surface-100:focus{background-color:var(--surface-100)!important}.hover\\:surface-100:hover,.active\\:surface-100:active{background-color:var(--surface-100)!important}.focus\\:surface-200:focus{background-color:var(--surface-200)!important}.hover\\:surface-200:hover,.active\\:surface-200:active{background-color:var(--surface-200)!important}.focus\\:surface-300:focus{background-color:var(--surface-300)!important}.hover\\:surface-300:hover,.active\\:surface-300:active{background-color:var(--surface-300)!important}.focus\\:surface-400:focus{background-color:var(--surface-400)!important}.hover\\:surface-400:hover,.active\\:surface-400:active{background-color:var(--surface-400)!important}.focus\\:surface-500:focus{background-color:var(--surface-500)!important}.hover\\:surface-500:hover,.active\\:surface-500:active{background-color:var(--surface-500)!important}.focus\\:surface-600:focus{background-color:var(--surface-600)!important}.hover\\:surface-600:hover,.active\\:surface-600:active{background-color:var(--surface-600)!important}.focus\\:surface-700:focus{background-color:var(--surface-700)!important}.hover\\:surface-700:hover,.active\\:surface-700:active{background-color:var(--surface-700)!important}.focus\\:surface-800:focus{background-color:var(--surface-800)!important}.hover\\:surface-800:hover,.active\\:surface-800:active{background-color:var(--surface-800)!important}.focus\\:surface-900:focus{background-color:var(--surface-900)!important}.hover\\:surface-900:hover,.active\\:surface-900:active{background-color:var(--surface-900)!important}.border-0{border-color:var(--surface-0)!important}.border-50{border-color:var(--surface-50)!important}.border-100{border-color:var(--surface-100)!important}.border-200{border-color:var(--surface-200)!important}.border-300{border-color:var(--surface-300)!important}.border-400{border-color:var(--surface-400)!important}.border-500{border-color:var(--surface-500)!important}.border-600{border-color:var(--surface-600)!important}.border-700{border-color:var(--surface-700)!important}.border-800{border-color:var(--surface-800)!important}.border-900{border-color:var(--surface-900)!important}.focus\\:border-0:focus{border-color:var(--surface-0)!important}.hover\\:border-0:hover,.active\\:border-0:active{border-color:var(--surface-0)!important}.focus\\:border-50:focus{border-color:var(--surface-50)!important}.hover\\:border-50:hover,.active\\:border-50:active{border-color:var(--surface-50)!important}.focus\\:border-100:focus{border-color:var(--surface-100)!important}.hover\\:border-100:hover,.active\\:border-100:active{border-color:var(--surface-100)!important}.focus\\:border-200:focus{border-color:var(--surface-200)!important}.hover\\:border-200:hover,.active\\:border-200:active{border-color:var(--surface-200)!important}.focus\\:border-300:focus{border-color:var(--surface-300)!important}.hover\\:border-300:hover,.active\\:border-300:active{border-color:var(--surface-300)!important}.focus\\:border-400:focus{border-color:var(--surface-400)!important}.hover\\:border-400:hover,.active\\:border-400:active{border-color:var(--surface-400)!important}.focus\\:border-500:focus{border-color:var(--surface-500)!important}.hover\\:border-500:hover,.active\\:border-500:active{border-color:var(--surface-500)!important}.focus\\:border-600:focus{border-color:var(--surface-600)!important}.hover\\:border-600:hover,.active\\:border-600:active{border-color:var(--surface-600)!important}.focus\\:border-700:focus{border-color:var(--surface-700)!important}.hover\\:border-700:hover,.active\\:border-700:active{border-color:var(--surface-700)!important}.focus\\:border-800:focus{border-color:var(--surface-800)!important}.hover\\:border-800:hover,.active\\:border-800:active{border-color:var(--surface-800)!important}.focus\\:border-900:focus{border-color:var(--surface-900)!important}.hover\\:border-900:hover,.active\\:border-900:active{border-color:var(--surface-900)!important}.bg-transparent{background-color:transparent!important}@media screen and (min-width: 576px){.sm\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 768px){.md\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 992px){.lg\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 1200px){.xl\\:bg-transparent{background-color:transparent!important}}.border-transparent{border-color:transparent!important}@media screen and (min-width: 576px){.sm\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 768px){.md\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 992px){.lg\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 1200px){.xl\\:border-transparent{border-color:transparent!important}}.text-blue-50{color:var(--blue-50)!important}.text-blue-100{color:var(--blue-100)!important}.text-blue-200{color:var(--blue-200)!important}.text-blue-300{color:var(--blue-300)!important}.text-blue-400{color:var(--blue-400)!important}.text-blue-500{color:var(--blue-500)!important}.text-blue-600{color:var(--blue-600)!important}.text-blue-700{color:var(--blue-700)!important}.text-blue-800{color:var(--blue-800)!important}.text-blue-900{color:var(--blue-900)!important}.focus\\:text-blue-50:focus{color:var(--blue-50)!important}.focus\\:text-blue-100:focus{color:var(--blue-100)!important}.focus\\:text-blue-200:focus{color:var(--blue-200)!important}.focus\\:text-blue-300:focus{color:var(--blue-300)!important}.focus\\:text-blue-400:focus{color:var(--blue-400)!important}.focus\\:text-blue-500:focus{color:var(--blue-500)!important}.focus\\:text-blue-600:focus{color:var(--blue-600)!important}.focus\\:text-blue-700:focus{color:var(--blue-700)!important}.focus\\:text-blue-800:focus{color:var(--blue-800)!important}.focus\\:text-blue-900:focus{color:var(--blue-900)!important}.hover\\:text-blue-50:hover{color:var(--blue-50)!important}.hover\\:text-blue-100:hover{color:var(--blue-100)!important}.hover\\:text-blue-200:hover{color:var(--blue-200)!important}.hover\\:text-blue-300:hover{color:var(--blue-300)!important}.hover\\:text-blue-400:hover{color:var(--blue-400)!important}.hover\\:text-blue-500:hover{color:var(--blue-500)!important}.hover\\:text-blue-600:hover{color:var(--blue-600)!important}.hover\\:text-blue-700:hover{color:var(--blue-700)!important}.hover\\:text-blue-800:hover{color:var(--blue-800)!important}.hover\\:text-blue-900:hover{color:var(--blue-900)!important}.active\\:text-blue-50:active{color:var(--blue-50)!important}.active\\:text-blue-100:active{color:var(--blue-100)!important}.active\\:text-blue-200:active{color:var(--blue-200)!important}.active\\:text-blue-300:active{color:var(--blue-300)!important}.active\\:text-blue-400:active{color:var(--blue-400)!important}.active\\:text-blue-500:active{color:var(--blue-500)!important}.active\\:text-blue-600:active{color:var(--blue-600)!important}.active\\:text-blue-700:active{color:var(--blue-700)!important}.active\\:text-blue-800:active{color:var(--blue-800)!important}.active\\:text-blue-900:active{color:var(--blue-900)!important}.text-green-50{color:var(--green-50)!important}.text-green-100{color:var(--green-100)!important}.text-green-200{color:var(--green-200)!important}.text-green-300{color:var(--green-300)!important}.text-green-400{color:var(--green-400)!important}.text-green-500{color:var(--green-500)!important}.text-green-600{color:var(--green-600)!important}.text-green-700{color:var(--green-700)!important}.text-green-800{color:var(--green-800)!important}.text-green-900{color:var(--green-900)!important}.focus\\:text-green-50:focus{color:var(--green-50)!important}.focus\\:text-green-100:focus{color:var(--green-100)!important}.focus\\:text-green-200:focus{color:var(--green-200)!important}.focus\\:text-green-300:focus{color:var(--green-300)!important}.focus\\:text-green-400:focus{color:var(--green-400)!important}.focus\\:text-green-500:focus{color:var(--green-500)!important}.focus\\:text-green-600:focus{color:var(--green-600)!important}.focus\\:text-green-700:focus{color:var(--green-700)!important}.focus\\:text-green-800:focus{color:var(--green-800)!important}.focus\\:text-green-900:focus{color:var(--green-900)!important}.hover\\:text-green-50:hover{color:var(--green-50)!important}.hover\\:text-green-100:hover{color:var(--green-100)!important}.hover\\:text-green-200:hover{color:var(--green-200)!important}.hover\\:text-green-300:hover{color:var(--green-300)!important}.hover\\:text-green-400:hover{color:var(--green-400)!important}.hover\\:text-green-500:hover{color:var(--green-500)!important}.hover\\:text-green-600:hover{color:var(--green-600)!important}.hover\\:text-green-700:hover{color:var(--green-700)!important}.hover\\:text-green-800:hover{color:var(--green-800)!important}.hover\\:text-green-900:hover{color:var(--green-900)!important}.active\\:text-green-50:active{color:var(--green-50)!important}.active\\:text-green-100:active{color:var(--green-100)!important}.active\\:text-green-200:active{color:var(--green-200)!important}.active\\:text-green-300:active{color:var(--green-300)!important}.active\\:text-green-400:active{color:var(--green-400)!important}.active\\:text-green-500:active{color:var(--green-500)!important}.active\\:text-green-600:active{color:var(--green-600)!important}.active\\:text-green-700:active{color:var(--green-700)!important}.active\\:text-green-800:active{color:var(--green-800)!important}.active\\:text-green-900:active{color:var(--green-900)!important}.text-yellow-50{color:var(--yellow-50)!important}.text-yellow-100{color:var(--yellow-100)!important}.text-yellow-200{color:var(--yellow-200)!important}.text-yellow-300{color:var(--yellow-300)!important}.text-yellow-400{color:var(--yellow-400)!important}.text-yellow-500{color:var(--yellow-500)!important}.text-yellow-600{color:var(--yellow-600)!important}.text-yellow-700{color:var(--yellow-700)!important}.text-yellow-800{color:var(--yellow-800)!important}.text-yellow-900{color:var(--yellow-900)!important}.focus\\:text-yellow-50:focus{color:var(--yellow-50)!important}.focus\\:text-yellow-100:focus{color:var(--yellow-100)!important}.focus\\:text-yellow-200:focus{color:var(--yellow-200)!important}.focus\\:text-yellow-300:focus{color:var(--yellow-300)!important}.focus\\:text-yellow-400:focus{color:var(--yellow-400)!important}.focus\\:text-yellow-500:focus{color:var(--yellow-500)!important}.focus\\:text-yellow-600:focus{color:var(--yellow-600)!important}.focus\\:text-yellow-700:focus{color:var(--yellow-700)!important}.focus\\:text-yellow-800:focus{color:var(--yellow-800)!important}.focus\\:text-yellow-900:focus{color:var(--yellow-900)!important}.hover\\:text-yellow-50:hover{color:var(--yellow-50)!important}.hover\\:text-yellow-100:hover{color:var(--yellow-100)!important}.hover\\:text-yellow-200:hover{color:var(--yellow-200)!important}.hover\\:text-yellow-300:hover{color:var(--yellow-300)!important}.hover\\:text-yellow-400:hover{color:var(--yellow-400)!important}.hover\\:text-yellow-500:hover{color:var(--yellow-500)!important}.hover\\:text-yellow-600:hover{color:var(--yellow-600)!important}.hover\\:text-yellow-700:hover{color:var(--yellow-700)!important}.hover\\:text-yellow-800:hover{color:var(--yellow-800)!important}.hover\\:text-yellow-900:hover{color:var(--yellow-900)!important}.active\\:text-yellow-50:active{color:var(--yellow-50)!important}.active\\:text-yellow-100:active{color:var(--yellow-100)!important}.active\\:text-yellow-200:active{color:var(--yellow-200)!important}.active\\:text-yellow-300:active{color:var(--yellow-300)!important}.active\\:text-yellow-400:active{color:var(--yellow-400)!important}.active\\:text-yellow-500:active{color:var(--yellow-500)!important}.active\\:text-yellow-600:active{color:var(--yellow-600)!important}.active\\:text-yellow-700:active{color:var(--yellow-700)!important}.active\\:text-yellow-800:active{color:var(--yellow-800)!important}.active\\:text-yellow-900:active{color:var(--yellow-900)!important}.text-cyan-50{color:var(--cyan-50)!important}.text-cyan-100{color:var(--cyan-100)!important}.text-cyan-200{color:var(--cyan-200)!important}.text-cyan-300{color:var(--cyan-300)!important}.text-cyan-400{color:var(--cyan-400)!important}.text-cyan-500{color:var(--cyan-500)!important}.text-cyan-600{color:var(--cyan-600)!important}.text-cyan-700{color:var(--cyan-700)!important}.text-cyan-800{color:var(--cyan-800)!important}.text-cyan-900{color:var(--cyan-900)!important}.focus\\:text-cyan-50:focus{color:var(--cyan-50)!important}.focus\\:text-cyan-100:focus{color:var(--cyan-100)!important}.focus\\:text-cyan-200:focus{color:var(--cyan-200)!important}.focus\\:text-cyan-300:focus{color:var(--cyan-300)!important}.focus\\:text-cyan-400:focus{color:var(--cyan-400)!important}.focus\\:text-cyan-500:focus{color:var(--cyan-500)!important}.focus\\:text-cyan-600:focus{color:var(--cyan-600)!important}.focus\\:text-cyan-700:focus{color:var(--cyan-700)!important}.focus\\:text-cyan-800:focus{color:var(--cyan-800)!important}.focus\\:text-cyan-900:focus{color:var(--cyan-900)!important}.hover\\:text-cyan-50:hover{color:var(--cyan-50)!important}.hover\\:text-cyan-100:hover{color:var(--cyan-100)!important}.hover\\:text-cyan-200:hover{color:var(--cyan-200)!important}.hover\\:text-cyan-300:hover{color:var(--cyan-300)!important}.hover\\:text-cyan-400:hover{color:var(--cyan-400)!important}.hover\\:text-cyan-500:hover{color:var(--cyan-500)!important}.hover\\:text-cyan-600:hover{color:var(--cyan-600)!important}.hover\\:text-cyan-700:hover{color:var(--cyan-700)!important}.hover\\:text-cyan-800:hover{color:var(--cyan-800)!important}.hover\\:text-cyan-900:hover{color:var(--cyan-900)!important}.active\\:text-cyan-50:active{color:var(--cyan-50)!important}.active\\:text-cyan-100:active{color:var(--cyan-100)!important}.active\\:text-cyan-200:active{color:var(--cyan-200)!important}.active\\:text-cyan-300:active{color:var(--cyan-300)!important}.active\\:text-cyan-400:active{color:var(--cyan-400)!important}.active\\:text-cyan-500:active{color:var(--cyan-500)!important}.active\\:text-cyan-600:active{color:var(--cyan-600)!important}.active\\:text-cyan-700:active{color:var(--cyan-700)!important}.active\\:text-cyan-800:active{color:var(--cyan-800)!important}.active\\:text-cyan-900:active{color:var(--cyan-900)!important}.text-pink-50{color:var(--pink-50)!important}.text-pink-100{color:var(--pink-100)!important}.text-pink-200{color:var(--pink-200)!important}.text-pink-300{color:var(--pink-300)!important}.text-pink-400{color:var(--pink-400)!important}.text-pink-500{color:var(--pink-500)!important}.text-pink-600{color:var(--pink-600)!important}.text-pink-700{color:var(--pink-700)!important}.text-pink-800{color:var(--pink-800)!important}.text-pink-900{color:var(--pink-900)!important}.focus\\:text-pink-50:focus{color:var(--pink-50)!important}.focus\\:text-pink-100:focus{color:var(--pink-100)!important}.focus\\:text-pink-200:focus{color:var(--pink-200)!important}.focus\\:text-pink-300:focus{color:var(--pink-300)!important}.focus\\:text-pink-400:focus{color:var(--pink-400)!important}.focus\\:text-pink-500:focus{color:var(--pink-500)!important}.focus\\:text-pink-600:focus{color:var(--pink-600)!important}.focus\\:text-pink-700:focus{color:var(--pink-700)!important}.focus\\:text-pink-800:focus{color:var(--pink-800)!important}.focus\\:text-pink-900:focus{color:var(--pink-900)!important}.hover\\:text-pink-50:hover{color:var(--pink-50)!important}.hover\\:text-pink-100:hover{color:var(--pink-100)!important}.hover\\:text-pink-200:hover{color:var(--pink-200)!important}.hover\\:text-pink-300:hover{color:var(--pink-300)!important}.hover\\:text-pink-400:hover{color:var(--pink-400)!important}.hover\\:text-pink-500:hover{color:var(--pink-500)!important}.hover\\:text-pink-600:hover{color:var(--pink-600)!important}.hover\\:text-pink-700:hover{color:var(--pink-700)!important}.hover\\:text-pink-800:hover{color:var(--pink-800)!important}.hover\\:text-pink-900:hover{color:var(--pink-900)!important}.active\\:text-pink-50:active{color:var(--pink-50)!important}.active\\:text-pink-100:active{color:var(--pink-100)!important}.active\\:text-pink-200:active{color:var(--pink-200)!important}.active\\:text-pink-300:active{color:var(--pink-300)!important}.active\\:text-pink-400:active{color:var(--pink-400)!important}.active\\:text-pink-500:active{color:var(--pink-500)!important}.active\\:text-pink-600:active{color:var(--pink-600)!important}.active\\:text-pink-700:active{color:var(--pink-700)!important}.active\\:text-pink-800:active{color:var(--pink-800)!important}.active\\:text-pink-900:active{color:var(--pink-900)!important}.text-indigo-50{color:var(--indigo-50)!important}.text-indigo-100{color:var(--indigo-100)!important}.text-indigo-200{color:var(--indigo-200)!important}.text-indigo-300{color:var(--indigo-300)!important}.text-indigo-400{color:var(--indigo-400)!important}.text-indigo-500{color:var(--indigo-500)!important}.text-indigo-600{color:var(--indigo-600)!important}.text-indigo-700{color:var(--indigo-700)!important}.text-indigo-800{color:var(--indigo-800)!important}.text-indigo-900{color:var(--indigo-900)!important}.focus\\:text-indigo-50:focus{color:var(--indigo-50)!important}.focus\\:text-indigo-100:focus{color:var(--indigo-100)!important}.focus\\:text-indigo-200:focus{color:var(--indigo-200)!important}.focus\\:text-indigo-300:focus{color:var(--indigo-300)!important}.focus\\:text-indigo-400:focus{color:var(--indigo-400)!important}.focus\\:text-indigo-500:focus{color:var(--indigo-500)!important}.focus\\:text-indigo-600:focus{color:var(--indigo-600)!important}.focus\\:text-indigo-700:focus{color:var(--indigo-700)!important}.focus\\:text-indigo-800:focus{color:var(--indigo-800)!important}.focus\\:text-indigo-900:focus{color:var(--indigo-900)!important}.hover\\:text-indigo-50:hover{color:var(--indigo-50)!important}.hover\\:text-indigo-100:hover{color:var(--indigo-100)!important}.hover\\:text-indigo-200:hover{color:var(--indigo-200)!important}.hover\\:text-indigo-300:hover{color:var(--indigo-300)!important}.hover\\:text-indigo-400:hover{color:var(--indigo-400)!important}.hover\\:text-indigo-500:hover{color:var(--indigo-500)!important}.hover\\:text-indigo-600:hover{color:var(--indigo-600)!important}.hover\\:text-indigo-700:hover{color:var(--indigo-700)!important}.hover\\:text-indigo-800:hover{color:var(--indigo-800)!important}.hover\\:text-indigo-900:hover{color:var(--indigo-900)!important}.active\\:text-indigo-50:active{color:var(--indigo-50)!important}.active\\:text-indigo-100:active{color:var(--indigo-100)!important}.active\\:text-indigo-200:active{color:var(--indigo-200)!important}.active\\:text-indigo-300:active{color:var(--indigo-300)!important}.active\\:text-indigo-400:active{color:var(--indigo-400)!important}.active\\:text-indigo-500:active{color:var(--indigo-500)!important}.active\\:text-indigo-600:active{color:var(--indigo-600)!important}.active\\:text-indigo-700:active{color:var(--indigo-700)!important}.active\\:text-indigo-800:active{color:var(--indigo-800)!important}.active\\:text-indigo-900:active{color:var(--indigo-900)!important}.text-teal-50{color:var(--teal-50)!important}.text-teal-100{color:var(--teal-100)!important}.text-teal-200{color:var(--teal-200)!important}.text-teal-300{color:var(--teal-300)!important}.text-teal-400{color:var(--teal-400)!important}.text-teal-500{color:var(--teal-500)!important}.text-teal-600{color:var(--teal-600)!important}.text-teal-700{color:var(--teal-700)!important}.text-teal-800{color:var(--teal-800)!important}.text-teal-900{color:var(--teal-900)!important}.focus\\:text-teal-50:focus{color:var(--teal-50)!important}.focus\\:text-teal-100:focus{color:var(--teal-100)!important}.focus\\:text-teal-200:focus{color:var(--teal-200)!important}.focus\\:text-teal-300:focus{color:var(--teal-300)!important}.focus\\:text-teal-400:focus{color:var(--teal-400)!important}.focus\\:text-teal-500:focus{color:var(--teal-500)!important}.focus\\:text-teal-600:focus{color:var(--teal-600)!important}.focus\\:text-teal-700:focus{color:var(--teal-700)!important}.focus\\:text-teal-800:focus{color:var(--teal-800)!important}.focus\\:text-teal-900:focus{color:var(--teal-900)!important}.hover\\:text-teal-50:hover{color:var(--teal-50)!important}.hover\\:text-teal-100:hover{color:var(--teal-100)!important}.hover\\:text-teal-200:hover{color:var(--teal-200)!important}.hover\\:text-teal-300:hover{color:var(--teal-300)!important}.hover\\:text-teal-400:hover{color:var(--teal-400)!important}.hover\\:text-teal-500:hover{color:var(--teal-500)!important}.hover\\:text-teal-600:hover{color:var(--teal-600)!important}.hover\\:text-teal-700:hover{color:var(--teal-700)!important}.hover\\:text-teal-800:hover{color:var(--teal-800)!important}.hover\\:text-teal-900:hover{color:var(--teal-900)!important}.active\\:text-teal-50:active{color:var(--teal-50)!important}.active\\:text-teal-100:active{color:var(--teal-100)!important}.active\\:text-teal-200:active{color:var(--teal-200)!important}.active\\:text-teal-300:active{color:var(--teal-300)!important}.active\\:text-teal-400:active{color:var(--teal-400)!important}.active\\:text-teal-500:active{color:var(--teal-500)!important}.active\\:text-teal-600:active{color:var(--teal-600)!important}.active\\:text-teal-700:active{color:var(--teal-700)!important}.active\\:text-teal-800:active{color:var(--teal-800)!important}.active\\:text-teal-900:active{color:var(--teal-900)!important}.text-orange-50{color:var(--orange-50)!important}.text-orange-100{color:var(--orange-100)!important}.text-orange-200{color:var(--orange-200)!important}.text-orange-300{color:var(--orange-300)!important}.text-orange-400{color:var(--orange-400)!important}.text-orange-500{color:var(--orange-500)!important}.text-orange-600{color:var(--orange-600)!important}.text-orange-700{color:var(--orange-700)!important}.text-orange-800{color:var(--orange-800)!important}.text-orange-900{color:var(--orange-900)!important}.focus\\:text-orange-50:focus{color:var(--orange-50)!important}.focus\\:text-orange-100:focus{color:var(--orange-100)!important}.focus\\:text-orange-200:focus{color:var(--orange-200)!important}.focus\\:text-orange-300:focus{color:var(--orange-300)!important}.focus\\:text-orange-400:focus{color:var(--orange-400)!important}.focus\\:text-orange-500:focus{color:var(--orange-500)!important}.focus\\:text-orange-600:focus{color:var(--orange-600)!important}.focus\\:text-orange-700:focus{color:var(--orange-700)!important}.focus\\:text-orange-800:focus{color:var(--orange-800)!important}.focus\\:text-orange-900:focus{color:var(--orange-900)!important}.hover\\:text-orange-50:hover{color:var(--orange-50)!important}.hover\\:text-orange-100:hover{color:var(--orange-100)!important}.hover\\:text-orange-200:hover{color:var(--orange-200)!important}.hover\\:text-orange-300:hover{color:var(--orange-300)!important}.hover\\:text-orange-400:hover{color:var(--orange-400)!important}.hover\\:text-orange-500:hover{color:var(--orange-500)!important}.hover\\:text-orange-600:hover{color:var(--orange-600)!important}.hover\\:text-orange-700:hover{color:var(--orange-700)!important}.hover\\:text-orange-800:hover{color:var(--orange-800)!important}.hover\\:text-orange-900:hover{color:var(--orange-900)!important}.active\\:text-orange-50:active{color:var(--orange-50)!important}.active\\:text-orange-100:active{color:var(--orange-100)!important}.active\\:text-orange-200:active{color:var(--orange-200)!important}.active\\:text-orange-300:active{color:var(--orange-300)!important}.active\\:text-orange-400:active{color:var(--orange-400)!important}.active\\:text-orange-500:active{color:var(--orange-500)!important}.active\\:text-orange-600:active{color:var(--orange-600)!important}.active\\:text-orange-700:active{color:var(--orange-700)!important}.active\\:text-orange-800:active{color:var(--orange-800)!important}.active\\:text-orange-900:active{color:var(--orange-900)!important}.text-bluegray-50{color:var(--bluegray-50)!important}.text-bluegray-100{color:var(--bluegray-100)!important}.text-bluegray-200{color:var(--bluegray-200)!important}.text-bluegray-300{color:var(--bluegray-300)!important}.text-bluegray-400{color:var(--bluegray-400)!important}.text-bluegray-500{color:var(--bluegray-500)!important}.text-bluegray-600{color:var(--bluegray-600)!important}.text-bluegray-700{color:var(--bluegray-700)!important}.text-bluegray-800{color:var(--bluegray-800)!important}.text-bluegray-900{color:var(--bluegray-900)!important}.focus\\:text-bluegray-50:focus{color:var(--bluegray-50)!important}.focus\\:text-bluegray-100:focus{color:var(--bluegray-100)!important}.focus\\:text-bluegray-200:focus{color:var(--bluegray-200)!important}.focus\\:text-bluegray-300:focus{color:var(--bluegray-300)!important}.focus\\:text-bluegray-400:focus{color:var(--bluegray-400)!important}.focus\\:text-bluegray-500:focus{color:var(--bluegray-500)!important}.focus\\:text-bluegray-600:focus{color:var(--bluegray-600)!important}.focus\\:text-bluegray-700:focus{color:var(--bluegray-700)!important}.focus\\:text-bluegray-800:focus{color:var(--bluegray-800)!important}.focus\\:text-bluegray-900:focus{color:var(--bluegray-900)!important}.hover\\:text-bluegray-50:hover{color:var(--bluegray-50)!important}.hover\\:text-bluegray-100:hover{color:var(--bluegray-100)!important}.hover\\:text-bluegray-200:hover{color:var(--bluegray-200)!important}.hover\\:text-bluegray-300:hover{color:var(--bluegray-300)!important}.hover\\:text-bluegray-400:hover{color:var(--bluegray-400)!important}.hover\\:text-bluegray-500:hover{color:var(--bluegray-500)!important}.hover\\:text-bluegray-600:hover{color:var(--bluegray-600)!important}.hover\\:text-bluegray-700:hover{color:var(--bluegray-700)!important}.hover\\:text-bluegray-800:hover{color:var(--bluegray-800)!important}.hover\\:text-bluegray-900:hover{color:var(--bluegray-900)!important}.active\\:text-bluegray-50:active{color:var(--bluegray-50)!important}.active\\:text-bluegray-100:active{color:var(--bluegray-100)!important}.active\\:text-bluegray-200:active{color:var(--bluegray-200)!important}.active\\:text-bluegray-300:active{color:var(--bluegray-300)!important}.active\\:text-bluegray-400:active{color:var(--bluegray-400)!important}.active\\:text-bluegray-500:active{color:var(--bluegray-500)!important}.active\\:text-bluegray-600:active{color:var(--bluegray-600)!important}.active\\:text-bluegray-700:active{color:var(--bluegray-700)!important}.active\\:text-bluegray-800:active{color:var(--bluegray-800)!important}.active\\:text-bluegray-900:active{color:var(--bluegray-900)!important}.text-purple-50{color:var(--purple-50)!important}.text-purple-100{color:var(--purple-100)!important}.text-purple-200{color:var(--purple-200)!important}.text-purple-300{color:var(--purple-300)!important}.text-purple-400{color:var(--purple-400)!important}.text-purple-500{color:var(--purple-500)!important}.text-purple-600{color:var(--purple-600)!important}.text-purple-700{color:var(--purple-700)!important}.text-purple-800{color:var(--purple-800)!important}.text-purple-900{color:var(--purple-900)!important}.focus\\:text-purple-50:focus{color:var(--purple-50)!important}.focus\\:text-purple-100:focus{color:var(--purple-100)!important}.focus\\:text-purple-200:focus{color:var(--purple-200)!important}.focus\\:text-purple-300:focus{color:var(--purple-300)!important}.focus\\:text-purple-400:focus{color:var(--purple-400)!important}.focus\\:text-purple-500:focus{color:var(--purple-500)!important}.focus\\:text-purple-600:focus{color:var(--purple-600)!important}.focus\\:text-purple-700:focus{color:var(--purple-700)!important}.focus\\:text-purple-800:focus{color:var(--purple-800)!important}.focus\\:text-purple-900:focus{color:var(--purple-900)!important}.hover\\:text-purple-50:hover{color:var(--purple-50)!important}.hover\\:text-purple-100:hover{color:var(--purple-100)!important}.hover\\:text-purple-200:hover{color:var(--purple-200)!important}.hover\\:text-purple-300:hover{color:var(--purple-300)!important}.hover\\:text-purple-400:hover{color:var(--purple-400)!important}.hover\\:text-purple-500:hover{color:var(--purple-500)!important}.hover\\:text-purple-600:hover{color:var(--purple-600)!important}.hover\\:text-purple-700:hover{color:var(--purple-700)!important}.hover\\:text-purple-800:hover{color:var(--purple-800)!important}.hover\\:text-purple-900:hover{color:var(--purple-900)!important}.active\\:text-purple-50:active{color:var(--purple-50)!important}.active\\:text-purple-100:active{color:var(--purple-100)!important}.active\\:text-purple-200:active{color:var(--purple-200)!important}.active\\:text-purple-300:active{color:var(--purple-300)!important}.active\\:text-purple-400:active{color:var(--purple-400)!important}.active\\:text-purple-500:active{color:var(--purple-500)!important}.active\\:text-purple-600:active{color:var(--purple-600)!important}.active\\:text-purple-700:active{color:var(--purple-700)!important}.active\\:text-purple-800:active{color:var(--purple-800)!important}.active\\:text-purple-900:active{color:var(--purple-900)!important}.text-gray-50{color:var(--gray-50)!important}.text-gray-100{color:var(--gray-100)!important}.text-gray-200{color:var(--gray-200)!important}.text-gray-300{color:var(--gray-300)!important}.text-gray-400{color:var(--gray-400)!important}.text-gray-500{color:var(--gray-500)!important}.text-gray-600{color:var(--gray-600)!important}.text-gray-700{color:var(--gray-700)!important}.text-gray-800{color:var(--gray-800)!important}.text-gray-900{color:var(--gray-900)!important}.focus\\:text-gray-50:focus{color:var(--gray-50)!important}.focus\\:text-gray-100:focus{color:var(--gray-100)!important}.focus\\:text-gray-200:focus{color:var(--gray-200)!important}.focus\\:text-gray-300:focus{color:var(--gray-300)!important}.focus\\:text-gray-400:focus{color:var(--gray-400)!important}.focus\\:text-gray-500:focus{color:var(--gray-500)!important}.focus\\:text-gray-600:focus{color:var(--gray-600)!important}.focus\\:text-gray-700:focus{color:var(--gray-700)!important}.focus\\:text-gray-800:focus{color:var(--gray-800)!important}.focus\\:text-gray-900:focus{color:var(--gray-900)!important}.hover\\:text-gray-50:hover{color:var(--gray-50)!important}.hover\\:text-gray-100:hover{color:var(--gray-100)!important}.hover\\:text-gray-200:hover{color:var(--gray-200)!important}.hover\\:text-gray-300:hover{color:var(--gray-300)!important}.hover\\:text-gray-400:hover{color:var(--gray-400)!important}.hover\\:text-gray-500:hover{color:var(--gray-500)!important}.hover\\:text-gray-600:hover{color:var(--gray-600)!important}.hover\\:text-gray-700:hover{color:var(--gray-700)!important}.hover\\:text-gray-800:hover{color:var(--gray-800)!important}.hover\\:text-gray-900:hover{color:var(--gray-900)!important}.active\\:text-gray-50:active{color:var(--gray-50)!important}.active\\:text-gray-100:active{color:var(--gray-100)!important}.active\\:text-gray-200:active{color:var(--gray-200)!important}.active\\:text-gray-300:active{color:var(--gray-300)!important}.active\\:text-gray-400:active{color:var(--gray-400)!important}.active\\:text-gray-500:active{color:var(--gray-500)!important}.active\\:text-gray-600:active{color:var(--gray-600)!important}.active\\:text-gray-700:active{color:var(--gray-700)!important}.active\\:text-gray-800:active{color:var(--gray-800)!important}.active\\:text-gray-900:active{color:var(--gray-900)!important}.text-red-50{color:var(--red-50)!important}.text-red-100{color:var(--red-100)!important}.text-red-200{color:var(--red-200)!important}.text-red-300{color:var(--red-300)!important}.text-red-400{color:var(--red-400)!important}.text-red-500{color:var(--red-500)!important}.text-red-600{color:var(--red-600)!important}.text-red-700{color:var(--red-700)!important}.text-red-800{color:var(--red-800)!important}.text-red-900{color:var(--red-900)!important}.focus\\:text-red-50:focus{color:var(--red-50)!important}.focus\\:text-red-100:focus{color:var(--red-100)!important}.focus\\:text-red-200:focus{color:var(--red-200)!important}.focus\\:text-red-300:focus{color:var(--red-300)!important}.focus\\:text-red-400:focus{color:var(--red-400)!important}.focus\\:text-red-500:focus{color:var(--red-500)!important}.focus\\:text-red-600:focus{color:var(--red-600)!important}.focus\\:text-red-700:focus{color:var(--red-700)!important}.focus\\:text-red-800:focus{color:var(--red-800)!important}.focus\\:text-red-900:focus{color:var(--red-900)!important}.hover\\:text-red-50:hover{color:var(--red-50)!important}.hover\\:text-red-100:hover{color:var(--red-100)!important}.hover\\:text-red-200:hover{color:var(--red-200)!important}.hover\\:text-red-300:hover{color:var(--red-300)!important}.hover\\:text-red-400:hover{color:var(--red-400)!important}.hover\\:text-red-500:hover{color:var(--red-500)!important}.hover\\:text-red-600:hover{color:var(--red-600)!important}.hover\\:text-red-700:hover{color:var(--red-700)!important}.hover\\:text-red-800:hover{color:var(--red-800)!important}.hover\\:text-red-900:hover{color:var(--red-900)!important}.active\\:text-red-50:active{color:var(--red-50)!important}.active\\:text-red-100:active{color:var(--red-100)!important}.active\\:text-red-200:active{color:var(--red-200)!important}.active\\:text-red-300:active{color:var(--red-300)!important}.active\\:text-red-400:active{color:var(--red-400)!important}.active\\:text-red-500:active{color:var(--red-500)!important}.active\\:text-red-600:active{color:var(--red-600)!important}.active\\:text-red-700:active{color:var(--red-700)!important}.active\\:text-red-800:active{color:var(--red-800)!important}.active\\:text-red-900:active{color:var(--red-900)!important}.text-primary-50{color:var(--primary-50)!important}.text-primary-100{color:var(--primary-100)!important}.text-primary-200{color:var(--primary-200)!important}.text-primary-300{color:var(--primary-300)!important}.text-primary-400{color:var(--primary-400)!important}.text-primary-500{color:var(--primary-500)!important}.text-primary-600{color:var(--primary-600)!important}.text-primary-700{color:var(--primary-700)!important}.text-primary-800{color:var(--primary-800)!important}.text-primary-900{color:var(--primary-900)!important}.focus\\:text-primary-50:focus{color:var(--primary-50)!important}.focus\\:text-primary-100:focus{color:var(--primary-100)!important}.focus\\:text-primary-200:focus{color:var(--primary-200)!important}.focus\\:text-primary-300:focus{color:var(--primary-300)!important}.focus\\:text-primary-400:focus{color:var(--primary-400)!important}.focus\\:text-primary-500:focus{color:var(--primary-500)!important}.focus\\:text-primary-600:focus{color:var(--primary-600)!important}.focus\\:text-primary-700:focus{color:var(--primary-700)!important}.focus\\:text-primary-800:focus{color:var(--primary-800)!important}.focus\\:text-primary-900:focus{color:var(--primary-900)!important}.hover\\:text-primary-50:hover{color:var(--primary-50)!important}.hover\\:text-primary-100:hover{color:var(--primary-100)!important}.hover\\:text-primary-200:hover{color:var(--primary-200)!important}.hover\\:text-primary-300:hover{color:var(--primary-300)!important}.hover\\:text-primary-400:hover{color:var(--primary-400)!important}.hover\\:text-primary-500:hover{color:var(--primary-500)!important}.hover\\:text-primary-600:hover{color:var(--primary-600)!important}.hover\\:text-primary-700:hover{color:var(--primary-700)!important}.hover\\:text-primary-800:hover{color:var(--primary-800)!important}.hover\\:text-primary-900:hover{color:var(--primary-900)!important}.active\\:text-primary-50:active{color:var(--primary-50)!important}.active\\:text-primary-100:active{color:var(--primary-100)!important}.active\\:text-primary-200:active{color:var(--primary-200)!important}.active\\:text-primary-300:active{color:var(--primary-300)!important}.active\\:text-primary-400:active{color:var(--primary-400)!important}.active\\:text-primary-500:active{color:var(--primary-500)!important}.active\\:text-primary-600:active{color:var(--primary-600)!important}.active\\:text-primary-700:active{color:var(--primary-700)!important}.active\\:text-primary-800:active{color:var(--primary-800)!important}.active\\:text-primary-900:active{color:var(--primary-900)!important}.bg-blue-50{background-color:var(--blue-50)!important}.bg-blue-100{background-color:var(--blue-100)!important}.bg-blue-200{background-color:var(--blue-200)!important}.bg-blue-300{background-color:var(--blue-300)!important}.bg-blue-400{background-color:var(--blue-400)!important}.bg-blue-500{background-color:var(--blue-500)!important}.bg-blue-600{background-color:var(--blue-600)!important}.bg-blue-700{background-color:var(--blue-700)!important}.bg-blue-800{background-color:var(--blue-800)!important}.bg-blue-900{background-color:var(--blue-900)!important}.focus\\:bg-blue-50:focus{background-color:var(--blue-50)!important}.focus\\:bg-blue-100:focus{background-color:var(--blue-100)!important}.focus\\:bg-blue-200:focus{background-color:var(--blue-200)!important}.focus\\:bg-blue-300:focus{background-color:var(--blue-300)!important}.focus\\:bg-blue-400:focus{background-color:var(--blue-400)!important}.focus\\:bg-blue-500:focus{background-color:var(--blue-500)!important}.focus\\:bg-blue-600:focus{background-color:var(--blue-600)!important}.focus\\:bg-blue-700:focus{background-color:var(--blue-700)!important}.focus\\:bg-blue-800:focus{background-color:var(--blue-800)!important}.focus\\:bg-blue-900:focus{background-color:var(--blue-900)!important}.hover\\:bg-blue-50:hover{background-color:var(--blue-50)!important}.hover\\:bg-blue-100:hover{background-color:var(--blue-100)!important}.hover\\:bg-blue-200:hover{background-color:var(--blue-200)!important}.hover\\:bg-blue-300:hover{background-color:var(--blue-300)!important}.hover\\:bg-blue-400:hover{background-color:var(--blue-400)!important}.hover\\:bg-blue-500:hover{background-color:var(--blue-500)!important}.hover\\:bg-blue-600:hover{background-color:var(--blue-600)!important}.hover\\:bg-blue-700:hover{background-color:var(--blue-700)!important}.hover\\:bg-blue-800:hover{background-color:var(--blue-800)!important}.hover\\:bg-blue-900:hover{background-color:var(--blue-900)!important}.active\\:bg-blue-50:active{background-color:var(--blue-50)!important}.active\\:bg-blue-100:active{background-color:var(--blue-100)!important}.active\\:bg-blue-200:active{background-color:var(--blue-200)!important}.active\\:bg-blue-300:active{background-color:var(--blue-300)!important}.active\\:bg-blue-400:active{background-color:var(--blue-400)!important}.active\\:bg-blue-500:active{background-color:var(--blue-500)!important}.active\\:bg-blue-600:active{background-color:var(--blue-600)!important}.active\\:bg-blue-700:active{background-color:var(--blue-700)!important}.active\\:bg-blue-800:active{background-color:var(--blue-800)!important}.active\\:bg-blue-900:active{background-color:var(--blue-900)!important}.bg-green-50{background-color:var(--green-50)!important}.bg-green-100{background-color:var(--green-100)!important}.bg-green-200{background-color:var(--green-200)!important}.bg-green-300{background-color:var(--green-300)!important}.bg-green-400{background-color:var(--green-400)!important}.bg-green-500{background-color:var(--green-500)!important}.bg-green-600{background-color:var(--green-600)!important}.bg-green-700{background-color:var(--green-700)!important}.bg-green-800{background-color:var(--green-800)!important}.bg-green-900{background-color:var(--green-900)!important}.focus\\:bg-green-50:focus{background-color:var(--green-50)!important}.focus\\:bg-green-100:focus{background-color:var(--green-100)!important}.focus\\:bg-green-200:focus{background-color:var(--green-200)!important}.focus\\:bg-green-300:focus{background-color:var(--green-300)!important}.focus\\:bg-green-400:focus{background-color:var(--green-400)!important}.focus\\:bg-green-500:focus{background-color:var(--green-500)!important}.focus\\:bg-green-600:focus{background-color:var(--green-600)!important}.focus\\:bg-green-700:focus{background-color:var(--green-700)!important}.focus\\:bg-green-800:focus{background-color:var(--green-800)!important}.focus\\:bg-green-900:focus{background-color:var(--green-900)!important}.hover\\:bg-green-50:hover{background-color:var(--green-50)!important}.hover\\:bg-green-100:hover{background-color:var(--green-100)!important}.hover\\:bg-green-200:hover{background-color:var(--green-200)!important}.hover\\:bg-green-300:hover{background-color:var(--green-300)!important}.hover\\:bg-green-400:hover{background-color:var(--green-400)!important}.hover\\:bg-green-500:hover{background-color:var(--green-500)!important}.hover\\:bg-green-600:hover{background-color:var(--green-600)!important}.hover\\:bg-green-700:hover{background-color:var(--green-700)!important}.hover\\:bg-green-800:hover{background-color:var(--green-800)!important}.hover\\:bg-green-900:hover{background-color:var(--green-900)!important}.active\\:bg-green-50:active{background-color:var(--green-50)!important}.active\\:bg-green-100:active{background-color:var(--green-100)!important}.active\\:bg-green-200:active{background-color:var(--green-200)!important}.active\\:bg-green-300:active{background-color:var(--green-300)!important}.active\\:bg-green-400:active{background-color:var(--green-400)!important}.active\\:bg-green-500:active{background-color:var(--green-500)!important}.active\\:bg-green-600:active{background-color:var(--green-600)!important}.active\\:bg-green-700:active{background-color:var(--green-700)!important}.active\\:bg-green-800:active{background-color:var(--green-800)!important}.active\\:bg-green-900:active{background-color:var(--green-900)!important}.bg-yellow-50{background-color:var(--yellow-50)!important}.bg-yellow-100{background-color:var(--yellow-100)!important}.bg-yellow-200{background-color:var(--yellow-200)!important}.bg-yellow-300{background-color:var(--yellow-300)!important}.bg-yellow-400{background-color:var(--yellow-400)!important}.bg-yellow-500{background-color:var(--yellow-500)!important}.bg-yellow-600{background-color:var(--yellow-600)!important}.bg-yellow-700{background-color:var(--yellow-700)!important}.bg-yellow-800{background-color:var(--yellow-800)!important}.bg-yellow-900{background-color:var(--yellow-900)!important}.focus\\:bg-yellow-50:focus{background-color:var(--yellow-50)!important}.focus\\:bg-yellow-100:focus{background-color:var(--yellow-100)!important}.focus\\:bg-yellow-200:focus{background-color:var(--yellow-200)!important}.focus\\:bg-yellow-300:focus{background-color:var(--yellow-300)!important}.focus\\:bg-yellow-400:focus{background-color:var(--yellow-400)!important}.focus\\:bg-yellow-500:focus{background-color:var(--yellow-500)!important}.focus\\:bg-yellow-600:focus{background-color:var(--yellow-600)!important}.focus\\:bg-yellow-700:focus{background-color:var(--yellow-700)!important}.focus\\:bg-yellow-800:focus{background-color:var(--yellow-800)!important}.focus\\:bg-yellow-900:focus{background-color:var(--yellow-900)!important}.hover\\:bg-yellow-50:hover{background-color:var(--yellow-50)!important}.hover\\:bg-yellow-100:hover{background-color:var(--yellow-100)!important}.hover\\:bg-yellow-200:hover{background-color:var(--yellow-200)!important}.hover\\:bg-yellow-300:hover{background-color:var(--yellow-300)!important}.hover\\:bg-yellow-400:hover{background-color:var(--yellow-400)!important}.hover\\:bg-yellow-500:hover{background-color:var(--yellow-500)!important}.hover\\:bg-yellow-600:hover{background-color:var(--yellow-600)!important}.hover\\:bg-yellow-700:hover{background-color:var(--yellow-700)!important}.hover\\:bg-yellow-800:hover{background-color:var(--yellow-800)!important}.hover\\:bg-yellow-900:hover{background-color:var(--yellow-900)!important}.active\\:bg-yellow-50:active{background-color:var(--yellow-50)!important}.active\\:bg-yellow-100:active{background-color:var(--yellow-100)!important}.active\\:bg-yellow-200:active{background-color:var(--yellow-200)!important}.active\\:bg-yellow-300:active{background-color:var(--yellow-300)!important}.active\\:bg-yellow-400:active{background-color:var(--yellow-400)!important}.active\\:bg-yellow-500:active{background-color:var(--yellow-500)!important}.active\\:bg-yellow-600:active{background-color:var(--yellow-600)!important}.active\\:bg-yellow-700:active{background-color:var(--yellow-700)!important}.active\\:bg-yellow-800:active{background-color:var(--yellow-800)!important}.active\\:bg-yellow-900:active{background-color:var(--yellow-900)!important}.bg-cyan-50{background-color:var(--cyan-50)!important}.bg-cyan-100{background-color:var(--cyan-100)!important}.bg-cyan-200{background-color:var(--cyan-200)!important}.bg-cyan-300{background-color:var(--cyan-300)!important}.bg-cyan-400{background-color:var(--cyan-400)!important}.bg-cyan-500{background-color:var(--cyan-500)!important}.bg-cyan-600{background-color:var(--cyan-600)!important}.bg-cyan-700{background-color:var(--cyan-700)!important}.bg-cyan-800{background-color:var(--cyan-800)!important}.bg-cyan-900{background-color:var(--cyan-900)!important}.focus\\:bg-cyan-50:focus{background-color:var(--cyan-50)!important}.focus\\:bg-cyan-100:focus{background-color:var(--cyan-100)!important}.focus\\:bg-cyan-200:focus{background-color:var(--cyan-200)!important}.focus\\:bg-cyan-300:focus{background-color:var(--cyan-300)!important}.focus\\:bg-cyan-400:focus{background-color:var(--cyan-400)!important}.focus\\:bg-cyan-500:focus{background-color:var(--cyan-500)!important}.focus\\:bg-cyan-600:focus{background-color:var(--cyan-600)!important}.focus\\:bg-cyan-700:focus{background-color:var(--cyan-700)!important}.focus\\:bg-cyan-800:focus{background-color:var(--cyan-800)!important}.focus\\:bg-cyan-900:focus{background-color:var(--cyan-900)!important}.hover\\:bg-cyan-50:hover{background-color:var(--cyan-50)!important}.hover\\:bg-cyan-100:hover{background-color:var(--cyan-100)!important}.hover\\:bg-cyan-200:hover{background-color:var(--cyan-200)!important}.hover\\:bg-cyan-300:hover{background-color:var(--cyan-300)!important}.hover\\:bg-cyan-400:hover{background-color:var(--cyan-400)!important}.hover\\:bg-cyan-500:hover{background-color:var(--cyan-500)!important}.hover\\:bg-cyan-600:hover{background-color:var(--cyan-600)!important}.hover\\:bg-cyan-700:hover{background-color:var(--cyan-700)!important}.hover\\:bg-cyan-800:hover{background-color:var(--cyan-800)!important}.hover\\:bg-cyan-900:hover{background-color:var(--cyan-900)!important}.active\\:bg-cyan-50:active{background-color:var(--cyan-50)!important}.active\\:bg-cyan-100:active{background-color:var(--cyan-100)!important}.active\\:bg-cyan-200:active{background-color:var(--cyan-200)!important}.active\\:bg-cyan-300:active{background-color:var(--cyan-300)!important}.active\\:bg-cyan-400:active{background-color:var(--cyan-400)!important}.active\\:bg-cyan-500:active{background-color:var(--cyan-500)!important}.active\\:bg-cyan-600:active{background-color:var(--cyan-600)!important}.active\\:bg-cyan-700:active{background-color:var(--cyan-700)!important}.active\\:bg-cyan-800:active{background-color:var(--cyan-800)!important}.active\\:bg-cyan-900:active{background-color:var(--cyan-900)!important}.bg-pink-50{background-color:var(--pink-50)!important}.bg-pink-100{background-color:var(--pink-100)!important}.bg-pink-200{background-color:var(--pink-200)!important}.bg-pink-300{background-color:var(--pink-300)!important}.bg-pink-400{background-color:var(--pink-400)!important}.bg-pink-500{background-color:var(--pink-500)!important}.bg-pink-600{background-color:var(--pink-600)!important}.bg-pink-700{background-color:var(--pink-700)!important}.bg-pink-800{background-color:var(--pink-800)!important}.bg-pink-900{background-color:var(--pink-900)!important}.focus\\:bg-pink-50:focus{background-color:var(--pink-50)!important}.focus\\:bg-pink-100:focus{background-color:var(--pink-100)!important}.focus\\:bg-pink-200:focus{background-color:var(--pink-200)!important}.focus\\:bg-pink-300:focus{background-color:var(--pink-300)!important}.focus\\:bg-pink-400:focus{background-color:var(--pink-400)!important}.focus\\:bg-pink-500:focus{background-color:var(--pink-500)!important}.focus\\:bg-pink-600:focus{background-color:var(--pink-600)!important}.focus\\:bg-pink-700:focus{background-color:var(--pink-700)!important}.focus\\:bg-pink-800:focus{background-color:var(--pink-800)!important}.focus\\:bg-pink-900:focus{background-color:var(--pink-900)!important}.hover\\:bg-pink-50:hover{background-color:var(--pink-50)!important}.hover\\:bg-pink-100:hover{background-color:var(--pink-100)!important}.hover\\:bg-pink-200:hover{background-color:var(--pink-200)!important}.hover\\:bg-pink-300:hover{background-color:var(--pink-300)!important}.hover\\:bg-pink-400:hover{background-color:var(--pink-400)!important}.hover\\:bg-pink-500:hover{background-color:var(--pink-500)!important}.hover\\:bg-pink-600:hover{background-color:var(--pink-600)!important}.hover\\:bg-pink-700:hover{background-color:var(--pink-700)!important}.hover\\:bg-pink-800:hover{background-color:var(--pink-800)!important}.hover\\:bg-pink-900:hover{background-color:var(--pink-900)!important}.active\\:bg-pink-50:active{background-color:var(--pink-50)!important}.active\\:bg-pink-100:active{background-color:var(--pink-100)!important}.active\\:bg-pink-200:active{background-color:var(--pink-200)!important}.active\\:bg-pink-300:active{background-color:var(--pink-300)!important}.active\\:bg-pink-400:active{background-color:var(--pink-400)!important}.active\\:bg-pink-500:active{background-color:var(--pink-500)!important}.active\\:bg-pink-600:active{background-color:var(--pink-600)!important}.active\\:bg-pink-700:active{background-color:var(--pink-700)!important}.active\\:bg-pink-800:active{background-color:var(--pink-800)!important}.active\\:bg-pink-900:active{background-color:var(--pink-900)!important}.bg-indigo-50{background-color:var(--indigo-50)!important}.bg-indigo-100{background-color:var(--indigo-100)!important}.bg-indigo-200{background-color:var(--indigo-200)!important}.bg-indigo-300{background-color:var(--indigo-300)!important}.bg-indigo-400{background-color:var(--indigo-400)!important}.bg-indigo-500{background-color:var(--indigo-500)!important}.bg-indigo-600{background-color:var(--indigo-600)!important}.bg-indigo-700{background-color:var(--indigo-700)!important}.bg-indigo-800{background-color:var(--indigo-800)!important}.bg-indigo-900{background-color:var(--indigo-900)!important}.focus\\:bg-indigo-50:focus{background-color:var(--indigo-50)!important}.focus\\:bg-indigo-100:focus{background-color:var(--indigo-100)!important}.focus\\:bg-indigo-200:focus{background-color:var(--indigo-200)!important}.focus\\:bg-indigo-300:focus{background-color:var(--indigo-300)!important}.focus\\:bg-indigo-400:focus{background-color:var(--indigo-400)!important}.focus\\:bg-indigo-500:focus{background-color:var(--indigo-500)!important}.focus\\:bg-indigo-600:focus{background-color:var(--indigo-600)!important}.focus\\:bg-indigo-700:focus{background-color:var(--indigo-700)!important}.focus\\:bg-indigo-800:focus{background-color:var(--indigo-800)!important}.focus\\:bg-indigo-900:focus{background-color:var(--indigo-900)!important}.hover\\:bg-indigo-50:hover{background-color:var(--indigo-50)!important}.hover\\:bg-indigo-100:hover{background-color:var(--indigo-100)!important}.hover\\:bg-indigo-200:hover{background-color:var(--indigo-200)!important}.hover\\:bg-indigo-300:hover{background-color:var(--indigo-300)!important}.hover\\:bg-indigo-400:hover{background-color:var(--indigo-400)!important}.hover\\:bg-indigo-500:hover{background-color:var(--indigo-500)!important}.hover\\:bg-indigo-600:hover{background-color:var(--indigo-600)!important}.hover\\:bg-indigo-700:hover{background-color:var(--indigo-700)!important}.hover\\:bg-indigo-800:hover{background-color:var(--indigo-800)!important}.hover\\:bg-indigo-900:hover{background-color:var(--indigo-900)!important}.active\\:bg-indigo-50:active{background-color:var(--indigo-50)!important}.active\\:bg-indigo-100:active{background-color:var(--indigo-100)!important}.active\\:bg-indigo-200:active{background-color:var(--indigo-200)!important}.active\\:bg-indigo-300:active{background-color:var(--indigo-300)!important}.active\\:bg-indigo-400:active{background-color:var(--indigo-400)!important}.active\\:bg-indigo-500:active{background-color:var(--indigo-500)!important}.active\\:bg-indigo-600:active{background-color:var(--indigo-600)!important}.active\\:bg-indigo-700:active{background-color:var(--indigo-700)!important}.active\\:bg-indigo-800:active{background-color:var(--indigo-800)!important}.active\\:bg-indigo-900:active{background-color:var(--indigo-900)!important}.bg-teal-50{background-color:var(--teal-50)!important}.bg-teal-100{background-color:var(--teal-100)!important}.bg-teal-200{background-color:var(--teal-200)!important}.bg-teal-300{background-color:var(--teal-300)!important}.bg-teal-400{background-color:var(--teal-400)!important}.bg-teal-500{background-color:var(--teal-500)!important}.bg-teal-600{background-color:var(--teal-600)!important}.bg-teal-700{background-color:var(--teal-700)!important}.bg-teal-800{background-color:var(--teal-800)!important}.bg-teal-900{background-color:var(--teal-900)!important}.focus\\:bg-teal-50:focus{background-color:var(--teal-50)!important}.focus\\:bg-teal-100:focus{background-color:var(--teal-100)!important}.focus\\:bg-teal-200:focus{background-color:var(--teal-200)!important}.focus\\:bg-teal-300:focus{background-color:var(--teal-300)!important}.focus\\:bg-teal-400:focus{background-color:var(--teal-400)!important}.focus\\:bg-teal-500:focus{background-color:var(--teal-500)!important}.focus\\:bg-teal-600:focus{background-color:var(--teal-600)!important}.focus\\:bg-teal-700:focus{background-color:var(--teal-700)!important}.focus\\:bg-teal-800:focus{background-color:var(--teal-800)!important}.focus\\:bg-teal-900:focus{background-color:var(--teal-900)!important}.hover\\:bg-teal-50:hover{background-color:var(--teal-50)!important}.hover\\:bg-teal-100:hover{background-color:var(--teal-100)!important}.hover\\:bg-teal-200:hover{background-color:var(--teal-200)!important}.hover\\:bg-teal-300:hover{background-color:var(--teal-300)!important}.hover\\:bg-teal-400:hover{background-color:var(--teal-400)!important}.hover\\:bg-teal-500:hover{background-color:var(--teal-500)!important}.hover\\:bg-teal-600:hover{background-color:var(--teal-600)!important}.hover\\:bg-teal-700:hover{background-color:var(--teal-700)!important}.hover\\:bg-teal-800:hover{background-color:var(--teal-800)!important}.hover\\:bg-teal-900:hover{background-color:var(--teal-900)!important}.active\\:bg-teal-50:active{background-color:var(--teal-50)!important}.active\\:bg-teal-100:active{background-color:var(--teal-100)!important}.active\\:bg-teal-200:active{background-color:var(--teal-200)!important}.active\\:bg-teal-300:active{background-color:var(--teal-300)!important}.active\\:bg-teal-400:active{background-color:var(--teal-400)!important}.active\\:bg-teal-500:active{background-color:var(--teal-500)!important}.active\\:bg-teal-600:active{background-color:var(--teal-600)!important}.active\\:bg-teal-700:active{background-color:var(--teal-700)!important}.active\\:bg-teal-800:active{background-color:var(--teal-800)!important}.active\\:bg-teal-900:active{background-color:var(--teal-900)!important}.bg-orange-50{background-color:var(--orange-50)!important}.bg-orange-100{background-color:var(--orange-100)!important}.bg-orange-200{background-color:var(--orange-200)!important}.bg-orange-300{background-color:var(--orange-300)!important}.bg-orange-400{background-color:var(--orange-400)!important}.bg-orange-500{background-color:var(--orange-500)!important}.bg-orange-600{background-color:var(--orange-600)!important}.bg-orange-700{background-color:var(--orange-700)!important}.bg-orange-800{background-color:var(--orange-800)!important}.bg-orange-900{background-color:var(--orange-900)!important}.focus\\:bg-orange-50:focus{background-color:var(--orange-50)!important}.focus\\:bg-orange-100:focus{background-color:var(--orange-100)!important}.focus\\:bg-orange-200:focus{background-color:var(--orange-200)!important}.focus\\:bg-orange-300:focus{background-color:var(--orange-300)!important}.focus\\:bg-orange-400:focus{background-color:var(--orange-400)!important}.focus\\:bg-orange-500:focus{background-color:var(--orange-500)!important}.focus\\:bg-orange-600:focus{background-color:var(--orange-600)!important}.focus\\:bg-orange-700:focus{background-color:var(--orange-700)!important}.focus\\:bg-orange-800:focus{background-color:var(--orange-800)!important}.focus\\:bg-orange-900:focus{background-color:var(--orange-900)!important}.hover\\:bg-orange-50:hover{background-color:var(--orange-50)!important}.hover\\:bg-orange-100:hover{background-color:var(--orange-100)!important}.hover\\:bg-orange-200:hover{background-color:var(--orange-200)!important}.hover\\:bg-orange-300:hover{background-color:var(--orange-300)!important}.hover\\:bg-orange-400:hover{background-color:var(--orange-400)!important}.hover\\:bg-orange-500:hover{background-color:var(--orange-500)!important}.hover\\:bg-orange-600:hover{background-color:var(--orange-600)!important}.hover\\:bg-orange-700:hover{background-color:var(--orange-700)!important}.hover\\:bg-orange-800:hover{background-color:var(--orange-800)!important}.hover\\:bg-orange-900:hover{background-color:var(--orange-900)!important}.active\\:bg-orange-50:active{background-color:var(--orange-50)!important}.active\\:bg-orange-100:active{background-color:var(--orange-100)!important}.active\\:bg-orange-200:active{background-color:var(--orange-200)!important}.active\\:bg-orange-300:active{background-color:var(--orange-300)!important}.active\\:bg-orange-400:active{background-color:var(--orange-400)!important}.active\\:bg-orange-500:active{background-color:var(--orange-500)!important}.active\\:bg-orange-600:active{background-color:var(--orange-600)!important}.active\\:bg-orange-700:active{background-color:var(--orange-700)!important}.active\\:bg-orange-800:active{background-color:var(--orange-800)!important}.active\\:bg-orange-900:active{background-color:var(--orange-900)!important}.bg-bluegray-50{background-color:var(--bluegray-50)!important}.bg-bluegray-100{background-color:var(--bluegray-100)!important}.bg-bluegray-200{background-color:var(--bluegray-200)!important}.bg-bluegray-300{background-color:var(--bluegray-300)!important}.bg-bluegray-400{background-color:var(--bluegray-400)!important}.bg-bluegray-500{background-color:var(--bluegray-500)!important}.bg-bluegray-600{background-color:var(--bluegray-600)!important}.bg-bluegray-700{background-color:var(--bluegray-700)!important}.bg-bluegray-800{background-color:var(--bluegray-800)!important}.bg-bluegray-900{background-color:var(--bluegray-900)!important}.focus\\:bg-bluegray-50:focus{background-color:var(--bluegray-50)!important}.focus\\:bg-bluegray-100:focus{background-color:var(--bluegray-100)!important}.focus\\:bg-bluegray-200:focus{background-color:var(--bluegray-200)!important}.focus\\:bg-bluegray-300:focus{background-color:var(--bluegray-300)!important}.focus\\:bg-bluegray-400:focus{background-color:var(--bluegray-400)!important}.focus\\:bg-bluegray-500:focus{background-color:var(--bluegray-500)!important}.focus\\:bg-bluegray-600:focus{background-color:var(--bluegray-600)!important}.focus\\:bg-bluegray-700:focus{background-color:var(--bluegray-700)!important}.focus\\:bg-bluegray-800:focus{background-color:var(--bluegray-800)!important}.focus\\:bg-bluegray-900:focus{background-color:var(--bluegray-900)!important}.hover\\:bg-bluegray-50:hover{background-color:var(--bluegray-50)!important}.hover\\:bg-bluegray-100:hover{background-color:var(--bluegray-100)!important}.hover\\:bg-bluegray-200:hover{background-color:var(--bluegray-200)!important}.hover\\:bg-bluegray-300:hover{background-color:var(--bluegray-300)!important}.hover\\:bg-bluegray-400:hover{background-color:var(--bluegray-400)!important}.hover\\:bg-bluegray-500:hover{background-color:var(--bluegray-500)!important}.hover\\:bg-bluegray-600:hover{background-color:var(--bluegray-600)!important}.hover\\:bg-bluegray-700:hover{background-color:var(--bluegray-700)!important}.hover\\:bg-bluegray-800:hover{background-color:var(--bluegray-800)!important}.hover\\:bg-bluegray-900:hover{background-color:var(--bluegray-900)!important}.active\\:bg-bluegray-50:active{background-color:var(--bluegray-50)!important}.active\\:bg-bluegray-100:active{background-color:var(--bluegray-100)!important}.active\\:bg-bluegray-200:active{background-color:var(--bluegray-200)!important}.active\\:bg-bluegray-300:active{background-color:var(--bluegray-300)!important}.active\\:bg-bluegray-400:active{background-color:var(--bluegray-400)!important}.active\\:bg-bluegray-500:active{background-color:var(--bluegray-500)!important}.active\\:bg-bluegray-600:active{background-color:var(--bluegray-600)!important}.active\\:bg-bluegray-700:active{background-color:var(--bluegray-700)!important}.active\\:bg-bluegray-800:active{background-color:var(--bluegray-800)!important}.active\\:bg-bluegray-900:active{background-color:var(--bluegray-900)!important}.bg-purple-50{background-color:var(--purple-50)!important}.bg-purple-100{background-color:var(--purple-100)!important}.bg-purple-200{background-color:var(--purple-200)!important}.bg-purple-300{background-color:var(--purple-300)!important}.bg-purple-400{background-color:var(--purple-400)!important}.bg-purple-500{background-color:var(--purple-500)!important}.bg-purple-600{background-color:var(--purple-600)!important}.bg-purple-700{background-color:var(--purple-700)!important}.bg-purple-800{background-color:var(--purple-800)!important}.bg-purple-900{background-color:var(--purple-900)!important}.focus\\:bg-purple-50:focus{background-color:var(--purple-50)!important}.focus\\:bg-purple-100:focus{background-color:var(--purple-100)!important}.focus\\:bg-purple-200:focus{background-color:var(--purple-200)!important}.focus\\:bg-purple-300:focus{background-color:var(--purple-300)!important}.focus\\:bg-purple-400:focus{background-color:var(--purple-400)!important}.focus\\:bg-purple-500:focus{background-color:var(--purple-500)!important}.focus\\:bg-purple-600:focus{background-color:var(--purple-600)!important}.focus\\:bg-purple-700:focus{background-color:var(--purple-700)!important}.focus\\:bg-purple-800:focus{background-color:var(--purple-800)!important}.focus\\:bg-purple-900:focus{background-color:var(--purple-900)!important}.hover\\:bg-purple-50:hover{background-color:var(--purple-50)!important}.hover\\:bg-purple-100:hover{background-color:var(--purple-100)!important}.hover\\:bg-purple-200:hover{background-color:var(--purple-200)!important}.hover\\:bg-purple-300:hover{background-color:var(--purple-300)!important}.hover\\:bg-purple-400:hover{background-color:var(--purple-400)!important}.hover\\:bg-purple-500:hover{background-color:var(--purple-500)!important}.hover\\:bg-purple-600:hover{background-color:var(--purple-600)!important}.hover\\:bg-purple-700:hover{background-color:var(--purple-700)!important}.hover\\:bg-purple-800:hover{background-color:var(--purple-800)!important}.hover\\:bg-purple-900:hover{background-color:var(--purple-900)!important}.active\\:bg-purple-50:active{background-color:var(--purple-50)!important}.active\\:bg-purple-100:active{background-color:var(--purple-100)!important}.active\\:bg-purple-200:active{background-color:var(--purple-200)!important}.active\\:bg-purple-300:active{background-color:var(--purple-300)!important}.active\\:bg-purple-400:active{background-color:var(--purple-400)!important}.active\\:bg-purple-500:active{background-color:var(--purple-500)!important}.active\\:bg-purple-600:active{background-color:var(--purple-600)!important}.active\\:bg-purple-700:active{background-color:var(--purple-700)!important}.active\\:bg-purple-800:active{background-color:var(--purple-800)!important}.active\\:bg-purple-900:active{background-color:var(--purple-900)!important}.bg-gray-50{background-color:var(--gray-50)!important}.bg-gray-100{background-color:var(--gray-100)!important}.bg-gray-200{background-color:var(--gray-200)!important}.bg-gray-300{background-color:var(--gray-300)!important}.bg-gray-400{background-color:var(--gray-400)!important}.bg-gray-500{background-color:var(--gray-500)!important}.bg-gray-600{background-color:var(--gray-600)!important}.bg-gray-700{background-color:var(--gray-700)!important}.bg-gray-800{background-color:var(--gray-800)!important}.bg-gray-900{background-color:var(--gray-900)!important}.focus\\:bg-gray-50:focus{background-color:var(--gray-50)!important}.focus\\:bg-gray-100:focus{background-color:var(--gray-100)!important}.focus\\:bg-gray-200:focus{background-color:var(--gray-200)!important}.focus\\:bg-gray-300:focus{background-color:var(--gray-300)!important}.focus\\:bg-gray-400:focus{background-color:var(--gray-400)!important}.focus\\:bg-gray-500:focus{background-color:var(--gray-500)!important}.focus\\:bg-gray-600:focus{background-color:var(--gray-600)!important}.focus\\:bg-gray-700:focus{background-color:var(--gray-700)!important}.focus\\:bg-gray-800:focus{background-color:var(--gray-800)!important}.focus\\:bg-gray-900:focus{background-color:var(--gray-900)!important}.hover\\:bg-gray-50:hover{background-color:var(--gray-50)!important}.hover\\:bg-gray-100:hover{background-color:var(--gray-100)!important}.hover\\:bg-gray-200:hover{background-color:var(--gray-200)!important}.hover\\:bg-gray-300:hover{background-color:var(--gray-300)!important}.hover\\:bg-gray-400:hover{background-color:var(--gray-400)!important}.hover\\:bg-gray-500:hover{background-color:var(--gray-500)!important}.hover\\:bg-gray-600:hover{background-color:var(--gray-600)!important}.hover\\:bg-gray-700:hover{background-color:var(--gray-700)!important}.hover\\:bg-gray-800:hover{background-color:var(--gray-800)!important}.hover\\:bg-gray-900:hover{background-color:var(--gray-900)!important}.active\\:bg-gray-50:active{background-color:var(--gray-50)!important}.active\\:bg-gray-100:active{background-color:var(--gray-100)!important}.active\\:bg-gray-200:active{background-color:var(--gray-200)!important}.active\\:bg-gray-300:active{background-color:var(--gray-300)!important}.active\\:bg-gray-400:active{background-color:var(--gray-400)!important}.active\\:bg-gray-500:active{background-color:var(--gray-500)!important}.active\\:bg-gray-600:active{background-color:var(--gray-600)!important}.active\\:bg-gray-700:active{background-color:var(--gray-700)!important}.active\\:bg-gray-800:active{background-color:var(--gray-800)!important}.active\\:bg-gray-900:active{background-color:var(--gray-900)!important}.bg-red-50{background-color:var(--red-50)!important}.bg-red-100{background-color:var(--red-100)!important}.bg-red-200{background-color:var(--red-200)!important}.bg-red-300{background-color:var(--red-300)!important}.bg-red-400{background-color:var(--red-400)!important}.bg-red-500{background-color:var(--red-500)!important}.bg-red-600{background-color:var(--red-600)!important}.bg-red-700{background-color:var(--red-700)!important}.bg-red-800{background-color:var(--red-800)!important}.bg-red-900{background-color:var(--red-900)!important}.focus\\:bg-red-50:focus{background-color:var(--red-50)!important}.focus\\:bg-red-100:focus{background-color:var(--red-100)!important}.focus\\:bg-red-200:focus{background-color:var(--red-200)!important}.focus\\:bg-red-300:focus{background-color:var(--red-300)!important}.focus\\:bg-red-400:focus{background-color:var(--red-400)!important}.focus\\:bg-red-500:focus{background-color:var(--red-500)!important}.focus\\:bg-red-600:focus{background-color:var(--red-600)!important}.focus\\:bg-red-700:focus{background-color:var(--red-700)!important}.focus\\:bg-red-800:focus{background-color:var(--red-800)!important}.focus\\:bg-red-900:focus{background-color:var(--red-900)!important}.hover\\:bg-red-50:hover{background-color:var(--red-50)!important}.hover\\:bg-red-100:hover{background-color:var(--red-100)!important}.hover\\:bg-red-200:hover{background-color:var(--red-200)!important}.hover\\:bg-red-300:hover{background-color:var(--red-300)!important}.hover\\:bg-red-400:hover{background-color:var(--red-400)!important}.hover\\:bg-red-500:hover{background-color:var(--red-500)!important}.hover\\:bg-red-600:hover{background-color:var(--red-600)!important}.hover\\:bg-red-700:hover{background-color:var(--red-700)!important}.hover\\:bg-red-800:hover{background-color:var(--red-800)!important}.hover\\:bg-red-900:hover{background-color:var(--red-900)!important}.active\\:bg-red-50:active{background-color:var(--red-50)!important}.active\\:bg-red-100:active{background-color:var(--red-100)!important}.active\\:bg-red-200:active{background-color:var(--red-200)!important}.active\\:bg-red-300:active{background-color:var(--red-300)!important}.active\\:bg-red-400:active{background-color:var(--red-400)!important}.active\\:bg-red-500:active{background-color:var(--red-500)!important}.active\\:bg-red-600:active{background-color:var(--red-600)!important}.active\\:bg-red-700:active{background-color:var(--red-700)!important}.active\\:bg-red-800:active{background-color:var(--red-800)!important}.active\\:bg-red-900:active{background-color:var(--red-900)!important}.bg-primary-50{background-color:var(--primary-50)!important}.bg-primary-100{background-color:var(--primary-100)!important}.bg-primary-200{background-color:var(--primary-200)!important}.bg-primary-300{background-color:var(--primary-300)!important}.bg-primary-400{background-color:var(--primary-400)!important}.bg-primary-500{background-color:var(--primary-500)!important}.bg-primary-600{background-color:var(--primary-600)!important}.bg-primary-700{background-color:var(--primary-700)!important}.bg-primary-800{background-color:var(--primary-800)!important}.bg-primary-900{background-color:var(--primary-900)!important}.focus\\:bg-primary-50:focus{background-color:var(--primary-50)!important}.focus\\:bg-primary-100:focus{background-color:var(--primary-100)!important}.focus\\:bg-primary-200:focus{background-color:var(--primary-200)!important}.focus\\:bg-primary-300:focus{background-color:var(--primary-300)!important}.focus\\:bg-primary-400:focus{background-color:var(--primary-400)!important}.focus\\:bg-primary-500:focus{background-color:var(--primary-500)!important}.focus\\:bg-primary-600:focus{background-color:var(--primary-600)!important}.focus\\:bg-primary-700:focus{background-color:var(--primary-700)!important}.focus\\:bg-primary-800:focus{background-color:var(--primary-800)!important}.focus\\:bg-primary-900:focus{background-color:var(--primary-900)!important}.hover\\:bg-primary-50:hover{background-color:var(--primary-50)!important}.hover\\:bg-primary-100:hover{background-color:var(--primary-100)!important}.hover\\:bg-primary-200:hover{background-color:var(--primary-200)!important}.hover\\:bg-primary-300:hover{background-color:var(--primary-300)!important}.hover\\:bg-primary-400:hover{background-color:var(--primary-400)!important}.hover\\:bg-primary-500:hover{background-color:var(--primary-500)!important}.hover\\:bg-primary-600:hover{background-color:var(--primary-600)!important}.hover\\:bg-primary-700:hover{background-color:var(--primary-700)!important}.hover\\:bg-primary-800:hover{background-color:var(--primary-800)!important}.hover\\:bg-primary-900:hover{background-color:var(--primary-900)!important}.active\\:bg-primary-50:active{background-color:var(--primary-50)!important}.active\\:bg-primary-100:active{background-color:var(--primary-100)!important}.active\\:bg-primary-200:active{background-color:var(--primary-200)!important}.active\\:bg-primary-300:active{background-color:var(--primary-300)!important}.active\\:bg-primary-400:active{background-color:var(--primary-400)!important}.active\\:bg-primary-500:active{background-color:var(--primary-500)!important}.active\\:bg-primary-600:active{background-color:var(--primary-600)!important}.active\\:bg-primary-700:active{background-color:var(--primary-700)!important}.active\\:bg-primary-800:active{background-color:var(--primary-800)!important}.active\\:bg-primary-900:active{background-color:var(--primary-900)!important}.border-blue-50{border-color:var(--blue-50)!important}.border-blue-100{border-color:var(--blue-100)!important}.border-blue-200{border-color:var(--blue-200)!important}.border-blue-300{border-color:var(--blue-300)!important}.border-blue-400{border-color:var(--blue-400)!important}.border-blue-500{border-color:var(--blue-500)!important}.border-blue-600{border-color:var(--blue-600)!important}.border-blue-700{border-color:var(--blue-700)!important}.border-blue-800{border-color:var(--blue-800)!important}.border-blue-900{border-color:var(--blue-900)!important}.focus\\:border-blue-50:focus{border-color:var(--blue-50)!important}.focus\\:border-blue-100:focus{border-color:var(--blue-100)!important}.focus\\:border-blue-200:focus{border-color:var(--blue-200)!important}.focus\\:border-blue-300:focus{border-color:var(--blue-300)!important}.focus\\:border-blue-400:focus{border-color:var(--blue-400)!important}.focus\\:border-blue-500:focus{border-color:var(--blue-500)!important}.focus\\:border-blue-600:focus{border-color:var(--blue-600)!important}.focus\\:border-blue-700:focus{border-color:var(--blue-700)!important}.focus\\:border-blue-800:focus{border-color:var(--blue-800)!important}.focus\\:border-blue-900:focus{border-color:var(--blue-900)!important}.hover\\:border-blue-50:hover{border-color:var(--blue-50)!important}.hover\\:border-blue-100:hover{border-color:var(--blue-100)!important}.hover\\:border-blue-200:hover{border-color:var(--blue-200)!important}.hover\\:border-blue-300:hover{border-color:var(--blue-300)!important}.hover\\:border-blue-400:hover{border-color:var(--blue-400)!important}.hover\\:border-blue-500:hover{border-color:var(--blue-500)!important}.hover\\:border-blue-600:hover{border-color:var(--blue-600)!important}.hover\\:border-blue-700:hover{border-color:var(--blue-700)!important}.hover\\:border-blue-800:hover{border-color:var(--blue-800)!important}.hover\\:border-blue-900:hover{border-color:var(--blue-900)!important}.active\\:border-blue-50:active{border-color:var(--blue-50)!important}.active\\:border-blue-100:active{border-color:var(--blue-100)!important}.active\\:border-blue-200:active{border-color:var(--blue-200)!important}.active\\:border-blue-300:active{border-color:var(--blue-300)!important}.active\\:border-blue-400:active{border-color:var(--blue-400)!important}.active\\:border-blue-500:active{border-color:var(--blue-500)!important}.active\\:border-blue-600:active{border-color:var(--blue-600)!important}.active\\:border-blue-700:active{border-color:var(--blue-700)!important}.active\\:border-blue-800:active{border-color:var(--blue-800)!important}.active\\:border-blue-900:active{border-color:var(--blue-900)!important}.border-green-50{border-color:var(--green-50)!important}.border-green-100{border-color:var(--green-100)!important}.border-green-200{border-color:var(--green-200)!important}.border-green-300{border-color:var(--green-300)!important}.border-green-400{border-color:var(--green-400)!important}.border-green-500{border-color:var(--green-500)!important}.border-green-600{border-color:var(--green-600)!important}.border-green-700{border-color:var(--green-700)!important}.border-green-800{border-color:var(--green-800)!important}.border-green-900{border-color:var(--green-900)!important}.focus\\:border-green-50:focus{border-color:var(--green-50)!important}.focus\\:border-green-100:focus{border-color:var(--green-100)!important}.focus\\:border-green-200:focus{border-color:var(--green-200)!important}.focus\\:border-green-300:focus{border-color:var(--green-300)!important}.focus\\:border-green-400:focus{border-color:var(--green-400)!important}.focus\\:border-green-500:focus{border-color:var(--green-500)!important}.focus\\:border-green-600:focus{border-color:var(--green-600)!important}.focus\\:border-green-700:focus{border-color:var(--green-700)!important}.focus\\:border-green-800:focus{border-color:var(--green-800)!important}.focus\\:border-green-900:focus{border-color:var(--green-900)!important}.hover\\:border-green-50:hover{border-color:var(--green-50)!important}.hover\\:border-green-100:hover{border-color:var(--green-100)!important}.hover\\:border-green-200:hover{border-color:var(--green-200)!important}.hover\\:border-green-300:hover{border-color:var(--green-300)!important}.hover\\:border-green-400:hover{border-color:var(--green-400)!important}.hover\\:border-green-500:hover{border-color:var(--green-500)!important}.hover\\:border-green-600:hover{border-color:var(--green-600)!important}.hover\\:border-green-700:hover{border-color:var(--green-700)!important}.hover\\:border-green-800:hover{border-color:var(--green-800)!important}.hover\\:border-green-900:hover{border-color:var(--green-900)!important}.active\\:border-green-50:active{border-color:var(--green-50)!important}.active\\:border-green-100:active{border-color:var(--green-100)!important}.active\\:border-green-200:active{border-color:var(--green-200)!important}.active\\:border-green-300:active{border-color:var(--green-300)!important}.active\\:border-green-400:active{border-color:var(--green-400)!important}.active\\:border-green-500:active{border-color:var(--green-500)!important}.active\\:border-green-600:active{border-color:var(--green-600)!important}.active\\:border-green-700:active{border-color:var(--green-700)!important}.active\\:border-green-800:active{border-color:var(--green-800)!important}.active\\:border-green-900:active{border-color:var(--green-900)!important}.border-yellow-50{border-color:var(--yellow-50)!important}.border-yellow-100{border-color:var(--yellow-100)!important}.border-yellow-200{border-color:var(--yellow-200)!important}.border-yellow-300{border-color:var(--yellow-300)!important}.border-yellow-400{border-color:var(--yellow-400)!important}.border-yellow-500{border-color:var(--yellow-500)!important}.border-yellow-600{border-color:var(--yellow-600)!important}.border-yellow-700{border-color:var(--yellow-700)!important}.border-yellow-800{border-color:var(--yellow-800)!important}.border-yellow-900{border-color:var(--yellow-900)!important}.focus\\:border-yellow-50:focus{border-color:var(--yellow-50)!important}.focus\\:border-yellow-100:focus{border-color:var(--yellow-100)!important}.focus\\:border-yellow-200:focus{border-color:var(--yellow-200)!important}.focus\\:border-yellow-300:focus{border-color:var(--yellow-300)!important}.focus\\:border-yellow-400:focus{border-color:var(--yellow-400)!important}.focus\\:border-yellow-500:focus{border-color:var(--yellow-500)!important}.focus\\:border-yellow-600:focus{border-color:var(--yellow-600)!important}.focus\\:border-yellow-700:focus{border-color:var(--yellow-700)!important}.focus\\:border-yellow-800:focus{border-color:var(--yellow-800)!important}.focus\\:border-yellow-900:focus{border-color:var(--yellow-900)!important}.hover\\:border-yellow-50:hover{border-color:var(--yellow-50)!important}.hover\\:border-yellow-100:hover{border-color:var(--yellow-100)!important}.hover\\:border-yellow-200:hover{border-color:var(--yellow-200)!important}.hover\\:border-yellow-300:hover{border-color:var(--yellow-300)!important}.hover\\:border-yellow-400:hover{border-color:var(--yellow-400)!important}.hover\\:border-yellow-500:hover{border-color:var(--yellow-500)!important}.hover\\:border-yellow-600:hover{border-color:var(--yellow-600)!important}.hover\\:border-yellow-700:hover{border-color:var(--yellow-700)!important}.hover\\:border-yellow-800:hover{border-color:var(--yellow-800)!important}.hover\\:border-yellow-900:hover{border-color:var(--yellow-900)!important}.active\\:border-yellow-50:active{border-color:var(--yellow-50)!important}.active\\:border-yellow-100:active{border-color:var(--yellow-100)!important}.active\\:border-yellow-200:active{border-color:var(--yellow-200)!important}.active\\:border-yellow-300:active{border-color:var(--yellow-300)!important}.active\\:border-yellow-400:active{border-color:var(--yellow-400)!important}.active\\:border-yellow-500:active{border-color:var(--yellow-500)!important}.active\\:border-yellow-600:active{border-color:var(--yellow-600)!important}.active\\:border-yellow-700:active{border-color:var(--yellow-700)!important}.active\\:border-yellow-800:active{border-color:var(--yellow-800)!important}.active\\:border-yellow-900:active{border-color:var(--yellow-900)!important}.border-cyan-50{border-color:var(--cyan-50)!important}.border-cyan-100{border-color:var(--cyan-100)!important}.border-cyan-200{border-color:var(--cyan-200)!important}.border-cyan-300{border-color:var(--cyan-300)!important}.border-cyan-400{border-color:var(--cyan-400)!important}.border-cyan-500{border-color:var(--cyan-500)!important}.border-cyan-600{border-color:var(--cyan-600)!important}.border-cyan-700{border-color:var(--cyan-700)!important}.border-cyan-800{border-color:var(--cyan-800)!important}.border-cyan-900{border-color:var(--cyan-900)!important}.focus\\:border-cyan-50:focus{border-color:var(--cyan-50)!important}.focus\\:border-cyan-100:focus{border-color:var(--cyan-100)!important}.focus\\:border-cyan-200:focus{border-color:var(--cyan-200)!important}.focus\\:border-cyan-300:focus{border-color:var(--cyan-300)!important}.focus\\:border-cyan-400:focus{border-color:var(--cyan-400)!important}.focus\\:border-cyan-500:focus{border-color:var(--cyan-500)!important}.focus\\:border-cyan-600:focus{border-color:var(--cyan-600)!important}.focus\\:border-cyan-700:focus{border-color:var(--cyan-700)!important}.focus\\:border-cyan-800:focus{border-color:var(--cyan-800)!important}.focus\\:border-cyan-900:focus{border-color:var(--cyan-900)!important}.hover\\:border-cyan-50:hover{border-color:var(--cyan-50)!important}.hover\\:border-cyan-100:hover{border-color:var(--cyan-100)!important}.hover\\:border-cyan-200:hover{border-color:var(--cyan-200)!important}.hover\\:border-cyan-300:hover{border-color:var(--cyan-300)!important}.hover\\:border-cyan-400:hover{border-color:var(--cyan-400)!important}.hover\\:border-cyan-500:hover{border-color:var(--cyan-500)!important}.hover\\:border-cyan-600:hover{border-color:var(--cyan-600)!important}.hover\\:border-cyan-700:hover{border-color:var(--cyan-700)!important}.hover\\:border-cyan-800:hover{border-color:var(--cyan-800)!important}.hover\\:border-cyan-900:hover{border-color:var(--cyan-900)!important}.active\\:border-cyan-50:active{border-color:var(--cyan-50)!important}.active\\:border-cyan-100:active{border-color:var(--cyan-100)!important}.active\\:border-cyan-200:active{border-color:var(--cyan-200)!important}.active\\:border-cyan-300:active{border-color:var(--cyan-300)!important}.active\\:border-cyan-400:active{border-color:var(--cyan-400)!important}.active\\:border-cyan-500:active{border-color:var(--cyan-500)!important}.active\\:border-cyan-600:active{border-color:var(--cyan-600)!important}.active\\:border-cyan-700:active{border-color:var(--cyan-700)!important}.active\\:border-cyan-800:active{border-color:var(--cyan-800)!important}.active\\:border-cyan-900:active{border-color:var(--cyan-900)!important}.border-pink-50{border-color:var(--pink-50)!important}.border-pink-100{border-color:var(--pink-100)!important}.border-pink-200{border-color:var(--pink-200)!important}.border-pink-300{border-color:var(--pink-300)!important}.border-pink-400{border-color:var(--pink-400)!important}.border-pink-500{border-color:var(--pink-500)!important}.border-pink-600{border-color:var(--pink-600)!important}.border-pink-700{border-color:var(--pink-700)!important}.border-pink-800{border-color:var(--pink-800)!important}.border-pink-900{border-color:var(--pink-900)!important}.focus\\:border-pink-50:focus{border-color:var(--pink-50)!important}.focus\\:border-pink-100:focus{border-color:var(--pink-100)!important}.focus\\:border-pink-200:focus{border-color:var(--pink-200)!important}.focus\\:border-pink-300:focus{border-color:var(--pink-300)!important}.focus\\:border-pink-400:focus{border-color:var(--pink-400)!important}.focus\\:border-pink-500:focus{border-color:var(--pink-500)!important}.focus\\:border-pink-600:focus{border-color:var(--pink-600)!important}.focus\\:border-pink-700:focus{border-color:var(--pink-700)!important}.focus\\:border-pink-800:focus{border-color:var(--pink-800)!important}.focus\\:border-pink-900:focus{border-color:var(--pink-900)!important}.hover\\:border-pink-50:hover{border-color:var(--pink-50)!important}.hover\\:border-pink-100:hover{border-color:var(--pink-100)!important}.hover\\:border-pink-200:hover{border-color:var(--pink-200)!important}.hover\\:border-pink-300:hover{border-color:var(--pink-300)!important}.hover\\:border-pink-400:hover{border-color:var(--pink-400)!important}.hover\\:border-pink-500:hover{border-color:var(--pink-500)!important}.hover\\:border-pink-600:hover{border-color:var(--pink-600)!important}.hover\\:border-pink-700:hover{border-color:var(--pink-700)!important}.hover\\:border-pink-800:hover{border-color:var(--pink-800)!important}.hover\\:border-pink-900:hover{border-color:var(--pink-900)!important}.active\\:border-pink-50:active{border-color:var(--pink-50)!important}.active\\:border-pink-100:active{border-color:var(--pink-100)!important}.active\\:border-pink-200:active{border-color:var(--pink-200)!important}.active\\:border-pink-300:active{border-color:var(--pink-300)!important}.active\\:border-pink-400:active{border-color:var(--pink-400)!important}.active\\:border-pink-500:active{border-color:var(--pink-500)!important}.active\\:border-pink-600:active{border-color:var(--pink-600)!important}.active\\:border-pink-700:active{border-color:var(--pink-700)!important}.active\\:border-pink-800:active{border-color:var(--pink-800)!important}.active\\:border-pink-900:active{border-color:var(--pink-900)!important}.border-indigo-50{border-color:var(--indigo-50)!important}.border-indigo-100{border-color:var(--indigo-100)!important}.border-indigo-200{border-color:var(--indigo-200)!important}.border-indigo-300{border-color:var(--indigo-300)!important}.border-indigo-400{border-color:var(--indigo-400)!important}.border-indigo-500{border-color:var(--indigo-500)!important}.border-indigo-600{border-color:var(--indigo-600)!important}.border-indigo-700{border-color:var(--indigo-700)!important}.border-indigo-800{border-color:var(--indigo-800)!important}.border-indigo-900{border-color:var(--indigo-900)!important}.focus\\:border-indigo-50:focus{border-color:var(--indigo-50)!important}.focus\\:border-indigo-100:focus{border-color:var(--indigo-100)!important}.focus\\:border-indigo-200:focus{border-color:var(--indigo-200)!important}.focus\\:border-indigo-300:focus{border-color:var(--indigo-300)!important}.focus\\:border-indigo-400:focus{border-color:var(--indigo-400)!important}.focus\\:border-indigo-500:focus{border-color:var(--indigo-500)!important}.focus\\:border-indigo-600:focus{border-color:var(--indigo-600)!important}.focus\\:border-indigo-700:focus{border-color:var(--indigo-700)!important}.focus\\:border-indigo-800:focus{border-color:var(--indigo-800)!important}.focus\\:border-indigo-900:focus{border-color:var(--indigo-900)!important}.hover\\:border-indigo-50:hover{border-color:var(--indigo-50)!important}.hover\\:border-indigo-100:hover{border-color:var(--indigo-100)!important}.hover\\:border-indigo-200:hover{border-color:var(--indigo-200)!important}.hover\\:border-indigo-300:hover{border-color:var(--indigo-300)!important}.hover\\:border-indigo-400:hover{border-color:var(--indigo-400)!important}.hover\\:border-indigo-500:hover{border-color:var(--indigo-500)!important}.hover\\:border-indigo-600:hover{border-color:var(--indigo-600)!important}.hover\\:border-indigo-700:hover{border-color:var(--indigo-700)!important}.hover\\:border-indigo-800:hover{border-color:var(--indigo-800)!important}.hover\\:border-indigo-900:hover{border-color:var(--indigo-900)!important}.active\\:border-indigo-50:active{border-color:var(--indigo-50)!important}.active\\:border-indigo-100:active{border-color:var(--indigo-100)!important}.active\\:border-indigo-200:active{border-color:var(--indigo-200)!important}.active\\:border-indigo-300:active{border-color:var(--indigo-300)!important}.active\\:border-indigo-400:active{border-color:var(--indigo-400)!important}.active\\:border-indigo-500:active{border-color:var(--indigo-500)!important}.active\\:border-indigo-600:active{border-color:var(--indigo-600)!important}.active\\:border-indigo-700:active{border-color:var(--indigo-700)!important}.active\\:border-indigo-800:active{border-color:var(--indigo-800)!important}.active\\:border-indigo-900:active{border-color:var(--indigo-900)!important}.border-teal-50{border-color:var(--teal-50)!important}.border-teal-100{border-color:var(--teal-100)!important}.border-teal-200{border-color:var(--teal-200)!important}.border-teal-300{border-color:var(--teal-300)!important}.border-teal-400{border-color:var(--teal-400)!important}.border-teal-500{border-color:var(--teal-500)!important}.border-teal-600{border-color:var(--teal-600)!important}.border-teal-700{border-color:var(--teal-700)!important}.border-teal-800{border-color:var(--teal-800)!important}.border-teal-900{border-color:var(--teal-900)!important}.focus\\:border-teal-50:focus{border-color:var(--teal-50)!important}.focus\\:border-teal-100:focus{border-color:var(--teal-100)!important}.focus\\:border-teal-200:focus{border-color:var(--teal-200)!important}.focus\\:border-teal-300:focus{border-color:var(--teal-300)!important}.focus\\:border-teal-400:focus{border-color:var(--teal-400)!important}.focus\\:border-teal-500:focus{border-color:var(--teal-500)!important}.focus\\:border-teal-600:focus{border-color:var(--teal-600)!important}.focus\\:border-teal-700:focus{border-color:var(--teal-700)!important}.focus\\:border-teal-800:focus{border-color:var(--teal-800)!important}.focus\\:border-teal-900:focus{border-color:var(--teal-900)!important}.hover\\:border-teal-50:hover{border-color:var(--teal-50)!important}.hover\\:border-teal-100:hover{border-color:var(--teal-100)!important}.hover\\:border-teal-200:hover{border-color:var(--teal-200)!important}.hover\\:border-teal-300:hover{border-color:var(--teal-300)!important}.hover\\:border-teal-400:hover{border-color:var(--teal-400)!important}.hover\\:border-teal-500:hover{border-color:var(--teal-500)!important}.hover\\:border-teal-600:hover{border-color:var(--teal-600)!important}.hover\\:border-teal-700:hover{border-color:var(--teal-700)!important}.hover\\:border-teal-800:hover{border-color:var(--teal-800)!important}.hover\\:border-teal-900:hover{border-color:var(--teal-900)!important}.active\\:border-teal-50:active{border-color:var(--teal-50)!important}.active\\:border-teal-100:active{border-color:var(--teal-100)!important}.active\\:border-teal-200:active{border-color:var(--teal-200)!important}.active\\:border-teal-300:active{border-color:var(--teal-300)!important}.active\\:border-teal-400:active{border-color:var(--teal-400)!important}.active\\:border-teal-500:active{border-color:var(--teal-500)!important}.active\\:border-teal-600:active{border-color:var(--teal-600)!important}.active\\:border-teal-700:active{border-color:var(--teal-700)!important}.active\\:border-teal-800:active{border-color:var(--teal-800)!important}.active\\:border-teal-900:active{border-color:var(--teal-900)!important}.border-orange-50{border-color:var(--orange-50)!important}.border-orange-100{border-color:var(--orange-100)!important}.border-orange-200{border-color:var(--orange-200)!important}.border-orange-300{border-color:var(--orange-300)!important}.border-orange-400{border-color:var(--orange-400)!important}.border-orange-500{border-color:var(--orange-500)!important}.border-orange-600{border-color:var(--orange-600)!important}.border-orange-700{border-color:var(--orange-700)!important}.border-orange-800{border-color:var(--orange-800)!important}.border-orange-900{border-color:var(--orange-900)!important}.focus\\:border-orange-50:focus{border-color:var(--orange-50)!important}.focus\\:border-orange-100:focus{border-color:var(--orange-100)!important}.focus\\:border-orange-200:focus{border-color:var(--orange-200)!important}.focus\\:border-orange-300:focus{border-color:var(--orange-300)!important}.focus\\:border-orange-400:focus{border-color:var(--orange-400)!important}.focus\\:border-orange-500:focus{border-color:var(--orange-500)!important}.focus\\:border-orange-600:focus{border-color:var(--orange-600)!important}.focus\\:border-orange-700:focus{border-color:var(--orange-700)!important}.focus\\:border-orange-800:focus{border-color:var(--orange-800)!important}.focus\\:border-orange-900:focus{border-color:var(--orange-900)!important}.hover\\:border-orange-50:hover{border-color:var(--orange-50)!important}.hover\\:border-orange-100:hover{border-color:var(--orange-100)!important}.hover\\:border-orange-200:hover{border-color:var(--orange-200)!important}.hover\\:border-orange-300:hover{border-color:var(--orange-300)!important}.hover\\:border-orange-400:hover{border-color:var(--orange-400)!important}.hover\\:border-orange-500:hover{border-color:var(--orange-500)!important}.hover\\:border-orange-600:hover{border-color:var(--orange-600)!important}.hover\\:border-orange-700:hover{border-color:var(--orange-700)!important}.hover\\:border-orange-800:hover{border-color:var(--orange-800)!important}.hover\\:border-orange-900:hover{border-color:var(--orange-900)!important}.active\\:border-orange-50:active{border-color:var(--orange-50)!important}.active\\:border-orange-100:active{border-color:var(--orange-100)!important}.active\\:border-orange-200:active{border-color:var(--orange-200)!important}.active\\:border-orange-300:active{border-color:var(--orange-300)!important}.active\\:border-orange-400:active{border-color:var(--orange-400)!important}.active\\:border-orange-500:active{border-color:var(--orange-500)!important}.active\\:border-orange-600:active{border-color:var(--orange-600)!important}.active\\:border-orange-700:active{border-color:var(--orange-700)!important}.active\\:border-orange-800:active{border-color:var(--orange-800)!important}.active\\:border-orange-900:active{border-color:var(--orange-900)!important}.border-bluegray-50{border-color:var(--bluegray-50)!important}.border-bluegray-100{border-color:var(--bluegray-100)!important}.border-bluegray-200{border-color:var(--bluegray-200)!important}.border-bluegray-300{border-color:var(--bluegray-300)!important}.border-bluegray-400{border-color:var(--bluegray-400)!important}.border-bluegray-500{border-color:var(--bluegray-500)!important}.border-bluegray-600{border-color:var(--bluegray-600)!important}.border-bluegray-700{border-color:var(--bluegray-700)!important}.border-bluegray-800{border-color:var(--bluegray-800)!important}.border-bluegray-900{border-color:var(--bluegray-900)!important}.focus\\:border-bluegray-50:focus{border-color:var(--bluegray-50)!important}.focus\\:border-bluegray-100:focus{border-color:var(--bluegray-100)!important}.focus\\:border-bluegray-200:focus{border-color:var(--bluegray-200)!important}.focus\\:border-bluegray-300:focus{border-color:var(--bluegray-300)!important}.focus\\:border-bluegray-400:focus{border-color:var(--bluegray-400)!important}.focus\\:border-bluegray-500:focus{border-color:var(--bluegray-500)!important}.focus\\:border-bluegray-600:focus{border-color:var(--bluegray-600)!important}.focus\\:border-bluegray-700:focus{border-color:var(--bluegray-700)!important}.focus\\:border-bluegray-800:focus{border-color:var(--bluegray-800)!important}.focus\\:border-bluegray-900:focus{border-color:var(--bluegray-900)!important}.hover\\:border-bluegray-50:hover{border-color:var(--bluegray-50)!important}.hover\\:border-bluegray-100:hover{border-color:var(--bluegray-100)!important}.hover\\:border-bluegray-200:hover{border-color:var(--bluegray-200)!important}.hover\\:border-bluegray-300:hover{border-color:var(--bluegray-300)!important}.hover\\:border-bluegray-400:hover{border-color:var(--bluegray-400)!important}.hover\\:border-bluegray-500:hover{border-color:var(--bluegray-500)!important}.hover\\:border-bluegray-600:hover{border-color:var(--bluegray-600)!important}.hover\\:border-bluegray-700:hover{border-color:var(--bluegray-700)!important}.hover\\:border-bluegray-800:hover{border-color:var(--bluegray-800)!important}.hover\\:border-bluegray-900:hover{border-color:var(--bluegray-900)!important}.active\\:border-bluegray-50:active{border-color:var(--bluegray-50)!important}.active\\:border-bluegray-100:active{border-color:var(--bluegray-100)!important}.active\\:border-bluegray-200:active{border-color:var(--bluegray-200)!important}.active\\:border-bluegray-300:active{border-color:var(--bluegray-300)!important}.active\\:border-bluegray-400:active{border-color:var(--bluegray-400)!important}.active\\:border-bluegray-500:active{border-color:var(--bluegray-500)!important}.active\\:border-bluegray-600:active{border-color:var(--bluegray-600)!important}.active\\:border-bluegray-700:active{border-color:var(--bluegray-700)!important}.active\\:border-bluegray-800:active{border-color:var(--bluegray-800)!important}.active\\:border-bluegray-900:active{border-color:var(--bluegray-900)!important}.border-purple-50{border-color:var(--purple-50)!important}.border-purple-100{border-color:var(--purple-100)!important}.border-purple-200{border-color:var(--purple-200)!important}.border-purple-300{border-color:var(--purple-300)!important}.border-purple-400{border-color:var(--purple-400)!important}.border-purple-500{border-color:var(--purple-500)!important}.border-purple-600{border-color:var(--purple-600)!important}.border-purple-700{border-color:var(--purple-700)!important}.border-purple-800{border-color:var(--purple-800)!important}.border-purple-900{border-color:var(--purple-900)!important}.focus\\:border-purple-50:focus{border-color:var(--purple-50)!important}.focus\\:border-purple-100:focus{border-color:var(--purple-100)!important}.focus\\:border-purple-200:focus{border-color:var(--purple-200)!important}.focus\\:border-purple-300:focus{border-color:var(--purple-300)!important}.focus\\:border-purple-400:focus{border-color:var(--purple-400)!important}.focus\\:border-purple-500:focus{border-color:var(--purple-500)!important}.focus\\:border-purple-600:focus{border-color:var(--purple-600)!important}.focus\\:border-purple-700:focus{border-color:var(--purple-700)!important}.focus\\:border-purple-800:focus{border-color:var(--purple-800)!important}.focus\\:border-purple-900:focus{border-color:var(--purple-900)!important}.hover\\:border-purple-50:hover{border-color:var(--purple-50)!important}.hover\\:border-purple-100:hover{border-color:var(--purple-100)!important}.hover\\:border-purple-200:hover{border-color:var(--purple-200)!important}.hover\\:border-purple-300:hover{border-color:var(--purple-300)!important}.hover\\:border-purple-400:hover{border-color:var(--purple-400)!important}.hover\\:border-purple-500:hover{border-color:var(--purple-500)!important}.hover\\:border-purple-600:hover{border-color:var(--purple-600)!important}.hover\\:border-purple-700:hover{border-color:var(--purple-700)!important}.hover\\:border-purple-800:hover{border-color:var(--purple-800)!important}.hover\\:border-purple-900:hover{border-color:var(--purple-900)!important}.active\\:border-purple-50:active{border-color:var(--purple-50)!important}.active\\:border-purple-100:active{border-color:var(--purple-100)!important}.active\\:border-purple-200:active{border-color:var(--purple-200)!important}.active\\:border-purple-300:active{border-color:var(--purple-300)!important}.active\\:border-purple-400:active{border-color:var(--purple-400)!important}.active\\:border-purple-500:active{border-color:var(--purple-500)!important}.active\\:border-purple-600:active{border-color:var(--purple-600)!important}.active\\:border-purple-700:active{border-color:var(--purple-700)!important}.active\\:border-purple-800:active{border-color:var(--purple-800)!important}.active\\:border-purple-900:active{border-color:var(--purple-900)!important}.border-gray-50{border-color:var(--gray-50)!important}.border-gray-100{border-color:var(--gray-100)!important}.border-gray-200{border-color:var(--gray-200)!important}.border-gray-300{border-color:var(--gray-300)!important}.border-gray-400{border-color:var(--gray-400)!important}.border-gray-500{border-color:var(--gray-500)!important}.border-gray-600{border-color:var(--gray-600)!important}.border-gray-700{border-color:var(--gray-700)!important}.border-gray-800{border-color:var(--gray-800)!important}.border-gray-900{border-color:var(--gray-900)!important}.focus\\:border-gray-50:focus{border-color:var(--gray-50)!important}.focus\\:border-gray-100:focus{border-color:var(--gray-100)!important}.focus\\:border-gray-200:focus{border-color:var(--gray-200)!important}.focus\\:border-gray-300:focus{border-color:var(--gray-300)!important}.focus\\:border-gray-400:focus{border-color:var(--gray-400)!important}.focus\\:border-gray-500:focus{border-color:var(--gray-500)!important}.focus\\:border-gray-600:focus{border-color:var(--gray-600)!important}.focus\\:border-gray-700:focus{border-color:var(--gray-700)!important}.focus\\:border-gray-800:focus{border-color:var(--gray-800)!important}.focus\\:border-gray-900:focus{border-color:var(--gray-900)!important}.hover\\:border-gray-50:hover{border-color:var(--gray-50)!important}.hover\\:border-gray-100:hover{border-color:var(--gray-100)!important}.hover\\:border-gray-200:hover{border-color:var(--gray-200)!important}.hover\\:border-gray-300:hover{border-color:var(--gray-300)!important}.hover\\:border-gray-400:hover{border-color:var(--gray-400)!important}.hover\\:border-gray-500:hover{border-color:var(--gray-500)!important}.hover\\:border-gray-600:hover{border-color:var(--gray-600)!important}.hover\\:border-gray-700:hover{border-color:var(--gray-700)!important}.hover\\:border-gray-800:hover{border-color:var(--gray-800)!important}.hover\\:border-gray-900:hover{border-color:var(--gray-900)!important}.active\\:border-gray-50:active{border-color:var(--gray-50)!important}.active\\:border-gray-100:active{border-color:var(--gray-100)!important}.active\\:border-gray-200:active{border-color:var(--gray-200)!important}.active\\:border-gray-300:active{border-color:var(--gray-300)!important}.active\\:border-gray-400:active{border-color:var(--gray-400)!important}.active\\:border-gray-500:active{border-color:var(--gray-500)!important}.active\\:border-gray-600:active{border-color:var(--gray-600)!important}.active\\:border-gray-700:active{border-color:var(--gray-700)!important}.active\\:border-gray-800:active{border-color:var(--gray-800)!important}.active\\:border-gray-900:active{border-color:var(--gray-900)!important}.border-red-50{border-color:var(--red-50)!important}.border-red-100{border-color:var(--red-100)!important}.border-red-200{border-color:var(--red-200)!important}.border-red-300{border-color:var(--red-300)!important}.border-red-400{border-color:var(--red-400)!important}.border-red-500{border-color:var(--red-500)!important}.border-red-600{border-color:var(--red-600)!important}.border-red-700{border-color:var(--red-700)!important}.border-red-800{border-color:var(--red-800)!important}.border-red-900{border-color:var(--red-900)!important}.focus\\:border-red-50:focus{border-color:var(--red-50)!important}.focus\\:border-red-100:focus{border-color:var(--red-100)!important}.focus\\:border-red-200:focus{border-color:var(--red-200)!important}.focus\\:border-red-300:focus{border-color:var(--red-300)!important}.focus\\:border-red-400:focus{border-color:var(--red-400)!important}.focus\\:border-red-500:focus{border-color:var(--red-500)!important}.focus\\:border-red-600:focus{border-color:var(--red-600)!important}.focus\\:border-red-700:focus{border-color:var(--red-700)!important}.focus\\:border-red-800:focus{border-color:var(--red-800)!important}.focus\\:border-red-900:focus{border-color:var(--red-900)!important}.hover\\:border-red-50:hover{border-color:var(--red-50)!important}.hover\\:border-red-100:hover{border-color:var(--red-100)!important}.hover\\:border-red-200:hover{border-color:var(--red-200)!important}.hover\\:border-red-300:hover{border-color:var(--red-300)!important}.hover\\:border-red-400:hover{border-color:var(--red-400)!important}.hover\\:border-red-500:hover{border-color:var(--red-500)!important}.hover\\:border-red-600:hover{border-color:var(--red-600)!important}.hover\\:border-red-700:hover{border-color:var(--red-700)!important}.hover\\:border-red-800:hover{border-color:var(--red-800)!important}.hover\\:border-red-900:hover{border-color:var(--red-900)!important}.active\\:border-red-50:active{border-color:var(--red-50)!important}.active\\:border-red-100:active{border-color:var(--red-100)!important}.active\\:border-red-200:active{border-color:var(--red-200)!important}.active\\:border-red-300:active{border-color:var(--red-300)!important}.active\\:border-red-400:active{border-color:var(--red-400)!important}.active\\:border-red-500:active{border-color:var(--red-500)!important}.active\\:border-red-600:active{border-color:var(--red-600)!important}.active\\:border-red-700:active{border-color:var(--red-700)!important}.active\\:border-red-800:active{border-color:var(--red-800)!important}.active\\:border-red-900:active{border-color:var(--red-900)!important}.border-primary-50{border-color:var(--primary-50)!important}.border-primary-100{border-color:var(--primary-100)!important}.border-primary-200{border-color:var(--primary-200)!important}.border-primary-300{border-color:var(--primary-300)!important}.border-primary-400{border-color:var(--primary-400)!important}.border-primary-500{border-color:var(--primary-500)!important}.border-primary-600{border-color:var(--primary-600)!important}.border-primary-700{border-color:var(--primary-700)!important}.border-primary-800{border-color:var(--primary-800)!important}.border-primary-900{border-color:var(--primary-900)!important}.focus\\:border-primary-50:focus{border-color:var(--primary-50)!important}.focus\\:border-primary-100:focus{border-color:var(--primary-100)!important}.focus\\:border-primary-200:focus{border-color:var(--primary-200)!important}.focus\\:border-primary-300:focus{border-color:var(--primary-300)!important}.focus\\:border-primary-400:focus{border-color:var(--primary-400)!important}.focus\\:border-primary-500:focus{border-color:var(--primary-500)!important}.focus\\:border-primary-600:focus{border-color:var(--primary-600)!important}.focus\\:border-primary-700:focus{border-color:var(--primary-700)!important}.focus\\:border-primary-800:focus{border-color:var(--primary-800)!important}.focus\\:border-primary-900:focus{border-color:var(--primary-900)!important}.hover\\:border-primary-50:hover{border-color:var(--primary-50)!important}.hover\\:border-primary-100:hover{border-color:var(--primary-100)!important}.hover\\:border-primary-200:hover{border-color:var(--primary-200)!important}.hover\\:border-primary-300:hover{border-color:var(--primary-300)!important}.hover\\:border-primary-400:hover{border-color:var(--primary-400)!important}.hover\\:border-primary-500:hover{border-color:var(--primary-500)!important}.hover\\:border-primary-600:hover{border-color:var(--primary-600)!important}.hover\\:border-primary-700:hover{border-color:var(--primary-700)!important}.hover\\:border-primary-800:hover{border-color:var(--primary-800)!important}.hover\\:border-primary-900:hover{border-color:var(--primary-900)!important}.active\\:border-primary-50:active{border-color:var(--primary-50)!important}.active\\:border-primary-100:active{border-color:var(--primary-100)!important}.active\\:border-primary-200:active{border-color:var(--primary-200)!important}.active\\:border-primary-300:active{border-color:var(--primary-300)!important}.active\\:border-primary-400:active{border-color:var(--primary-400)!important}.active\\:border-primary-500:active{border-color:var(--primary-500)!important}.active\\:border-primary-600:active{border-color:var(--primary-600)!important}.active\\:border-primary-700:active{border-color:var(--primary-700)!important}.active\\:border-primary-800:active{border-color:var(--primary-800)!important}.active\\:border-primary-900:active{border-color:var(--primary-900)!important}.bg-white-alpha-10{background-color:#ffffff1a!important}.bg-white-alpha-20{background-color:#fff3!important}.bg-white-alpha-30{background-color:#ffffff4d!important}.bg-white-alpha-40{background-color:#fff6!important}.bg-white-alpha-50{background-color:#ffffff80!important}.bg-white-alpha-60{background-color:#fff9!important}.bg-white-alpha-70{background-color:#ffffffb3!important}.bg-white-alpha-80{background-color:#fffc!important}.bg-white-alpha-90{background-color:#ffffffe6!important}.hover\\:bg-white-alpha-10:hover{background-color:#ffffff1a!important}.hover\\:bg-white-alpha-20:hover{background-color:#fff3!important}.hover\\:bg-white-alpha-30:hover{background-color:#ffffff4d!important}.hover\\:bg-white-alpha-40:hover{background-color:#fff6!important}.hover\\:bg-white-alpha-50:hover{background-color:#ffffff80!important}.hover\\:bg-white-alpha-60:hover{background-color:#fff9!important}.hover\\:bg-white-alpha-70:hover{background-color:#ffffffb3!important}.hover\\:bg-white-alpha-80:hover{background-color:#fffc!important}.hover\\:bg-white-alpha-90:hover{background-color:#ffffffe6!important}.focus\\:bg-white-alpha-10:focus{background-color:#ffffff1a!important}.focus\\:bg-white-alpha-20:focus{background-color:#fff3!important}.focus\\:bg-white-alpha-30:focus{background-color:#ffffff4d!important}.focus\\:bg-white-alpha-40:focus{background-color:#fff6!important}.focus\\:bg-white-alpha-50:focus{background-color:#ffffff80!important}.focus\\:bg-white-alpha-60:focus{background-color:#fff9!important}.focus\\:bg-white-alpha-70:focus{background-color:#ffffffb3!important}.focus\\:bg-white-alpha-80:focus{background-color:#fffc!important}.focus\\:bg-white-alpha-90:focus{background-color:#ffffffe6!important}.active\\:bg-white-alpha-10:active{background-color:#ffffff1a!important}.active\\:bg-white-alpha-20:active{background-color:#fff3!important}.active\\:bg-white-alpha-30:active{background-color:#ffffff4d!important}.active\\:bg-white-alpha-40:active{background-color:#fff6!important}.active\\:bg-white-alpha-50:active{background-color:#ffffff80!important}.active\\:bg-white-alpha-60:active{background-color:#fff9!important}.active\\:bg-white-alpha-70:active{background-color:#ffffffb3!important}.active\\:bg-white-alpha-80:active{background-color:#fffc!important}.active\\:bg-white-alpha-90:active{background-color:#ffffffe6!important}.bg-black-alpha-10{background-color:#0000001a!important}.bg-black-alpha-20{background-color:#0003!important}.bg-black-alpha-30{background-color:#0000004d!important}.bg-black-alpha-40{background-color:#0006!important}.bg-black-alpha-50{background-color:#00000080!important}.bg-black-alpha-60{background-color:#0009!important}.bg-black-alpha-70{background-color:#000000b3!important}.bg-black-alpha-80{background-color:#000c!important}.bg-black-alpha-90{background-color:#000000e6!important}.hover\\:bg-black-alpha-10:hover{background-color:#0000001a!important}.hover\\:bg-black-alpha-20:hover{background-color:#0003!important}.hover\\:bg-black-alpha-30:hover{background-color:#0000004d!important}.hover\\:bg-black-alpha-40:hover{background-color:#0006!important}.hover\\:bg-black-alpha-50:hover{background-color:#00000080!important}.hover\\:bg-black-alpha-60:hover{background-color:#0009!important}.hover\\:bg-black-alpha-70:hover{background-color:#000000b3!important}.hover\\:bg-black-alpha-80:hover{background-color:#000c!important}.hover\\:bg-black-alpha-90:hover{background-color:#000000e6!important}.focus\\:bg-black-alpha-10:focus{background-color:#0000001a!important}.focus\\:bg-black-alpha-20:focus{background-color:#0003!important}.focus\\:bg-black-alpha-30:focus{background-color:#0000004d!important}.focus\\:bg-black-alpha-40:focus{background-color:#0006!important}.focus\\:bg-black-alpha-50:focus{background-color:#00000080!important}.focus\\:bg-black-alpha-60:focus{background-color:#0009!important}.focus\\:bg-black-alpha-70:focus{background-color:#000000b3!important}.focus\\:bg-black-alpha-80:focus{background-color:#000c!important}.focus\\:bg-black-alpha-90:focus{background-color:#000000e6!important}.active\\:bg-black-alpha-10:active{background-color:#0000001a!important}.active\\:bg-black-alpha-20:active{background-color:#0003!important}.active\\:bg-black-alpha-30:active{background-color:#0000004d!important}.active\\:bg-black-alpha-40:active{background-color:#0006!important}.active\\:bg-black-alpha-50:active{background-color:#00000080!important}.active\\:bg-black-alpha-60:active{background-color:#0009!important}.active\\:bg-black-alpha-70:active{background-color:#000000b3!important}.active\\:bg-black-alpha-80:active{background-color:#000c!important}.active\\:bg-black-alpha-90:active{background-color:#000000e6!important}.border-white-alpha-10{border-color:#ffffff1a!important}.border-white-alpha-20{border-color:#fff3!important}.border-white-alpha-30{border-color:#ffffff4d!important}.border-white-alpha-40{border-color:#fff6!important}.border-white-alpha-50{border-color:#ffffff80!important}.border-white-alpha-60{border-color:#fff9!important}.border-white-alpha-70{border-color:#ffffffb3!important}.border-white-alpha-80{border-color:#fffc!important}.border-white-alpha-90{border-color:#ffffffe6!important}.hover\\:border-white-alpha-10:hover{border-color:#ffffff1a!important}.hover\\:border-white-alpha-20:hover{border-color:#fff3!important}.hover\\:border-white-alpha-30:hover{border-color:#ffffff4d!important}.hover\\:border-white-alpha-40:hover{border-color:#fff6!important}.hover\\:border-white-alpha-50:hover{border-color:#ffffff80!important}.hover\\:border-white-alpha-60:hover{border-color:#fff9!important}.hover\\:border-white-alpha-70:hover{border-color:#ffffffb3!important}.hover\\:border-white-alpha-80:hover{border-color:#fffc!important}.hover\\:border-white-alpha-90:hover{border-color:#ffffffe6!important}.focus\\:border-white-alpha-10:focus{border-color:#ffffff1a!important}.focus\\:border-white-alpha-20:focus{border-color:#fff3!important}.focus\\:border-white-alpha-30:focus{border-color:#ffffff4d!important}.focus\\:border-white-alpha-40:focus{border-color:#fff6!important}.focus\\:border-white-alpha-50:focus{border-color:#ffffff80!important}.focus\\:border-white-alpha-60:focus{border-color:#fff9!important}.focus\\:border-white-alpha-70:focus{border-color:#ffffffb3!important}.focus\\:border-white-alpha-80:focus{border-color:#fffc!important}.focus\\:border-white-alpha-90:focus{border-color:#ffffffe6!important}.active\\:border-white-alpha-10:active{border-color:#ffffff1a!important}.active\\:border-white-alpha-20:active{border-color:#fff3!important}.active\\:border-white-alpha-30:active{border-color:#ffffff4d!important}.active\\:border-white-alpha-40:active{border-color:#fff6!important}.active\\:border-white-alpha-50:active{border-color:#ffffff80!important}.active\\:border-white-alpha-60:active{border-color:#fff9!important}.active\\:border-white-alpha-70:active{border-color:#ffffffb3!important}.active\\:border-white-alpha-80:active{border-color:#fffc!important}.active\\:border-white-alpha-90:active{border-color:#ffffffe6!important}.border-black-alpha-10{border-color:#0000001a!important}.border-black-alpha-20{border-color:#0003!important}.border-black-alpha-30{border-color:#0000004d!important}.border-black-alpha-40{border-color:#0006!important}.border-black-alpha-50{border-color:#00000080!important}.border-black-alpha-60{border-color:#0009!important}.border-black-alpha-70{border-color:#000000b3!important}.border-black-alpha-80{border-color:#000c!important}.border-black-alpha-90{border-color:#000000e6!important}.hover\\:border-black-alpha-10:hover{border-color:#0000001a!important}.hover\\:border-black-alpha-20:hover{border-color:#0003!important}.hover\\:border-black-alpha-30:hover{border-color:#0000004d!important}.hover\\:border-black-alpha-40:hover{border-color:#0006!important}.hover\\:border-black-alpha-50:hover{border-color:#00000080!important}.hover\\:border-black-alpha-60:hover{border-color:#0009!important}.hover\\:border-black-alpha-70:hover{border-color:#000000b3!important}.hover\\:border-black-alpha-80:hover{border-color:#000c!important}.hover\\:border-black-alpha-90:hover{border-color:#000000e6!important}.focus\\:border-black-alpha-10:focus{border-color:#0000001a!important}.focus\\:border-black-alpha-20:focus{border-color:#0003!important}.focus\\:border-black-alpha-30:focus{border-color:#0000004d!important}.focus\\:border-black-alpha-40:focus{border-color:#0006!important}.focus\\:border-black-alpha-50:focus{border-color:#00000080!important}.focus\\:border-black-alpha-60:focus{border-color:#0009!important}.focus\\:border-black-alpha-70:focus{border-color:#000000b3!important}.focus\\:border-black-alpha-80:focus{border-color:#000c!important}.focus\\:border-black-alpha-90:focus{border-color:#000000e6!important}.active\\:border-black-alpha-10:active{border-color:#0000001a!important}.active\\:border-black-alpha-20:active{border-color:#0003!important}.active\\:border-black-alpha-30:active{border-color:#0000004d!important}.active\\:border-black-alpha-40:active{border-color:#0006!important}.active\\:border-black-alpha-50:active{border-color:#00000080!important}.active\\:border-black-alpha-60:active{border-color:#0009!important}.active\\:border-black-alpha-70:active{border-color:#000000b3!important}.active\\:border-black-alpha-80:active{border-color:#000c!important}.active\\:border-black-alpha-90:active{border-color:#000000e6!important}.text-white-alpha-10{color:#ffffff1a!important}.text-white-alpha-20{color:#fff3!important}.text-white-alpha-30{color:#ffffff4d!important}.text-white-alpha-40{color:#fff6!important}.text-white-alpha-50{color:#ffffff80!important}.text-white-alpha-60{color:#fff9!important}.text-white-alpha-70{color:#ffffffb3!important}.text-white-alpha-80{color:#fffc!important}.text-white-alpha-90{color:#ffffffe6!important}.hover\\:text-white-alpha-10:hover{color:#ffffff1a!important}.hover\\:text-white-alpha-20:hover{color:#fff3!important}.hover\\:text-white-alpha-30:hover{color:#ffffff4d!important}.hover\\:text-white-alpha-40:hover{color:#fff6!important}.hover\\:text-white-alpha-50:hover{color:#ffffff80!important}.hover\\:text-white-alpha-60:hover{color:#fff9!important}.hover\\:text-white-alpha-70:hover{color:#ffffffb3!important}.hover\\:text-white-alpha-80:hover{color:#fffc!important}.hover\\:text-white-alpha-90:hover{color:#ffffffe6!important}.focus\\:text-white-alpha-10:focus{color:#ffffff1a!important}.focus\\:text-white-alpha-20:focus{color:#fff3!important}.focus\\:text-white-alpha-30:focus{color:#ffffff4d!important}.focus\\:text-white-alpha-40:focus{color:#fff6!important}.focus\\:text-white-alpha-50:focus{color:#ffffff80!important}.focus\\:text-white-alpha-60:focus{color:#fff9!important}.focus\\:text-white-alpha-70:focus{color:#ffffffb3!important}.focus\\:text-white-alpha-80:focus{color:#fffc!important}.focus\\:text-white-alpha-90:focus{color:#ffffffe6!important}.active\\:text-white-alpha-10:active{color:#ffffff1a!important}.active\\:text-white-alpha-20:active{color:#fff3!important}.active\\:text-white-alpha-30:active{color:#ffffff4d!important}.active\\:text-white-alpha-40:active{color:#fff6!important}.active\\:text-white-alpha-50:active{color:#ffffff80!important}.active\\:text-white-alpha-60:active{color:#fff9!important}.active\\:text-white-alpha-70:active{color:#ffffffb3!important}.active\\:text-white-alpha-80:active{color:#fffc!important}.active\\:text-white-alpha-90:active{color:#ffffffe6!important}.text-black-alpha-10{color:#0000001a!important}.text-black-alpha-20{color:#0003!important}.text-black-alpha-30{color:#0000004d!important}.text-black-alpha-40{color:#0006!important}.text-black-alpha-50{color:#00000080!important}.text-black-alpha-60{color:#0009!important}.text-black-alpha-70{color:#000000b3!important}.text-black-alpha-80{color:#000c!important}.text-black-alpha-90{color:#000000e6!important}.hover\\:text-black-alpha-10:hover{color:#0000001a!important}.hover\\:text-black-alpha-20:hover{color:#0003!important}.hover\\:text-black-alpha-30:hover{color:#0000004d!important}.hover\\:text-black-alpha-40:hover{color:#0006!important}.hover\\:text-black-alpha-50:hover{color:#00000080!important}.hover\\:text-black-alpha-60:hover{color:#0009!important}.hover\\:text-black-alpha-70:hover{color:#000000b3!important}.hover\\:text-black-alpha-80:hover{color:#000c!important}.hover\\:text-black-alpha-90:hover{color:#000000e6!important}.focus\\:text-black-alpha-10:focus{color:#0000001a!important}.focus\\:text-black-alpha-20:focus{color:#0003!important}.focus\\:text-black-alpha-30:focus{color:#0000004d!important}.focus\\:text-black-alpha-40:focus{color:#0006!important}.focus\\:text-black-alpha-50:focus{color:#00000080!important}.focus\\:text-black-alpha-60:focus{color:#0009!important}.focus\\:text-black-alpha-70:focus{color:#000000b3!important}.focus\\:text-black-alpha-80:focus{color:#000c!important}.focus\\:text-black-alpha-90:focus{color:#000000e6!important}.active\\:text-black-alpha-10:active{color:#0000001a!important}.active\\:text-black-alpha-20:active{color:#0003!important}.active\\:text-black-alpha-30:active{color:#0000004d!important}.active\\:text-black-alpha-40:active{color:#0006!important}.active\\:text-black-alpha-50:active{color:#00000080!important}.active\\:text-black-alpha-60:active{color:#0009!important}.active\\:text-black-alpha-70:active{color:#000000b3!important}.active\\:text-black-alpha-80:active{color:#000c!important}.active\\:text-black-alpha-90:active{color:#000000e6!important}.text-primary{color:var(--primary-color)!important}.bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.bg-white{background-color:#fff!important}.border-primary{border-color:var(--primary-color)!important}.text-white{color:#fff!important}.border-white{border-color:#fff!important}.text-color{color:var(--text-color)!important}.text-color-secondary{color:var(--text-color-secondary)!important}.surface-ground{background-color:var(--surface-ground)!important}.surface-section{background-color:var(--surface-section)!important}.surface-card{background-color:var(--surface-card)!important}.surface-overlay{background-color:var(--surface-overlay)!important}.surface-hover{background-color:var(--surface-hover)!important}.surface-border{border-color:var(--surface-border)!important}.focus\\:text-primary:focus{color:var(--primary-color)!important}.hover\\:text-primary:hover,.active\\:text-primary:active{color:var(--primary-color)!important}.focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.hover\\:bg-primary:hover,.active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.hover\\:bg-primary-reverse:hover,.active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.focus\\:bg-white:focus{background-color:#fff!important}.hover\\:bg-white:hover,.active\\:bg-white:active{background-color:#fff!important}.focus\\:border-primary:focus{border-color:var(--primary-color)!important}.hover\\:border-primary:hover,.active\\:border-primary:active{border-color:var(--primary-color)!important}.focus\\:text-white:focus{color:#fff!important}.hover\\:text-white:hover,.active\\:text-white:active{color:#fff!important}.focus\\:border-white:focus{border-color:#fff!important}.hover\\:border-white:hover,.active\\:border-white:active{border-color:#fff!important}.focus\\:text-color:focus{color:var(--text-color)!important}.hover\\:text-color:hover,.active\\:text-color:active{color:var(--text-color)!important}.focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.hover\\:text-color-secondary:hover,.active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.hover\\:surface-ground:hover,.active\\:surface-ground:active{background-color:var(--surface-ground)!important}.focus\\:surface-section:focus{background-color:var(--surface-section)!important}.hover\\:surface-section:hover,.active\\:surface-section:active{background-color:var(--surface-section)!important}.focus\\:surface-card:focus{background-color:var(--surface-card)!important}.hover\\:surface-card:hover,.active\\:surface-card:active{background-color:var(--surface-card)!important}.focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.hover\\:surface-overlay:hover,.active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.hover\\:surface-hover:hover,.active\\:surface-hover:active{background-color:var(--surface-hover)!important}.focus\\:surface-border:focus{border-color:var(--surface-border)!important}.hover\\:surface-border:hover,.active\\:surface-border:active{border-color:var(--surface-border)!important}@media screen and (min-width: 576px){.sm\\:text-primary{color:var(--primary-color)!important}.sm\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:bg-white{background-color:#fff!important}.sm\\:border-primary{border-color:var(--primary-color)!important}.sm\\:text-white{color:#fff!important}.sm\\:border-white{border-color:#fff!important}.sm\\:text-color{color:var(--text-color)!important}.sm\\:text-color-secondary{color:var(--text-color-secondary)!important}.sm\\:surface-ground{background-color:var(--surface-ground)!important}.sm\\:surface-section{background-color:var(--surface-section)!important}.sm\\:surface-card{background-color:var(--surface-card)!important}.sm\\:surface-overlay{background-color:var(--surface-overlay)!important}.sm\\:surface-hover{background-color:var(--surface-hover)!important}.sm\\:surface-border{border-color:var(--surface-border)!important}.sm\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.sm\\:hover\\:text-primary:hover,.sm\\:active\\:text-primary:active{color:var(--primary-color)!important}.sm\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:hover\\:bg-primary:hover,.sm\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:hover\\:bg-primary-reverse:hover,.sm\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:focus\\:bg-white:focus{background-color:#fff!important}.sm\\:hover\\:bg-white:hover,.sm\\:active\\:bg-white:active{background-color:#fff!important}.sm\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.sm\\:hover\\:border-primary:hover,.sm\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.sm\\:focus\\:text-white:focus{color:#fff!important}.sm\\:hover\\:text-white:hover,.sm\\:active\\:text-white:active{color:#fff!important}.sm\\:focus\\:border-white:focus{border-color:#fff!important}.sm\\:hover\\:border-white:hover,.sm\\:active\\:border-white:active{border-color:#fff!important}.sm\\:focus\\:text-color:focus{color:var(--text-color)!important}.sm\\:hover\\:text-color:hover,.sm\\:active\\:text-color:active{color:var(--text-color)!important}.sm\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.sm\\:hover\\:text-color-secondary:hover,.sm\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.sm\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.sm\\:hover\\:surface-ground:hover,.sm\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.sm\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.sm\\:hover\\:surface-section:hover,.sm\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.sm\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.sm\\:hover\\:surface-card:hover,.sm\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.sm\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.sm\\:hover\\:surface-overlay:hover,.sm\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.sm\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.sm\\:hover\\:surface-hover:hover,.sm\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.sm\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.sm\\:hover\\:surface-border:hover,.sm\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 768px){.md\\:text-primary{color:var(--primary-color)!important}.md\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:bg-white{background-color:#fff!important}.md\\:border-primary{border-color:var(--primary-color)!important}.md\\:text-white{color:#fff!important}.md\\:border-white{border-color:#fff!important}.md\\:text-color{color:var(--text-color)!important}.md\\:text-color-secondary{color:var(--text-color-secondary)!important}.md\\:surface-ground{background-color:var(--surface-ground)!important}.md\\:surface-section{background-color:var(--surface-section)!important}.md\\:surface-card{background-color:var(--surface-card)!important}.md\\:surface-overlay{background-color:var(--surface-overlay)!important}.md\\:surface-hover{background-color:var(--surface-hover)!important}.md\\:surface-border{border-color:var(--surface-border)!important}.md\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.md\\:hover\\:text-primary:hover,.md\\:active\\:text-primary:active{color:var(--primary-color)!important}.md\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:hover\\:bg-primary:hover,.md\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:hover\\:bg-primary-reverse:hover,.md\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:focus\\:bg-white:focus{background-color:#fff!important}.md\\:hover\\:bg-white:hover,.md\\:active\\:bg-white:active{background-color:#fff!important}.md\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.md\\:hover\\:border-primary:hover,.md\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.md\\:focus\\:text-white:focus{color:#fff!important}.md\\:hover\\:text-white:hover,.md\\:active\\:text-white:active{color:#fff!important}.md\\:focus\\:border-white:focus{border-color:#fff!important}.md\\:hover\\:border-white:hover,.md\\:active\\:border-white:active{border-color:#fff!important}.md\\:focus\\:text-color:focus{color:var(--text-color)!important}.md\\:hover\\:text-color:hover,.md\\:active\\:text-color:active{color:var(--text-color)!important}.md\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.md\\:hover\\:text-color-secondary:hover,.md\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.md\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.md\\:hover\\:surface-ground:hover,.md\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.md\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.md\\:hover\\:surface-section:hover,.md\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.md\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.md\\:hover\\:surface-card:hover,.md\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.md\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.md\\:hover\\:surface-overlay:hover,.md\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.md\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.md\\:hover\\:surface-hover:hover,.md\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.md\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.md\\:hover\\:surface-border:hover,.md\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 992px){.lg\\:text-primary{color:var(--primary-color)!important}.lg\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:bg-white{background-color:#fff!important}.lg\\:border-primary{border-color:var(--primary-color)!important}.lg\\:text-white{color:#fff!important}.lg\\:border-white{border-color:#fff!important}.lg\\:text-color{color:var(--text-color)!important}.lg\\:text-color-secondary{color:var(--text-color-secondary)!important}.lg\\:surface-ground{background-color:var(--surface-ground)!important}.lg\\:surface-section{background-color:var(--surface-section)!important}.lg\\:surface-card{background-color:var(--surface-card)!important}.lg\\:surface-overlay{background-color:var(--surface-overlay)!important}.lg\\:surface-hover{background-color:var(--surface-hover)!important}.lg\\:surface-border{border-color:var(--surface-border)!important}.lg\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.lg\\:hover\\:text-primary:hover,.lg\\:active\\:text-primary:active{color:var(--primary-color)!important}.lg\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:hover\\:bg-primary:hover,.lg\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:hover\\:bg-primary-reverse:hover,.lg\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:focus\\:bg-white:focus{background-color:#fff!important}.lg\\:hover\\:bg-white:hover,.lg\\:active\\:bg-white:active{background-color:#fff!important}.lg\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.lg\\:hover\\:border-primary:hover,.lg\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.lg\\:focus\\:text-white:focus{color:#fff!important}.lg\\:hover\\:text-white:hover,.lg\\:active\\:text-white:active{color:#fff!important}.lg\\:focus\\:border-white:focus{border-color:#fff!important}.lg\\:hover\\:border-white:hover,.lg\\:active\\:border-white:active{border-color:#fff!important}.lg\\:focus\\:text-color:focus{color:var(--text-color)!important}.lg\\:hover\\:text-color:hover,.lg\\:active\\:text-color:active{color:var(--text-color)!important}.lg\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.lg\\:hover\\:text-color-secondary:hover,.lg\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.lg\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.lg\\:hover\\:surface-ground:hover,.lg\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.lg\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.lg\\:hover\\:surface-section:hover,.lg\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.lg\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.lg\\:hover\\:surface-card:hover,.lg\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.lg\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.lg\\:hover\\:surface-overlay:hover,.lg\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.lg\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.lg\\:hover\\:surface-hover:hover,.lg\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.lg\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.lg\\:hover\\:surface-border:hover,.lg\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 1200px){.xl\\:text-primary{color:var(--primary-color)!important}.xl\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:bg-white{background-color:#fff!important}.xl\\:border-primary{border-color:var(--primary-color)!important}.xl\\:text-white{color:#fff!important}.xl\\:border-white{border-color:#fff!important}.xl\\:text-color{color:var(--text-color)!important}.xl\\:text-color-secondary{color:var(--text-color-secondary)!important}.xl\\:surface-ground{background-color:var(--surface-ground)!important}.xl\\:surface-section{background-color:var(--surface-section)!important}.xl\\:surface-card{background-color:var(--surface-card)!important}.xl\\:surface-overlay{background-color:var(--surface-overlay)!important}.xl\\:surface-hover{background-color:var(--surface-hover)!important}.xl\\:surface-border{border-color:var(--surface-border)!important}.xl\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.xl\\:hover\\:text-primary:hover,.xl\\:active\\:text-primary:active{color:var(--primary-color)!important}.xl\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:hover\\:bg-primary:hover,.xl\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:hover\\:bg-primary-reverse:hover,.xl\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:focus\\:bg-white:focus{background-color:#fff!important}.xl\\:hover\\:bg-white:hover,.xl\\:active\\:bg-white:active{background-color:#fff!important}.xl\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.xl\\:hover\\:border-primary:hover,.xl\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.xl\\:focus\\:text-white:focus{color:#fff!important}.xl\\:hover\\:text-white:hover,.xl\\:active\\:text-white:active{color:#fff!important}.xl\\:focus\\:border-white:focus{border-color:#fff!important}.xl\\:hover\\:border-white:hover,.xl\\:active\\:border-white:active{border-color:#fff!important}.xl\\:focus\\:text-color:focus{color:var(--text-color)!important}.xl\\:hover\\:text-color:hover,.xl\\:active\\:text-color:active{color:var(--text-color)!important}.xl\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.xl\\:hover\\:text-color-secondary:hover,.xl\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.xl\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.xl\\:hover\\:surface-ground:hover,.xl\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.xl\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.xl\\:hover\\:surface-section:hover,.xl\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.xl\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.xl\\:hover\\:surface-card:hover,.xl\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.xl\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.xl\\:hover\\:surface-overlay:hover,.xl\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.xl\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.xl\\:hover\\:surface-hover:hover,.xl\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.xl\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.xl\\:hover\\:surface-border:hover,.xl\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}.field{margin-bottom:1rem}.field>label{display:inline-block;margin-bottom:.5rem}.field.grid>label{display:flex;align-items:center}.field>small{margin-top:.25rem}.field.grid,.formgrid.grid{margin-top:0}.field.grid .col-fixed,.formgrid.grid .col-fixed,.field.grid .col,.formgrid.grid .col,.field.grid .col-1,.formgrid.grid .col-1,.field.grid .col-2,.formgrid.grid .col-2,.field.grid .col-3,.formgrid.grid .col-3,.field.grid .col-4,.formgrid.grid .col-4,.field.grid .col-5,.formgrid.grid .col-5,.field.grid .col-6,.formgrid.grid .col-6,.field.grid .col-7,.formgrid.grid .col-7,.field.grid .col-8,.formgrid.grid .col-8,.field.grid .col-9,.formgrid.grid .col-9,.field.grid .col-10,.formgrid.grid .col-10,.field.grid .col-11,.formgrid.grid .col-11,.field.grid .col-12,.formgrid.grid .col-12{padding-top:0;padding-bottom:0}.formgroup-inline{display:flex;flex-wrap:wrap;align-items:flex-start}.formgroup-inline .field,.formgroup-inline .field-checkbox,.formgroup-inline .field-radiobutton{margin-right:1rem}.formgroup-inline .field>label,.formgroup-inline .field-checkbox>label,.formgroup-inline .field-radiobutton>label{margin-right:.5rem;margin-bottom:0}.field-checkbox,.field-radiobutton{margin-bottom:1rem;display:flex;align-items:center}.field-checkbox>label,.field-radiobutton>label{margin-left:.5rem;line-height:1}.hidden{display:none!important}.block{display:block!important}.inline{display:inline!important}.inline-block{display:inline-block!important}.flex{display:flex!important}.inline-flex{display:inline-flex!important}@media screen and (min-width: 576px){.sm\\:hidden{display:none!important}.sm\\:block{display:block!important}.sm\\:inline{display:inline!important}.sm\\:inline-block{display:inline-block!important}.sm\\:flex{display:flex!important}.sm\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 768px){.md\\:hidden{display:none!important}.md\\:block{display:block!important}.md\\:inline{display:inline!important}.md\\:inline-block{display:inline-block!important}.md\\:flex{display:flex!important}.md\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 992px){.lg\\:hidden{display:none!important}.lg\\:block{display:block!important}.lg\\:inline{display:inline!important}.lg\\:inline-block{display:inline-block!important}.lg\\:flex{display:flex!important}.lg\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 1200px){.xl\\:hidden{display:none!important}.xl\\:block{display:block!important}.xl\\:inline{display:inline!important}.xl\\:inline-block{display:inline-block!important}.xl\\:flex{display:flex!important}.xl\\:inline-flex{display:inline-flex!important}}.text-center{text-align:center!important}.text-justify{text-align:justify!important}.text-left{text-align:left!important}.text-right{text-align:right!important}@media screen and (min-width: 576px){.sm\\:text-center{text-align:center!important}.sm\\:text-justify{text-align:justify!important}.sm\\:text-left{text-align:left!important}.sm\\:text-right{text-align:right!important}}@media screen and (min-width: 768px){.md\\:text-center{text-align:center!important}.md\\:text-justify{text-align:justify!important}.md\\:text-left{text-align:left!important}.md\\:text-right{text-align:right!important}}@media screen and (min-width: 992px){.lg\\:text-center{text-align:center!important}.lg\\:text-justify{text-align:justify!important}.lg\\:text-left{text-align:left!important}.lg\\:text-right{text-align:right!important}}@media screen and (min-width: 1200px){.xl\\:text-center{text-align:center!important}.xl\\:text-justify{text-align:justify!important}.xl\\:text-left{text-align:left!important}.xl\\:text-right{text-align:right!important}}.underline{text-decoration:underline!important}.line-through{text-decoration:line-through!important}.no-underline{text-decoration:none!important}.focus\\:underline:focus{text-decoration:underline!important}.hover\\:underline:hover,.active\\:underline:active{text-decoration:underline!important}.focus\\:line-through:focus{text-decoration:line-through!important}.hover\\:line-through:hover,.active\\:line-through:active{text-decoration:line-through!important}.focus\\:no-underline:focus{text-decoration:none!important}.hover\\:no-underline:hover,.active\\:no-underline:active{text-decoration:none!important}.lowercase{text-transform:lowercase!important}.uppercase{text-transform:uppercase!important}.capitalize{text-transform:capitalize!important}.text-overflow-clip{text-overflow:clip!important}.text-overflow-ellipsis{text-overflow:ellipsis!important}@media screen and (min-width: 576px){.sm\\:text-overflow-clip{text-overflow:clip!important}.sm\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 768px){.md\\:text-overflow-clip{text-overflow:clip!important}.md\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 992px){.lg\\:text-overflow-clip{text-overflow:clip!important}.lg\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 1200px){.xl\\:text-overflow-clip{text-overflow:clip!important}.xl\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}.font-light{font-weight:300!important}.font-normal{font-weight:400!important}.font-medium{font-weight:500!important}.font-semibold{font-weight:600!important}.font-bold{font-weight:700!important}@media screen and (min-width: 576px){.sm\\:font-light{font-weight:300!important}.sm\\:font-normal{font-weight:400!important}.sm\\:font-medium{font-weight:500!important}.sm\\:font-semibold{font-weight:600!important}.sm\\:font-bold{font-weight:700!important}}@media screen and (min-width: 768px){.md\\:font-light{font-weight:300!important}.md\\:font-normal{font-weight:400!important}.md\\:font-medium{font-weight:500!important}.md\\:font-semibold{font-weight:600!important}.md\\:font-bold{font-weight:700!important}}@media screen and (min-width: 992px){.lg\\:font-light{font-weight:300!important}.lg\\:font-normal{font-weight:400!important}.lg\\:font-medium{font-weight:500!important}.lg\\:font-semibold{font-weight:600!important}.lg\\:font-bold{font-weight:700!important}}@media screen and (min-width: 1200px){.xl\\:font-light{font-weight:300!important}.xl\\:font-normal{font-weight:400!important}.xl\\:font-medium{font-weight:500!important}.xl\\:font-semibold{font-weight:600!important}.xl\\:font-bold{font-weight:700!important}}.font-italic{font-style:italic!important}.text-xs{font-size:.75rem!important}.text-sm{font-size:.875rem!important}.text-base{font-size:1rem!important}.text-lg{font-size:1.125rem!important}.text-xl{font-size:1.25rem!important}.text-2xl{font-size:1.5rem!important}.text-3xl{font-size:1.75rem!important}.text-4xl{font-size:2rem!important}.text-5xl{font-size:2.5rem!important}.text-6xl{font-size:3rem!important}.text-7xl{font-size:4rem!important}.text-8xl{font-size:6rem!important}@media screen and (min-width: 576px){.sm\\:text-xs{font-size:.75rem!important}.sm\\:text-sm{font-size:.875rem!important}.sm\\:text-base{font-size:1rem!important}.sm\\:text-lg{font-size:1.125rem!important}.sm\\:text-xl{font-size:1.25rem!important}.sm\\:text-2xl{font-size:1.5rem!important}.sm\\:text-3xl{font-size:1.75rem!important}.sm\\:text-4xl{font-size:2rem!important}.sm\\:text-5xl{font-size:2.5rem!important}.sm\\:text-6xl{font-size:3rem!important}.sm\\:text-7xl{font-size:4rem!important}.sm\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 768px){.md\\:text-xs{font-size:.75rem!important}.md\\:text-sm{font-size:.875rem!important}.md\\:text-base{font-size:1rem!important}.md\\:text-lg{font-size:1.125rem!important}.md\\:text-xl{font-size:1.25rem!important}.md\\:text-2xl{font-size:1.5rem!important}.md\\:text-3xl{font-size:1.75rem!important}.md\\:text-4xl{font-size:2rem!important}.md\\:text-5xl{font-size:2.5rem!important}.md\\:text-6xl{font-size:3rem!important}.md\\:text-7xl{font-size:4rem!important}.md\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 992px){.lg\\:text-xs{font-size:.75rem!important}.lg\\:text-sm{font-size:.875rem!important}.lg\\:text-base{font-size:1rem!important}.lg\\:text-lg{font-size:1.125rem!important}.lg\\:text-xl{font-size:1.25rem!important}.lg\\:text-2xl{font-size:1.5rem!important}.lg\\:text-3xl{font-size:1.75rem!important}.lg\\:text-4xl{font-size:2rem!important}.lg\\:text-5xl{font-size:2.5rem!important}.lg\\:text-6xl{font-size:3rem!important}.lg\\:text-7xl{font-size:4rem!important}.lg\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 1200px){.xl\\:text-xs{font-size:.75rem!important}.xl\\:text-sm{font-size:.875rem!important}.xl\\:text-base{font-size:1rem!important}.xl\\:text-lg{font-size:1.125rem!important}.xl\\:text-xl{font-size:1.25rem!important}.xl\\:text-2xl{font-size:1.5rem!important}.xl\\:text-3xl{font-size:1.75rem!important}.xl\\:text-4xl{font-size:2rem!important}.xl\\:text-5xl{font-size:2.5rem!important}.xl\\:text-6xl{font-size:3rem!important}.xl\\:text-7xl{font-size:4rem!important}.xl\\:text-8xl{font-size:6rem!important}}.line-height-1{line-height:1!important}.line-height-2{line-height:1.25!important}.line-height-3{line-height:1.5!important}.line-height-4{line-height:2!important}.white-space-normal{white-space:normal!important}.white-space-nowrap{white-space:nowrap!important}.vertical-align-baseline{vertical-align:baseline!important}.vertical-align-top{vertical-align:top!important}.vertical-align-middle{vertical-align:middle!important}.vertical-align-bottom{vertical-align:bottom!important}.vertical-align-text-top{vertical-align:text-top!important}.vertical-align-text-bottom{vertical-align:text-bottom!important}.vertical-align-sub{vertical-align:sub!important}.vertical-align-super{vertical-align:super!important}@media screen and (min-width: 576px){.sm\\:vertical-align-baseline{vertical-align:baseline!important}.sm\\:vertical-align-top{vertical-align:top!important}.sm\\:vertical-align-middle{vertical-align:middle!important}.sm\\:vertical-align-bottom{vertical-align:bottom!important}.sm\\:vertical-align-text-top{vertical-align:text-top!important}.sm\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.sm\\:vertical-align-sub{vertical-align:sub!important}.sm\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 768px){.md\\:vertical-align-baseline{vertical-align:baseline!important}.md\\:vertical-align-top{vertical-align:top!important}.md\\:vertical-align-middle{vertical-align:middle!important}.md\\:vertical-align-bottom{vertical-align:bottom!important}.md\\:vertical-align-text-top{vertical-align:text-top!important}.md\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.md\\:vertical-align-sub{vertical-align:sub!important}.md\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 992px){.lg\\:vertical-align-baseline{vertical-align:baseline!important}.lg\\:vertical-align-top{vertical-align:top!important}.lg\\:vertical-align-middle{vertical-align:middle!important}.lg\\:vertical-align-bottom{vertical-align:bottom!important}.lg\\:vertical-align-text-top{vertical-align:text-top!important}.lg\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.lg\\:vertical-align-sub{vertical-align:sub!important}.lg\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 1200px){.xl\\:vertical-align-baseline{vertical-align:baseline!important}.xl\\:vertical-align-top{vertical-align:top!important}.xl\\:vertical-align-middle{vertical-align:middle!important}.xl\\:vertical-align-bottom{vertical-align:bottom!important}.xl\\:vertical-align-text-top{vertical-align:text-top!important}.xl\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.xl\\:vertical-align-sub{vertical-align:sub!important}.xl\\:vertical-align-super{vertical-align:super!important}}.flex-row{flex-direction:row!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column{flex-direction:column!important}.flex-column-reverse{flex-direction:column-reverse!important}@media screen and (min-width: 576px){.sm\\:flex-row{flex-direction:row!important}.sm\\:flex-row-reverse{flex-direction:row-reverse!important}.sm\\:flex-column{flex-direction:column!important}.sm\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 768px){.md\\:flex-row{flex-direction:row!important}.md\\:flex-row-reverse{flex-direction:row-reverse!important}.md\\:flex-column{flex-direction:column!important}.md\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 992px){.lg\\:flex-row{flex-direction:row!important}.lg\\:flex-row-reverse{flex-direction:row-reverse!important}.lg\\:flex-column{flex-direction:column!important}.lg\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 1200px){.xl\\:flex-row{flex-direction:row!important}.xl\\:flex-row-reverse{flex-direction:row-reverse!important}.xl\\:flex-column{flex-direction:column!important}.xl\\:flex-column-reverse{flex-direction:column-reverse!important}}.flex-wrap{flex-wrap:wrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-nowrap{flex-wrap:nowrap!important}@media screen and (min-width: 576px){.sm\\:flex-wrap{flex-wrap:wrap!important}.sm\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.sm\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 768px){.md\\:flex-wrap{flex-wrap:wrap!important}.md\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.md\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 992px){.lg\\:flex-wrap{flex-wrap:wrap!important}.lg\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.lg\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 1200px){.xl\\:flex-wrap{flex-wrap:wrap!important}.xl\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.xl\\:flex-nowrap{flex-wrap:nowrap!important}}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}@media screen and (min-width: 576px){.sm\\:justify-content-start{justify-content:flex-start!important}.sm\\:justify-content-end{justify-content:flex-end!important}.sm\\:justify-content-center{justify-content:center!important}.sm\\:justify-content-between{justify-content:space-between!important}.sm\\:justify-content-around{justify-content:space-around!important}.sm\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 768px){.md\\:justify-content-start{justify-content:flex-start!important}.md\\:justify-content-end{justify-content:flex-end!important}.md\\:justify-content-center{justify-content:center!important}.md\\:justify-content-between{justify-content:space-between!important}.md\\:justify-content-around{justify-content:space-around!important}.md\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 992px){.lg\\:justify-content-start{justify-content:flex-start!important}.lg\\:justify-content-end{justify-content:flex-end!important}.lg\\:justify-content-center{justify-content:center!important}.lg\\:justify-content-between{justify-content:space-between!important}.lg\\:justify-content-around{justify-content:space-around!important}.lg\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 1200px){.xl\\:justify-content-start{justify-content:flex-start!important}.xl\\:justify-content-end{justify-content:flex-end!important}.xl\\:justify-content-center{justify-content:center!important}.xl\\:justify-content-between{justify-content:space-between!important}.xl\\:justify-content-around{justify-content:space-around!important}.xl\\:justify-content-evenly{justify-content:space-evenly!important}}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-evenly{align-content:space-evenly!important}@media screen and (min-width: 576px){.sm\\:align-content-start{align-content:flex-start!important}.sm\\:align-content-end{align-content:flex-end!important}.sm\\:align-content-center{align-content:center!important}.sm\\:align-content-between{align-content:space-between!important}.sm\\:align-content-around{align-content:space-around!important}.sm\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 768px){.md\\:align-content-start{align-content:flex-start!important}.md\\:align-content-end{align-content:flex-end!important}.md\\:align-content-center{align-content:center!important}.md\\:align-content-between{align-content:space-between!important}.md\\:align-content-around{align-content:space-around!important}.md\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 992px){.lg\\:align-content-start{align-content:flex-start!important}.lg\\:align-content-end{align-content:flex-end!important}.lg\\:align-content-center{align-content:center!important}.lg\\:align-content-between{align-content:space-between!important}.lg\\:align-content-around{align-content:space-around!important}.lg\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 1200px){.xl\\:align-content-start{align-content:flex-start!important}.xl\\:align-content-end{align-content:flex-end!important}.xl\\:align-content-center{align-content:center!important}.xl\\:align-content-between{align-content:space-between!important}.xl\\:align-content-around{align-content:space-around!important}.xl\\:align-content-evenly{align-content:space-evenly!important}}.align-items-stretch{align-items:stretch!important}.align-items-start{align-items:flex-start!important}.align-items-center{align-items:center!important}.align-items-end{align-items:flex-end!important}.align-items-baseline{align-items:baseline!important}@media screen and (min-width: 576px){.sm\\:align-items-stretch{align-items:stretch!important}.sm\\:align-items-start{align-items:flex-start!important}.sm\\:align-items-center{align-items:center!important}.sm\\:align-items-end{align-items:flex-end!important}.sm\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 768px){.md\\:align-items-stretch{align-items:stretch!important}.md\\:align-items-start{align-items:flex-start!important}.md\\:align-items-center{align-items:center!important}.md\\:align-items-end{align-items:flex-end!important}.md\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 992px){.lg\\:align-items-stretch{align-items:stretch!important}.lg\\:align-items-start{align-items:flex-start!important}.lg\\:align-items-center{align-items:center!important}.lg\\:align-items-end{align-items:flex-end!important}.lg\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 1200px){.xl\\:align-items-stretch{align-items:stretch!important}.xl\\:align-items-start{align-items:flex-start!important}.xl\\:align-items-center{align-items:center!important}.xl\\:align-items-end{align-items:flex-end!important}.xl\\:align-items-baseline{align-items:baseline!important}}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-stretch{align-self:stretch!important}.align-self-baseline{align-self:baseline!important}@media screen and (min-width: 576px){.sm\\:align-self-auto{align-self:auto!important}.sm\\:align-self-start{align-self:flex-start!important}.sm\\:align-self-end{align-self:flex-end!important}.sm\\:align-self-center{align-self:center!important}.sm\\:align-self-stretch{align-self:stretch!important}.sm\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 768px){.md\\:align-self-auto{align-self:auto!important}.md\\:align-self-start{align-self:flex-start!important}.md\\:align-self-end{align-self:flex-end!important}.md\\:align-self-center{align-self:center!important}.md\\:align-self-stretch{align-self:stretch!important}.md\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 992px){.lg\\:align-self-auto{align-self:auto!important}.lg\\:align-self-start{align-self:flex-start!important}.lg\\:align-self-end{align-self:flex-end!important}.lg\\:align-self-center{align-self:center!important}.lg\\:align-self-stretch{align-self:stretch!important}.lg\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 1200px){.xl\\:align-self-auto{align-self:auto!important}.xl\\:align-self-start{align-self:flex-start!important}.xl\\:align-self-end{align-self:flex-end!important}.xl\\:align-self-center{align-self:center!important}.xl\\:align-self-stretch{align-self:stretch!important}.xl\\:align-self-baseline{align-self:baseline!important}}.flex-order-0{order:0!important}.flex-order-1{order:1!important}.flex-order-2{order:2!important}.flex-order-3{order:3!important}.flex-order-4{order:4!important}.flex-order-5{order:5!important}.flex-order-6{order:6!important}@media screen and (min-width: 576px){.sm\\:flex-order-0{order:0!important}.sm\\:flex-order-1{order:1!important}.sm\\:flex-order-2{order:2!important}.sm\\:flex-order-3{order:3!important}.sm\\:flex-order-4{order:4!important}.sm\\:flex-order-5{order:5!important}.sm\\:flex-order-6{order:6!important}}@media screen and (min-width: 768px){.md\\:flex-order-0{order:0!important}.md\\:flex-order-1{order:1!important}.md\\:flex-order-2{order:2!important}.md\\:flex-order-3{order:3!important}.md\\:flex-order-4{order:4!important}.md\\:flex-order-5{order:5!important}.md\\:flex-order-6{order:6!important}}@media screen and (min-width: 992px){.lg\\:flex-order-0{order:0!important}.lg\\:flex-order-1{order:1!important}.lg\\:flex-order-2{order:2!important}.lg\\:flex-order-3{order:3!important}.lg\\:flex-order-4{order:4!important}.lg\\:flex-order-5{order:5!important}.lg\\:flex-order-6{order:6!important}}@media screen and (min-width: 1200px){.xl\\:flex-order-0{order:0!important}.xl\\:flex-order-1{order:1!important}.xl\\:flex-order-2{order:2!important}.xl\\:flex-order-3{order:3!important}.xl\\:flex-order-4{order:4!important}.xl\\:flex-order-5{order:5!important}.xl\\:flex-order-6{order:6!important}}.flex-1{flex:1 1 0%!important}.flex-auto{flex:1 1 auto!important}.flex-initial{flex:0 1 auto!important}.flex-none{flex:none!important}@media screen and (min-width: 576px){.sm\\:flex-1{flex:1 1 0%!important}.sm\\:flex-auto{flex:1 1 auto!important}.sm\\:flex-initial{flex:0 1 auto!important}.sm\\:flex-none{flex:none!important}}@media screen and (min-width: 768px){.md\\:flex-1{flex:1 1 0%!important}.md\\:flex-auto{flex:1 1 auto!important}.md\\:flex-initial{flex:0 1 auto!important}.md\\:flex-none{flex:none!important}}@media screen and (min-width: 992px){.lg\\:flex-1{flex:1 1 0%!important}.lg\\:flex-auto{flex:1 1 auto!important}.lg\\:flex-initial{flex:0 1 auto!important}.lg\\:flex-none{flex:none!important}}@media screen and (min-width: 1200px){.xl\\:flex-1{flex:1 1 0%!important}.xl\\:flex-auto{flex:1 1 auto!important}.xl\\:flex-initial{flex:0 1 auto!important}.xl\\:flex-none{flex:none!important}}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}@media screen and (min-width: 576px){.sm\\:flex-grow-0{flex-grow:0!important}.sm\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 768px){.md\\:flex-grow-0{flex-grow:0!important}.md\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 992px){.lg\\:flex-grow-0{flex-grow:0!important}.lg\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 1200px){.xl\\:flex-grow-0{flex-grow:0!important}.xl\\:flex-grow-1{flex-grow:1!important}}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}@media screen and (min-width: 576px){.sm\\:flex-shrink-0{flex-shrink:0!important}.sm\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 768px){.md\\:flex-shrink-0{flex-shrink:0!important}.md\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 992px){.lg\\:flex-shrink-0{flex-shrink:0!important}.lg\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 1200px){.xl\\:flex-shrink-0{flex-shrink:0!important}.xl\\:flex-shrink-1{flex-shrink:1!important}}.gap-0{gap:0rem!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:2rem!important}.gap-6{gap:3rem!important}.gap-7{gap:4rem!important}.gap-8{gap:5rem!important}.row-gap-0{row-gap:0rem!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:2rem!important}.row-gap-6{row-gap:3rem!important}.row-gap-7{row-gap:4rem!important}.row-gap-8{row-gap:5rem!important}.column-gap-0{column-gap:0rem!important}.column-gap-1{column-gap:.25rem!important}.column-gap-2{column-gap:.5rem!important}.column-gap-3{column-gap:1rem!important}.column-gap-4{column-gap:1.5rem!important}.column-gap-5{column-gap:2rem!important}.column-gap-6{column-gap:3rem!important}.column-gap-7{column-gap:4rem!important}.column-gap-8{column-gap:5rem!important}@media screen and (min-width: 576px){.sm\\:gap-0{gap:0rem!important}.sm\\:gap-1{gap:.25rem!important}.sm\\:gap-2{gap:.5rem!important}.sm\\:gap-3{gap:1rem!important}.sm\\:gap-4{gap:1.5rem!important}.sm\\:gap-5{gap:2rem!important}.sm\\:gap-6{gap:3rem!important}.sm\\:gap-7{gap:4rem!important}.sm\\:gap-8{gap:5rem!important}.sm\\:row-gap-0{row-gap:0rem!important}.sm\\:row-gap-1{row-gap:.25rem!important}.sm\\:row-gap-2{row-gap:.5rem!important}.sm\\:row-gap-3{row-gap:1rem!important}.sm\\:row-gap-4{row-gap:1.5rem!important}.sm\\:row-gap-5{row-gap:2rem!important}.sm\\:row-gap-6{row-gap:3rem!important}.sm\\:row-gap-7{row-gap:4rem!important}.sm\\:row-gap-8{row-gap:5rem!important}.sm\\:column-gap-0{column-gap:0rem!important}.sm\\:column-gap-1{column-gap:.25rem!important}.sm\\:column-gap-2{column-gap:.5rem!important}.sm\\:column-gap-3{column-gap:1rem!important}.sm\\:column-gap-4{column-gap:1.5rem!important}.sm\\:column-gap-5{column-gap:2rem!important}.sm\\:column-gap-6{column-gap:3rem!important}.sm\\:column-gap-7{column-gap:4rem!important}.sm\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 768px){.md\\:gap-0{gap:0rem!important}.md\\:gap-1{gap:.25rem!important}.md\\:gap-2{gap:.5rem!important}.md\\:gap-3{gap:1rem!important}.md\\:gap-4{gap:1.5rem!important}.md\\:gap-5{gap:2rem!important}.md\\:gap-6{gap:3rem!important}.md\\:gap-7{gap:4rem!important}.md\\:gap-8{gap:5rem!important}.md\\:row-gap-0{row-gap:0rem!important}.md\\:row-gap-1{row-gap:.25rem!important}.md\\:row-gap-2{row-gap:.5rem!important}.md\\:row-gap-3{row-gap:1rem!important}.md\\:row-gap-4{row-gap:1.5rem!important}.md\\:row-gap-5{row-gap:2rem!important}.md\\:row-gap-6{row-gap:3rem!important}.md\\:row-gap-7{row-gap:4rem!important}.md\\:row-gap-8{row-gap:5rem!important}.md\\:column-gap-0{column-gap:0rem!important}.md\\:column-gap-1{column-gap:.25rem!important}.md\\:column-gap-2{column-gap:.5rem!important}.md\\:column-gap-3{column-gap:1rem!important}.md\\:column-gap-4{column-gap:1.5rem!important}.md\\:column-gap-5{column-gap:2rem!important}.md\\:column-gap-6{column-gap:3rem!important}.md\\:column-gap-7{column-gap:4rem!important}.md\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 992px){.lg\\:gap-0{gap:0rem!important}.lg\\:gap-1{gap:.25rem!important}.lg\\:gap-2{gap:.5rem!important}.lg\\:gap-3{gap:1rem!important}.lg\\:gap-4{gap:1.5rem!important}.lg\\:gap-5{gap:2rem!important}.lg\\:gap-6{gap:3rem!important}.lg\\:gap-7{gap:4rem!important}.lg\\:gap-8{gap:5rem!important}.lg\\:row-gap-0{row-gap:0rem!important}.lg\\:row-gap-1{row-gap:.25rem!important}.lg\\:row-gap-2{row-gap:.5rem!important}.lg\\:row-gap-3{row-gap:1rem!important}.lg\\:row-gap-4{row-gap:1.5rem!important}.lg\\:row-gap-5{row-gap:2rem!important}.lg\\:row-gap-6{row-gap:3rem!important}.lg\\:row-gap-7{row-gap:4rem!important}.lg\\:row-gap-8{row-gap:5rem!important}.lg\\:column-gap-0{column-gap:0rem!important}.lg\\:column-gap-1{column-gap:.25rem!important}.lg\\:column-gap-2{column-gap:.5rem!important}.lg\\:column-gap-3{column-gap:1rem!important}.lg\\:column-gap-4{column-gap:1.5rem!important}.lg\\:column-gap-5{column-gap:2rem!important}.lg\\:column-gap-6{column-gap:3rem!important}.lg\\:column-gap-7{column-gap:4rem!important}.lg\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 1200px){.xl\\:gap-0{gap:0rem!important}.xl\\:gap-1{gap:.25rem!important}.xl\\:gap-2{gap:.5rem!important}.xl\\:gap-3{gap:1rem!important}.xl\\:gap-4{gap:1.5rem!important}.xl\\:gap-5{gap:2rem!important}.xl\\:gap-6{gap:3rem!important}.xl\\:gap-7{gap:4rem!important}.xl\\:gap-8{gap:5rem!important}.xl\\:row-gap-0{row-gap:0rem!important}.xl\\:row-gap-1{row-gap:.25rem!important}.xl\\:row-gap-2{row-gap:.5rem!important}.xl\\:row-gap-3{row-gap:1rem!important}.xl\\:row-gap-4{row-gap:1.5rem!important}.xl\\:row-gap-5{row-gap:2rem!important}.xl\\:row-gap-6{row-gap:3rem!important}.xl\\:row-gap-7{row-gap:4rem!important}.xl\\:row-gap-8{row-gap:5rem!important}.xl\\:column-gap-0{column-gap:0rem!important}.xl\\:column-gap-1{column-gap:.25rem!important}.xl\\:column-gap-2{column-gap:.5rem!important}.xl\\:column-gap-3{column-gap:1rem!important}.xl\\:column-gap-4{column-gap:1.5rem!important}.xl\\:column-gap-5{column-gap:2rem!important}.xl\\:column-gap-6{column-gap:3rem!important}.xl\\:column-gap-7{column-gap:4rem!important}.xl\\:column-gap-8{column-gap:5rem!important}}.p-0{padding:0rem!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:2rem!important}.p-6{padding:3rem!important}.p-7{padding:4rem!important}.p-8{padding:5rem!important}.pt-0{padding-top:0rem!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:2rem!important}.pt-6{padding-top:3rem!important}.pt-7{padding-top:4rem!important}.pt-8{padding-top:5rem!important}.pr-0{padding-right:0rem!important}.pr-1{padding-right:.25rem!important}.pr-2{padding-right:.5rem!important}.pr-3{padding-right:1rem!important}.pr-4{padding-right:1.5rem!important}.pr-5{padding-right:2rem!important}.pr-6{padding-right:3rem!important}.pr-7{padding-right:4rem!important}.pr-8{padding-right:5rem!important}.pl-0{padding-left:0rem!important}.pl-1{padding-left:.25rem!important}.pl-2{padding-left:.5rem!important}.pl-3{padding-left:1rem!important}.pl-4{padding-left:1.5rem!important}.pl-5{padding-left:2rem!important}.pl-6{padding-left:3rem!important}.pl-7{padding-left:4rem!important}.pl-8{padding-left:5rem!important}.pb-0{padding-bottom:0rem!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:2rem!important}.pb-6{padding-bottom:3rem!important}.pb-7{padding-bottom:4rem!important}.pb-8{padding-bottom:5rem!important}.px-0{padding-left:0rem!important;padding-right:0rem!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:2rem!important;padding-right:2rem!important}.px-6{padding-left:3rem!important;padding-right:3rem!important}.px-7{padding-left:4rem!important;padding-right:4rem!important}.px-8{padding-left:5rem!important;padding-right:5rem!important}.py-0{padding-top:0rem!important;padding-bottom:0rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:2rem!important;padding-bottom:2rem!important}.py-6{padding-top:3rem!important;padding-bottom:3rem!important}.py-7{padding-top:4rem!important;padding-bottom:4rem!important}.py-8{padding-top:5rem!important;padding-bottom:5rem!important}@media screen and (min-width: 576px){.sm\\:p-0{padding:0rem!important}.sm\\:p-1{padding:.25rem!important}.sm\\:p-2{padding:.5rem!important}.sm\\:p-3{padding:1rem!important}.sm\\:p-4{padding:1.5rem!important}.sm\\:p-5{padding:2rem!important}.sm\\:p-6{padding:3rem!important}.sm\\:p-7{padding:4rem!important}.sm\\:p-8{padding:5rem!important}.sm\\:pt-0{padding-top:0rem!important}.sm\\:pt-1{padding-top:.25rem!important}.sm\\:pt-2{padding-top:.5rem!important}.sm\\:pt-3{padding-top:1rem!important}.sm\\:pt-4{padding-top:1.5rem!important}.sm\\:pt-5{padding-top:2rem!important}.sm\\:pt-6{padding-top:3rem!important}.sm\\:pt-7{padding-top:4rem!important}.sm\\:pt-8{padding-top:5rem!important}.sm\\:pr-0{padding-right:0rem!important}.sm\\:pr-1{padding-right:.25rem!important}.sm\\:pr-2{padding-right:.5rem!important}.sm\\:pr-3{padding-right:1rem!important}.sm\\:pr-4{padding-right:1.5rem!important}.sm\\:pr-5{padding-right:2rem!important}.sm\\:pr-6{padding-right:3rem!important}.sm\\:pr-7{padding-right:4rem!important}.sm\\:pr-8{padding-right:5rem!important}.sm\\:pl-0{padding-left:0rem!important}.sm\\:pl-1{padding-left:.25rem!important}.sm\\:pl-2{padding-left:.5rem!important}.sm\\:pl-3{padding-left:1rem!important}.sm\\:pl-4{padding-left:1.5rem!important}.sm\\:pl-5{padding-left:2rem!important}.sm\\:pl-6{padding-left:3rem!important}.sm\\:pl-7{padding-left:4rem!important}.sm\\:pl-8{padding-left:5rem!important}.sm\\:pb-0{padding-bottom:0rem!important}.sm\\:pb-1{padding-bottom:.25rem!important}.sm\\:pb-2{padding-bottom:.5rem!important}.sm\\:pb-3{padding-bottom:1rem!important}.sm\\:pb-4{padding-bottom:1.5rem!important}.sm\\:pb-5{padding-bottom:2rem!important}.sm\\:pb-6{padding-bottom:3rem!important}.sm\\:pb-7{padding-bottom:4rem!important}.sm\\:pb-8{padding-bottom:5rem!important}.sm\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.sm\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.sm\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.sm\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.sm\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.sm\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.sm\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.sm\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.sm\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.sm\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.sm\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.sm\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.sm\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.sm\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.sm\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.sm\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.sm\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.sm\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 768px){.md\\:p-0{padding:0rem!important}.md\\:p-1{padding:.25rem!important}.md\\:p-2{padding:.5rem!important}.md\\:p-3{padding:1rem!important}.md\\:p-4{padding:1.5rem!important}.md\\:p-5{padding:2rem!important}.md\\:p-6{padding:3rem!important}.md\\:p-7{padding:4rem!important}.md\\:p-8{padding:5rem!important}.md\\:pt-0{padding-top:0rem!important}.md\\:pt-1{padding-top:.25rem!important}.md\\:pt-2{padding-top:.5rem!important}.md\\:pt-3{padding-top:1rem!important}.md\\:pt-4{padding-top:1.5rem!important}.md\\:pt-5{padding-top:2rem!important}.md\\:pt-6{padding-top:3rem!important}.md\\:pt-7{padding-top:4rem!important}.md\\:pt-8{padding-top:5rem!important}.md\\:pr-0{padding-right:0rem!important}.md\\:pr-1{padding-right:.25rem!important}.md\\:pr-2{padding-right:.5rem!important}.md\\:pr-3{padding-right:1rem!important}.md\\:pr-4{padding-right:1.5rem!important}.md\\:pr-5{padding-right:2rem!important}.md\\:pr-6{padding-right:3rem!important}.md\\:pr-7{padding-right:4rem!important}.md\\:pr-8{padding-right:5rem!important}.md\\:pl-0{padding-left:0rem!important}.md\\:pl-1{padding-left:.25rem!important}.md\\:pl-2{padding-left:.5rem!important}.md\\:pl-3{padding-left:1rem!important}.md\\:pl-4{padding-left:1.5rem!important}.md\\:pl-5{padding-left:2rem!important}.md\\:pl-6{padding-left:3rem!important}.md\\:pl-7{padding-left:4rem!important}.md\\:pl-8{padding-left:5rem!important}.md\\:pb-0{padding-bottom:0rem!important}.md\\:pb-1{padding-bottom:.25rem!important}.md\\:pb-2{padding-bottom:.5rem!important}.md\\:pb-3{padding-bottom:1rem!important}.md\\:pb-4{padding-bottom:1.5rem!important}.md\\:pb-5{padding-bottom:2rem!important}.md\\:pb-6{padding-bottom:3rem!important}.md\\:pb-7{padding-bottom:4rem!important}.md\\:pb-8{padding-bottom:5rem!important}.md\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.md\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.md\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.md\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.md\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.md\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.md\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.md\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.md\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.md\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.md\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.md\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.md\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.md\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.md\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.md\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.md\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.md\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 992px){.lg\\:p-0{padding:0rem!important}.lg\\:p-1{padding:.25rem!important}.lg\\:p-2{padding:.5rem!important}.lg\\:p-3{padding:1rem!important}.lg\\:p-4{padding:1.5rem!important}.lg\\:p-5{padding:2rem!important}.lg\\:p-6{padding:3rem!important}.lg\\:p-7{padding:4rem!important}.lg\\:p-8{padding:5rem!important}.lg\\:pt-0{padding-top:0rem!important}.lg\\:pt-1{padding-top:.25rem!important}.lg\\:pt-2{padding-top:.5rem!important}.lg\\:pt-3{padding-top:1rem!important}.lg\\:pt-4{padding-top:1.5rem!important}.lg\\:pt-5{padding-top:2rem!important}.lg\\:pt-6{padding-top:3rem!important}.lg\\:pt-7{padding-top:4rem!important}.lg\\:pt-8{padding-top:5rem!important}.lg\\:pr-0{padding-right:0rem!important}.lg\\:pr-1{padding-right:.25rem!important}.lg\\:pr-2{padding-right:.5rem!important}.lg\\:pr-3{padding-right:1rem!important}.lg\\:pr-4{padding-right:1.5rem!important}.lg\\:pr-5{padding-right:2rem!important}.lg\\:pr-6{padding-right:3rem!important}.lg\\:pr-7{padding-right:4rem!important}.lg\\:pr-8{padding-right:5rem!important}.lg\\:pl-0{padding-left:0rem!important}.lg\\:pl-1{padding-left:.25rem!important}.lg\\:pl-2{padding-left:.5rem!important}.lg\\:pl-3{padding-left:1rem!important}.lg\\:pl-4{padding-left:1.5rem!important}.lg\\:pl-5{padding-left:2rem!important}.lg\\:pl-6{padding-left:3rem!important}.lg\\:pl-7{padding-left:4rem!important}.lg\\:pl-8{padding-left:5rem!important}.lg\\:pb-0{padding-bottom:0rem!important}.lg\\:pb-1{padding-bottom:.25rem!important}.lg\\:pb-2{padding-bottom:.5rem!important}.lg\\:pb-3{padding-bottom:1rem!important}.lg\\:pb-4{padding-bottom:1.5rem!important}.lg\\:pb-5{padding-bottom:2rem!important}.lg\\:pb-6{padding-bottom:3rem!important}.lg\\:pb-7{padding-bottom:4rem!important}.lg\\:pb-8{padding-bottom:5rem!important}.lg\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.lg\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.lg\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.lg\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.lg\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.lg\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.lg\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.lg\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.lg\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.lg\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.lg\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.lg\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.lg\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.lg\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.lg\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.lg\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.lg\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.lg\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 1200px){.xl\\:p-0{padding:0rem!important}.xl\\:p-1{padding:.25rem!important}.xl\\:p-2{padding:.5rem!important}.xl\\:p-3{padding:1rem!important}.xl\\:p-4{padding:1.5rem!important}.xl\\:p-5{padding:2rem!important}.xl\\:p-6{padding:3rem!important}.xl\\:p-7{padding:4rem!important}.xl\\:p-8{padding:5rem!important}.xl\\:pt-0{padding-top:0rem!important}.xl\\:pt-1{padding-top:.25rem!important}.xl\\:pt-2{padding-top:.5rem!important}.xl\\:pt-3{padding-top:1rem!important}.xl\\:pt-4{padding-top:1.5rem!important}.xl\\:pt-5{padding-top:2rem!important}.xl\\:pt-6{padding-top:3rem!important}.xl\\:pt-7{padding-top:4rem!important}.xl\\:pt-8{padding-top:5rem!important}.xl\\:pr-0{padding-right:0rem!important}.xl\\:pr-1{padding-right:.25rem!important}.xl\\:pr-2{padding-right:.5rem!important}.xl\\:pr-3{padding-right:1rem!important}.xl\\:pr-4{padding-right:1.5rem!important}.xl\\:pr-5{padding-right:2rem!important}.xl\\:pr-6{padding-right:3rem!important}.xl\\:pr-7{padding-right:4rem!important}.xl\\:pr-8{padding-right:5rem!important}.xl\\:pl-0{padding-left:0rem!important}.xl\\:pl-1{padding-left:.25rem!important}.xl\\:pl-2{padding-left:.5rem!important}.xl\\:pl-3{padding-left:1rem!important}.xl\\:pl-4{padding-left:1.5rem!important}.xl\\:pl-5{padding-left:2rem!important}.xl\\:pl-6{padding-left:3rem!important}.xl\\:pl-7{padding-left:4rem!important}.xl\\:pl-8{padding-left:5rem!important}.xl\\:pb-0{padding-bottom:0rem!important}.xl\\:pb-1{padding-bottom:.25rem!important}.xl\\:pb-2{padding-bottom:.5rem!important}.xl\\:pb-3{padding-bottom:1rem!important}.xl\\:pb-4{padding-bottom:1.5rem!important}.xl\\:pb-5{padding-bottom:2rem!important}.xl\\:pb-6{padding-bottom:3rem!important}.xl\\:pb-7{padding-bottom:4rem!important}.xl\\:pb-8{padding-bottom:5rem!important}.xl\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.xl\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.xl\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.xl\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.xl\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.xl\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.xl\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.xl\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.xl\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.xl\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.xl\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.xl\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.xl\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.xl\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.xl\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.xl\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.xl\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.xl\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}.m-0{margin:0rem!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:2rem!important}.m-6{margin:3rem!important}.m-7{margin:4rem!important}.m-8{margin:5rem!important}.-m-1{margin:-.25rem!important}.-m-2{margin:-.5rem!important}.-m-3{margin:-1rem!important}.-m-4{margin:-1.5rem!important}.-m-5{margin:-2rem!important}.-m-6{margin:-3rem!important}.-m-7{margin:-4rem!important}.-m-8{margin:-5rem!important}.m-auto{margin:auto!important}.mt-0{margin-top:0rem!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:2rem!important}.mt-6{margin-top:3rem!important}.mt-7{margin-top:4rem!important}.mt-8{margin-top:5rem!important}.-mt-1{margin-top:-.25rem!important}.-mt-2{margin-top:-.5rem!important}.-mt-3{margin-top:-1rem!important}.-mt-4{margin-top:-1.5rem!important}.-mt-5{margin-top:-2rem!important}.-mt-6{margin-top:-3rem!important}.-mt-7{margin-top:-4rem!important}.-mt-8{margin-top:-5rem!important}.mt-auto{margin-top:auto!important}.mr-0{margin-right:0rem!important}.mr-1{margin-right:.25rem!important}.mr-2{margin-right:.5rem!important}.mr-3{margin-right:1rem!important}.mr-4{margin-right:1.5rem!important}.mr-5{margin-right:2rem!important}.mr-6{margin-right:3rem!important}.mr-7{margin-right:4rem!important}.mr-8{margin-right:5rem!important}.-mr-1{margin-right:-.25rem!important}.-mr-2{margin-right:-.5rem!important}.-mr-3{margin-right:-1rem!important}.-mr-4{margin-right:-1.5rem!important}.-mr-5{margin-right:-2rem!important}.-mr-6{margin-right:-3rem!important}.-mr-7{margin-right:-4rem!important}.-mr-8{margin-right:-5rem!important}.mr-auto{margin-right:auto!important}.ml-0{margin-left:0rem!important}.ml-1{margin-left:.25rem!important}.ml-2{margin-left:.5rem!important}.ml-3{margin-left:1rem!important}.ml-4{margin-left:1.5rem!important}.ml-5{margin-left:2rem!important}.ml-6{margin-left:3rem!important}.ml-7{margin-left:4rem!important}.ml-8{margin-left:5rem!important}.-ml-1{margin-left:-.25rem!important}.-ml-2{margin-left:-.5rem!important}.-ml-3{margin-left:-1rem!important}.-ml-4{margin-left:-1.5rem!important}.-ml-5{margin-left:-2rem!important}.-ml-6{margin-left:-3rem!important}.-ml-7{margin-left:-4rem!important}.-ml-8{margin-left:-5rem!important}.ml-auto{margin-left:auto!important}.mb-0{margin-bottom:0rem!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:2rem!important}.mb-6{margin-bottom:3rem!important}.mb-7{margin-bottom:4rem!important}.mb-8{margin-bottom:5rem!important}.-mb-1{margin-bottom:-.25rem!important}.-mb-2{margin-bottom:-.5rem!important}.-mb-3{margin-bottom:-1rem!important}.-mb-4{margin-bottom:-1.5rem!important}.-mb-5{margin-bottom:-2rem!important}.-mb-6{margin-bottom:-3rem!important}.-mb-7{margin-bottom:-4rem!important}.-mb-8{margin-bottom:-5rem!important}.mb-auto{margin-bottom:auto!important}.mx-0{margin-left:0rem!important;margin-right:0rem!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:2rem!important;margin-right:2rem!important}.mx-6{margin-left:3rem!important;margin-right:3rem!important}.mx-7{margin-left:4rem!important;margin-right:4rem!important}.mx-8{margin-left:5rem!important;margin-right:5rem!important}.-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0rem!important;margin-bottom:0rem!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:2rem!important;margin-bottom:2rem!important}.my-6{margin-top:3rem!important;margin-bottom:3rem!important}.my-7{margin-top:4rem!important;margin-bottom:4rem!important}.my-8{margin-top:5rem!important;margin-bottom:5rem!important}.-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}@media screen and (min-width: 576px){.sm\\:m-0{margin:0rem!important}.sm\\:m-1{margin:.25rem!important}.sm\\:m-2{margin:.5rem!important}.sm\\:m-3{margin:1rem!important}.sm\\:m-4{margin:1.5rem!important}.sm\\:m-5{margin:2rem!important}.sm\\:m-6{margin:3rem!important}.sm\\:m-7{margin:4rem!important}.sm\\:m-8{margin:5rem!important}.sm\\:-m-1{margin:-.25rem!important}.sm\\:-m-2{margin:-.5rem!important}.sm\\:-m-3{margin:-1rem!important}.sm\\:-m-4{margin:-1.5rem!important}.sm\\:-m-5{margin:-2rem!important}.sm\\:-m-6{margin:-3rem!important}.sm\\:-m-7{margin:-4rem!important}.sm\\:-m-8{margin:-5rem!important}.sm\\:m-auto{margin:auto!important}.sm\\:mt-0{margin-top:0rem!important}.sm\\:mt-1{margin-top:.25rem!important}.sm\\:mt-2{margin-top:.5rem!important}.sm\\:mt-3{margin-top:1rem!important}.sm\\:mt-4{margin-top:1.5rem!important}.sm\\:mt-5{margin-top:2rem!important}.sm\\:mt-6{margin-top:3rem!important}.sm\\:mt-7{margin-top:4rem!important}.sm\\:mt-8{margin-top:5rem!important}.sm\\:-mt-1{margin-top:-.25rem!important}.sm\\:-mt-2{margin-top:-.5rem!important}.sm\\:-mt-3{margin-top:-1rem!important}.sm\\:-mt-4{margin-top:-1.5rem!important}.sm\\:-mt-5{margin-top:-2rem!important}.sm\\:-mt-6{margin-top:-3rem!important}.sm\\:-mt-7{margin-top:-4rem!important}.sm\\:-mt-8{margin-top:-5rem!important}.sm\\:mt-auto{margin-top:auto!important}.sm\\:mr-0{margin-right:0rem!important}.sm\\:mr-1{margin-right:.25rem!important}.sm\\:mr-2{margin-right:.5rem!important}.sm\\:mr-3{margin-right:1rem!important}.sm\\:mr-4{margin-right:1.5rem!important}.sm\\:mr-5{margin-right:2rem!important}.sm\\:mr-6{margin-right:3rem!important}.sm\\:mr-7{margin-right:4rem!important}.sm\\:mr-8{margin-right:5rem!important}.sm\\:-mr-1{margin-right:-.25rem!important}.sm\\:-mr-2{margin-right:-.5rem!important}.sm\\:-mr-3{margin-right:-1rem!important}.sm\\:-mr-4{margin-right:-1.5rem!important}.sm\\:-mr-5{margin-right:-2rem!important}.sm\\:-mr-6{margin-right:-3rem!important}.sm\\:-mr-7{margin-right:-4rem!important}.sm\\:-mr-8{margin-right:-5rem!important}.sm\\:mr-auto{margin-right:auto!important}.sm\\:ml-0{margin-left:0rem!important}.sm\\:ml-1{margin-left:.25rem!important}.sm\\:ml-2{margin-left:.5rem!important}.sm\\:ml-3{margin-left:1rem!important}.sm\\:ml-4{margin-left:1.5rem!important}.sm\\:ml-5{margin-left:2rem!important}.sm\\:ml-6{margin-left:3rem!important}.sm\\:ml-7{margin-left:4rem!important}.sm\\:ml-8{margin-left:5rem!important}.sm\\:-ml-1{margin-left:-.25rem!important}.sm\\:-ml-2{margin-left:-.5rem!important}.sm\\:-ml-3{margin-left:-1rem!important}.sm\\:-ml-4{margin-left:-1.5rem!important}.sm\\:-ml-5{margin-left:-2rem!important}.sm\\:-ml-6{margin-left:-3rem!important}.sm\\:-ml-7{margin-left:-4rem!important}.sm\\:-ml-8{margin-left:-5rem!important}.sm\\:ml-auto{margin-left:auto!important}.sm\\:mb-0{margin-bottom:0rem!important}.sm\\:mb-1{margin-bottom:.25rem!important}.sm\\:mb-2{margin-bottom:.5rem!important}.sm\\:mb-3{margin-bottom:1rem!important}.sm\\:mb-4{margin-bottom:1.5rem!important}.sm\\:mb-5{margin-bottom:2rem!important}.sm\\:mb-6{margin-bottom:3rem!important}.sm\\:mb-7{margin-bottom:4rem!important}.sm\\:mb-8{margin-bottom:5rem!important}.sm\\:-mb-1{margin-bottom:-.25rem!important}.sm\\:-mb-2{margin-bottom:-.5rem!important}.sm\\:-mb-3{margin-bottom:-1rem!important}.sm\\:-mb-4{margin-bottom:-1.5rem!important}.sm\\:-mb-5{margin-bottom:-2rem!important}.sm\\:-mb-6{margin-bottom:-3rem!important}.sm\\:-mb-7{margin-bottom:-4rem!important}.sm\\:-mb-8{margin-bottom:-5rem!important}.sm\\:mb-auto{margin-bottom:auto!important}.sm\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.sm\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.sm\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.sm\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.sm\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.sm\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.sm\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.sm\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.sm\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.sm\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.sm\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.sm\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.sm\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.sm\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.sm\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.sm\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.sm\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.sm\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.sm\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.sm\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.sm\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.sm\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.sm\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.sm\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.sm\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.sm\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.sm\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.sm\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.sm\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.sm\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.sm\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.sm\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.sm\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.sm\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.sm\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.sm\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 768px){.md\\:m-0{margin:0rem!important}.md\\:m-1{margin:.25rem!important}.md\\:m-2{margin:.5rem!important}.md\\:m-3{margin:1rem!important}.md\\:m-4{margin:1.5rem!important}.md\\:m-5{margin:2rem!important}.md\\:m-6{margin:3rem!important}.md\\:m-7{margin:4rem!important}.md\\:m-8{margin:5rem!important}.md\\:-m-1{margin:-.25rem!important}.md\\:-m-2{margin:-.5rem!important}.md\\:-m-3{margin:-1rem!important}.md\\:-m-4{margin:-1.5rem!important}.md\\:-m-5{margin:-2rem!important}.md\\:-m-6{margin:-3rem!important}.md\\:-m-7{margin:-4rem!important}.md\\:-m-8{margin:-5rem!important}.md\\:m-auto{margin:auto!important}.md\\:mt-0{margin-top:0rem!important}.md\\:mt-1{margin-top:.25rem!important}.md\\:mt-2{margin-top:.5rem!important}.md\\:mt-3{margin-top:1rem!important}.md\\:mt-4{margin-top:1.5rem!important}.md\\:mt-5{margin-top:2rem!important}.md\\:mt-6{margin-top:3rem!important}.md\\:mt-7{margin-top:4rem!important}.md\\:mt-8{margin-top:5rem!important}.md\\:-mt-1{margin-top:-.25rem!important}.md\\:-mt-2{margin-top:-.5rem!important}.md\\:-mt-3{margin-top:-1rem!important}.md\\:-mt-4{margin-top:-1.5rem!important}.md\\:-mt-5{margin-top:-2rem!important}.md\\:-mt-6{margin-top:-3rem!important}.md\\:-mt-7{margin-top:-4rem!important}.md\\:-mt-8{margin-top:-5rem!important}.md\\:mt-auto{margin-top:auto!important}.md\\:mr-0{margin-right:0rem!important}.md\\:mr-1{margin-right:.25rem!important}.md\\:mr-2{margin-right:.5rem!important}.md\\:mr-3{margin-right:1rem!important}.md\\:mr-4{margin-right:1.5rem!important}.md\\:mr-5{margin-right:2rem!important}.md\\:mr-6{margin-right:3rem!important}.md\\:mr-7{margin-right:4rem!important}.md\\:mr-8{margin-right:5rem!important}.md\\:-mr-1{margin-right:-.25rem!important}.md\\:-mr-2{margin-right:-.5rem!important}.md\\:-mr-3{margin-right:-1rem!important}.md\\:-mr-4{margin-right:-1.5rem!important}.md\\:-mr-5{margin-right:-2rem!important}.md\\:-mr-6{margin-right:-3rem!important}.md\\:-mr-7{margin-right:-4rem!important}.md\\:-mr-8{margin-right:-5rem!important}.md\\:mr-auto{margin-right:auto!important}.md\\:ml-0{margin-left:0rem!important}.md\\:ml-1{margin-left:.25rem!important}.md\\:ml-2{margin-left:.5rem!important}.md\\:ml-3{margin-left:1rem!important}.md\\:ml-4{margin-left:1.5rem!important}.md\\:ml-5{margin-left:2rem!important}.md\\:ml-6{margin-left:3rem!important}.md\\:ml-7{margin-left:4rem!important}.md\\:ml-8{margin-left:5rem!important}.md\\:-ml-1{margin-left:-.25rem!important}.md\\:-ml-2{margin-left:-.5rem!important}.md\\:-ml-3{margin-left:-1rem!important}.md\\:-ml-4{margin-left:-1.5rem!important}.md\\:-ml-5{margin-left:-2rem!important}.md\\:-ml-6{margin-left:-3rem!important}.md\\:-ml-7{margin-left:-4rem!important}.md\\:-ml-8{margin-left:-5rem!important}.md\\:ml-auto{margin-left:auto!important}.md\\:mb-0{margin-bottom:0rem!important}.md\\:mb-1{margin-bottom:.25rem!important}.md\\:mb-2{margin-bottom:.5rem!important}.md\\:mb-3{margin-bottom:1rem!important}.md\\:mb-4{margin-bottom:1.5rem!important}.md\\:mb-5{margin-bottom:2rem!important}.md\\:mb-6{margin-bottom:3rem!important}.md\\:mb-7{margin-bottom:4rem!important}.md\\:mb-8{margin-bottom:5rem!important}.md\\:-mb-1{margin-bottom:-.25rem!important}.md\\:-mb-2{margin-bottom:-.5rem!important}.md\\:-mb-3{margin-bottom:-1rem!important}.md\\:-mb-4{margin-bottom:-1.5rem!important}.md\\:-mb-5{margin-bottom:-2rem!important}.md\\:-mb-6{margin-bottom:-3rem!important}.md\\:-mb-7{margin-bottom:-4rem!important}.md\\:-mb-8{margin-bottom:-5rem!important}.md\\:mb-auto{margin-bottom:auto!important}.md\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.md\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.md\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.md\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.md\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.md\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.md\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.md\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.md\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.md\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.md\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.md\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.md\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.md\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.md\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.md\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.md\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.md\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.md\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.md\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.md\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.md\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.md\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.md\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.md\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.md\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.md\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.md\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.md\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.md\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.md\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.md\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.md\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.md\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.md\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.md\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 992px){.lg\\:m-0{margin:0rem!important}.lg\\:m-1{margin:.25rem!important}.lg\\:m-2{margin:.5rem!important}.lg\\:m-3{margin:1rem!important}.lg\\:m-4{margin:1.5rem!important}.lg\\:m-5{margin:2rem!important}.lg\\:m-6{margin:3rem!important}.lg\\:m-7{margin:4rem!important}.lg\\:m-8{margin:5rem!important}.lg\\:-m-1{margin:-.25rem!important}.lg\\:-m-2{margin:-.5rem!important}.lg\\:-m-3{margin:-1rem!important}.lg\\:-m-4{margin:-1.5rem!important}.lg\\:-m-5{margin:-2rem!important}.lg\\:-m-6{margin:-3rem!important}.lg\\:-m-7{margin:-4rem!important}.lg\\:-m-8{margin:-5rem!important}.lg\\:m-auto{margin:auto!important}.lg\\:mt-0{margin-top:0rem!important}.lg\\:mt-1{margin-top:.25rem!important}.lg\\:mt-2{margin-top:.5rem!important}.lg\\:mt-3{margin-top:1rem!important}.lg\\:mt-4{margin-top:1.5rem!important}.lg\\:mt-5{margin-top:2rem!important}.lg\\:mt-6{margin-top:3rem!important}.lg\\:mt-7{margin-top:4rem!important}.lg\\:mt-8{margin-top:5rem!important}.lg\\:-mt-1{margin-top:-.25rem!important}.lg\\:-mt-2{margin-top:-.5rem!important}.lg\\:-mt-3{margin-top:-1rem!important}.lg\\:-mt-4{margin-top:-1.5rem!important}.lg\\:-mt-5{margin-top:-2rem!important}.lg\\:-mt-6{margin-top:-3rem!important}.lg\\:-mt-7{margin-top:-4rem!important}.lg\\:-mt-8{margin-top:-5rem!important}.lg\\:mt-auto{margin-top:auto!important}.lg\\:mr-0{margin-right:0rem!important}.lg\\:mr-1{margin-right:.25rem!important}.lg\\:mr-2{margin-right:.5rem!important}.lg\\:mr-3{margin-right:1rem!important}.lg\\:mr-4{margin-right:1.5rem!important}.lg\\:mr-5{margin-right:2rem!important}.lg\\:mr-6{margin-right:3rem!important}.lg\\:mr-7{margin-right:4rem!important}.lg\\:mr-8{margin-right:5rem!important}.lg\\:-mr-1{margin-right:-.25rem!important}.lg\\:-mr-2{margin-right:-.5rem!important}.lg\\:-mr-3{margin-right:-1rem!important}.lg\\:-mr-4{margin-right:-1.5rem!important}.lg\\:-mr-5{margin-right:-2rem!important}.lg\\:-mr-6{margin-right:-3rem!important}.lg\\:-mr-7{margin-right:-4rem!important}.lg\\:-mr-8{margin-right:-5rem!important}.lg\\:mr-auto{margin-right:auto!important}.lg\\:ml-0{margin-left:0rem!important}.lg\\:ml-1{margin-left:.25rem!important}.lg\\:ml-2{margin-left:.5rem!important}.lg\\:ml-3{margin-left:1rem!important}.lg\\:ml-4{margin-left:1.5rem!important}.lg\\:ml-5{margin-left:2rem!important}.lg\\:ml-6{margin-left:3rem!important}.lg\\:ml-7{margin-left:4rem!important}.lg\\:ml-8{margin-left:5rem!important}.lg\\:-ml-1{margin-left:-.25rem!important}.lg\\:-ml-2{margin-left:-.5rem!important}.lg\\:-ml-3{margin-left:-1rem!important}.lg\\:-ml-4{margin-left:-1.5rem!important}.lg\\:-ml-5{margin-left:-2rem!important}.lg\\:-ml-6{margin-left:-3rem!important}.lg\\:-ml-7{margin-left:-4rem!important}.lg\\:-ml-8{margin-left:-5rem!important}.lg\\:ml-auto{margin-left:auto!important}.lg\\:mb-0{margin-bottom:0rem!important}.lg\\:mb-1{margin-bottom:.25rem!important}.lg\\:mb-2{margin-bottom:.5rem!important}.lg\\:mb-3{margin-bottom:1rem!important}.lg\\:mb-4{margin-bottom:1.5rem!important}.lg\\:mb-5{margin-bottom:2rem!important}.lg\\:mb-6{margin-bottom:3rem!important}.lg\\:mb-7{margin-bottom:4rem!important}.lg\\:mb-8{margin-bottom:5rem!important}.lg\\:-mb-1{margin-bottom:-.25rem!important}.lg\\:-mb-2{margin-bottom:-.5rem!important}.lg\\:-mb-3{margin-bottom:-1rem!important}.lg\\:-mb-4{margin-bottom:-1.5rem!important}.lg\\:-mb-5{margin-bottom:-2rem!important}.lg\\:-mb-6{margin-bottom:-3rem!important}.lg\\:-mb-7{margin-bottom:-4rem!important}.lg\\:-mb-8{margin-bottom:-5rem!important}.lg\\:mb-auto{margin-bottom:auto!important}.lg\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.lg\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.lg\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.lg\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.lg\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.lg\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.lg\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.lg\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.lg\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.lg\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.lg\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.lg\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.lg\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.lg\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.lg\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.lg\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.lg\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.lg\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.lg\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.lg\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.lg\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.lg\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.lg\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.lg\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.lg\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.lg\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.lg\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.lg\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.lg\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.lg\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.lg\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.lg\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.lg\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.lg\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.lg\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.lg\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 1200px){.xl\\:m-0{margin:0rem!important}.xl\\:m-1{margin:.25rem!important}.xl\\:m-2{margin:.5rem!important}.xl\\:m-3{margin:1rem!important}.xl\\:m-4{margin:1.5rem!important}.xl\\:m-5{margin:2rem!important}.xl\\:m-6{margin:3rem!important}.xl\\:m-7{margin:4rem!important}.xl\\:m-8{margin:5rem!important}.xl\\:-m-1{margin:-.25rem!important}.xl\\:-m-2{margin:-.5rem!important}.xl\\:-m-3{margin:-1rem!important}.xl\\:-m-4{margin:-1.5rem!important}.xl\\:-m-5{margin:-2rem!important}.xl\\:-m-6{margin:-3rem!important}.xl\\:-m-7{margin:-4rem!important}.xl\\:-m-8{margin:-5rem!important}.xl\\:m-auto{margin:auto!important}.xl\\:mt-0{margin-top:0rem!important}.xl\\:mt-1{margin-top:.25rem!important}.xl\\:mt-2{margin-top:.5rem!important}.xl\\:mt-3{margin-top:1rem!important}.xl\\:mt-4{margin-top:1.5rem!important}.xl\\:mt-5{margin-top:2rem!important}.xl\\:mt-6{margin-top:3rem!important}.xl\\:mt-7{margin-top:4rem!important}.xl\\:mt-8{margin-top:5rem!important}.xl\\:-mt-1{margin-top:-.25rem!important}.xl\\:-mt-2{margin-top:-.5rem!important}.xl\\:-mt-3{margin-top:-1rem!important}.xl\\:-mt-4{margin-top:-1.5rem!important}.xl\\:-mt-5{margin-top:-2rem!important}.xl\\:-mt-6{margin-top:-3rem!important}.xl\\:-mt-7{margin-top:-4rem!important}.xl\\:-mt-8{margin-top:-5rem!important}.xl\\:mt-auto{margin-top:auto!important}.xl\\:mr-0{margin-right:0rem!important}.xl\\:mr-1{margin-right:.25rem!important}.xl\\:mr-2{margin-right:.5rem!important}.xl\\:mr-3{margin-right:1rem!important}.xl\\:mr-4{margin-right:1.5rem!important}.xl\\:mr-5{margin-right:2rem!important}.xl\\:mr-6{margin-right:3rem!important}.xl\\:mr-7{margin-right:4rem!important}.xl\\:mr-8{margin-right:5rem!important}.xl\\:-mr-1{margin-right:-.25rem!important}.xl\\:-mr-2{margin-right:-.5rem!important}.xl\\:-mr-3{margin-right:-1rem!important}.xl\\:-mr-4{margin-right:-1.5rem!important}.xl\\:-mr-5{margin-right:-2rem!important}.xl\\:-mr-6{margin-right:-3rem!important}.xl\\:-mr-7{margin-right:-4rem!important}.xl\\:-mr-8{margin-right:-5rem!important}.xl\\:mr-auto{margin-right:auto!important}.xl\\:ml-0{margin-left:0rem!important}.xl\\:ml-1{margin-left:.25rem!important}.xl\\:ml-2{margin-left:.5rem!important}.xl\\:ml-3{margin-left:1rem!important}.xl\\:ml-4{margin-left:1.5rem!important}.xl\\:ml-5{margin-left:2rem!important}.xl\\:ml-6{margin-left:3rem!important}.xl\\:ml-7{margin-left:4rem!important}.xl\\:ml-8{margin-left:5rem!important}.xl\\:-ml-1{margin-left:-.25rem!important}.xl\\:-ml-2{margin-left:-.5rem!important}.xl\\:-ml-3{margin-left:-1rem!important}.xl\\:-ml-4{margin-left:-1.5rem!important}.xl\\:-ml-5{margin-left:-2rem!important}.xl\\:-ml-6{margin-left:-3rem!important}.xl\\:-ml-7{margin-left:-4rem!important}.xl\\:-ml-8{margin-left:-5rem!important}.xl\\:ml-auto{margin-left:auto!important}.xl\\:mb-0{margin-bottom:0rem!important}.xl\\:mb-1{margin-bottom:.25rem!important}.xl\\:mb-2{margin-bottom:.5rem!important}.xl\\:mb-3{margin-bottom:1rem!important}.xl\\:mb-4{margin-bottom:1.5rem!important}.xl\\:mb-5{margin-bottom:2rem!important}.xl\\:mb-6{margin-bottom:3rem!important}.xl\\:mb-7{margin-bottom:4rem!important}.xl\\:mb-8{margin-bottom:5rem!important}.xl\\:-mb-1{margin-bottom:-.25rem!important}.xl\\:-mb-2{margin-bottom:-.5rem!important}.xl\\:-mb-3{margin-bottom:-1rem!important}.xl\\:-mb-4{margin-bottom:-1.5rem!important}.xl\\:-mb-5{margin-bottom:-2rem!important}.xl\\:-mb-6{margin-bottom:-3rem!important}.xl\\:-mb-7{margin-bottom:-4rem!important}.xl\\:-mb-8{margin-bottom:-5rem!important}.xl\\:mb-auto{margin-bottom:auto!important}.xl\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.xl\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.xl\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.xl\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.xl\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.xl\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.xl\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.xl\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.xl\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.xl\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.xl\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.xl\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.xl\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.xl\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.xl\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.xl\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.xl\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.xl\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.xl\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.xl\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.xl\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.xl\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.xl\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.xl\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.xl\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.xl\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.xl\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.xl\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.xl\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.xl\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.xl\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.xl\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.xl\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.xl\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.xl\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.xl\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}.shadow-none{box-shadow:none!important}.shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.focus\\:shadow-none:focus{box-shadow:none!important}.hover\\:shadow-none:hover,.active\\:shadow-none:active{box-shadow:none!important}.focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.hover\\:shadow-1:hover,.active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.hover\\:shadow-2:hover,.active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.hover\\:shadow-3:hover,.active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.hover\\:shadow-4:hover,.active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.hover\\:shadow-5:hover,.active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.hover\\:shadow-6:hover,.active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.hover\\:shadow-7:hover,.active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.hover\\:shadow-8:hover,.active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}@media screen and (min-width: 576px){.sm\\:shadow-none{box-shadow:none!important}.sm\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.sm\\:focus\\:shadow-none:focus{box-shadow:none!important}.sm\\:hover\\:shadow-none:hover,.sm\\:active\\:shadow-none:active{box-shadow:none!important}.sm\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:hover\\:shadow-1:hover,.sm\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:hover\\:shadow-2:hover,.sm\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:hover\\:shadow-3:hover,.sm\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:hover\\:shadow-4:hover,.sm\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:hover\\:shadow-5:hover,.sm\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:hover\\:shadow-6:hover,.sm\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:hover\\:shadow-7:hover,.sm\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.sm\\:hover\\:shadow-8:hover,.sm\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 768px){.md\\:shadow-none{box-shadow:none!important}.md\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.md\\:focus\\:shadow-none:focus{box-shadow:none!important}.md\\:hover\\:shadow-none:hover,.md\\:active\\:shadow-none:active{box-shadow:none!important}.md\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:hover\\:shadow-1:hover,.md\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:hover\\:shadow-2:hover,.md\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:hover\\:shadow-3:hover,.md\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:hover\\:shadow-4:hover,.md\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:hover\\:shadow-5:hover,.md\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:hover\\:shadow-6:hover,.md\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:hover\\:shadow-7:hover,.md\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.md\\:hover\\:shadow-8:hover,.md\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 992px){.lg\\:shadow-none{box-shadow:none!important}.lg\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.lg\\:focus\\:shadow-none:focus{box-shadow:none!important}.lg\\:hover\\:shadow-none:hover,.lg\\:active\\:shadow-none:active{box-shadow:none!important}.lg\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:hover\\:shadow-1:hover,.lg\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:hover\\:shadow-2:hover,.lg\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:hover\\:shadow-3:hover,.lg\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:hover\\:shadow-4:hover,.lg\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:hover\\:shadow-5:hover,.lg\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:hover\\:shadow-6:hover,.lg\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:hover\\:shadow-7:hover,.lg\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.lg\\:hover\\:shadow-8:hover,.lg\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 1200px){.xl\\:shadow-none{box-shadow:none!important}.xl\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.xl\\:focus\\:shadow-none:focus{box-shadow:none!important}.xl\\:hover\\:shadow-none:hover,.xl\\:active\\:shadow-none:active{box-shadow:none!important}.xl\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:hover\\:shadow-1:hover,.xl\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:hover\\:shadow-2:hover,.xl\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:hover\\:shadow-3:hover,.xl\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:hover\\:shadow-4:hover,.xl\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:hover\\:shadow-5:hover,.xl\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:hover\\:shadow-6:hover,.xl\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:hover\\:shadow-7:hover,.xl\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.xl\\:hover\\:shadow-8:hover,.xl\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}.border-none{border-width:0px!important;border-style:none}.border-1{border-width:1px!important;border-style:solid}.border-2{border-width:2px!important;border-style:solid}.border-3{border-width:3px!important;border-style:solid}.border-top-none{border-top-width:0px!important;border-top-style:none}.border-top-1{border-top-width:1px!important;border-top-style:solid}.border-top-2{border-top-width:2px!important;border-top-style:solid}.border-top-3{border-top-width:3px!important;border-top-style:solid}.border-right-none{border-right-width:0px!important;border-right-style:none}.border-right-1{border-right-width:1px!important;border-right-style:solid}.border-right-2{border-right-width:2px!important;border-right-style:solid}.border-right-3{border-right-width:3px!important;border-right-style:solid}.border-left-none{border-left-width:0px!important;border-left-style:none}.border-left-1{border-left-width:1px!important;border-left-style:solid}.border-left-2{border-left-width:2px!important;border-left-style:solid}.border-left-3{border-left-width:3px!important;border-left-style:solid}.border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}@media screen and (min-width: 576px){.sm\\:border-none{border-width:0px!important;border-style:none}.sm\\:border-1{border-width:1px!important;border-style:solid}.sm\\:border-2{border-width:2px!important;border-style:solid}.sm\\:border-3{border-width:3px!important;border-style:solid}.sm\\:border-top-none{border-top-width:0px!important;border-top-style:none}.sm\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.sm\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.sm\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.sm\\:border-right-none{border-right-width:0px!important;border-right-style:none}.sm\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.sm\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.sm\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.sm\\:border-left-none{border-left-width:0px!important;border-left-style:none}.sm\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.sm\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.sm\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.sm\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.sm\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.sm\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.sm\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.sm\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.sm\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.sm\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.sm\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.sm\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.sm\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.sm\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.sm\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 768px){.md\\:border-none{border-width:0px!important;border-style:none}.md\\:border-1{border-width:1px!important;border-style:solid}.md\\:border-2{border-width:2px!important;border-style:solid}.md\\:border-3{border-width:3px!important;border-style:solid}.md\\:border-top-none{border-top-width:0px!important;border-top-style:none}.md\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.md\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.md\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.md\\:border-right-none{border-right-width:0px!important;border-right-style:none}.md\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.md\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.md\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.md\\:border-left-none{border-left-width:0px!important;border-left-style:none}.md\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.md\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.md\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.md\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.md\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.md\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.md\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.md\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.md\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.md\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.md\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.md\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.md\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.md\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.md\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 992px){.lg\\:border-none{border-width:0px!important;border-style:none}.lg\\:border-1{border-width:1px!important;border-style:solid}.lg\\:border-2{border-width:2px!important;border-style:solid}.lg\\:border-3{border-width:3px!important;border-style:solid}.lg\\:border-top-none{border-top-width:0px!important;border-top-style:none}.lg\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.lg\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.lg\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.lg\\:border-right-none{border-right-width:0px!important;border-right-style:none}.lg\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.lg\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.lg\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.lg\\:border-left-none{border-left-width:0px!important;border-left-style:none}.lg\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.lg\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.lg\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.lg\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.lg\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.lg\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.lg\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.lg\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.lg\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.lg\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.lg\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.lg\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.lg\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.lg\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.lg\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 1200px){.xl\\:border-none{border-width:0px!important;border-style:none}.xl\\:border-1{border-width:1px!important;border-style:solid}.xl\\:border-2{border-width:2px!important;border-style:solid}.xl\\:border-3{border-width:3px!important;border-style:solid}.xl\\:border-top-none{border-top-width:0px!important;border-top-style:none}.xl\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.xl\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.xl\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.xl\\:border-right-none{border-right-width:0px!important;border-right-style:none}.xl\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.xl\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.xl\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.xl\\:border-left-none{border-left-width:0px!important;border-left-style:none}.xl\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.xl\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.xl\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.xl\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.xl\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.xl\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.xl\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.xl\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.xl\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.xl\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.xl\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.xl\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.xl\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.xl\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.xl\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}.border-solid{border-style:solid!important}.border-dashed{border-style:dashed!important}.border-dotted{border-style:dotted!important}.border-double{border-style:double!important}@media screen and (min-width: 576px){.sm\\:border-solid{border-style:solid!important}.sm\\:border-dashed{border-style:dashed!important}.sm\\:border-dotted{border-style:dotted!important}.sm\\:border-double{border-style:double!important}}@media screen and (min-width: 768px){.md\\:border-solid{border-style:solid!important}.md\\:border-dashed{border-style:dashed!important}.md\\:border-dotted{border-style:dotted!important}.md\\:border-double{border-style:double!important}}@media screen and (min-width: 992px){.lg\\:border-solid{border-style:solid!important}.lg\\:border-dashed{border-style:dashed!important}.lg\\:border-dotted{border-style:dotted!important}.lg\\:border-double{border-style:double!important}}@media screen and (min-width: 1200px){.xl\\:border-solid{border-style:solid!important}.xl\\:border-dashed{border-style:dashed!important}.xl\\:border-dotted{border-style:dotted!important}.xl\\:border-double{border-style:double!important}}.border-noround{border-radius:0!important}.border-round{border-radius:var(--border-radius)!important}.border-round-xs{border-radius:.125rem!important}.border-round-sm{border-radius:.25rem!important}.border-round-md{border-radius:.375rem!important}.border-round-lg{border-radius:.5rem!important}.border-round-xl{border-radius:.75rem!important}.border-round-2xl{border-radius:1rem!important}.border-round-3xl{border-radius:1.5rem!important}.border-circle{border-radius:50%!important}@media screen and (min-width: 576px){.sm\\:border-noround{border-radius:0!important}.sm\\:border-round{border-radius:var(--border-radius)!important}.sm\\:border-round-xs{border-radius:.125rem!important}.sm\\:border-round-sm{border-radius:.25rem!important}.sm\\:border-round-md{border-radius:.375rem!important}.sm\\:border-round-lg{border-radius:.5rem!important}.sm\\:border-round-xl{border-radius:.75rem!important}.sm\\:border-round-2xl{border-radius:1rem!important}.sm\\:border-round-3xl{border-radius:1.5rem!important}.sm\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 768px){.md\\:border-noround{border-radius:0!important}.md\\:border-round{border-radius:var(--border-radius)!important}.md\\:border-round-xs{border-radius:.125rem!important}.md\\:border-round-sm{border-radius:.25rem!important}.md\\:border-round-md{border-radius:.375rem!important}.md\\:border-round-lg{border-radius:.5rem!important}.md\\:border-round-xl{border-radius:.75rem!important}.md\\:border-round-2xl{border-radius:1rem!important}.md\\:border-round-3xl{border-radius:1.5rem!important}.md\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 992px){.lg\\:border-noround{border-radius:0!important}.lg\\:border-round{border-radius:var(--border-radius)!important}.lg\\:border-round-xs{border-radius:.125rem!important}.lg\\:border-round-sm{border-radius:.25rem!important}.lg\\:border-round-md{border-radius:.375rem!important}.lg\\:border-round-lg{border-radius:.5rem!important}.lg\\:border-round-xl{border-radius:.75rem!important}.lg\\:border-round-2xl{border-radius:1rem!important}.lg\\:border-round-3xl{border-radius:1.5rem!important}.lg\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 1200px){.xl\\:border-noround{border-radius:0!important}.xl\\:border-round{border-radius:var(--border-radius)!important}.xl\\:border-round-xs{border-radius:.125rem!important}.xl\\:border-round-sm{border-radius:.25rem!important}.xl\\:border-round-md{border-radius:.375rem!important}.xl\\:border-round-lg{border-radius:.5rem!important}.xl\\:border-round-xl{border-radius:.75rem!important}.xl\\:border-round-2xl{border-radius:1rem!important}.xl\\:border-round-3xl{border-radius:1.5rem!important}.xl\\:border-circle{border-radius:50%!important}}.border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}@media screen and (min-width: 576px){.sm\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.sm\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.sm\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.sm\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.sm\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.sm\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.sm\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.sm\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.sm\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.sm\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.sm\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.sm\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.sm\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.sm\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.sm\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.sm\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.sm\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.sm\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.sm\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.sm\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.sm\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.sm\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.sm\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.sm\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.sm\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.sm\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.sm\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.sm\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.sm\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.sm\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.sm\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.sm\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.sm\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.sm\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.sm\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.sm\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.sm\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.sm\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.sm\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.sm\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 768px){.md\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.md\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.md\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.md\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.md\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.md\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.md\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.md\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.md\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.md\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.md\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.md\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.md\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.md\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.md\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.md\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.md\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.md\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.md\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.md\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.md\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.md\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.md\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.md\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.md\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.md\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.md\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.md\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.md\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.md\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.md\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.md\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.md\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.md\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.md\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.md\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.md\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.md\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.md\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.md\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 992px){.lg\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.lg\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.lg\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.lg\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.lg\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.lg\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.lg\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.lg\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.lg\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.lg\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.lg\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.lg\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.lg\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.lg\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.lg\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.lg\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.lg\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.lg\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.lg\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.lg\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.lg\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.lg\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.lg\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.lg\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.lg\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.lg\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.lg\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.lg\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.lg\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.lg\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.lg\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.lg\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.lg\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.lg\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.lg\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.lg\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.lg\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.lg\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.lg\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.lg\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 1200px){.xl\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.xl\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.xl\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.xl\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.xl\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.xl\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.xl\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.xl\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.xl\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.xl\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.xl\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.xl\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.xl\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.xl\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.xl\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.xl\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.xl\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.xl\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.xl\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.xl\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.xl\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.xl\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.xl\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.xl\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.xl\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.xl\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.xl\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.xl\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.xl\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.xl\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.xl\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.xl\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.xl\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.xl\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.xl\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.xl\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.xl\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.xl\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.xl\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.xl\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}.w-full{width:100%!important}.w-screen{width:100vw!important}.w-auto{width:auto!important}.w-1{width:8.3333%!important}.w-2{width:16.6667%!important}.w-3{width:25%!important}.w-4{width:33.3333%!important}.w-5{width:41.6667%!important}.w-6{width:50%!important}.w-7{width:58.3333%!important}.w-8{width:66.6667%!important}.w-9{width:75%!important}.w-10{width:83.3333%!important}.w-11{width:91.6667%!important}.w-12{width:100%!important}.w-min{width:min-content!important}.w-max{width:max-content!important}.w-fit{width:-moz-fit-content!important;width:fit-content!important}.w-1rem{width:1rem!important}.w-2rem{width:2rem!important}.w-3rem{width:3rem!important}.w-4rem{width:4rem!important}.w-5rem{width:5rem!important}.w-6rem{width:6rem!important}.w-7rem{width:7rem!important}.w-8rem{width:8rem!important}.w-9rem{width:9rem!important}.w-10rem{width:10rem!important}.w-11rem{width:11rem!important}.w-12rem{width:12rem!important}.w-13rem{width:13rem!important}.w-14rem{width:14rem!important}.w-15rem{width:15rem!important}.w-16rem{width:16rem!important}.w-17rem{width:17rem!important}.w-18rem{width:18rem!important}.w-19rem{width:19rem!important}.w-20rem{width:20rem!important}.w-21rem{width:21rem!important}.w-22rem{width:22rem!important}.w-23rem{width:23rem!important}.w-24rem{width:24rem!important}.w-25rem{width:25rem!important}.w-26rem{width:26rem!important}.w-27rem{width:27rem!important}.w-28rem{width:28rem!important}.w-29rem{width:29rem!important}.w-30rem{width:30rem!important}@media screen and (min-width: 576px){.sm\\:w-full{width:100%!important}.sm\\:w-screen{width:100vw!important}.sm\\:w-auto{width:auto!important}.sm\\:w-1{width:8.3333%!important}.sm\\:w-2{width:16.6667%!important}.sm\\:w-3{width:25%!important}.sm\\:w-4{width:33.3333%!important}.sm\\:w-5{width:41.6667%!important}.sm\\:w-6{width:50%!important}.sm\\:w-7{width:58.3333%!important}.sm\\:w-8{width:66.6667%!important}.sm\\:w-9{width:75%!important}.sm\\:w-10{width:83.3333%!important}.sm\\:w-11{width:91.6667%!important}.sm\\:w-12{width:100%!important}.sm\\:w-min{width:min-content!important}.sm\\:w-max{width:max-content!important}.sm\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.sm\\:w-1rem{width:1rem!important}.sm\\:w-2rem{width:2rem!important}.sm\\:w-3rem{width:3rem!important}.sm\\:w-4rem{width:4rem!important}.sm\\:w-5rem{width:5rem!important}.sm\\:w-6rem{width:6rem!important}.sm\\:w-7rem{width:7rem!important}.sm\\:w-8rem{width:8rem!important}.sm\\:w-9rem{width:9rem!important}.sm\\:w-10rem{width:10rem!important}.sm\\:w-11rem{width:11rem!important}.sm\\:w-12rem{width:12rem!important}.sm\\:w-13rem{width:13rem!important}.sm\\:w-14rem{width:14rem!important}.sm\\:w-15rem{width:15rem!important}.sm\\:w-16rem{width:16rem!important}.sm\\:w-17rem{width:17rem!important}.sm\\:w-18rem{width:18rem!important}.sm\\:w-19rem{width:19rem!important}.sm\\:w-20rem{width:20rem!important}.sm\\:w-21rem{width:21rem!important}.sm\\:w-22rem{width:22rem!important}.sm\\:w-23rem{width:23rem!important}.sm\\:w-24rem{width:24rem!important}.sm\\:w-25rem{width:25rem!important}.sm\\:w-26rem{width:26rem!important}.sm\\:w-27rem{width:27rem!important}.sm\\:w-28rem{width:28rem!important}.sm\\:w-29rem{width:29rem!important}.sm\\:w-30rem{width:30rem!important}}@media screen and (min-width: 768px){.md\\:w-full{width:100%!important}.md\\:w-screen{width:100vw!important}.md\\:w-auto{width:auto!important}.md\\:w-1{width:8.3333%!important}.md\\:w-2{width:16.6667%!important}.md\\:w-3{width:25%!important}.md\\:w-4{width:33.3333%!important}.md\\:w-5{width:41.6667%!important}.md\\:w-6{width:50%!important}.md\\:w-7{width:58.3333%!important}.md\\:w-8{width:66.6667%!important}.md\\:w-9{width:75%!important}.md\\:w-10{width:83.3333%!important}.md\\:w-11{width:91.6667%!important}.md\\:w-12{width:100%!important}.md\\:w-min{width:min-content!important}.md\\:w-max{width:max-content!important}.md\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.md\\:w-1rem{width:1rem!important}.md\\:w-2rem{width:2rem!important}.md\\:w-3rem{width:3rem!important}.md\\:w-4rem{width:4rem!important}.md\\:w-5rem{width:5rem!important}.md\\:w-6rem{width:6rem!important}.md\\:w-7rem{width:7rem!important}.md\\:w-8rem{width:8rem!important}.md\\:w-9rem{width:9rem!important}.md\\:w-10rem{width:10rem!important}.md\\:w-11rem{width:11rem!important}.md\\:w-12rem{width:12rem!important}.md\\:w-13rem{width:13rem!important}.md\\:w-14rem{width:14rem!important}.md\\:w-15rem{width:15rem!important}.md\\:w-16rem{width:16rem!important}.md\\:w-17rem{width:17rem!important}.md\\:w-18rem{width:18rem!important}.md\\:w-19rem{width:19rem!important}.md\\:w-20rem{width:20rem!important}.md\\:w-21rem{width:21rem!important}.md\\:w-22rem{width:22rem!important}.md\\:w-23rem{width:23rem!important}.md\\:w-24rem{width:24rem!important}.md\\:w-25rem{width:25rem!important}.md\\:w-26rem{width:26rem!important}.md\\:w-27rem{width:27rem!important}.md\\:w-28rem{width:28rem!important}.md\\:w-29rem{width:29rem!important}.md\\:w-30rem{width:30rem!important}}@media screen and (min-width: 992px){.lg\\:w-full{width:100%!important}.lg\\:w-screen{width:100vw!important}.lg\\:w-auto{width:auto!important}.lg\\:w-1{width:8.3333%!important}.lg\\:w-2{width:16.6667%!important}.lg\\:w-3{width:25%!important}.lg\\:w-4{width:33.3333%!important}.lg\\:w-5{width:41.6667%!important}.lg\\:w-6{width:50%!important}.lg\\:w-7{width:58.3333%!important}.lg\\:w-8{width:66.6667%!important}.lg\\:w-9{width:75%!important}.lg\\:w-10{width:83.3333%!important}.lg\\:w-11{width:91.6667%!important}.lg\\:w-12{width:100%!important}.lg\\:w-min{width:min-content!important}.lg\\:w-max{width:max-content!important}.lg\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.lg\\:w-1rem{width:1rem!important}.lg\\:w-2rem{width:2rem!important}.lg\\:w-3rem{width:3rem!important}.lg\\:w-4rem{width:4rem!important}.lg\\:w-5rem{width:5rem!important}.lg\\:w-6rem{width:6rem!important}.lg\\:w-7rem{width:7rem!important}.lg\\:w-8rem{width:8rem!important}.lg\\:w-9rem{width:9rem!important}.lg\\:w-10rem{width:10rem!important}.lg\\:w-11rem{width:11rem!important}.lg\\:w-12rem{width:12rem!important}.lg\\:w-13rem{width:13rem!important}.lg\\:w-14rem{width:14rem!important}.lg\\:w-15rem{width:15rem!important}.lg\\:w-16rem{width:16rem!important}.lg\\:w-17rem{width:17rem!important}.lg\\:w-18rem{width:18rem!important}.lg\\:w-19rem{width:19rem!important}.lg\\:w-20rem{width:20rem!important}.lg\\:w-21rem{width:21rem!important}.lg\\:w-22rem{width:22rem!important}.lg\\:w-23rem{width:23rem!important}.lg\\:w-24rem{width:24rem!important}.lg\\:w-25rem{width:25rem!important}.lg\\:w-26rem{width:26rem!important}.lg\\:w-27rem{width:27rem!important}.lg\\:w-28rem{width:28rem!important}.lg\\:w-29rem{width:29rem!important}.lg\\:w-30rem{width:30rem!important}}@media screen and (min-width: 1200px){.xl\\:w-full{width:100%!important}.xl\\:w-screen{width:100vw!important}.xl\\:w-auto{width:auto!important}.xl\\:w-1{width:8.3333%!important}.xl\\:w-2{width:16.6667%!important}.xl\\:w-3{width:25%!important}.xl\\:w-4{width:33.3333%!important}.xl\\:w-5{width:41.6667%!important}.xl\\:w-6{width:50%!important}.xl\\:w-7{width:58.3333%!important}.xl\\:w-8{width:66.6667%!important}.xl\\:w-9{width:75%!important}.xl\\:w-10{width:83.3333%!important}.xl\\:w-11{width:91.6667%!important}.xl\\:w-12{width:100%!important}.xl\\:w-min{width:min-content!important}.xl\\:w-max{width:max-content!important}.xl\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.xl\\:w-1rem{width:1rem!important}.xl\\:w-2rem{width:2rem!important}.xl\\:w-3rem{width:3rem!important}.xl\\:w-4rem{width:4rem!important}.xl\\:w-5rem{width:5rem!important}.xl\\:w-6rem{width:6rem!important}.xl\\:w-7rem{width:7rem!important}.xl\\:w-8rem{width:8rem!important}.xl\\:w-9rem{width:9rem!important}.xl\\:w-10rem{width:10rem!important}.xl\\:w-11rem{width:11rem!important}.xl\\:w-12rem{width:12rem!important}.xl\\:w-13rem{width:13rem!important}.xl\\:w-14rem{width:14rem!important}.xl\\:w-15rem{width:15rem!important}.xl\\:w-16rem{width:16rem!important}.xl\\:w-17rem{width:17rem!important}.xl\\:w-18rem{width:18rem!important}.xl\\:w-19rem{width:19rem!important}.xl\\:w-20rem{width:20rem!important}.xl\\:w-21rem{width:21rem!important}.xl\\:w-22rem{width:22rem!important}.xl\\:w-23rem{width:23rem!important}.xl\\:w-24rem{width:24rem!important}.xl\\:w-25rem{width:25rem!important}.xl\\:w-26rem{width:26rem!important}.xl\\:w-27rem{width:27rem!important}.xl\\:w-28rem{width:28rem!important}.xl\\:w-29rem{width:29rem!important}.xl\\:w-30rem{width:30rem!important}}.h-full{height:100%!important}.h-screen{height:100vh!important}.h-auto{height:auto!important}.h-min{height:min-content!important}.h-max{height:max-content!important}.h-fit{height:-moz-fit-content!important;height:fit-content!important}.h-1rem{height:1rem!important}.h-2rem{height:2rem!important}.h-3rem{height:3rem!important}.h-4rem{height:4rem!important}.h-5rem{height:5rem!important}.h-6rem{height:6rem!important}.h-7rem{height:7rem!important}.h-8rem{height:8rem!important}.h-9rem{height:9rem!important}.h-10rem{height:10rem!important}.h-11rem{height:11rem!important}.h-12rem{height:12rem!important}.h-13rem{height:13rem!important}.h-14rem{height:14rem!important}.h-15rem{height:15rem!important}.h-16rem{height:16rem!important}.h-17rem{height:17rem!important}.h-18rem{height:18rem!important}.h-19rem{height:19rem!important}.h-20rem{height:20rem!important}.h-21rem{height:21rem!important}.h-22rem{height:22rem!important}.h-23rem{height:23rem!important}.h-24rem{height:24rem!important}.h-25rem{height:25rem!important}.h-26rem{height:26rem!important}.h-27rem{height:27rem!important}.h-28rem{height:28rem!important}.h-29rem{height:29rem!important}.h-30rem{height:30rem!important}@media screen and (min-width: 576px){.sm\\:h-full{height:100%!important}.sm\\:h-screen{height:100vh!important}.sm\\:h-auto{height:auto!important}.sm\\:h-min{height:min-content!important}.sm\\:h-max{height:max-content!important}.sm\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.sm\\:h-1rem{height:1rem!important}.sm\\:h-2rem{height:2rem!important}.sm\\:h-3rem{height:3rem!important}.sm\\:h-4rem{height:4rem!important}.sm\\:h-5rem{height:5rem!important}.sm\\:h-6rem{height:6rem!important}.sm\\:h-7rem{height:7rem!important}.sm\\:h-8rem{height:8rem!important}.sm\\:h-9rem{height:9rem!important}.sm\\:h-10rem{height:10rem!important}.sm\\:h-11rem{height:11rem!important}.sm\\:h-12rem{height:12rem!important}.sm\\:h-13rem{height:13rem!important}.sm\\:h-14rem{height:14rem!important}.sm\\:h-15rem{height:15rem!important}.sm\\:h-16rem{height:16rem!important}.sm\\:h-17rem{height:17rem!important}.sm\\:h-18rem{height:18rem!important}.sm\\:h-19rem{height:19rem!important}.sm\\:h-20rem{height:20rem!important}.sm\\:h-21rem{height:21rem!important}.sm\\:h-22rem{height:22rem!important}.sm\\:h-23rem{height:23rem!important}.sm\\:h-24rem{height:24rem!important}.sm\\:h-25rem{height:25rem!important}.sm\\:h-26rem{height:26rem!important}.sm\\:h-27rem{height:27rem!important}.sm\\:h-28rem{height:28rem!important}.sm\\:h-29rem{height:29rem!important}.sm\\:h-30rem{height:30rem!important}}@media screen and (min-width: 768px){.md\\:h-full{height:100%!important}.md\\:h-screen{height:100vh!important}.md\\:h-auto{height:auto!important}.md\\:h-min{height:min-content!important}.md\\:h-max{height:max-content!important}.md\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.md\\:h-1rem{height:1rem!important}.md\\:h-2rem{height:2rem!important}.md\\:h-3rem{height:3rem!important}.md\\:h-4rem{height:4rem!important}.md\\:h-5rem{height:5rem!important}.md\\:h-6rem{height:6rem!important}.md\\:h-7rem{height:7rem!important}.md\\:h-8rem{height:8rem!important}.md\\:h-9rem{height:9rem!important}.md\\:h-10rem{height:10rem!important}.md\\:h-11rem{height:11rem!important}.md\\:h-12rem{height:12rem!important}.md\\:h-13rem{height:13rem!important}.md\\:h-14rem{height:14rem!important}.md\\:h-15rem{height:15rem!important}.md\\:h-16rem{height:16rem!important}.md\\:h-17rem{height:17rem!important}.md\\:h-18rem{height:18rem!important}.md\\:h-19rem{height:19rem!important}.md\\:h-20rem{height:20rem!important}.md\\:h-21rem{height:21rem!important}.md\\:h-22rem{height:22rem!important}.md\\:h-23rem{height:23rem!important}.md\\:h-24rem{height:24rem!important}.md\\:h-25rem{height:25rem!important}.md\\:h-26rem{height:26rem!important}.md\\:h-27rem{height:27rem!important}.md\\:h-28rem{height:28rem!important}.md\\:h-29rem{height:29rem!important}.md\\:h-30rem{height:30rem!important}}@media screen and (min-width: 992px){.lg\\:h-full{height:100%!important}.lg\\:h-screen{height:100vh!important}.lg\\:h-auto{height:auto!important}.lg\\:h-min{height:min-content!important}.lg\\:h-max{height:max-content!important}.lg\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.lg\\:h-1rem{height:1rem!important}.lg\\:h-2rem{height:2rem!important}.lg\\:h-3rem{height:3rem!important}.lg\\:h-4rem{height:4rem!important}.lg\\:h-5rem{height:5rem!important}.lg\\:h-6rem{height:6rem!important}.lg\\:h-7rem{height:7rem!important}.lg\\:h-8rem{height:8rem!important}.lg\\:h-9rem{height:9rem!important}.lg\\:h-10rem{height:10rem!important}.lg\\:h-11rem{height:11rem!important}.lg\\:h-12rem{height:12rem!important}.lg\\:h-13rem{height:13rem!important}.lg\\:h-14rem{height:14rem!important}.lg\\:h-15rem{height:15rem!important}.lg\\:h-16rem{height:16rem!important}.lg\\:h-17rem{height:17rem!important}.lg\\:h-18rem{height:18rem!important}.lg\\:h-19rem{height:19rem!important}.lg\\:h-20rem{height:20rem!important}.lg\\:h-21rem{height:21rem!important}.lg\\:h-22rem{height:22rem!important}.lg\\:h-23rem{height:23rem!important}.lg\\:h-24rem{height:24rem!important}.lg\\:h-25rem{height:25rem!important}.lg\\:h-26rem{height:26rem!important}.lg\\:h-27rem{height:27rem!important}.lg\\:h-28rem{height:28rem!important}.lg\\:h-29rem{height:29rem!important}.lg\\:h-30rem{height:30rem!important}}@media screen and (min-width: 1200px){.xl\\:h-full{height:100%!important}.xl\\:h-screen{height:100vh!important}.xl\\:h-auto{height:auto!important}.xl\\:h-min{height:min-content!important}.xl\\:h-max{height:max-content!important}.xl\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.xl\\:h-1rem{height:1rem!important}.xl\\:h-2rem{height:2rem!important}.xl\\:h-3rem{height:3rem!important}.xl\\:h-4rem{height:4rem!important}.xl\\:h-5rem{height:5rem!important}.xl\\:h-6rem{height:6rem!important}.xl\\:h-7rem{height:7rem!important}.xl\\:h-8rem{height:8rem!important}.xl\\:h-9rem{height:9rem!important}.xl\\:h-10rem{height:10rem!important}.xl\\:h-11rem{height:11rem!important}.xl\\:h-12rem{height:12rem!important}.xl\\:h-13rem{height:13rem!important}.xl\\:h-14rem{height:14rem!important}.xl\\:h-15rem{height:15rem!important}.xl\\:h-16rem{height:16rem!important}.xl\\:h-17rem{height:17rem!important}.xl\\:h-18rem{height:18rem!important}.xl\\:h-19rem{height:19rem!important}.xl\\:h-20rem{height:20rem!important}.xl\\:h-21rem{height:21rem!important}.xl\\:h-22rem{height:22rem!important}.xl\\:h-23rem{height:23rem!important}.xl\\:h-24rem{height:24rem!important}.xl\\:h-25rem{height:25rem!important}.xl\\:h-26rem{height:26rem!important}.xl\\:h-27rem{height:27rem!important}.xl\\:h-28rem{height:28rem!important}.xl\\:h-29rem{height:29rem!important}.xl\\:h-30rem{height:30rem!important}}.min-w-0{min-width:0px!important}.min-w-full{min-width:100%!important}.min-w-screen{min-width:100vw!important}.min-w-min{min-width:min-content!important}.min-w-max{min-width:max-content!important}@media screen and (min-width: 576px){.sm\\:min-w-0{min-width:0px!important}.sm\\:min-w-full{min-width:100%!important}.sm\\:min-w-screen{min-width:100vw!important}.sm\\:min-w-min{min-width:min-content!important}.sm\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 768px){.md\\:min-w-0{min-width:0px!important}.md\\:min-w-full{min-width:100%!important}.md\\:min-w-screen{min-width:100vw!important}.md\\:min-w-min{min-width:min-content!important}.md\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 992px){.lg\\:min-w-0{min-width:0px!important}.lg\\:min-w-full{min-width:100%!important}.lg\\:min-w-screen{min-width:100vw!important}.lg\\:min-w-min{min-width:min-content!important}.lg\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 1200px){.xl\\:min-w-0{min-width:0px!important}.xl\\:min-w-full{min-width:100%!important}.xl\\:min-w-screen{min-width:100vw!important}.xl\\:min-w-min{min-width:min-content!important}.xl\\:min-w-max{min-width:max-content!important}}.max-w-0{max-width:0px!important}.max-w-full{max-width:100%!important}.max-w-screen{max-width:100vw!important}.max-w-min{max-width:min-content!important}.max-w-max{max-width:max-content!important}.max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.max-w-1rem{max-width:1rem!important}.max-w-2rem{max-width:2rem!important}.max-w-3rem{max-width:3rem!important}.max-w-4rem{max-width:4rem!important}.max-w-5rem{max-width:5rem!important}.max-w-6rem{max-width:6rem!important}.max-w-7rem{max-width:7rem!important}.max-w-8rem{max-width:8rem!important}.max-w-9rem{max-width:9rem!important}.max-w-10rem{max-width:10rem!important}.max-w-11rem{max-width:11rem!important}.max-w-12rem{max-width:12rem!important}.max-w-13rem{max-width:13rem!important}.max-w-14rem{max-width:14rem!important}.max-w-15rem{max-width:15rem!important}.max-w-16rem{max-width:16rem!important}.max-w-17rem{max-width:17rem!important}.max-w-18rem{max-width:18rem!important}.max-w-19rem{max-width:19rem!important}.max-w-20rem{max-width:20rem!important}.max-w-21rem{max-width:21rem!important}.max-w-22rem{max-width:22rem!important}.max-w-23rem{max-width:23rem!important}.max-w-24rem{max-width:24rem!important}.max-w-25rem{max-width:25rem!important}.max-w-26rem{max-width:26rem!important}.max-w-27rem{max-width:27rem!important}.max-w-28rem{max-width:28rem!important}.max-w-29rem{max-width:29rem!important}.max-w-30rem{max-width:30rem!important}@media screen and (min-width: 576px){.sm\\:max-w-0{max-width:0px!important}.sm\\:max-w-full{max-width:100%!important}.sm\\:max-w-screen{max-width:100vw!important}.sm\\:max-w-min{max-width:min-content!important}.sm\\:max-w-max{max-width:max-content!important}.sm\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.sm\\:max-w-1rem{max-width:1rem!important}.sm\\:max-w-2rem{max-width:2rem!important}.sm\\:max-w-3rem{max-width:3rem!important}.sm\\:max-w-4rem{max-width:4rem!important}.sm\\:max-w-5rem{max-width:5rem!important}.sm\\:max-w-6rem{max-width:6rem!important}.sm\\:max-w-7rem{max-width:7rem!important}.sm\\:max-w-8rem{max-width:8rem!important}.sm\\:max-w-9rem{max-width:9rem!important}.sm\\:max-w-10rem{max-width:10rem!important}.sm\\:max-w-11rem{max-width:11rem!important}.sm\\:max-w-12rem{max-width:12rem!important}.sm\\:max-w-13rem{max-width:13rem!important}.sm\\:max-w-14rem{max-width:14rem!important}.sm\\:max-w-15rem{max-width:15rem!important}.sm\\:max-w-16rem{max-width:16rem!important}.sm\\:max-w-17rem{max-width:17rem!important}.sm\\:max-w-18rem{max-width:18rem!important}.sm\\:max-w-19rem{max-width:19rem!important}.sm\\:max-w-20rem{max-width:20rem!important}.sm\\:max-w-21rem{max-width:21rem!important}.sm\\:max-w-22rem{max-width:22rem!important}.sm\\:max-w-23rem{max-width:23rem!important}.sm\\:max-w-24rem{max-width:24rem!important}.sm\\:max-w-25rem{max-width:25rem!important}.sm\\:max-w-26rem{max-width:26rem!important}.sm\\:max-w-27rem{max-width:27rem!important}.sm\\:max-w-28rem{max-width:28rem!important}.sm\\:max-w-29rem{max-width:29rem!important}.sm\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 768px){.md\\:max-w-0{max-width:0px!important}.md\\:max-w-full{max-width:100%!important}.md\\:max-w-screen{max-width:100vw!important}.md\\:max-w-min{max-width:min-content!important}.md\\:max-w-max{max-width:max-content!important}.md\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.md\\:max-w-1rem{max-width:1rem!important}.md\\:max-w-2rem{max-width:2rem!important}.md\\:max-w-3rem{max-width:3rem!important}.md\\:max-w-4rem{max-width:4rem!important}.md\\:max-w-5rem{max-width:5rem!important}.md\\:max-w-6rem{max-width:6rem!important}.md\\:max-w-7rem{max-width:7rem!important}.md\\:max-w-8rem{max-width:8rem!important}.md\\:max-w-9rem{max-width:9rem!important}.md\\:max-w-10rem{max-width:10rem!important}.md\\:max-w-11rem{max-width:11rem!important}.md\\:max-w-12rem{max-width:12rem!important}.md\\:max-w-13rem{max-width:13rem!important}.md\\:max-w-14rem{max-width:14rem!important}.md\\:max-w-15rem{max-width:15rem!important}.md\\:max-w-16rem{max-width:16rem!important}.md\\:max-w-17rem{max-width:17rem!important}.md\\:max-w-18rem{max-width:18rem!important}.md\\:max-w-19rem{max-width:19rem!important}.md\\:max-w-20rem{max-width:20rem!important}.md\\:max-w-21rem{max-width:21rem!important}.md\\:max-w-22rem{max-width:22rem!important}.md\\:max-w-23rem{max-width:23rem!important}.md\\:max-w-24rem{max-width:24rem!important}.md\\:max-w-25rem{max-width:25rem!important}.md\\:max-w-26rem{max-width:26rem!important}.md\\:max-w-27rem{max-width:27rem!important}.md\\:max-w-28rem{max-width:28rem!important}.md\\:max-w-29rem{max-width:29rem!important}.md\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 992px){.lg\\:max-w-0{max-width:0px!important}.lg\\:max-w-full{max-width:100%!important}.lg\\:max-w-screen{max-width:100vw!important}.lg\\:max-w-min{max-width:min-content!important}.lg\\:max-w-max{max-width:max-content!important}.lg\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.lg\\:max-w-1rem{max-width:1rem!important}.lg\\:max-w-2rem{max-width:2rem!important}.lg\\:max-w-3rem{max-width:3rem!important}.lg\\:max-w-4rem{max-width:4rem!important}.lg\\:max-w-5rem{max-width:5rem!important}.lg\\:max-w-6rem{max-width:6rem!important}.lg\\:max-w-7rem{max-width:7rem!important}.lg\\:max-w-8rem{max-width:8rem!important}.lg\\:max-w-9rem{max-width:9rem!important}.lg\\:max-w-10rem{max-width:10rem!important}.lg\\:max-w-11rem{max-width:11rem!important}.lg\\:max-w-12rem{max-width:12rem!important}.lg\\:max-w-13rem{max-width:13rem!important}.lg\\:max-w-14rem{max-width:14rem!important}.lg\\:max-w-15rem{max-width:15rem!important}.lg\\:max-w-16rem{max-width:16rem!important}.lg\\:max-w-17rem{max-width:17rem!important}.lg\\:max-w-18rem{max-width:18rem!important}.lg\\:max-w-19rem{max-width:19rem!important}.lg\\:max-w-20rem{max-width:20rem!important}.lg\\:max-w-21rem{max-width:21rem!important}.lg\\:max-w-22rem{max-width:22rem!important}.lg\\:max-w-23rem{max-width:23rem!important}.lg\\:max-w-24rem{max-width:24rem!important}.lg\\:max-w-25rem{max-width:25rem!important}.lg\\:max-w-26rem{max-width:26rem!important}.lg\\:max-w-27rem{max-width:27rem!important}.lg\\:max-w-28rem{max-width:28rem!important}.lg\\:max-w-29rem{max-width:29rem!important}.lg\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 1200px){.xl\\:max-w-0{max-width:0px!important}.xl\\:max-w-full{max-width:100%!important}.xl\\:max-w-screen{max-width:100vw!important}.xl\\:max-w-min{max-width:min-content!important}.xl\\:max-w-max{max-width:max-content!important}.xl\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.xl\\:max-w-1rem{max-width:1rem!important}.xl\\:max-w-2rem{max-width:2rem!important}.xl\\:max-w-3rem{max-width:3rem!important}.xl\\:max-w-4rem{max-width:4rem!important}.xl\\:max-w-5rem{max-width:5rem!important}.xl\\:max-w-6rem{max-width:6rem!important}.xl\\:max-w-7rem{max-width:7rem!important}.xl\\:max-w-8rem{max-width:8rem!important}.xl\\:max-w-9rem{max-width:9rem!important}.xl\\:max-w-10rem{max-width:10rem!important}.xl\\:max-w-11rem{max-width:11rem!important}.xl\\:max-w-12rem{max-width:12rem!important}.xl\\:max-w-13rem{max-width:13rem!important}.xl\\:max-w-14rem{max-width:14rem!important}.xl\\:max-w-15rem{max-width:15rem!important}.xl\\:max-w-16rem{max-width:16rem!important}.xl\\:max-w-17rem{max-width:17rem!important}.xl\\:max-w-18rem{max-width:18rem!important}.xl\\:max-w-19rem{max-width:19rem!important}.xl\\:max-w-20rem{max-width:20rem!important}.xl\\:max-w-21rem{max-width:21rem!important}.xl\\:max-w-22rem{max-width:22rem!important}.xl\\:max-w-23rem{max-width:23rem!important}.xl\\:max-w-24rem{max-width:24rem!important}.xl\\:max-w-25rem{max-width:25rem!important}.xl\\:max-w-26rem{max-width:26rem!important}.xl\\:max-w-27rem{max-width:27rem!important}.xl\\:max-w-28rem{max-width:28rem!important}.xl\\:max-w-29rem{max-width:29rem!important}.xl\\:max-w-30rem{max-width:30rem!important}}.min-h-0{min-height:0px!important}.min-h-full{min-height:100%!important}.min-h-screen{min-height:100vh!important}@media screen and (min-width: 576px){.sm\\:min-h-0{min-height:0px!important}.sm\\:min-h-full{min-height:100%!important}.sm\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 768px){.md\\:min-h-0{min-height:0px!important}.md\\:min-h-full{min-height:100%!important}.md\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 992px){.lg\\:min-h-0{min-height:0px!important}.lg\\:min-h-full{min-height:100%!important}.lg\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 1200px){.xl\\:min-h-0{min-height:0px!important}.xl\\:min-h-full{min-height:100%!important}.xl\\:min-h-screen{min-height:100vh!important}}.max-h-0{max-height:0px!important}.max-h-full{max-height:100%!important}.max-h-screen{max-height:100vh!important}.max-h-min{max-height:min-content!important}.max-h-max{max-height:max-content!important}.max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.max-h-1rem{max-height:1rem!important}.max-h-2rem{max-height:2rem!important}.max-h-3rem{max-height:3rem!important}.max-h-4rem{max-height:4rem!important}.max-h-5rem{max-height:5rem!important}.max-h-6rem{max-height:6rem!important}.max-h-7rem{max-height:7rem!important}.max-h-8rem{max-height:8rem!important}.max-h-9rem{max-height:9rem!important}.max-h-10rem{max-height:10rem!important}.max-h-11rem{max-height:11rem!important}.max-h-12rem{max-height:12rem!important}.max-h-13rem{max-height:13rem!important}.max-h-14rem{max-height:14rem!important}.max-h-15rem{max-height:15rem!important}.max-h-16rem{max-height:16rem!important}.max-h-17rem{max-height:17rem!important}.max-h-18rem{max-height:18rem!important}.max-h-19rem{max-height:19rem!important}.max-h-20rem{max-height:20rem!important}.max-h-21rem{max-height:21rem!important}.max-h-22rem{max-height:22rem!important}.max-h-23rem{max-height:23rem!important}.max-h-24rem{max-height:24rem!important}.max-h-25rem{max-height:25rem!important}.max-h-26rem{max-height:26rem!important}.max-h-27rem{max-height:27rem!important}.max-h-28rem{max-height:28rem!important}.max-h-29rem{max-height:29rem!important}.max-h-30rem{max-height:30rem!important}@media screen and (min-width: 576px){.sm\\:max-h-0{max-height:0px!important}.sm\\:max-h-full{max-height:100%!important}.sm\\:max-h-screen{max-height:100vh!important}.sm\\:max-h-min{max-height:min-content!important}.sm\\:max-h-max{max-height:max-content!important}.sm\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.sm\\:max-h-1rem{max-height:1rem!important}.sm\\:max-h-2rem{max-height:2rem!important}.sm\\:max-h-3rem{max-height:3rem!important}.sm\\:max-h-4rem{max-height:4rem!important}.sm\\:max-h-5rem{max-height:5rem!important}.sm\\:max-h-6rem{max-height:6rem!important}.sm\\:max-h-7rem{max-height:7rem!important}.sm\\:max-h-8rem{max-height:8rem!important}.sm\\:max-h-9rem{max-height:9rem!important}.sm\\:max-h-10rem{max-height:10rem!important}.sm\\:max-h-11rem{max-height:11rem!important}.sm\\:max-h-12rem{max-height:12rem!important}.sm\\:max-h-13rem{max-height:13rem!important}.sm\\:max-h-14rem{max-height:14rem!important}.sm\\:max-h-15rem{max-height:15rem!important}.sm\\:max-h-16rem{max-height:16rem!important}.sm\\:max-h-17rem{max-height:17rem!important}.sm\\:max-h-18rem{max-height:18rem!important}.sm\\:max-h-19rem{max-height:19rem!important}.sm\\:max-h-20rem{max-height:20rem!important}.sm\\:max-h-21rem{max-height:21rem!important}.sm\\:max-h-22rem{max-height:22rem!important}.sm\\:max-h-23rem{max-height:23rem!important}.sm\\:max-h-24rem{max-height:24rem!important}.sm\\:max-h-25rem{max-height:25rem!important}.sm\\:max-h-26rem{max-height:26rem!important}.sm\\:max-h-27rem{max-height:27rem!important}.sm\\:max-h-28rem{max-height:28rem!important}.sm\\:max-h-29rem{max-height:29rem!important}.sm\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 768px){.md\\:max-h-0{max-height:0px!important}.md\\:max-h-full{max-height:100%!important}.md\\:max-h-screen{max-height:100vh!important}.md\\:max-h-min{max-height:min-content!important}.md\\:max-h-max{max-height:max-content!important}.md\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.md\\:max-h-1rem{max-height:1rem!important}.md\\:max-h-2rem{max-height:2rem!important}.md\\:max-h-3rem{max-height:3rem!important}.md\\:max-h-4rem{max-height:4rem!important}.md\\:max-h-5rem{max-height:5rem!important}.md\\:max-h-6rem{max-height:6rem!important}.md\\:max-h-7rem{max-height:7rem!important}.md\\:max-h-8rem{max-height:8rem!important}.md\\:max-h-9rem{max-height:9rem!important}.md\\:max-h-10rem{max-height:10rem!important}.md\\:max-h-11rem{max-height:11rem!important}.md\\:max-h-12rem{max-height:12rem!important}.md\\:max-h-13rem{max-height:13rem!important}.md\\:max-h-14rem{max-height:14rem!important}.md\\:max-h-15rem{max-height:15rem!important}.md\\:max-h-16rem{max-height:16rem!important}.md\\:max-h-17rem{max-height:17rem!important}.md\\:max-h-18rem{max-height:18rem!important}.md\\:max-h-19rem{max-height:19rem!important}.md\\:max-h-20rem{max-height:20rem!important}.md\\:max-h-21rem{max-height:21rem!important}.md\\:max-h-22rem{max-height:22rem!important}.md\\:max-h-23rem{max-height:23rem!important}.md\\:max-h-24rem{max-height:24rem!important}.md\\:max-h-25rem{max-height:25rem!important}.md\\:max-h-26rem{max-height:26rem!important}.md\\:max-h-27rem{max-height:27rem!important}.md\\:max-h-28rem{max-height:28rem!important}.md\\:max-h-29rem{max-height:29rem!important}.md\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 992px){.lg\\:max-h-0{max-height:0px!important}.lg\\:max-h-full{max-height:100%!important}.lg\\:max-h-screen{max-height:100vh!important}.lg\\:max-h-min{max-height:min-content!important}.lg\\:max-h-max{max-height:max-content!important}.lg\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.lg\\:max-h-1rem{max-height:1rem!important}.lg\\:max-h-2rem{max-height:2rem!important}.lg\\:max-h-3rem{max-height:3rem!important}.lg\\:max-h-4rem{max-height:4rem!important}.lg\\:max-h-5rem{max-height:5rem!important}.lg\\:max-h-6rem{max-height:6rem!important}.lg\\:max-h-7rem{max-height:7rem!important}.lg\\:max-h-8rem{max-height:8rem!important}.lg\\:max-h-9rem{max-height:9rem!important}.lg\\:max-h-10rem{max-height:10rem!important}.lg\\:max-h-11rem{max-height:11rem!important}.lg\\:max-h-12rem{max-height:12rem!important}.lg\\:max-h-13rem{max-height:13rem!important}.lg\\:max-h-14rem{max-height:14rem!important}.lg\\:max-h-15rem{max-height:15rem!important}.lg\\:max-h-16rem{max-height:16rem!important}.lg\\:max-h-17rem{max-height:17rem!important}.lg\\:max-h-18rem{max-height:18rem!important}.lg\\:max-h-19rem{max-height:19rem!important}.lg\\:max-h-20rem{max-height:20rem!important}.lg\\:max-h-21rem{max-height:21rem!important}.lg\\:max-h-22rem{max-height:22rem!important}.lg\\:max-h-23rem{max-height:23rem!important}.lg\\:max-h-24rem{max-height:24rem!important}.lg\\:max-h-25rem{max-height:25rem!important}.lg\\:max-h-26rem{max-height:26rem!important}.lg\\:max-h-27rem{max-height:27rem!important}.lg\\:max-h-28rem{max-height:28rem!important}.lg\\:max-h-29rem{max-height:29rem!important}.lg\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 1200px){.xl\\:max-h-0{max-height:0px!important}.xl\\:max-h-full{max-height:100%!important}.xl\\:max-h-screen{max-height:100vh!important}.xl\\:max-h-min{max-height:min-content!important}.xl\\:max-h-max{max-height:max-content!important}.xl\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.xl\\:max-h-1rem{max-height:1rem!important}.xl\\:max-h-2rem{max-height:2rem!important}.xl\\:max-h-3rem{max-height:3rem!important}.xl\\:max-h-4rem{max-height:4rem!important}.xl\\:max-h-5rem{max-height:5rem!important}.xl\\:max-h-6rem{max-height:6rem!important}.xl\\:max-h-7rem{max-height:7rem!important}.xl\\:max-h-8rem{max-height:8rem!important}.xl\\:max-h-9rem{max-height:9rem!important}.xl\\:max-h-10rem{max-height:10rem!important}.xl\\:max-h-11rem{max-height:11rem!important}.xl\\:max-h-12rem{max-height:12rem!important}.xl\\:max-h-13rem{max-height:13rem!important}.xl\\:max-h-14rem{max-height:14rem!important}.xl\\:max-h-15rem{max-height:15rem!important}.xl\\:max-h-16rem{max-height:16rem!important}.xl\\:max-h-17rem{max-height:17rem!important}.xl\\:max-h-18rem{max-height:18rem!important}.xl\\:max-h-19rem{max-height:19rem!important}.xl\\:max-h-20rem{max-height:20rem!important}.xl\\:max-h-21rem{max-height:21rem!important}.xl\\:max-h-22rem{max-height:22rem!important}.xl\\:max-h-23rem{max-height:23rem!important}.xl\\:max-h-24rem{max-height:24rem!important}.xl\\:max-h-25rem{max-height:25rem!important}.xl\\:max-h-26rem{max-height:26rem!important}.xl\\:max-h-27rem{max-height:27rem!important}.xl\\:max-h-28rem{max-height:28rem!important}.xl\\:max-h-29rem{max-height:29rem!important}.xl\\:max-h-30rem{max-height:30rem!important}}.static{position:static!important}.fixed{position:fixed!important}.absolute{position:absolute!important}.relative{position:relative!important}.sticky{position:sticky!important}@media screen and (min-width: 576px){.sm\\:static{position:static!important}.sm\\:fixed{position:fixed!important}.sm\\:absolute{position:absolute!important}.sm\\:relative{position:relative!important}.sm\\:sticky{position:sticky!important}}@media screen and (min-width: 768px){.md\\:static{position:static!important}.md\\:fixed{position:fixed!important}.md\\:absolute{position:absolute!important}.md\\:relative{position:relative!important}.md\\:sticky{position:sticky!important}}@media screen and (min-width: 992px){.lg\\:static{position:static!important}.lg\\:fixed{position:fixed!important}.lg\\:absolute{position:absolute!important}.lg\\:relative{position:relative!important}.lg\\:sticky{position:sticky!important}}@media screen and (min-width: 1200px){.xl\\:static{position:static!important}.xl\\:fixed{position:fixed!important}.xl\\:absolute{position:absolute!important}.xl\\:relative{position:relative!important}.xl\\:sticky{position:sticky!important}}.top-auto{top:auto!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}@media screen and (min-width: 576px){.sm\\:top-auto{top:auto!important}.sm\\:top-0{top:0!important}.sm\\:top-50{top:50%!important}.sm\\:top-100{top:100%!important}}@media screen and (min-width: 768px){.md\\:top-auto{top:auto!important}.md\\:top-0{top:0!important}.md\\:top-50{top:50%!important}.md\\:top-100{top:100%!important}}@media screen and (min-width: 992px){.lg\\:top-auto{top:auto!important}.lg\\:top-0{top:0!important}.lg\\:top-50{top:50%!important}.lg\\:top-100{top:100%!important}}@media screen and (min-width: 1200px){.xl\\:top-auto{top:auto!important}.xl\\:top-0{top:0!important}.xl\\:top-50{top:50%!important}.xl\\:top-100{top:100%!important}}.left-auto{left:auto!important}.left-0{left:0!important}.left-50{left:50%!important}.left-100{left:100%!important}@media screen and (min-width: 576px){.sm\\:left-auto{left:auto!important}.sm\\:left-0{left:0!important}.sm\\:left-50{left:50%!important}.sm\\:left-100{left:100%!important}}@media screen and (min-width: 768px){.md\\:left-auto{left:auto!important}.md\\:left-0{left:0!important}.md\\:left-50{left:50%!important}.md\\:left-100{left:100%!important}}@media screen and (min-width: 992px){.lg\\:left-auto{left:auto!important}.lg\\:left-0{left:0!important}.lg\\:left-50{left:50%!important}.lg\\:left-100{left:100%!important}}@media screen and (min-width: 1200px){.xl\\:left-auto{left:auto!important}.xl\\:left-0{left:0!important}.xl\\:left-50{left:50%!important}.xl\\:left-100{left:100%!important}}.right-auto{right:auto!important}.right-0{right:0!important}.right-50{right:50%!important}.right-100{right:100%!important}@media screen and (min-width: 576px){.sm\\:right-auto{right:auto!important}.sm\\:right-0{right:0!important}.sm\\:right-50{right:50%!important}.sm\\:right-100{right:100%!important}}@media screen and (min-width: 768px){.md\\:right-auto{right:auto!important}.md\\:right-0{right:0!important}.md\\:right-50{right:50%!important}.md\\:right-100{right:100%!important}}@media screen and (min-width: 992px){.lg\\:right-auto{right:auto!important}.lg\\:right-0{right:0!important}.lg\\:right-50{right:50%!important}.lg\\:right-100{right:100%!important}}@media screen and (min-width: 1200px){.xl\\:right-auto{right:auto!important}.xl\\:right-0{right:0!important}.xl\\:right-50{right:50%!important}.xl\\:right-100{right:100%!important}}.bottom-auto{bottom:auto!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}@media screen and (min-width: 576px){.sm\\:bottom-auto{bottom:auto!important}.sm\\:bottom-0{bottom:0!important}.sm\\:bottom-50{bottom:50%!important}.sm\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 768px){.md\\:bottom-auto{bottom:auto!important}.md\\:bottom-0{bottom:0!important}.md\\:bottom-50{bottom:50%!important}.md\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 992px){.lg\\:bottom-auto{bottom:auto!important}.lg\\:bottom-0{bottom:0!important}.lg\\:bottom-50{bottom:50%!important}.lg\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 1200px){.xl\\:bottom-auto{bottom:auto!important}.xl\\:bottom-0{bottom:0!important}.xl\\:bottom-50{bottom:50%!important}.xl\\:bottom-100{bottom:100%!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-auto{overflow:auto!important}.sm\\:overflow-hidden{overflow:hidden!important}.sm\\:overflow-visible{overflow:visible!important}.sm\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-auto{overflow:auto!important}.md\\:overflow-hidden{overflow:hidden!important}.md\\:overflow-visible{overflow:visible!important}.md\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-auto{overflow:auto!important}.lg\\:overflow-hidden{overflow:hidden!important}.lg\\:overflow-visible{overflow:visible!important}.lg\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-auto{overflow:auto!important}.xl\\:overflow-hidden{overflow:hidden!important}.xl\\:overflow-visible{overflow:visible!important}.xl\\:overflow-scroll{overflow:scroll!important}}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-x-auto{overflow-x:auto!important}.sm\\:overflow-x-hidden{overflow-x:hidden!important}.sm\\:overflow-x-visible{overflow-x:visible!important}.sm\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-x-auto{overflow-x:auto!important}.md\\:overflow-x-hidden{overflow-x:hidden!important}.md\\:overflow-x-visible{overflow-x:visible!important}.md\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-x-auto{overflow-x:auto!important}.lg\\:overflow-x-hidden{overflow-x:hidden!important}.lg\\:overflow-x-visible{overflow-x:visible!important}.lg\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-x-auto{overflow-x:auto!important}.xl\\:overflow-x-hidden{overflow-x:hidden!important}.xl\\:overflow-x-visible{overflow-x:visible!important}.xl\\:overflow-x-scroll{overflow-x:scroll!important}}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-y-auto{overflow-y:auto!important}.sm\\:overflow-y-hidden{overflow-y:hidden!important}.sm\\:overflow-y-visible{overflow-y:visible!important}.sm\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-y-auto{overflow-y:auto!important}.md\\:overflow-y-hidden{overflow-y:hidden!important}.md\\:overflow-y-visible{overflow-y:visible!important}.md\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-y-auto{overflow-y:auto!important}.lg\\:overflow-y-hidden{overflow-y:hidden!important}.lg\\:overflow-y-visible{overflow-y:visible!important}.lg\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-y-auto{overflow-y:auto!important}.xl\\:overflow-y-hidden{overflow-y:hidden!important}.xl\\:overflow-y-visible{overflow-y:visible!important}.xl\\:overflow-y-scroll{overflow-y:scroll!important}}.z-auto{z-index:auto!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}.z-4{z-index:4!important}.z-5{z-index:5!important}@media screen and (min-width: 576px){.sm\\:z-auto{z-index:auto!important}.sm\\:z-0{z-index:0!important}.sm\\:z-1{z-index:1!important}.sm\\:z-2{z-index:2!important}.sm\\:z-3{z-index:3!important}.sm\\:z-4{z-index:4!important}.sm\\:z-5{z-index:5!important}}@media screen and (min-width: 768px){.md\\:z-auto{z-index:auto!important}.md\\:z-0{z-index:0!important}.md\\:z-1{z-index:1!important}.md\\:z-2{z-index:2!important}.md\\:z-3{z-index:3!important}.md\\:z-4{z-index:4!important}.md\\:z-5{z-index:5!important}}@media screen and (min-width: 992px){.lg\\:z-auto{z-index:auto!important}.lg\\:z-0{z-index:0!important}.lg\\:z-1{z-index:1!important}.lg\\:z-2{z-index:2!important}.lg\\:z-3{z-index:3!important}.lg\\:z-4{z-index:4!important}.lg\\:z-5{z-index:5!important}}@media screen and (min-width: 1200px){.xl\\:z-auto{z-index:auto!important}.xl\\:z-0{z-index:0!important}.xl\\:z-1{z-index:1!important}.xl\\:z-2{z-index:2!important}.xl\\:z-3{z-index:3!important}.xl\\:z-4{z-index:4!important}.xl\\:z-5{z-index:5!important}}.bg-repeat{background-repeat:repeat!important}.bg-no-repeat{background-repeat:no-repeat!important}.bg-repeat-x{background-repeat:repeat-x!important}.bg-repeat-y{background-repeat:repeat-y!important}.bg-repeat-round{background-repeat:round!important}.bg-repeat-space{background-repeat:space!important}@media screen and (min-width: 576px){.sm\\:bg-repeat{background-repeat:repeat!important}.sm\\:bg-no-repeat{background-repeat:no-repeat!important}.sm\\:bg-repeat-x{background-repeat:repeat-x!important}.sm\\:bg-repeat-y{background-repeat:repeat-y!important}.sm\\:bg-repeat-round{background-repeat:round!important}.sm\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 768px){.md\\:bg-repeat{background-repeat:repeat!important}.md\\:bg-no-repeat{background-repeat:no-repeat!important}.md\\:bg-repeat-x{background-repeat:repeat-x!important}.md\\:bg-repeat-y{background-repeat:repeat-y!important}.md\\:bg-repeat-round{background-repeat:round!important}.md\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 992px){.lg\\:bg-repeat{background-repeat:repeat!important}.lg\\:bg-no-repeat{background-repeat:no-repeat!important}.lg\\:bg-repeat-x{background-repeat:repeat-x!important}.lg\\:bg-repeat-y{background-repeat:repeat-y!important}.lg\\:bg-repeat-round{background-repeat:round!important}.lg\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 1200px){.xl\\:bg-repeat{background-repeat:repeat!important}.xl\\:bg-no-repeat{background-repeat:no-repeat!important}.xl\\:bg-repeat-x{background-repeat:repeat-x!important}.xl\\:bg-repeat-y{background-repeat:repeat-y!important}.xl\\:bg-repeat-round{background-repeat:round!important}.xl\\:bg-repeat-space{background-repeat:space!important}}.bg-auto{background-size:auto!important}.bg-cover{background-size:cover!important}.bg-contain{background-size:contain!important}@media screen and (min-width: 576px){.sm\\:bg-auto{background-size:auto!important}.sm\\:bg-cover{background-size:cover!important}.sm\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 768px){.md\\:bg-auto{background-size:auto!important}.md\\:bg-cover{background-size:cover!important}.md\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 992px){.lg\\:bg-auto{background-size:auto!important}.lg\\:bg-cover{background-size:cover!important}.lg\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 1200px){.xl\\:bg-auto{background-size:auto!important}.xl\\:bg-cover{background-size:cover!important}.xl\\:bg-contain{background-size:contain!important}}.bg-bottom{background-position:bottom!important}.bg-center{background-position:center!important}.bg-left{background-position:left!important}.bg-left-bottom{background-position:left bottom!important}.bg-left-top{background-position:left top!important}.bg-right{background-position:right!important}.bg-right-bottom{background-position:right bottom!important}.bg-right-top{background-position:right top!important}.bg-top{background-position:top!important}@media screen and (min-width: 576px){.sm\\:bg-bottom{background-position:bottom!important}.sm\\:bg-center{background-position:center!important}.sm\\:bg-left{background-position:left!important}.sm\\:bg-left-bottom{background-position:left bottom!important}.sm\\:bg-left-top{background-position:left top!important}.sm\\:bg-right{background-position:right!important}.sm\\:bg-right-bottom{background-position:right bottom!important}.sm\\:bg-right-top{background-position:right top!important}.sm\\:bg-top{background-position:top!important}}@media screen and (min-width: 768px){.md\\:bg-bottom{background-position:bottom!important}.md\\:bg-center{background-position:center!important}.md\\:bg-left{background-position:left!important}.md\\:bg-left-bottom{background-position:left bottom!important}.md\\:bg-left-top{background-position:left top!important}.md\\:bg-right{background-position:right!important}.md\\:bg-right-bottom{background-position:right bottom!important}.md\\:bg-right-top{background-position:right top!important}.md\\:bg-top{background-position:top!important}}@media screen and (min-width: 992px){.lg\\:bg-bottom{background-position:bottom!important}.lg\\:bg-center{background-position:center!important}.lg\\:bg-left{background-position:left!important}.lg\\:bg-left-bottom{background-position:left bottom!important}.lg\\:bg-left-top{background-position:left top!important}.lg\\:bg-right{background-position:right!important}.lg\\:bg-right-bottom{background-position:right bottom!important}.lg\\:bg-right-top{background-position:right top!important}.lg\\:bg-top{background-position:top!important}}@media screen and (min-width: 1200px){.xl\\:bg-bottom{background-position:bottom!important}.xl\\:bg-center{background-position:center!important}.xl\\:bg-left{background-position:left!important}.xl\\:bg-left-bottom{background-position:left bottom!important}.xl\\:bg-left-top{background-position:left top!important}.xl\\:bg-right{background-position:right!important}.xl\\:bg-right-bottom{background-position:right bottom!important}.xl\\:bg-right-top{background-position:right top!important}.xl\\:bg-top{background-position:top!important}}.list-none{list-style:none!important}.list-disc{list-style:disc!important}.list-decimal{list-style:decimal!important}.appearance-none{-webkit-appearance:none!important;appearance:none!important}.outline-none{outline:none!important}.pointer-events-none{pointer-events:none!important}.pointer-events-auto{pointer-events:auto!important}.cursor-auto{cursor:auto!important}.cursor-pointer{cursor:pointer!important}.cursor-wait{cursor:wait!important}.cursor-move{cursor:move!important}.select-none{-webkit-user-select:none!important;user-select:none!important}.select-text{-webkit-user-select:text!important;user-select:text!important}.select-all{-webkit-user-select:all!important;user-select:all!important}.select-auto{-webkit-user-select:auto!important;user-select:auto!important}.opacity-0{opacity:0!important}.opacity-10{opacity:.1!important}.opacity-20{opacity:.2!important}.opacity-30{opacity:.3!important}.opacity-40{opacity:.4!important}.opacity-50{opacity:.5!important}.opacity-60{opacity:.6!important}.opacity-70{opacity:.7!important}.opacity-80{opacity:.8!important}.opacity-90{opacity:.9!important}.opacity-100{opacity:1!important}.reset{all:unset}.transition-none{transition-property:none!important}.transition-all{transition-property:all!important}.transition-colors{transition-property:background-color,border-color,color!important}.transition-transform{transition-property:transform!important}.transition-duration-100{transition-duration:.1s!important}.transition-duration-150{transition-duration:.15s!important}.transition-duration-200{transition-duration:.2s!important}.transition-duration-300{transition-duration:.3s!important}.transition-duration-400{transition-duration:.4s!important}.transition-duration-500{transition-duration:.5s!important}.transition-duration-1000{transition-duration:1s!important}.transition-duration-2000{transition-duration:2s!important}.transition-duration-3000{transition-duration:3s!important}.transition-linear{transition-timing-function:linear!important}.transition-ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)!important}.transition-ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.transition-ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.transition-delay-100{transition-delay:.1s!important}.transition-delay-150{transition-delay:.15s!important}.transition-delay-200{transition-delay:.2s!important}.transition-delay-300{transition-delay:.3s!important}.transition-delay-400{transition-delay:.4s!important}.transition-delay-500{transition-delay:.5s!important}.transition-delay-1000{transition-delay:1s!important}.translate-x-0{transform:translate(0)!important}.translate-x-100{transform:translate(100%)!important}.-translate-x-100{transform:translate(-100%)!important}.translate-y-0{transform:translateY(0)!important}.translate-y-100{transform:translateY(100%)!important}.-translate-y-100{transform:translateY(-100%)!important}@media screen and (min-width: 576px){.sm\\:translate-x-0{transform:translate(0)!important}.sm\\:translate-x-100{transform:translate(100%)!important}.sm\\:-translate-x-100{transform:translate(-100%)!important}.sm\\:translate-y-0{transform:translateY(0)!important}.sm\\:translate-y-100{transform:translateY(100%)!important}.sm\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 768px){.md\\:translate-x-0{transform:translate(0)!important}.md\\:translate-x-100{transform:translate(100%)!important}.md\\:-translate-x-100{transform:translate(-100%)!important}.md\\:translate-y-0{transform:translateY(0)!important}.md\\:translate-y-100{transform:translateY(100%)!important}.md\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 992px){.lg\\:translate-x-0{transform:translate(0)!important}.lg\\:translate-x-100{transform:translate(100%)!important}.lg\\:-translate-x-100{transform:translate(-100%)!important}.lg\\:translate-y-0{transform:translateY(0)!important}.lg\\:translate-y-100{transform:translateY(100%)!important}.lg\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 1200px){.xl\\:translate-x-0{transform:translate(0)!important}.xl\\:translate-x-100{transform:translate(100%)!important}.xl\\:-translate-x-100{transform:translate(-100%)!important}.xl\\:translate-y-0{transform:translateY(0)!important}.xl\\:translate-y-100{transform:translateY(100%)!important}.xl\\:-translate-y-100{transform:translateY(-100%)!important}}.rotate-45{transform:rotate(45deg)!important}.-rotate-45{transform:rotate(-45deg)!important}.rotate-90{transform:rotate(90deg)!important}.-rotate-90{transform:rotate(-90deg)!important}.rotate-180{transform:rotate(180deg)!important}.-rotate-180{transform:rotate(-180deg)!important}@media screen and (min-width: 576px){.sm\\:rotate-45{transform:rotate(45deg)!important}.sm\\:-rotate-45{transform:rotate(-45deg)!important}.sm\\:rotate-90{transform:rotate(90deg)!important}.sm\\:-rotate-90{transform:rotate(-90deg)!important}.sm\\:rotate-180{transform:rotate(180deg)!important}.sm\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 768px){.md\\:rotate-45{transform:rotate(45deg)!important}.md\\:-rotate-45{transform:rotate(-45deg)!important}.md\\:rotate-90{transform:rotate(90deg)!important}.md\\:-rotate-90{transform:rotate(-90deg)!important}.md\\:rotate-180{transform:rotate(180deg)!important}.md\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 992px){.lg\\:rotate-45{transform:rotate(45deg)!important}.lg\\:-rotate-45{transform:rotate(-45deg)!important}.lg\\:rotate-90{transform:rotate(90deg)!important}.lg\\:-rotate-90{transform:rotate(-90deg)!important}.lg\\:rotate-180{transform:rotate(180deg)!important}.lg\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 1200px){.xl\\:rotate-45{transform:rotate(45deg)!important}.xl\\:-rotate-45{transform:rotate(-45deg)!important}.xl\\:rotate-90{transform:rotate(90deg)!important}.xl\\:-rotate-90{transform:rotate(-90deg)!important}.xl\\:rotate-180{transform:rotate(180deg)!important}.xl\\:-rotate-180{transform:rotate(-180deg)!important}}.origin-center{transform-origin:center!important}.origin-top{transform-origin:top!important}.origin-top-right{transform-origin:top right!important}.origin-right{transform-origin:right!important}.origin-bottom-right{transform-origin:bottom right!important}.origin-bottom{transform-origin:bottom!important}.origin-bottom-left{transform-origin:bottom left!important}.origin-left{transform-origin:left!important}.origin-top-left{transform-origin:top-left!important}@media screen and (min-width: 576px){.sm\\:origin-center{transform-origin:center!important}.sm\\:origin-top{transform-origin:top!important}.sm\\:origin-top-right{transform-origin:top right!important}.sm\\:origin-right{transform-origin:right!important}.sm\\:origin-bottom-right{transform-origin:bottom right!important}.sm\\:origin-bottom{transform-origin:bottom!important}.sm\\:origin-bottom-left{transform-origin:bottom left!important}.sm\\:origin-left{transform-origin:left!important}.sm\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 768px){.md\\:origin-center{transform-origin:center!important}.md\\:origin-top{transform-origin:top!important}.md\\:origin-top-right{transform-origin:top right!important}.md\\:origin-right{transform-origin:right!important}.md\\:origin-bottom-right{transform-origin:bottom right!important}.md\\:origin-bottom{transform-origin:bottom!important}.md\\:origin-bottom-left{transform-origin:bottom left!important}.md\\:origin-left{transform-origin:left!important}.md\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 992px){.lg\\:origin-center{transform-origin:center!important}.lg\\:origin-top{transform-origin:top!important}.lg\\:origin-top-right{transform-origin:top right!important}.lg\\:origin-right{transform-origin:right!important}.lg\\:origin-bottom-right{transform-origin:bottom right!important}.lg\\:origin-bottom{transform-origin:bottom!important}.lg\\:origin-bottom-left{transform-origin:bottom left!important}.lg\\:origin-left{transform-origin:left!important}.lg\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 1200px){.xl\\:origin-center{transform-origin:center!important}.xl\\:origin-top{transform-origin:top!important}.xl\\:origin-top-right{transform-origin:top right!important}.xl\\:origin-right{transform-origin:right!important}.xl\\:origin-bottom-right{transform-origin:bottom right!important}.xl\\:origin-bottom{transform-origin:bottom!important}.xl\\:origin-bottom-left{transform-origin:bottom left!important}.xl\\:origin-left{transform-origin:left!important}.xl\\:origin-top-left{transform-origin:top-left!important}}@keyframes fadein{0%{opacity:0}to{opacity:1}}@keyframes fadeout{0%{opacity:1}to{opacity:0}}@keyframes scalein{0%{opacity:0;transform:scaleY(.8);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:scaleY(1)}}@keyframes slidedown{0%{max-height:0}to{max-height:auto}}@keyframes slideup{0%{max-height:1000px}to{max-height:0}}@keyframes fadeinleft{0%{opacity:0;transform:translate(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutleft{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(-100%)}}@keyframes fadeinright{0%{opacity:0;transform:translate(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutright{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(100%)}}@keyframes fadeinup{0%{opacity:0;transform:translateY(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutup{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(-100%)}}@keyframes fadeindown{0%{opacity:0;transform:translateY(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutdown{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(100%)}}@keyframes animate-width{0%{width:0}to{width:100%}}@keyframes flip{0%{transform:perspective(2000px) rotateX(-100deg)}to{transform:perspective(2000px) rotateX(0)}}@keyframes flipleft{0%{transform:perspective(2000px) rotateY(-100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipright{0%{transform:perspective(2000px) rotateY(100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipup{0%{transform:perspective(2000px) rotateX(-100deg);opacity:0}to{transform:perspective(2000px) rotateX(0);opacity:1}}@keyframes zoomin{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomindown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}}@keyframes zoominleft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0)}}@keyframes zoominright{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0)}}@keyframes zoominup{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}}.fadein{animation:fadein .15s linear}.fadeout{animation:fadeout .15s linear}.slidedown{animation:slidedown .45s ease-in-out}.slideup{animation:slideup .45s cubic-bezier(0,1,0,1)}.scalein{animation:scalein .15s linear}.fadeinleft{animation:fadeinleft .15s linear}.fadeoutleft{animation:fadeoutleft .15s linear}.fadeinright{animation:fadeinright .15s linear}.fadeoutright{animation:fadeoutright .15s linear}.fadeinup{animation:fadeinup .15s linear}.fadeoutup{animation:fadeoutup .15s linear}.fadeindown{animation:fadeindown .15s linear}.fadeoutdown{animation:fadeoutdown .15s linear}.animate-width{animation:animate-width 1s linear}.flip{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flip .15s linear}.flipup{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipup .15s linear}.flipleft{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipleft .15s linear}.flipright{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipright .15s linear}.zoomin{animation:zoomin .15s linear}.zoomindown{animation:zoomindown .15s linear}.zoominleft{animation:zoominleft .15s linear}.zoominright{animation:zoominright .15s linear}.zoominup{animation:zoominup .15s linear}.animation-duration-100{animation-duration:.1s!important}.animation-duration-150{animation-duration:.15s!important}.animation-duration-200{animation-duration:.2s!important}.animation-duration-300{animation-duration:.3s!important}.animation-duration-400{animation-duration:.4s!important}.animation-duration-500{animation-duration:.5s!important}.animation-duration-1000{animation-duration:1s!important}.animation-duration-2000{animation-duration:2s!important}.animation-duration-3000{animation-duration:3s!important}.animation-delay-100{animation-delay:.1s!important}.animation-delay-150{animation-delay:.15s!important}.animation-delay-200{animation-delay:.2s!important}.animation-delay-300{animation-delay:.3s!important}.animation-delay-400{animation-delay:.4s!important}.animation-delay-500{animation-delay:.5s!important}.animation-delay-1000{animation-delay:1s!important}.animation-iteration-1{animation-iteration-count:1!important}.animation-iteration-2{animation-iteration-count:2!important}.animation-iteration-infinite{animation-iteration-count:infinite!important}.animation-linear{animation-timing-function:linear!important}.animation-ease-in{animation-timing-function:cubic-bezier(.4,0,1,1)!important}.animation-ease-out{animation-timing-function:cubic-bezier(0,0,.2,1)!important}.animation-ease-in-out{animation-timing-function:cubic-bezier(.4,0,.2,1)!important}.animation-fill-none{animation-fill-mode:none!important}.animation-fill-forwards{animation-fill-mode:forwards!important}.animation-fill-backwards{animation-fill-mode:backwards!important}.animation-fill-both{animation-fill-mode:both!important}:host ::ng-deep w-image-file-uploader,:host ::ng-deep .w-image-file-uploader,:host ::ng-deep .w-image-file-button .p-fileupload,:host ::ng-deep .p-fileupload,:host ::ng-deep .w-image-file-uploader-gallery,:host ::ng-deep p-galleriacontent{display:block;height:100%}::ng-deep .p-fileupload-content{display:flex;flex-direction:column;height:100%}::ng-deep .p-galleria.p-component{max-width:100%;height:100%}::ng-deep .p-galleria-content{display:flex;flex-direction:column;height:100%}::ng-deep p-galleriaitem{height:100%}::ng-deep .p-galleria-item-wrapper{display:flex;flex-direction:column;position:relative;height:100%}::ng-deep .p-galleria-item-container{position:relative;display:flex;height:100%}::ng-deep .p-galleria-item{display:flex;justify-content:center;align-items:center;height:100%;width:100%}.wapp-file-upload-button-remove{top:-10px;right:-10px;display:none}.wapp-file-upload-button{visibility:hidden}.w-image-file-uploader-delete-button{position:absolute;top:0%;left:0%}.w-image-file-uploader-hide-move-button{visibility:hidden}::ng-deep .w-image-file-uploader-gallery p-galleriacontent .p-galleria .p-galleria-content p-galleriaitem .p-galleria-item-wrapper .p-galleria-item-container .p-galleria-item-prev.p-disabled{visibility:hidden}::ng-deep .w-image-file-uploader-gallery p-galleriacontent .p-galleria .p-galleria-content p-galleriaitem .p-galleria-item-wrapper .p-galleria-item-container .p-galleria-item-next.p-disabled{visibility:hidden}:host ::ng-deep .w-image-file-button .p-fileupload .p-fileupload-buttonbar{display:none}:host ::ng-deep .w-image-file-button .p-fileupload .p-fileupload-content{border:none!important;padding:0}:host ::ng-deep .w-image-file-uploader-delete-button-icon.w-button-text-small.p-button.p-button-icon-only .p-button-icon{font-size:16px}.w-image-file-uploader-move-buttons{position:absolute;bottom:0%;left:0%}:host ::ng-deep .w-button-text-small.p-button.p-button-icon-only .p-button-icon{color:#fff;filter:drop-shadow(1px 1px 16.9px rgba(0,0,0,.2)) drop-shadow(1px 1px 1px rgba(0,0,0,.6))}::ng-deep .p-galleria-item-prev-icon,::ng-deep .p-galleria-item-next-icon{filter:drop-shadow(1px 1px 16.9px rgba(0,0,0,.2)) drop-shadow(1px 1px 1px rgba(0,0,0,.6))}::ng-deep .p-galleria-item{border-radius:2px;background-color:#f8f9fa}.w-image-file-uploader-space-container{padding:24px 8px}.w-image-file-uploader-field-container-height{height:398px!important}.w-image-file-uploader-container-height{height:100%!important}.w-image-file-uploader-multi-action-button{align-items:center;justify-content:center;align-content:center;width:24px!important;height:24px!important;display:flex;flex-direction:row;border-radius:16px;cursor:pointer}.w-image-file-uploader-arrow{filter:drop-shadow(1px 1px 16.9px rgba(0,0,0,.2)) drop-shadow(1px 1px 1px rgba(0,0,0,.6))}.w-image-file-uploader-multi-images-index{text-shadow:1px 1px 16.9px rgba(0,0,0,.2),1px 1px 1px rgba(0,0,0,.6)}:host ::ng-deep .w-image-file-uploader-field .p-fileupload{border:1px solid #e8ebee;height:auto}:host ::ng-deep .w-image-file-uploader-field-no-image .p-fileupload{border:1px solid #e8ebee;height:398px}.w-image-file-uploader-field-img-container{width:280px;height:280px}.w-image-file-uploader-gallery-field{height:280px;display:block}\n"], dependencies: [{ kind: "directive", type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: i5.ConfirmPopup, selector: "p-confirmPopup", inputs: ["key", "defaultFocus", "showTransitionOptions", "hideTransitionOptions", "autoZIndex", "baseZIndex", "style", "styleClass", "visible"] }, { kind: "component", type: i6.FileUpload, selector: "p-fileUpload", inputs: ["name", "url", "method", "multiple", "accept", "disabled", "auto", "withCredentials", "maxFileSize", "invalidFileSizeMessageSummary", "invalidFileSizeMessageDetail", "invalidFileTypeMessageSummary", "invalidFileTypeMessageDetail", "invalidFileLimitMessageDetail", "invalidFileLimitMessageSummary", "style", "styleClass", "previewWidth", "chooseLabel", "uploadLabel", "cancelLabel", "chooseIcon", "uploadIcon", "cancelIcon", "showUploadButton", "showCancelButton", "mode", "headers", "customUpload", "fileLimit", "uploadStyleClass", "cancelStyleClass", "removeStyleClass", "chooseStyleClass", "files"], outputs: ["onBeforeUpload", "onSend", "onUpload", "onError", "onClear", "onRemove", "onSelect", "onProgress", "uploadHandler", "onImageError"] }, { kind: "component", type: i7.ProgressBar, selector: "p-progressBar", inputs: ["value", "showValue", "style", "styleClass", "unit", "mode", "color"] }, { kind: "component", type: i8.Galleria, selector: "p-galleria", inputs: ["activeIndex", "fullScreen", "id", "value", "numVisible", "responsiveOptions", "showItemNavigators", "showThumbnailNavigators", "showItemNavigatorsOnHover", "changeItemOnIndicatorHover", "circular", "autoPlay", "transitionInterval", "showThumbnails", "thumbnailsPosition", "verticalThumbnailViewPortHeight", "showIndicators", "showIndicatorsOnItem", "indicatorsPosition", "baseZIndex", "maskClass", "containerClass", "containerStyle", "showTransitionOptions", "hideTransitionOptions", "visible"], outputs: ["activeIndexChange", "visibleChange"] }, { kind: "component", type: i9.WIconsComponent, selector: "w-icons", inputs: ["name", "width", "height", "color"] }, { kind: "component", type: i10.WButtonComponent, selector: "w-button", inputs: ["type", "label", "size", "icon", "iconPos", "tooltipPosition", "tooltip", "disabled", "loading", "buttonClass"], outputs: ["onClick"] }, { kind: "component", type: i11.WInputLabelComponent, selector: "w-input-label", inputs: ["label", "disabled", "required", "tooltip", "size"] }, { kind: "pipe", type: i4.SlicePipe, name: "slice" }] });
396
+ WImageFileUploaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: WImageFileUploaderComponent, selector: "w-image-file-uploader", inputs: { allowMultipleImages: "allowMultipleImages", activeImageUpload: "activeImageUpload", imagesAlreadyUploaded: "imagesAlreadyUploaded", imageSingleMode: "imageSingleMode", uploadUrl: "uploadUrl", updateUrl: "updateUrl", deleteUrl: "deleteUrl", headers: "headers", activePositionProperty: "activePositionProperty", viewSingleMode: "viewSingleMode", viewMultiMode: "viewMultiMode", identificatorName: ["identificatorImageName", "identificatorName"], identificatorValue: ["identificatorImagesCollectionValue", "identificatorValue"], imageUploadConfig: "imageUploadConfig", activeFieldVersion: "activeFieldVersion", label: "label", tooltip: "tooltip", required: "required" }, outputs: { onUploadFinished: "onUploadFinished", onErrorHandler: "onErrorHandler", onReturnImagesB64: "onReturnImagesB64", onDeleteImage: "onDeleteImage" }, providers: [ConfirmationService], viewQueries: [{ propertyName: "fileUpload", first: true, predicate: ["fileUpload"], descendants: true }, { propertyName: "fileuploadOnlyImage", first: true, predicate: ["fileUploadOnlyImage"], descendants: true }, { propertyName: "buttonRemoveOnlyImage", predicate: ["buttonRemoveOnlyImage"], descendants: true }], ngImport: i0, template: "\r\n<w-input-label *ngIf=\"activeFieldVersion == true\" [label]=\"label\" [tooltip]=\"tooltip\" [required]=\"required\"></w-input-label>\r\n<div *ngIf=\"activeFieldVersion == true && (label != undefined && label.length > 0)\" class=\"input-label-gap-divider\"></div>\r\n<p-fileUpload *ngIf=\"allowMultipleImages == false; else withCarousel\" #fileUploadOnlyImage class=\"w-image-file-button\" \r\n [ngClass]=\"{'w-image-file-uploader' : activeFieldVersion == false, \r\n 'w-image-file-uploader-field' : activeFieldVersion == true, \r\n 'w-image-file-uploader-field-no-image' : activeFieldVersion == true && (onlyCroppedImageSelected == null || undefined ) && (imageSingleMode == null || undefined)}\"\r\n mode=\"advanced\" \r\n [accept]=\"imageUploadConfig.acceptImageTypes\" \r\n [multiple]=\"false\" \r\n [invalidFileSizeMessageSummary]=\"imageUploadConfig.invalidFileSizeMessageSummary + ':'\" \r\n [invalidFileSizeMessageDetail]=\"imageUploadConfig.invalidFileSizeMessageDetail + ' {0} bytes.'\" \r\n [invalidFileTypeMessageSummary]=\"imageUploadConfig.invalidFileTypeMessageSummary + ':'\" \r\n [invalidFileTypeMessageDetail]=\"imageUploadConfig.invalidFileTypeMessageDetail + ': {0}.'\"\r\n (onSelect)=\"onCustomUploadSingleMode($event)\" \r\n [uploadLabel]=\"onlyCroppedImageSelected ? (onlyCroppedImageSelected.name.length>6)? (onlyCroppedImageSelected.name | slice:0:6)+'...':(onlyCroppedImageSelected.name) : ''\" \r\n [customUpload]=\"true\" \r\n (uploadHandler)=\"onCustomizeUploadFunctionSingleMode($event)\" \r\n [maxFileSize]=\"imageUploadConfig.maxImageSize\">\r\n <ng-template let-file let-i=\"index\" pTemplate='file'>\r\n <div *ngIf=\"activeImageUpload\"></div>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <p-progressBar *ngIf=\"false\"></p-progressBar>\r\n <div *ngIf=\"(onlyCroppedImageSelected != null || undefined) || (imageSingleMode != null || undefined)\" style=\"flex-grow: 1;\">\r\n <p-galleria \r\n [ngClass]=\"getGalleryClass()\" \r\n [value]=\"(onlyCroppedImageSelected !== null) ? [onlyCroppedImageSelected.fileBase64] : (imageUploadConfig.singleModeImageDefault ? [imageUploadConfig.singleModeImageDefault] : (imageSingleMode ? [imageSingleMode] : ['https://wappingstoragedev.blob.core.windows.net/wapping/appresources/ic_image_blue.png']))\" \r\n [responsiveOptions]=\"carouselImagesResponsiveOptions\" \r\n [containerStyle]=\"{ 'max-width': '100%', 'max-height':'100%'}\" \r\n [numVisible]=\"2\" \r\n [showItemNavigators]=\"false\"\r\n [showThumbnails]=\"false\" [showIndicators]=\"false\">\r\n <ng-template pTemplate=\"item\" let-image>\r\n <div *ngIf=\"(viewSingleMode == false && (imageSingleMode != null || undefined)) || \r\n (viewSingleMode == false && onlyCroppedImageSelected != null)\" class=\"w-image-file-uploader-delete-button flex align-content-center justify-content-center\" style=\"width: 100%;\">\r\n <w-button buttonClass=\"w-image-file-uploader-delete-button-icon\" icon=\"pi pi-trash\" type=\"text\" (click)=\"removeImageSingleMode($event, onlyImageSelected)\"></w-button>\r\n </div>\r\n <div class=\"flex flex-wrap align-content-center justify-content-center\" [ngClass]=\"{'w-image-file-uploader-field-img-container': activeFieldVersion}\" style=\"object-fit: contain; /* width: 300px; height: 300px; */\">\r\n <img [src]=\"image\" style=\"max-width:100%;\r\n max-height:100%;\r\n height: auto;\r\n width:auto;\" />\r\n </div>\r\n </ng-template>\r\n </p-galleria>\r\n </div>\r\n <div *ngIf=\"viewSingleMode == false; else viewSingleModeMessage\" (click)=\"openSingleImageFileSelector()\" \r\n class=\"w-image-file-uploader-space-container flex flex-column justify-content-center align-items-center\" style=\"cursor: pointer;\"\r\n [ngClass]=\"{'w-image-file-uploader-container-height' : (onlyCroppedImageSelected == null || undefined ) && (imageSingleMode == null || undefined) && activeFieldVersion == false, 'w-image-file-uploader-field-container-height' : activeFieldVersion == true && (onlyCroppedImageSelected == null || undefined ) && (imageSingleMode == null || undefined)}\">\r\n <span class=\"pi pi-upload subtitle1 textMainColor\"></span>\r\n <span class=\"subtitle1 textMainColor m-2\">\r\n {{imageUploadConfig.contentHeaderLabel}}\r\n </span>\r\n <span class=\"textSoftColor text-center\">\r\n {{imageUploadConfig.contentSubheaderLabel}}\r\n </span>\r\n </div>\r\n <ng-template #viewSingleModeMessage>\r\n <div *ngIf=\"imageSingleMode == null || undefined\" class=\"textSoftColor flex justify-content-center align-items-center w-image-file-uploader-container-height\">\r\n {{imageUploadConfig.viewModecontentLabel}}\r\n </div>\r\n </ng-template>\r\n </ng-template>\r\n</p-fileUpload>\r\n<ng-template #withCarousel>\r\n <p-fileUpload *ngIf=\"imageUploadConfig\" #fileUpload class=\"w-image-file-button\" \r\n [ngClass]=\"{'w-image-file-uploader' : activeFieldVersion == false, \r\n 'w-image-file-uploader-field' : activeFieldVersion == true, \r\n 'w-image-file-uploader-field-no-image' : activeFieldVersion == true && (imagesAlreadyUploaded.length == 0 || undefined ) || (imagesAlreadyUploaded == null || undefined)}\"\r\n name=\"mediaImages[]\" \r\n [accept]=\"imageUploadConfig.acceptImageTypes\" \r\n mode=\"advanced\" \r\n [customUpload]=\"true\" \r\n (onSelect)=\"onCustomUploadMultiMode($event)\" \r\n (uploadHandler)=\"onCustomizeUploadFunctionMultiMode($event)\" \r\n [uploadLabel]=\"imageUploadConfig.uploadButtonLabel ?? ''\" \r\n [chooseLabel]=\"imageUploadConfig.chooseButtonLabel ?? ''\" \r\n [cancelLabel]=\"imageUploadConfig.cancelButtonLabel ?? ''\" \r\n [showUploadButton]=\"activeImageUpload\"\r\n [showCancelButton]=\"activeImageUpload\"\r\n [auto]=\"imageUploadConfig.allowAuto\" \r\n [multiple]=\"true\" \r\n [maxFileSize]=\"imageUploadConfig.maxImageSize\" \r\n [invalidFileSizeMessageSummary]=\"imageUploadConfig.invalidFileSizeMessageSummary + ':'\" \r\n [invalidFileSizeMessageDetail]=\"imageUploadConfig.invalidFileSizeMessageDetail + ' {0} bytes.'\" \r\n [invalidFileTypeMessageSummary]=\"imageUploadConfig.invalidFileTypeMessageSummary + ':'\" \r\n [invalidFileTypeMessageDetail]=\"imageUploadConfig.invalidFileTypeMessageDetail + ': {0}.'\"\r\n [chooseStyleClass]=\"'p-button-icon p-button-icon-right'\">\r\n <ng-template let-file let-i=\"index\" pTemplate='file'>\r\n <div *ngIf=\"activeImageUpload && cropperImages.length > 0\" class=\"p-fileupload-row\">\r\n <div><img [src]=\"cropperImages[i]?.fileBase64\" width=\"50\"/></div>\r\n <div class=\"p-fileupload-filename\">{{file.name}}</div>\r\n <div> <w-button icon=\"pi pi-times\" (onClick)=\"onDeleteFileMultiMode($event, file, fileUpload)\"></w-button> </div>\r\n </div>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <p-progressBar *ngIf=\"isUploadingMultiMode\" class=\"p-element ng-star-inserted\" [mode]=\"'indeterminate'\">\r\n <div role=\"progressbar\" aria-valuemin=\"0\" aria-valuenow=\"0\" aria-valuemax=\"100\" data-pc-name=\"progressbar\" data-pc-section=\"root\" class=\"p-progressbar p-component p-progressbar-determinate\">\r\n <div class=\"p-progressbar-value p-progressbar-value-animate ng-star-inserted\" style=\"display: flex; width: 0%;\" data-pc-section=\"value\"></div>\r\n </div>\r\n </p-progressBar>\r\n <div *ngIf=\"imagesAlreadyUploaded.length > 0\" style=\"flex-grow: 1;\">\r\n <p-galleria \r\n [ngClass]=\"getGalleryClass()\" \r\n [value]=\"imagesAlreadyUploaded\" \r\n [activeIndex]=\"activeIndexGallery\" \r\n [responsiveOptions]=\"carouselImagesResponsiveOptions\" \r\n [containerStyle]=\"{ 'max-width': '100%', 'max-height':'100%'}\" \r\n [numVisible]=\"3\" \r\n [showItemNavigators]=\"true\"\r\n [showThumbnails]=\"false\">\r\n <ng-template pTemplate=\"item\" let-image>\r\n <div *ngIf=\"viewMultiMode == false\" class=\"w-image-file-uploader-delete-button flex align-content-center justify-content-center\" style=\"width: 100%;\">\r\n <w-button buttonClass=\"w-image-file-uploader-delete-button-icon\" icon=\"pi pi-trash\" type=\"text\" (onClick)=\"confirmDeleteImageMultiMode($event, image)\" [loading]=\"isDeletingMultiMode\"></w-button>\r\n </div>\r\n <div class=\"flex flex-wrap align-content-center justify-content-center\" [ngClass]=\"{'w-image-file-uploader-field-img-container': activeFieldVersion}\" style=\"object-fit: contain;\">\r\n <img [src]=\"readProperty(image, imageUploadConfig.imagePropertyNames[0]) ?? image.fileBase64\" style=\"max-width:100%;\r\n max-height:100%;\r\n height: auto;\r\n width:auto;\" />\r\n </div>\r\n <div class=\"w-image-file-uploader-move-buttons flex align-content-center justify-content-center\" style=\"width: 100%;\">\r\n <div *ngIf=\"viewMultiMode == false && activePositionProperty == true\" class=\"w-image-file-uploader-multi-action-button\" [ngClass]=\"{'w-image-file-uploader-hide-move-button' : findIndex(image) == 0 || disableMoveButtons}\" (click)=\"moveImageToLeft(image)\">\r\n <w-icons name=\"doubleArrowLeft\" class=\"w-image-file-uploader-arrow\" [height]=\"10\" [width]=\"10\" [color]=\"'white'\"></w-icons>\r\n </div>\r\n\r\n <div *ngIf=\"isDeletingMultiMode == false; else indexLoading\" class=\"w-image-file-uploader-multi-images-index flex align-items-center justify-content-center\">\r\n {{ findIndex(image) + 1 }} / {{ imagesAlreadyUploaded.length }}\r\n </div>\r\n <ng-template #indexLoading>\r\n <div class=\"w-image-file-uploader-multi-images-index flex align-items-center justify-content-center\"> - / - </div>\r\n </ng-template>\r\n \r\n <div *ngIf=\"viewMultiMode == false && activePositionProperty == true\" class=\"w-image-file-uploader-multi-action-button\" [ngClass]=\"{'w-image-file-uploader-hide-move-button' : (findIndex(image) == imagesAlreadyUploaded.length-1) || disableMoveButtons}\" (click)=\"moveImageToRight(image)\">\r\n <w-icons name=\"doubleArrowRight\" class=\"w-image-file-uploader-arrow\" [height]=\"10\" [width]=\"10\" [color]=\"'white'\"></w-icons>\r\n </div>\r\n </div>\r\n </ng-template>\r\n </p-galleria>\r\n </div>\r\n <div *ngIf=\"viewMultiMode == false; else viewMultiModeMessage\" (click)=\"openImageFileSelector()\" \r\n class=\"w-image-file-uploader-space-container flex flex-column justify-content-center align-items-center\" \r\n style=\"cursor: pointer;\" \r\n [ngClass]=\"{'w-image-file-uploader-container-height' : (imagesAlreadyUploaded.length == 0 || undefined ) || (imagesAlreadyUploaded == null || undefined) && activeFieldVersion == false, 'w-image-file-uploader-field-container-height' : activeFieldVersion == true && (imagesAlreadyUploaded.length == 0 || undefined ) || (imagesAlreadyUploaded == null || undefined)}\">\r\n <span class=\"pi pi-upload subtitle1 textMainColor\"></span>\r\n <span class=\"subtitle1 textMainColor m-2\">\r\n {{imageUploadConfig.contentHeaderLabel}}\r\n </span>\r\n <span class=\"textSoftColor text-center\">\r\n {{imageUploadConfig.contentSubheaderLabel}}\r\n </span>\r\n </div>\r\n <ng-template #viewMultiModeMessage>\r\n <div *ngIf=\"imagesAlreadyUploaded.length==0\" class=\"textSoftColor flex justify-content-center align-items-center w-image-file-uploader-container-height\">\r\n {{imageUploadConfig.viewModecontentLabel}}\r\n </div>\r\n </ng-template>\r\n </ng-template>\r\n </p-fileUpload>\r\n</ng-template>\r\n\r\n<p-confirmPopup></p-confirmPopup>\r\n", styles: [".heading1{font-size:2.6666666667rem;line-height:3rem;font-weight:700}.heading2{font-size:2.3333333333rem;line-height:2.6666666667rem;font-weight:700}.heading3{font-size:2rem;line-height:2.3333333333rem;font-weight:700}.heading4{font-size:1.6666666667rem;line-height:2rem;font-weight:700}.heading5,.w-sidebar-title-text{font-size:1.5rem;line-height:1.8333333333rem;font-weight:700}.heading6{font-size:1.3333333333rem;line-height:1.6666666667rem;font-weight:700}.subtitle1,.w-tab-text,.w-panel-title-text{font-size:1.1666666667rem;line-height:1.3333333333rem;font-weight:700}.subtitle2,.w-table-th-text,.w-panel-subtitle-text,.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled,.w-view-small-label-text-typography,.w-view-small-label-text,.w-button-small-text-label-text-typography,.w-button-small-text-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:600}.body,.w-image-file-uploader-navigators-text,.w-image-file-uploader-multi-images-index,.w-table-td-text,.w-chip-text,.w-panel-content,.w-input-small-select-options-text,.w-input-small-placeholder-text-typography,.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text,.w-view-small-value-text-typography,.w-view-small-value-text,.w-button-small-label-text-typography,.w-button-small-tertiary-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:400}.caption,.w-input-error-alert-text,.w-input-warning-alert-text,.w-input-success-alert-text{font-size:.6666666667rem;line-height:1rem;font-weight:400}.light,.w-input-small-placeholder-text-only-color{font-size:.9166666667rem;line-height:1.0833333333rem;font-weight:300}.small,.w-button-small-label-text-typography-sm{font-size:.8333333333rem;line-height:1rem;font-weight:400}.textMainColor{color:#1f2224}.textSoftColor{color:#5f6468}.textSofterColor{color:#9aa0a7}.textSoftestColor{color:#e8ebee}.textInverseColor{color:#fff}.spacingXXS{padding:4px}.spacingXSM{padding:6px}.spacingXSMDivider{height:6px}.spacingXS{padding:8px}.spacingS{padding:12px}.spacingM{padding:16px}.spacingL{padding:20px}.spacingXL{padding:24px}.spacingXXL{padding:28px}.spacingXXXL{padding:32px}.panel-title-gap-divider{height:20px}.panel-section-gap-divider{height:32px}.input-vertical-gap-divider{height:24px}.input-label-gap-divider{height:6px}.focusedInput{border:1px solid rgba(0,157,253,.25);box-shadow:0 0 10px #00b3eb40}.focus{box-shadow:0 0 8px #00a6e980}.hover{border-radius:8px;border:1px solid #00b3eb}.hoveredInput{border-radius:8px;border:1px solid rgba(0,179,235,.5)}.input-generic-valid{border-radius:8px;border:1px solid #B3FFD3}.input-generic-valid-focus{border-radius:8px;border:1px solid #B3FFD3!important;box-shadow:0 0 8px #46ff9b80!important;padding-left:16px}.input-generic-warning{border-radius:8px;border:1px solid #FFECB8!important}.input-generic-warning-focus{border-radius:8px;border:1px solid #FFECB8!important;box-shadow:0 0 8px #ffcd4680!important;padding-left:16px}.input-generic-error-focus{border-radius:8px;border:1px solid #FFBDBD!important;box-shadow:0 0 8px #ff555580!important;padding-left:16px}.input-generic-error{border-radius:8px;border:1px solid #FFBDBD}.toggle-small-typography{font-size:12px;line-height:16px;font-weight:600}.w-button-small-label-text-typography,.w-button-small-tertiary-label-text,.w-button-small-label-text-typography-sm{font-weight:600}.w-button-small-tertiary-label-text{color:#5f6468}.w-button-small-text-label-text{color:#1f2224}.w-button-small-icon-text{font-size:12px;font-weight:600}.w-table-button-small-icon-text{font-size:12px;color:#9aa0a7}.w-control-button-small-label-text{font-size:12px;font-weight:600;line-height:16px}.w-control-button-x-small-icon-text{font-size:10px;font-weight:700}.w-control-button-small-icon-text{font-size:8px;font-weight:700}.w-button-medium-label-text-typography,.w-button-medium-tertiary-label-text{font-size:16px;font-weight:600;line-height:16px}.w-button-medium-tertiary-label-text{color:#1f2224}.w-button-medium-icon-text{font-size:16px}.w-control-button-medium-label-text{font-size:14px;font-weight:600;line-height:16px}.w-control-button-medium-icon-text{font-size:12px;font-weight:700}.w-button-large-label-text-typography,.w-button-large-tertiary-label-text{font-size:20px;font-weight:600;line-height:24px}.w-button-large-tertiary-label-text{color:#1f2224}.w-button-x-small-label-text{font-size:10px;font-weight:600;line-height:10px}.w-button-small-only-label-text{font-size:12px;font-weight:600;line-height:16px}.w-button-large-icon-text{font-size:24px}.w-view-small-label-text{color:#1f2224}.w-view-small-value-text{color:#5f6468}.w-input-no-label-height{height:14px}.w-input-disabled{background-color:#f1f3f4;border-color:#e8ebee;opacity:1}.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled{height:-moz-fit-content;height:fit-content}.w-input-small-label-text,.w-input-small-label-disabled{color:#1f2224}.w-input-small-label-disabled{color:#9aa0a7}.w-input-small-label-text-content{padding:12px 8px 8px 0;margin:0}.w-input-small-label-text-content-no-top{padding-top:0}.w-input-small-placeholder-text{color:#1f2224}.w-input-small-placeholder-text-only-color{color:#9aa0a7;line-height:1.3333333333rem}.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text-disabled-only-color{color:#5f6468}.w-input-small-text-icon,.w-input-small-select-options-text{color:#1f2224}.w-input-medium-label-text-typography,.w-input-medium-label-text,.w-input-medium-label-disabled{font-size:14px;font-weight:600;line-height:16px}.w-input-medium-label-text,.w-input-medium-label-disabled{color:#1f2224}.w-input-medium-label-disabled{color:#9aa0a7}.w-input-medium-placeholder-text-typography,.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text{font-size:16px;font-weight:400;line-height:24px}.w-input-medium-placeholder-text,.w-input-medium-placeholder-text-only-color{color:#1f2224}.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text-disabled-only-color{color:#5f6468}.w-input-medium-text-icon{color:#1f2224}.w-input-medium-select-options-text{font-size:16px;font-weight:400;line-height:24px;color:#1f2224}.w-input-success-alert-text{color:#00db5d;padding:8px 8px 0;margin-top:0}.w-input-warning-alert-text{color:#eeae00;padding:8px 8px 0;margin-top:0}.w-input-error-alert-text{color:#e50000;padding:8px 8px 0;margin-top:0}.w-input-alert-message-height{height:32px}.w-sidebar-title-text,.w-panel-title-text,.w-panel-subtitle-text{color:#1f2224}.w-panel-content{color:#5f6468}.w-tab-text,.w-chip-text{color:#1f2224}.w-badge-text{font-size:10px;font-weight:700;line-height:8px}.w-table-th-text{color:#1f2224}.w-table-td-text{color:#5f6468}.w-table-height{padding:6px 8px 5px}.w-table-no-buttons-height{padding:16px 8px 15px!important}.w-tree-table-height{padding:8px 8px 7px}.w-image-file-uploader-navigators-text,.w-image-file-uploader-multi-images-index{font-size:12px;color:#fff}.grid{margin:0}::ng-deep .p-tooltip,.p-tooltip{filter:0px 0px 1px 0px rgba(0,0,0,.1) inset,1px 1px 5px rgba(0,0,0,.06),1px 1px 1px rgba(0,0,0,.08)}::ng-deep .p-tooltip .p-tooltip-text,.p-tooltip .p-tooltip-text{background:#ffffff!important;color:#1f2224;padding:12px 16px;max-width:192px;width:max-content;margin-left:3px}::ng-deep .p-tooltip.p-tooltip-right,.p-tooltip.p-tooltip-right{margin-left:6px;width:max-content;transform:translateY(-1px)}::ng-deep .p-tooltip.p-tooltip-right .p-tooltip-arrow,.p-tooltip.p-tooltip-right .p-tooltip-arrow{border-right-color:#fff!important;top:50%;left:0;margin-top:-4px;border-width:4px 6px 4px 0!important}::ng-deep .p-tooltip.p-tooltip-bottom .p-tooltip-arrow,.p-tooltip.p-tooltip-bottom .p-tooltip-arrow{border-bottom-color:#fff!important;border-width:0 4px 6px 4px!important;margin-top:-3px}.grid{display:flex;flex-wrap:wrap;margin-right:-.5rem;margin-left:-.5rem;margin-top:-.5rem}.grid>.col,.grid>[class*=col]{box-sizing:border-box}.grid-nogutter{margin-right:0;margin-left:0;margin-top:0}.grid-nogutter>.col,.grid-nogutter>[class*=col-]{padding:0}.col{flex-grow:1;flex-basis:0;padding:.5rem}.col-fixed{flex:0 0 auto;padding:.5rem}.col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.col-3{flex:0 0 auto;padding:.5rem;width:25%}.col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.col-6{flex:0 0 auto;padding:.5rem;width:50%}.col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.col-9{flex:0 0 auto;padding:.5rem;width:75%}.col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.col-12{flex:0 0 auto;padding:.5rem;width:100%}@media screen and (min-width: 576px){.sm\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.sm\\:col-fixed{flex:0 0 auto;padding:.5rem}.sm\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.sm\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.sm\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.sm\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.sm\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.sm\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.sm\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.sm\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.sm\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.sm\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.sm\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.sm\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 768px){.md\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.md\\:col-fixed{flex:0 0 auto;padding:.5rem}.md\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.md\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.md\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.md\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.md\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.md\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.md\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.md\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.md\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.md\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.md\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.md\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 992px){.lg\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.lg\\:col-fixed{flex:0 0 auto;padding:.5rem}.lg\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.lg\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.lg\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.lg\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.lg\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.lg\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.lg\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.lg\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.lg\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.lg\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.lg\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.lg\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 1200px){.xl\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.xl\\:col-fixed{flex:0 0 auto;padding:.5rem}.xl\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.xl\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.xl\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.xl\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.xl\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.xl\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.xl\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.xl\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.xl\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.xl\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.xl\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.xl\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}.col-offset-0{margin-left:0!important}.col-offset-1{margin-left:8.3333%!important}.col-offset-2{margin-left:16.6667%!important}.col-offset-3{margin-left:25%!important}.col-offset-4{margin-left:33.3333%!important}.col-offset-5{margin-left:41.6667%!important}.col-offset-6{margin-left:50%!important}.col-offset-7{margin-left:58.3333%!important}.col-offset-8{margin-left:66.6667%!important}.col-offset-9{margin-left:75%!important}.col-offset-10{margin-left:83.3333%!important}.col-offset-11{margin-left:91.6667%!important}.col-offset-12{margin-left:100%!important}@media screen and (min-width: 576px){.sm\\:col-offset-0{margin-left:0!important}.sm\\:col-offset-1{margin-left:8.3333%!important}.sm\\:col-offset-2{margin-left:16.6667%!important}.sm\\:col-offset-3{margin-left:25%!important}.sm\\:col-offset-4{margin-left:33.3333%!important}.sm\\:col-offset-5{margin-left:41.6667%!important}.sm\\:col-offset-6{margin-left:50%!important}.sm\\:col-offset-7{margin-left:58.3333%!important}.sm\\:col-offset-8{margin-left:66.6667%!important}.sm\\:col-offset-9{margin-left:75%!important}.sm\\:col-offset-10{margin-left:83.3333%!important}.sm\\:col-offset-11{margin-left:91.6667%!important}.sm\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 768px){.md\\:col-offset-0{margin-left:0!important}.md\\:col-offset-1{margin-left:8.3333%!important}.md\\:col-offset-2{margin-left:16.6667%!important}.md\\:col-offset-3{margin-left:25%!important}.md\\:col-offset-4{margin-left:33.3333%!important}.md\\:col-offset-5{margin-left:41.6667%!important}.md\\:col-offset-6{margin-left:50%!important}.md\\:col-offset-7{margin-left:58.3333%!important}.md\\:col-offset-8{margin-left:66.6667%!important}.md\\:col-offset-9{margin-left:75%!important}.md\\:col-offset-10{margin-left:83.3333%!important}.md\\:col-offset-11{margin-left:91.6667%!important}.md\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 992px){.lg\\:col-offset-0{margin-left:0!important}.lg\\:col-offset-1{margin-left:8.3333%!important}.lg\\:col-offset-2{margin-left:16.6667%!important}.lg\\:col-offset-3{margin-left:25%!important}.lg\\:col-offset-4{margin-left:33.3333%!important}.lg\\:col-offset-5{margin-left:41.6667%!important}.lg\\:col-offset-6{margin-left:50%!important}.lg\\:col-offset-7{margin-left:58.3333%!important}.lg\\:col-offset-8{margin-left:66.6667%!important}.lg\\:col-offset-9{margin-left:75%!important}.lg\\:col-offset-10{margin-left:83.3333%!important}.lg\\:col-offset-11{margin-left:91.6667%!important}.lg\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 1200px){.xl\\:col-offset-0{margin-left:0!important}.xl\\:col-offset-1{margin-left:8.3333%!important}.xl\\:col-offset-2{margin-left:16.6667%!important}.xl\\:col-offset-3{margin-left:25%!important}.xl\\:col-offset-4{margin-left:33.3333%!important}.xl\\:col-offset-5{margin-left:41.6667%!important}.xl\\:col-offset-6{margin-left:50%!important}.xl\\:col-offset-7{margin-left:58.3333%!important}.xl\\:col-offset-8{margin-left:66.6667%!important}.xl\\:col-offset-9{margin-left:75%!important}.xl\\:col-offset-10{margin-left:83.3333%!important}.xl\\:col-offset-11{margin-left:91.6667%!important}.xl\\:col-offset-12{margin-left:100%!important}}.text-0{color:var(--surface-0)!important}.text-50{color:var(--surface-50)!important}.text-100{color:var(--surface-100)!important}.text-200{color:var(--surface-200)!important}.text-300{color:var(--surface-300)!important}.text-400{color:var(--surface-400)!important}.text-500{color:var(--surface-500)!important}.text-600{color:var(--surface-600)!important}.text-700{color:var(--surface-700)!important}.text-800{color:var(--surface-800)!important}.text-900{color:var(--surface-900)!important}.focus\\:text-0:focus{color:var(--surface-0)!important}.hover\\:text-0:hover,.active\\:text-0:active{color:var(--surface-0)!important}.focus\\:text-50:focus{color:var(--surface-50)!important}.hover\\:text-50:hover,.active\\:text-50:active{color:var(--surface-50)!important}.focus\\:text-100:focus{color:var(--surface-100)!important}.hover\\:text-100:hover,.active\\:text-100:active{color:var(--surface-100)!important}.focus\\:text-200:focus{color:var(--surface-200)!important}.hover\\:text-200:hover,.active\\:text-200:active{color:var(--surface-200)!important}.focus\\:text-300:focus{color:var(--surface-300)!important}.hover\\:text-300:hover,.active\\:text-300:active{color:var(--surface-300)!important}.focus\\:text-400:focus{color:var(--surface-400)!important}.hover\\:text-400:hover,.active\\:text-400:active{color:var(--surface-400)!important}.focus\\:text-500:focus{color:var(--surface-500)!important}.hover\\:text-500:hover,.active\\:text-500:active{color:var(--surface-500)!important}.focus\\:text-600:focus{color:var(--surface-600)!important}.hover\\:text-600:hover,.active\\:text-600:active{color:var(--surface-600)!important}.focus\\:text-700:focus{color:var(--surface-700)!important}.hover\\:text-700:hover,.active\\:text-700:active{color:var(--surface-700)!important}.focus\\:text-800:focus{color:var(--surface-800)!important}.hover\\:text-800:hover,.active\\:text-800:active{color:var(--surface-800)!important}.focus\\:text-900:focus{color:var(--surface-900)!important}.hover\\:text-900:hover,.active\\:text-900:active{color:var(--surface-900)!important}.surface-0{background-color:var(--surface-0)!important}.surface-50{background-color:var(--surface-50)!important}.surface-100{background-color:var(--surface-100)!important}.surface-200{background-color:var(--surface-200)!important}.surface-300{background-color:var(--surface-300)!important}.surface-400{background-color:var(--surface-400)!important}.surface-500{background-color:var(--surface-500)!important}.surface-600{background-color:var(--surface-600)!important}.surface-700{background-color:var(--surface-700)!important}.surface-800{background-color:var(--surface-800)!important}.surface-900{background-color:var(--surface-900)!important}.focus\\:surface-0:focus{background-color:var(--surface-0)!important}.hover\\:surface-0:hover,.active\\:surface-0:active{background-color:var(--surface-0)!important}.focus\\:surface-50:focus{background-color:var(--surface-50)!important}.hover\\:surface-50:hover,.active\\:surface-50:active{background-color:var(--surface-50)!important}.focus\\:surface-100:focus{background-color:var(--surface-100)!important}.hover\\:surface-100:hover,.active\\:surface-100:active{background-color:var(--surface-100)!important}.focus\\:surface-200:focus{background-color:var(--surface-200)!important}.hover\\:surface-200:hover,.active\\:surface-200:active{background-color:var(--surface-200)!important}.focus\\:surface-300:focus{background-color:var(--surface-300)!important}.hover\\:surface-300:hover,.active\\:surface-300:active{background-color:var(--surface-300)!important}.focus\\:surface-400:focus{background-color:var(--surface-400)!important}.hover\\:surface-400:hover,.active\\:surface-400:active{background-color:var(--surface-400)!important}.focus\\:surface-500:focus{background-color:var(--surface-500)!important}.hover\\:surface-500:hover,.active\\:surface-500:active{background-color:var(--surface-500)!important}.focus\\:surface-600:focus{background-color:var(--surface-600)!important}.hover\\:surface-600:hover,.active\\:surface-600:active{background-color:var(--surface-600)!important}.focus\\:surface-700:focus{background-color:var(--surface-700)!important}.hover\\:surface-700:hover,.active\\:surface-700:active{background-color:var(--surface-700)!important}.focus\\:surface-800:focus{background-color:var(--surface-800)!important}.hover\\:surface-800:hover,.active\\:surface-800:active{background-color:var(--surface-800)!important}.focus\\:surface-900:focus{background-color:var(--surface-900)!important}.hover\\:surface-900:hover,.active\\:surface-900:active{background-color:var(--surface-900)!important}.border-0{border-color:var(--surface-0)!important}.border-50{border-color:var(--surface-50)!important}.border-100{border-color:var(--surface-100)!important}.border-200{border-color:var(--surface-200)!important}.border-300{border-color:var(--surface-300)!important}.border-400{border-color:var(--surface-400)!important}.border-500{border-color:var(--surface-500)!important}.border-600{border-color:var(--surface-600)!important}.border-700{border-color:var(--surface-700)!important}.border-800{border-color:var(--surface-800)!important}.border-900{border-color:var(--surface-900)!important}.focus\\:border-0:focus{border-color:var(--surface-0)!important}.hover\\:border-0:hover,.active\\:border-0:active{border-color:var(--surface-0)!important}.focus\\:border-50:focus{border-color:var(--surface-50)!important}.hover\\:border-50:hover,.active\\:border-50:active{border-color:var(--surface-50)!important}.focus\\:border-100:focus{border-color:var(--surface-100)!important}.hover\\:border-100:hover,.active\\:border-100:active{border-color:var(--surface-100)!important}.focus\\:border-200:focus{border-color:var(--surface-200)!important}.hover\\:border-200:hover,.active\\:border-200:active{border-color:var(--surface-200)!important}.focus\\:border-300:focus{border-color:var(--surface-300)!important}.hover\\:border-300:hover,.active\\:border-300:active{border-color:var(--surface-300)!important}.focus\\:border-400:focus{border-color:var(--surface-400)!important}.hover\\:border-400:hover,.active\\:border-400:active{border-color:var(--surface-400)!important}.focus\\:border-500:focus{border-color:var(--surface-500)!important}.hover\\:border-500:hover,.active\\:border-500:active{border-color:var(--surface-500)!important}.focus\\:border-600:focus{border-color:var(--surface-600)!important}.hover\\:border-600:hover,.active\\:border-600:active{border-color:var(--surface-600)!important}.focus\\:border-700:focus{border-color:var(--surface-700)!important}.hover\\:border-700:hover,.active\\:border-700:active{border-color:var(--surface-700)!important}.focus\\:border-800:focus{border-color:var(--surface-800)!important}.hover\\:border-800:hover,.active\\:border-800:active{border-color:var(--surface-800)!important}.focus\\:border-900:focus{border-color:var(--surface-900)!important}.hover\\:border-900:hover,.active\\:border-900:active{border-color:var(--surface-900)!important}.bg-transparent{background-color:transparent!important}@media screen and (min-width: 576px){.sm\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 768px){.md\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 992px){.lg\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 1200px){.xl\\:bg-transparent{background-color:transparent!important}}.border-transparent{border-color:transparent!important}@media screen and (min-width: 576px){.sm\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 768px){.md\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 992px){.lg\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 1200px){.xl\\:border-transparent{border-color:transparent!important}}.text-blue-50{color:var(--blue-50)!important}.text-blue-100{color:var(--blue-100)!important}.text-blue-200{color:var(--blue-200)!important}.text-blue-300{color:var(--blue-300)!important}.text-blue-400{color:var(--blue-400)!important}.text-blue-500{color:var(--blue-500)!important}.text-blue-600{color:var(--blue-600)!important}.text-blue-700{color:var(--blue-700)!important}.text-blue-800{color:var(--blue-800)!important}.text-blue-900{color:var(--blue-900)!important}.focus\\:text-blue-50:focus{color:var(--blue-50)!important}.focus\\:text-blue-100:focus{color:var(--blue-100)!important}.focus\\:text-blue-200:focus{color:var(--blue-200)!important}.focus\\:text-blue-300:focus{color:var(--blue-300)!important}.focus\\:text-blue-400:focus{color:var(--blue-400)!important}.focus\\:text-blue-500:focus{color:var(--blue-500)!important}.focus\\:text-blue-600:focus{color:var(--blue-600)!important}.focus\\:text-blue-700:focus{color:var(--blue-700)!important}.focus\\:text-blue-800:focus{color:var(--blue-800)!important}.focus\\:text-blue-900:focus{color:var(--blue-900)!important}.hover\\:text-blue-50:hover{color:var(--blue-50)!important}.hover\\:text-blue-100:hover{color:var(--blue-100)!important}.hover\\:text-blue-200:hover{color:var(--blue-200)!important}.hover\\:text-blue-300:hover{color:var(--blue-300)!important}.hover\\:text-blue-400:hover{color:var(--blue-400)!important}.hover\\:text-blue-500:hover{color:var(--blue-500)!important}.hover\\:text-blue-600:hover{color:var(--blue-600)!important}.hover\\:text-blue-700:hover{color:var(--blue-700)!important}.hover\\:text-blue-800:hover{color:var(--blue-800)!important}.hover\\:text-blue-900:hover{color:var(--blue-900)!important}.active\\:text-blue-50:active{color:var(--blue-50)!important}.active\\:text-blue-100:active{color:var(--blue-100)!important}.active\\:text-blue-200:active{color:var(--blue-200)!important}.active\\:text-blue-300:active{color:var(--blue-300)!important}.active\\:text-blue-400:active{color:var(--blue-400)!important}.active\\:text-blue-500:active{color:var(--blue-500)!important}.active\\:text-blue-600:active{color:var(--blue-600)!important}.active\\:text-blue-700:active{color:var(--blue-700)!important}.active\\:text-blue-800:active{color:var(--blue-800)!important}.active\\:text-blue-900:active{color:var(--blue-900)!important}.text-green-50{color:var(--green-50)!important}.text-green-100{color:var(--green-100)!important}.text-green-200{color:var(--green-200)!important}.text-green-300{color:var(--green-300)!important}.text-green-400{color:var(--green-400)!important}.text-green-500{color:var(--green-500)!important}.text-green-600{color:var(--green-600)!important}.text-green-700{color:var(--green-700)!important}.text-green-800{color:var(--green-800)!important}.text-green-900{color:var(--green-900)!important}.focus\\:text-green-50:focus{color:var(--green-50)!important}.focus\\:text-green-100:focus{color:var(--green-100)!important}.focus\\:text-green-200:focus{color:var(--green-200)!important}.focus\\:text-green-300:focus{color:var(--green-300)!important}.focus\\:text-green-400:focus{color:var(--green-400)!important}.focus\\:text-green-500:focus{color:var(--green-500)!important}.focus\\:text-green-600:focus{color:var(--green-600)!important}.focus\\:text-green-700:focus{color:var(--green-700)!important}.focus\\:text-green-800:focus{color:var(--green-800)!important}.focus\\:text-green-900:focus{color:var(--green-900)!important}.hover\\:text-green-50:hover{color:var(--green-50)!important}.hover\\:text-green-100:hover{color:var(--green-100)!important}.hover\\:text-green-200:hover{color:var(--green-200)!important}.hover\\:text-green-300:hover{color:var(--green-300)!important}.hover\\:text-green-400:hover{color:var(--green-400)!important}.hover\\:text-green-500:hover{color:var(--green-500)!important}.hover\\:text-green-600:hover{color:var(--green-600)!important}.hover\\:text-green-700:hover{color:var(--green-700)!important}.hover\\:text-green-800:hover{color:var(--green-800)!important}.hover\\:text-green-900:hover{color:var(--green-900)!important}.active\\:text-green-50:active{color:var(--green-50)!important}.active\\:text-green-100:active{color:var(--green-100)!important}.active\\:text-green-200:active{color:var(--green-200)!important}.active\\:text-green-300:active{color:var(--green-300)!important}.active\\:text-green-400:active{color:var(--green-400)!important}.active\\:text-green-500:active{color:var(--green-500)!important}.active\\:text-green-600:active{color:var(--green-600)!important}.active\\:text-green-700:active{color:var(--green-700)!important}.active\\:text-green-800:active{color:var(--green-800)!important}.active\\:text-green-900:active{color:var(--green-900)!important}.text-yellow-50{color:var(--yellow-50)!important}.text-yellow-100{color:var(--yellow-100)!important}.text-yellow-200{color:var(--yellow-200)!important}.text-yellow-300{color:var(--yellow-300)!important}.text-yellow-400{color:var(--yellow-400)!important}.text-yellow-500{color:var(--yellow-500)!important}.text-yellow-600{color:var(--yellow-600)!important}.text-yellow-700{color:var(--yellow-700)!important}.text-yellow-800{color:var(--yellow-800)!important}.text-yellow-900{color:var(--yellow-900)!important}.focus\\:text-yellow-50:focus{color:var(--yellow-50)!important}.focus\\:text-yellow-100:focus{color:var(--yellow-100)!important}.focus\\:text-yellow-200:focus{color:var(--yellow-200)!important}.focus\\:text-yellow-300:focus{color:var(--yellow-300)!important}.focus\\:text-yellow-400:focus{color:var(--yellow-400)!important}.focus\\:text-yellow-500:focus{color:var(--yellow-500)!important}.focus\\:text-yellow-600:focus{color:var(--yellow-600)!important}.focus\\:text-yellow-700:focus{color:var(--yellow-700)!important}.focus\\:text-yellow-800:focus{color:var(--yellow-800)!important}.focus\\:text-yellow-900:focus{color:var(--yellow-900)!important}.hover\\:text-yellow-50:hover{color:var(--yellow-50)!important}.hover\\:text-yellow-100:hover{color:var(--yellow-100)!important}.hover\\:text-yellow-200:hover{color:var(--yellow-200)!important}.hover\\:text-yellow-300:hover{color:var(--yellow-300)!important}.hover\\:text-yellow-400:hover{color:var(--yellow-400)!important}.hover\\:text-yellow-500:hover{color:var(--yellow-500)!important}.hover\\:text-yellow-600:hover{color:var(--yellow-600)!important}.hover\\:text-yellow-700:hover{color:var(--yellow-700)!important}.hover\\:text-yellow-800:hover{color:var(--yellow-800)!important}.hover\\:text-yellow-900:hover{color:var(--yellow-900)!important}.active\\:text-yellow-50:active{color:var(--yellow-50)!important}.active\\:text-yellow-100:active{color:var(--yellow-100)!important}.active\\:text-yellow-200:active{color:var(--yellow-200)!important}.active\\:text-yellow-300:active{color:var(--yellow-300)!important}.active\\:text-yellow-400:active{color:var(--yellow-400)!important}.active\\:text-yellow-500:active{color:var(--yellow-500)!important}.active\\:text-yellow-600:active{color:var(--yellow-600)!important}.active\\:text-yellow-700:active{color:var(--yellow-700)!important}.active\\:text-yellow-800:active{color:var(--yellow-800)!important}.active\\:text-yellow-900:active{color:var(--yellow-900)!important}.text-cyan-50{color:var(--cyan-50)!important}.text-cyan-100{color:var(--cyan-100)!important}.text-cyan-200{color:var(--cyan-200)!important}.text-cyan-300{color:var(--cyan-300)!important}.text-cyan-400{color:var(--cyan-400)!important}.text-cyan-500{color:var(--cyan-500)!important}.text-cyan-600{color:var(--cyan-600)!important}.text-cyan-700{color:var(--cyan-700)!important}.text-cyan-800{color:var(--cyan-800)!important}.text-cyan-900{color:var(--cyan-900)!important}.focus\\:text-cyan-50:focus{color:var(--cyan-50)!important}.focus\\:text-cyan-100:focus{color:var(--cyan-100)!important}.focus\\:text-cyan-200:focus{color:var(--cyan-200)!important}.focus\\:text-cyan-300:focus{color:var(--cyan-300)!important}.focus\\:text-cyan-400:focus{color:var(--cyan-400)!important}.focus\\:text-cyan-500:focus{color:var(--cyan-500)!important}.focus\\:text-cyan-600:focus{color:var(--cyan-600)!important}.focus\\:text-cyan-700:focus{color:var(--cyan-700)!important}.focus\\:text-cyan-800:focus{color:var(--cyan-800)!important}.focus\\:text-cyan-900:focus{color:var(--cyan-900)!important}.hover\\:text-cyan-50:hover{color:var(--cyan-50)!important}.hover\\:text-cyan-100:hover{color:var(--cyan-100)!important}.hover\\:text-cyan-200:hover{color:var(--cyan-200)!important}.hover\\:text-cyan-300:hover{color:var(--cyan-300)!important}.hover\\:text-cyan-400:hover{color:var(--cyan-400)!important}.hover\\:text-cyan-500:hover{color:var(--cyan-500)!important}.hover\\:text-cyan-600:hover{color:var(--cyan-600)!important}.hover\\:text-cyan-700:hover{color:var(--cyan-700)!important}.hover\\:text-cyan-800:hover{color:var(--cyan-800)!important}.hover\\:text-cyan-900:hover{color:var(--cyan-900)!important}.active\\:text-cyan-50:active{color:var(--cyan-50)!important}.active\\:text-cyan-100:active{color:var(--cyan-100)!important}.active\\:text-cyan-200:active{color:var(--cyan-200)!important}.active\\:text-cyan-300:active{color:var(--cyan-300)!important}.active\\:text-cyan-400:active{color:var(--cyan-400)!important}.active\\:text-cyan-500:active{color:var(--cyan-500)!important}.active\\:text-cyan-600:active{color:var(--cyan-600)!important}.active\\:text-cyan-700:active{color:var(--cyan-700)!important}.active\\:text-cyan-800:active{color:var(--cyan-800)!important}.active\\:text-cyan-900:active{color:var(--cyan-900)!important}.text-pink-50{color:var(--pink-50)!important}.text-pink-100{color:var(--pink-100)!important}.text-pink-200{color:var(--pink-200)!important}.text-pink-300{color:var(--pink-300)!important}.text-pink-400{color:var(--pink-400)!important}.text-pink-500{color:var(--pink-500)!important}.text-pink-600{color:var(--pink-600)!important}.text-pink-700{color:var(--pink-700)!important}.text-pink-800{color:var(--pink-800)!important}.text-pink-900{color:var(--pink-900)!important}.focus\\:text-pink-50:focus{color:var(--pink-50)!important}.focus\\:text-pink-100:focus{color:var(--pink-100)!important}.focus\\:text-pink-200:focus{color:var(--pink-200)!important}.focus\\:text-pink-300:focus{color:var(--pink-300)!important}.focus\\:text-pink-400:focus{color:var(--pink-400)!important}.focus\\:text-pink-500:focus{color:var(--pink-500)!important}.focus\\:text-pink-600:focus{color:var(--pink-600)!important}.focus\\:text-pink-700:focus{color:var(--pink-700)!important}.focus\\:text-pink-800:focus{color:var(--pink-800)!important}.focus\\:text-pink-900:focus{color:var(--pink-900)!important}.hover\\:text-pink-50:hover{color:var(--pink-50)!important}.hover\\:text-pink-100:hover{color:var(--pink-100)!important}.hover\\:text-pink-200:hover{color:var(--pink-200)!important}.hover\\:text-pink-300:hover{color:var(--pink-300)!important}.hover\\:text-pink-400:hover{color:var(--pink-400)!important}.hover\\:text-pink-500:hover{color:var(--pink-500)!important}.hover\\:text-pink-600:hover{color:var(--pink-600)!important}.hover\\:text-pink-700:hover{color:var(--pink-700)!important}.hover\\:text-pink-800:hover{color:var(--pink-800)!important}.hover\\:text-pink-900:hover{color:var(--pink-900)!important}.active\\:text-pink-50:active{color:var(--pink-50)!important}.active\\:text-pink-100:active{color:var(--pink-100)!important}.active\\:text-pink-200:active{color:var(--pink-200)!important}.active\\:text-pink-300:active{color:var(--pink-300)!important}.active\\:text-pink-400:active{color:var(--pink-400)!important}.active\\:text-pink-500:active{color:var(--pink-500)!important}.active\\:text-pink-600:active{color:var(--pink-600)!important}.active\\:text-pink-700:active{color:var(--pink-700)!important}.active\\:text-pink-800:active{color:var(--pink-800)!important}.active\\:text-pink-900:active{color:var(--pink-900)!important}.text-indigo-50{color:var(--indigo-50)!important}.text-indigo-100{color:var(--indigo-100)!important}.text-indigo-200{color:var(--indigo-200)!important}.text-indigo-300{color:var(--indigo-300)!important}.text-indigo-400{color:var(--indigo-400)!important}.text-indigo-500{color:var(--indigo-500)!important}.text-indigo-600{color:var(--indigo-600)!important}.text-indigo-700{color:var(--indigo-700)!important}.text-indigo-800{color:var(--indigo-800)!important}.text-indigo-900{color:var(--indigo-900)!important}.focus\\:text-indigo-50:focus{color:var(--indigo-50)!important}.focus\\:text-indigo-100:focus{color:var(--indigo-100)!important}.focus\\:text-indigo-200:focus{color:var(--indigo-200)!important}.focus\\:text-indigo-300:focus{color:var(--indigo-300)!important}.focus\\:text-indigo-400:focus{color:var(--indigo-400)!important}.focus\\:text-indigo-500:focus{color:var(--indigo-500)!important}.focus\\:text-indigo-600:focus{color:var(--indigo-600)!important}.focus\\:text-indigo-700:focus{color:var(--indigo-700)!important}.focus\\:text-indigo-800:focus{color:var(--indigo-800)!important}.focus\\:text-indigo-900:focus{color:var(--indigo-900)!important}.hover\\:text-indigo-50:hover{color:var(--indigo-50)!important}.hover\\:text-indigo-100:hover{color:var(--indigo-100)!important}.hover\\:text-indigo-200:hover{color:var(--indigo-200)!important}.hover\\:text-indigo-300:hover{color:var(--indigo-300)!important}.hover\\:text-indigo-400:hover{color:var(--indigo-400)!important}.hover\\:text-indigo-500:hover{color:var(--indigo-500)!important}.hover\\:text-indigo-600:hover{color:var(--indigo-600)!important}.hover\\:text-indigo-700:hover{color:var(--indigo-700)!important}.hover\\:text-indigo-800:hover{color:var(--indigo-800)!important}.hover\\:text-indigo-900:hover{color:var(--indigo-900)!important}.active\\:text-indigo-50:active{color:var(--indigo-50)!important}.active\\:text-indigo-100:active{color:var(--indigo-100)!important}.active\\:text-indigo-200:active{color:var(--indigo-200)!important}.active\\:text-indigo-300:active{color:var(--indigo-300)!important}.active\\:text-indigo-400:active{color:var(--indigo-400)!important}.active\\:text-indigo-500:active{color:var(--indigo-500)!important}.active\\:text-indigo-600:active{color:var(--indigo-600)!important}.active\\:text-indigo-700:active{color:var(--indigo-700)!important}.active\\:text-indigo-800:active{color:var(--indigo-800)!important}.active\\:text-indigo-900:active{color:var(--indigo-900)!important}.text-teal-50{color:var(--teal-50)!important}.text-teal-100{color:var(--teal-100)!important}.text-teal-200{color:var(--teal-200)!important}.text-teal-300{color:var(--teal-300)!important}.text-teal-400{color:var(--teal-400)!important}.text-teal-500{color:var(--teal-500)!important}.text-teal-600{color:var(--teal-600)!important}.text-teal-700{color:var(--teal-700)!important}.text-teal-800{color:var(--teal-800)!important}.text-teal-900{color:var(--teal-900)!important}.focus\\:text-teal-50:focus{color:var(--teal-50)!important}.focus\\:text-teal-100:focus{color:var(--teal-100)!important}.focus\\:text-teal-200:focus{color:var(--teal-200)!important}.focus\\:text-teal-300:focus{color:var(--teal-300)!important}.focus\\:text-teal-400:focus{color:var(--teal-400)!important}.focus\\:text-teal-500:focus{color:var(--teal-500)!important}.focus\\:text-teal-600:focus{color:var(--teal-600)!important}.focus\\:text-teal-700:focus{color:var(--teal-700)!important}.focus\\:text-teal-800:focus{color:var(--teal-800)!important}.focus\\:text-teal-900:focus{color:var(--teal-900)!important}.hover\\:text-teal-50:hover{color:var(--teal-50)!important}.hover\\:text-teal-100:hover{color:var(--teal-100)!important}.hover\\:text-teal-200:hover{color:var(--teal-200)!important}.hover\\:text-teal-300:hover{color:var(--teal-300)!important}.hover\\:text-teal-400:hover{color:var(--teal-400)!important}.hover\\:text-teal-500:hover{color:var(--teal-500)!important}.hover\\:text-teal-600:hover{color:var(--teal-600)!important}.hover\\:text-teal-700:hover{color:var(--teal-700)!important}.hover\\:text-teal-800:hover{color:var(--teal-800)!important}.hover\\:text-teal-900:hover{color:var(--teal-900)!important}.active\\:text-teal-50:active{color:var(--teal-50)!important}.active\\:text-teal-100:active{color:var(--teal-100)!important}.active\\:text-teal-200:active{color:var(--teal-200)!important}.active\\:text-teal-300:active{color:var(--teal-300)!important}.active\\:text-teal-400:active{color:var(--teal-400)!important}.active\\:text-teal-500:active{color:var(--teal-500)!important}.active\\:text-teal-600:active{color:var(--teal-600)!important}.active\\:text-teal-700:active{color:var(--teal-700)!important}.active\\:text-teal-800:active{color:var(--teal-800)!important}.active\\:text-teal-900:active{color:var(--teal-900)!important}.text-orange-50{color:var(--orange-50)!important}.text-orange-100{color:var(--orange-100)!important}.text-orange-200{color:var(--orange-200)!important}.text-orange-300{color:var(--orange-300)!important}.text-orange-400{color:var(--orange-400)!important}.text-orange-500{color:var(--orange-500)!important}.text-orange-600{color:var(--orange-600)!important}.text-orange-700{color:var(--orange-700)!important}.text-orange-800{color:var(--orange-800)!important}.text-orange-900{color:var(--orange-900)!important}.focus\\:text-orange-50:focus{color:var(--orange-50)!important}.focus\\:text-orange-100:focus{color:var(--orange-100)!important}.focus\\:text-orange-200:focus{color:var(--orange-200)!important}.focus\\:text-orange-300:focus{color:var(--orange-300)!important}.focus\\:text-orange-400:focus{color:var(--orange-400)!important}.focus\\:text-orange-500:focus{color:var(--orange-500)!important}.focus\\:text-orange-600:focus{color:var(--orange-600)!important}.focus\\:text-orange-700:focus{color:var(--orange-700)!important}.focus\\:text-orange-800:focus{color:var(--orange-800)!important}.focus\\:text-orange-900:focus{color:var(--orange-900)!important}.hover\\:text-orange-50:hover{color:var(--orange-50)!important}.hover\\:text-orange-100:hover{color:var(--orange-100)!important}.hover\\:text-orange-200:hover{color:var(--orange-200)!important}.hover\\:text-orange-300:hover{color:var(--orange-300)!important}.hover\\:text-orange-400:hover{color:var(--orange-400)!important}.hover\\:text-orange-500:hover{color:var(--orange-500)!important}.hover\\:text-orange-600:hover{color:var(--orange-600)!important}.hover\\:text-orange-700:hover{color:var(--orange-700)!important}.hover\\:text-orange-800:hover{color:var(--orange-800)!important}.hover\\:text-orange-900:hover{color:var(--orange-900)!important}.active\\:text-orange-50:active{color:var(--orange-50)!important}.active\\:text-orange-100:active{color:var(--orange-100)!important}.active\\:text-orange-200:active{color:var(--orange-200)!important}.active\\:text-orange-300:active{color:var(--orange-300)!important}.active\\:text-orange-400:active{color:var(--orange-400)!important}.active\\:text-orange-500:active{color:var(--orange-500)!important}.active\\:text-orange-600:active{color:var(--orange-600)!important}.active\\:text-orange-700:active{color:var(--orange-700)!important}.active\\:text-orange-800:active{color:var(--orange-800)!important}.active\\:text-orange-900:active{color:var(--orange-900)!important}.text-bluegray-50{color:var(--bluegray-50)!important}.text-bluegray-100{color:var(--bluegray-100)!important}.text-bluegray-200{color:var(--bluegray-200)!important}.text-bluegray-300{color:var(--bluegray-300)!important}.text-bluegray-400{color:var(--bluegray-400)!important}.text-bluegray-500{color:var(--bluegray-500)!important}.text-bluegray-600{color:var(--bluegray-600)!important}.text-bluegray-700{color:var(--bluegray-700)!important}.text-bluegray-800{color:var(--bluegray-800)!important}.text-bluegray-900{color:var(--bluegray-900)!important}.focus\\:text-bluegray-50:focus{color:var(--bluegray-50)!important}.focus\\:text-bluegray-100:focus{color:var(--bluegray-100)!important}.focus\\:text-bluegray-200:focus{color:var(--bluegray-200)!important}.focus\\:text-bluegray-300:focus{color:var(--bluegray-300)!important}.focus\\:text-bluegray-400:focus{color:var(--bluegray-400)!important}.focus\\:text-bluegray-500:focus{color:var(--bluegray-500)!important}.focus\\:text-bluegray-600:focus{color:var(--bluegray-600)!important}.focus\\:text-bluegray-700:focus{color:var(--bluegray-700)!important}.focus\\:text-bluegray-800:focus{color:var(--bluegray-800)!important}.focus\\:text-bluegray-900:focus{color:var(--bluegray-900)!important}.hover\\:text-bluegray-50:hover{color:var(--bluegray-50)!important}.hover\\:text-bluegray-100:hover{color:var(--bluegray-100)!important}.hover\\:text-bluegray-200:hover{color:var(--bluegray-200)!important}.hover\\:text-bluegray-300:hover{color:var(--bluegray-300)!important}.hover\\:text-bluegray-400:hover{color:var(--bluegray-400)!important}.hover\\:text-bluegray-500:hover{color:var(--bluegray-500)!important}.hover\\:text-bluegray-600:hover{color:var(--bluegray-600)!important}.hover\\:text-bluegray-700:hover{color:var(--bluegray-700)!important}.hover\\:text-bluegray-800:hover{color:var(--bluegray-800)!important}.hover\\:text-bluegray-900:hover{color:var(--bluegray-900)!important}.active\\:text-bluegray-50:active{color:var(--bluegray-50)!important}.active\\:text-bluegray-100:active{color:var(--bluegray-100)!important}.active\\:text-bluegray-200:active{color:var(--bluegray-200)!important}.active\\:text-bluegray-300:active{color:var(--bluegray-300)!important}.active\\:text-bluegray-400:active{color:var(--bluegray-400)!important}.active\\:text-bluegray-500:active{color:var(--bluegray-500)!important}.active\\:text-bluegray-600:active{color:var(--bluegray-600)!important}.active\\:text-bluegray-700:active{color:var(--bluegray-700)!important}.active\\:text-bluegray-800:active{color:var(--bluegray-800)!important}.active\\:text-bluegray-900:active{color:var(--bluegray-900)!important}.text-purple-50{color:var(--purple-50)!important}.text-purple-100{color:var(--purple-100)!important}.text-purple-200{color:var(--purple-200)!important}.text-purple-300{color:var(--purple-300)!important}.text-purple-400{color:var(--purple-400)!important}.text-purple-500{color:var(--purple-500)!important}.text-purple-600{color:var(--purple-600)!important}.text-purple-700{color:var(--purple-700)!important}.text-purple-800{color:var(--purple-800)!important}.text-purple-900{color:var(--purple-900)!important}.focus\\:text-purple-50:focus{color:var(--purple-50)!important}.focus\\:text-purple-100:focus{color:var(--purple-100)!important}.focus\\:text-purple-200:focus{color:var(--purple-200)!important}.focus\\:text-purple-300:focus{color:var(--purple-300)!important}.focus\\:text-purple-400:focus{color:var(--purple-400)!important}.focus\\:text-purple-500:focus{color:var(--purple-500)!important}.focus\\:text-purple-600:focus{color:var(--purple-600)!important}.focus\\:text-purple-700:focus{color:var(--purple-700)!important}.focus\\:text-purple-800:focus{color:var(--purple-800)!important}.focus\\:text-purple-900:focus{color:var(--purple-900)!important}.hover\\:text-purple-50:hover{color:var(--purple-50)!important}.hover\\:text-purple-100:hover{color:var(--purple-100)!important}.hover\\:text-purple-200:hover{color:var(--purple-200)!important}.hover\\:text-purple-300:hover{color:var(--purple-300)!important}.hover\\:text-purple-400:hover{color:var(--purple-400)!important}.hover\\:text-purple-500:hover{color:var(--purple-500)!important}.hover\\:text-purple-600:hover{color:var(--purple-600)!important}.hover\\:text-purple-700:hover{color:var(--purple-700)!important}.hover\\:text-purple-800:hover{color:var(--purple-800)!important}.hover\\:text-purple-900:hover{color:var(--purple-900)!important}.active\\:text-purple-50:active{color:var(--purple-50)!important}.active\\:text-purple-100:active{color:var(--purple-100)!important}.active\\:text-purple-200:active{color:var(--purple-200)!important}.active\\:text-purple-300:active{color:var(--purple-300)!important}.active\\:text-purple-400:active{color:var(--purple-400)!important}.active\\:text-purple-500:active{color:var(--purple-500)!important}.active\\:text-purple-600:active{color:var(--purple-600)!important}.active\\:text-purple-700:active{color:var(--purple-700)!important}.active\\:text-purple-800:active{color:var(--purple-800)!important}.active\\:text-purple-900:active{color:var(--purple-900)!important}.text-gray-50{color:var(--gray-50)!important}.text-gray-100{color:var(--gray-100)!important}.text-gray-200{color:var(--gray-200)!important}.text-gray-300{color:var(--gray-300)!important}.text-gray-400{color:var(--gray-400)!important}.text-gray-500{color:var(--gray-500)!important}.text-gray-600{color:var(--gray-600)!important}.text-gray-700{color:var(--gray-700)!important}.text-gray-800{color:var(--gray-800)!important}.text-gray-900{color:var(--gray-900)!important}.focus\\:text-gray-50:focus{color:var(--gray-50)!important}.focus\\:text-gray-100:focus{color:var(--gray-100)!important}.focus\\:text-gray-200:focus{color:var(--gray-200)!important}.focus\\:text-gray-300:focus{color:var(--gray-300)!important}.focus\\:text-gray-400:focus{color:var(--gray-400)!important}.focus\\:text-gray-500:focus{color:var(--gray-500)!important}.focus\\:text-gray-600:focus{color:var(--gray-600)!important}.focus\\:text-gray-700:focus{color:var(--gray-700)!important}.focus\\:text-gray-800:focus{color:var(--gray-800)!important}.focus\\:text-gray-900:focus{color:var(--gray-900)!important}.hover\\:text-gray-50:hover{color:var(--gray-50)!important}.hover\\:text-gray-100:hover{color:var(--gray-100)!important}.hover\\:text-gray-200:hover{color:var(--gray-200)!important}.hover\\:text-gray-300:hover{color:var(--gray-300)!important}.hover\\:text-gray-400:hover{color:var(--gray-400)!important}.hover\\:text-gray-500:hover{color:var(--gray-500)!important}.hover\\:text-gray-600:hover{color:var(--gray-600)!important}.hover\\:text-gray-700:hover{color:var(--gray-700)!important}.hover\\:text-gray-800:hover{color:var(--gray-800)!important}.hover\\:text-gray-900:hover{color:var(--gray-900)!important}.active\\:text-gray-50:active{color:var(--gray-50)!important}.active\\:text-gray-100:active{color:var(--gray-100)!important}.active\\:text-gray-200:active{color:var(--gray-200)!important}.active\\:text-gray-300:active{color:var(--gray-300)!important}.active\\:text-gray-400:active{color:var(--gray-400)!important}.active\\:text-gray-500:active{color:var(--gray-500)!important}.active\\:text-gray-600:active{color:var(--gray-600)!important}.active\\:text-gray-700:active{color:var(--gray-700)!important}.active\\:text-gray-800:active{color:var(--gray-800)!important}.active\\:text-gray-900:active{color:var(--gray-900)!important}.text-red-50{color:var(--red-50)!important}.text-red-100{color:var(--red-100)!important}.text-red-200{color:var(--red-200)!important}.text-red-300{color:var(--red-300)!important}.text-red-400{color:var(--red-400)!important}.text-red-500{color:var(--red-500)!important}.text-red-600{color:var(--red-600)!important}.text-red-700{color:var(--red-700)!important}.text-red-800{color:var(--red-800)!important}.text-red-900{color:var(--red-900)!important}.focus\\:text-red-50:focus{color:var(--red-50)!important}.focus\\:text-red-100:focus{color:var(--red-100)!important}.focus\\:text-red-200:focus{color:var(--red-200)!important}.focus\\:text-red-300:focus{color:var(--red-300)!important}.focus\\:text-red-400:focus{color:var(--red-400)!important}.focus\\:text-red-500:focus{color:var(--red-500)!important}.focus\\:text-red-600:focus{color:var(--red-600)!important}.focus\\:text-red-700:focus{color:var(--red-700)!important}.focus\\:text-red-800:focus{color:var(--red-800)!important}.focus\\:text-red-900:focus{color:var(--red-900)!important}.hover\\:text-red-50:hover{color:var(--red-50)!important}.hover\\:text-red-100:hover{color:var(--red-100)!important}.hover\\:text-red-200:hover{color:var(--red-200)!important}.hover\\:text-red-300:hover{color:var(--red-300)!important}.hover\\:text-red-400:hover{color:var(--red-400)!important}.hover\\:text-red-500:hover{color:var(--red-500)!important}.hover\\:text-red-600:hover{color:var(--red-600)!important}.hover\\:text-red-700:hover{color:var(--red-700)!important}.hover\\:text-red-800:hover{color:var(--red-800)!important}.hover\\:text-red-900:hover{color:var(--red-900)!important}.active\\:text-red-50:active{color:var(--red-50)!important}.active\\:text-red-100:active{color:var(--red-100)!important}.active\\:text-red-200:active{color:var(--red-200)!important}.active\\:text-red-300:active{color:var(--red-300)!important}.active\\:text-red-400:active{color:var(--red-400)!important}.active\\:text-red-500:active{color:var(--red-500)!important}.active\\:text-red-600:active{color:var(--red-600)!important}.active\\:text-red-700:active{color:var(--red-700)!important}.active\\:text-red-800:active{color:var(--red-800)!important}.active\\:text-red-900:active{color:var(--red-900)!important}.text-primary-50{color:var(--primary-50)!important}.text-primary-100{color:var(--primary-100)!important}.text-primary-200{color:var(--primary-200)!important}.text-primary-300{color:var(--primary-300)!important}.text-primary-400{color:var(--primary-400)!important}.text-primary-500{color:var(--primary-500)!important}.text-primary-600{color:var(--primary-600)!important}.text-primary-700{color:var(--primary-700)!important}.text-primary-800{color:var(--primary-800)!important}.text-primary-900{color:var(--primary-900)!important}.focus\\:text-primary-50:focus{color:var(--primary-50)!important}.focus\\:text-primary-100:focus{color:var(--primary-100)!important}.focus\\:text-primary-200:focus{color:var(--primary-200)!important}.focus\\:text-primary-300:focus{color:var(--primary-300)!important}.focus\\:text-primary-400:focus{color:var(--primary-400)!important}.focus\\:text-primary-500:focus{color:var(--primary-500)!important}.focus\\:text-primary-600:focus{color:var(--primary-600)!important}.focus\\:text-primary-700:focus{color:var(--primary-700)!important}.focus\\:text-primary-800:focus{color:var(--primary-800)!important}.focus\\:text-primary-900:focus{color:var(--primary-900)!important}.hover\\:text-primary-50:hover{color:var(--primary-50)!important}.hover\\:text-primary-100:hover{color:var(--primary-100)!important}.hover\\:text-primary-200:hover{color:var(--primary-200)!important}.hover\\:text-primary-300:hover{color:var(--primary-300)!important}.hover\\:text-primary-400:hover{color:var(--primary-400)!important}.hover\\:text-primary-500:hover{color:var(--primary-500)!important}.hover\\:text-primary-600:hover{color:var(--primary-600)!important}.hover\\:text-primary-700:hover{color:var(--primary-700)!important}.hover\\:text-primary-800:hover{color:var(--primary-800)!important}.hover\\:text-primary-900:hover{color:var(--primary-900)!important}.active\\:text-primary-50:active{color:var(--primary-50)!important}.active\\:text-primary-100:active{color:var(--primary-100)!important}.active\\:text-primary-200:active{color:var(--primary-200)!important}.active\\:text-primary-300:active{color:var(--primary-300)!important}.active\\:text-primary-400:active{color:var(--primary-400)!important}.active\\:text-primary-500:active{color:var(--primary-500)!important}.active\\:text-primary-600:active{color:var(--primary-600)!important}.active\\:text-primary-700:active{color:var(--primary-700)!important}.active\\:text-primary-800:active{color:var(--primary-800)!important}.active\\:text-primary-900:active{color:var(--primary-900)!important}.bg-blue-50{background-color:var(--blue-50)!important}.bg-blue-100{background-color:var(--blue-100)!important}.bg-blue-200{background-color:var(--blue-200)!important}.bg-blue-300{background-color:var(--blue-300)!important}.bg-blue-400{background-color:var(--blue-400)!important}.bg-blue-500{background-color:var(--blue-500)!important}.bg-blue-600{background-color:var(--blue-600)!important}.bg-blue-700{background-color:var(--blue-700)!important}.bg-blue-800{background-color:var(--blue-800)!important}.bg-blue-900{background-color:var(--blue-900)!important}.focus\\:bg-blue-50:focus{background-color:var(--blue-50)!important}.focus\\:bg-blue-100:focus{background-color:var(--blue-100)!important}.focus\\:bg-blue-200:focus{background-color:var(--blue-200)!important}.focus\\:bg-blue-300:focus{background-color:var(--blue-300)!important}.focus\\:bg-blue-400:focus{background-color:var(--blue-400)!important}.focus\\:bg-blue-500:focus{background-color:var(--blue-500)!important}.focus\\:bg-blue-600:focus{background-color:var(--blue-600)!important}.focus\\:bg-blue-700:focus{background-color:var(--blue-700)!important}.focus\\:bg-blue-800:focus{background-color:var(--blue-800)!important}.focus\\:bg-blue-900:focus{background-color:var(--blue-900)!important}.hover\\:bg-blue-50:hover{background-color:var(--blue-50)!important}.hover\\:bg-blue-100:hover{background-color:var(--blue-100)!important}.hover\\:bg-blue-200:hover{background-color:var(--blue-200)!important}.hover\\:bg-blue-300:hover{background-color:var(--blue-300)!important}.hover\\:bg-blue-400:hover{background-color:var(--blue-400)!important}.hover\\:bg-blue-500:hover{background-color:var(--blue-500)!important}.hover\\:bg-blue-600:hover{background-color:var(--blue-600)!important}.hover\\:bg-blue-700:hover{background-color:var(--blue-700)!important}.hover\\:bg-blue-800:hover{background-color:var(--blue-800)!important}.hover\\:bg-blue-900:hover{background-color:var(--blue-900)!important}.active\\:bg-blue-50:active{background-color:var(--blue-50)!important}.active\\:bg-blue-100:active{background-color:var(--blue-100)!important}.active\\:bg-blue-200:active{background-color:var(--blue-200)!important}.active\\:bg-blue-300:active{background-color:var(--blue-300)!important}.active\\:bg-blue-400:active{background-color:var(--blue-400)!important}.active\\:bg-blue-500:active{background-color:var(--blue-500)!important}.active\\:bg-blue-600:active{background-color:var(--blue-600)!important}.active\\:bg-blue-700:active{background-color:var(--blue-700)!important}.active\\:bg-blue-800:active{background-color:var(--blue-800)!important}.active\\:bg-blue-900:active{background-color:var(--blue-900)!important}.bg-green-50{background-color:var(--green-50)!important}.bg-green-100{background-color:var(--green-100)!important}.bg-green-200{background-color:var(--green-200)!important}.bg-green-300{background-color:var(--green-300)!important}.bg-green-400{background-color:var(--green-400)!important}.bg-green-500{background-color:var(--green-500)!important}.bg-green-600{background-color:var(--green-600)!important}.bg-green-700{background-color:var(--green-700)!important}.bg-green-800{background-color:var(--green-800)!important}.bg-green-900{background-color:var(--green-900)!important}.focus\\:bg-green-50:focus{background-color:var(--green-50)!important}.focus\\:bg-green-100:focus{background-color:var(--green-100)!important}.focus\\:bg-green-200:focus{background-color:var(--green-200)!important}.focus\\:bg-green-300:focus{background-color:var(--green-300)!important}.focus\\:bg-green-400:focus{background-color:var(--green-400)!important}.focus\\:bg-green-500:focus{background-color:var(--green-500)!important}.focus\\:bg-green-600:focus{background-color:var(--green-600)!important}.focus\\:bg-green-700:focus{background-color:var(--green-700)!important}.focus\\:bg-green-800:focus{background-color:var(--green-800)!important}.focus\\:bg-green-900:focus{background-color:var(--green-900)!important}.hover\\:bg-green-50:hover{background-color:var(--green-50)!important}.hover\\:bg-green-100:hover{background-color:var(--green-100)!important}.hover\\:bg-green-200:hover{background-color:var(--green-200)!important}.hover\\:bg-green-300:hover{background-color:var(--green-300)!important}.hover\\:bg-green-400:hover{background-color:var(--green-400)!important}.hover\\:bg-green-500:hover{background-color:var(--green-500)!important}.hover\\:bg-green-600:hover{background-color:var(--green-600)!important}.hover\\:bg-green-700:hover{background-color:var(--green-700)!important}.hover\\:bg-green-800:hover{background-color:var(--green-800)!important}.hover\\:bg-green-900:hover{background-color:var(--green-900)!important}.active\\:bg-green-50:active{background-color:var(--green-50)!important}.active\\:bg-green-100:active{background-color:var(--green-100)!important}.active\\:bg-green-200:active{background-color:var(--green-200)!important}.active\\:bg-green-300:active{background-color:var(--green-300)!important}.active\\:bg-green-400:active{background-color:var(--green-400)!important}.active\\:bg-green-500:active{background-color:var(--green-500)!important}.active\\:bg-green-600:active{background-color:var(--green-600)!important}.active\\:bg-green-700:active{background-color:var(--green-700)!important}.active\\:bg-green-800:active{background-color:var(--green-800)!important}.active\\:bg-green-900:active{background-color:var(--green-900)!important}.bg-yellow-50{background-color:var(--yellow-50)!important}.bg-yellow-100{background-color:var(--yellow-100)!important}.bg-yellow-200{background-color:var(--yellow-200)!important}.bg-yellow-300{background-color:var(--yellow-300)!important}.bg-yellow-400{background-color:var(--yellow-400)!important}.bg-yellow-500{background-color:var(--yellow-500)!important}.bg-yellow-600{background-color:var(--yellow-600)!important}.bg-yellow-700{background-color:var(--yellow-700)!important}.bg-yellow-800{background-color:var(--yellow-800)!important}.bg-yellow-900{background-color:var(--yellow-900)!important}.focus\\:bg-yellow-50:focus{background-color:var(--yellow-50)!important}.focus\\:bg-yellow-100:focus{background-color:var(--yellow-100)!important}.focus\\:bg-yellow-200:focus{background-color:var(--yellow-200)!important}.focus\\:bg-yellow-300:focus{background-color:var(--yellow-300)!important}.focus\\:bg-yellow-400:focus{background-color:var(--yellow-400)!important}.focus\\:bg-yellow-500:focus{background-color:var(--yellow-500)!important}.focus\\:bg-yellow-600:focus{background-color:var(--yellow-600)!important}.focus\\:bg-yellow-700:focus{background-color:var(--yellow-700)!important}.focus\\:bg-yellow-800:focus{background-color:var(--yellow-800)!important}.focus\\:bg-yellow-900:focus{background-color:var(--yellow-900)!important}.hover\\:bg-yellow-50:hover{background-color:var(--yellow-50)!important}.hover\\:bg-yellow-100:hover{background-color:var(--yellow-100)!important}.hover\\:bg-yellow-200:hover{background-color:var(--yellow-200)!important}.hover\\:bg-yellow-300:hover{background-color:var(--yellow-300)!important}.hover\\:bg-yellow-400:hover{background-color:var(--yellow-400)!important}.hover\\:bg-yellow-500:hover{background-color:var(--yellow-500)!important}.hover\\:bg-yellow-600:hover{background-color:var(--yellow-600)!important}.hover\\:bg-yellow-700:hover{background-color:var(--yellow-700)!important}.hover\\:bg-yellow-800:hover{background-color:var(--yellow-800)!important}.hover\\:bg-yellow-900:hover{background-color:var(--yellow-900)!important}.active\\:bg-yellow-50:active{background-color:var(--yellow-50)!important}.active\\:bg-yellow-100:active{background-color:var(--yellow-100)!important}.active\\:bg-yellow-200:active{background-color:var(--yellow-200)!important}.active\\:bg-yellow-300:active{background-color:var(--yellow-300)!important}.active\\:bg-yellow-400:active{background-color:var(--yellow-400)!important}.active\\:bg-yellow-500:active{background-color:var(--yellow-500)!important}.active\\:bg-yellow-600:active{background-color:var(--yellow-600)!important}.active\\:bg-yellow-700:active{background-color:var(--yellow-700)!important}.active\\:bg-yellow-800:active{background-color:var(--yellow-800)!important}.active\\:bg-yellow-900:active{background-color:var(--yellow-900)!important}.bg-cyan-50{background-color:var(--cyan-50)!important}.bg-cyan-100{background-color:var(--cyan-100)!important}.bg-cyan-200{background-color:var(--cyan-200)!important}.bg-cyan-300{background-color:var(--cyan-300)!important}.bg-cyan-400{background-color:var(--cyan-400)!important}.bg-cyan-500{background-color:var(--cyan-500)!important}.bg-cyan-600{background-color:var(--cyan-600)!important}.bg-cyan-700{background-color:var(--cyan-700)!important}.bg-cyan-800{background-color:var(--cyan-800)!important}.bg-cyan-900{background-color:var(--cyan-900)!important}.focus\\:bg-cyan-50:focus{background-color:var(--cyan-50)!important}.focus\\:bg-cyan-100:focus{background-color:var(--cyan-100)!important}.focus\\:bg-cyan-200:focus{background-color:var(--cyan-200)!important}.focus\\:bg-cyan-300:focus{background-color:var(--cyan-300)!important}.focus\\:bg-cyan-400:focus{background-color:var(--cyan-400)!important}.focus\\:bg-cyan-500:focus{background-color:var(--cyan-500)!important}.focus\\:bg-cyan-600:focus{background-color:var(--cyan-600)!important}.focus\\:bg-cyan-700:focus{background-color:var(--cyan-700)!important}.focus\\:bg-cyan-800:focus{background-color:var(--cyan-800)!important}.focus\\:bg-cyan-900:focus{background-color:var(--cyan-900)!important}.hover\\:bg-cyan-50:hover{background-color:var(--cyan-50)!important}.hover\\:bg-cyan-100:hover{background-color:var(--cyan-100)!important}.hover\\:bg-cyan-200:hover{background-color:var(--cyan-200)!important}.hover\\:bg-cyan-300:hover{background-color:var(--cyan-300)!important}.hover\\:bg-cyan-400:hover{background-color:var(--cyan-400)!important}.hover\\:bg-cyan-500:hover{background-color:var(--cyan-500)!important}.hover\\:bg-cyan-600:hover{background-color:var(--cyan-600)!important}.hover\\:bg-cyan-700:hover{background-color:var(--cyan-700)!important}.hover\\:bg-cyan-800:hover{background-color:var(--cyan-800)!important}.hover\\:bg-cyan-900:hover{background-color:var(--cyan-900)!important}.active\\:bg-cyan-50:active{background-color:var(--cyan-50)!important}.active\\:bg-cyan-100:active{background-color:var(--cyan-100)!important}.active\\:bg-cyan-200:active{background-color:var(--cyan-200)!important}.active\\:bg-cyan-300:active{background-color:var(--cyan-300)!important}.active\\:bg-cyan-400:active{background-color:var(--cyan-400)!important}.active\\:bg-cyan-500:active{background-color:var(--cyan-500)!important}.active\\:bg-cyan-600:active{background-color:var(--cyan-600)!important}.active\\:bg-cyan-700:active{background-color:var(--cyan-700)!important}.active\\:bg-cyan-800:active{background-color:var(--cyan-800)!important}.active\\:bg-cyan-900:active{background-color:var(--cyan-900)!important}.bg-pink-50{background-color:var(--pink-50)!important}.bg-pink-100{background-color:var(--pink-100)!important}.bg-pink-200{background-color:var(--pink-200)!important}.bg-pink-300{background-color:var(--pink-300)!important}.bg-pink-400{background-color:var(--pink-400)!important}.bg-pink-500{background-color:var(--pink-500)!important}.bg-pink-600{background-color:var(--pink-600)!important}.bg-pink-700{background-color:var(--pink-700)!important}.bg-pink-800{background-color:var(--pink-800)!important}.bg-pink-900{background-color:var(--pink-900)!important}.focus\\:bg-pink-50:focus{background-color:var(--pink-50)!important}.focus\\:bg-pink-100:focus{background-color:var(--pink-100)!important}.focus\\:bg-pink-200:focus{background-color:var(--pink-200)!important}.focus\\:bg-pink-300:focus{background-color:var(--pink-300)!important}.focus\\:bg-pink-400:focus{background-color:var(--pink-400)!important}.focus\\:bg-pink-500:focus{background-color:var(--pink-500)!important}.focus\\:bg-pink-600:focus{background-color:var(--pink-600)!important}.focus\\:bg-pink-700:focus{background-color:var(--pink-700)!important}.focus\\:bg-pink-800:focus{background-color:var(--pink-800)!important}.focus\\:bg-pink-900:focus{background-color:var(--pink-900)!important}.hover\\:bg-pink-50:hover{background-color:var(--pink-50)!important}.hover\\:bg-pink-100:hover{background-color:var(--pink-100)!important}.hover\\:bg-pink-200:hover{background-color:var(--pink-200)!important}.hover\\:bg-pink-300:hover{background-color:var(--pink-300)!important}.hover\\:bg-pink-400:hover{background-color:var(--pink-400)!important}.hover\\:bg-pink-500:hover{background-color:var(--pink-500)!important}.hover\\:bg-pink-600:hover{background-color:var(--pink-600)!important}.hover\\:bg-pink-700:hover{background-color:var(--pink-700)!important}.hover\\:bg-pink-800:hover{background-color:var(--pink-800)!important}.hover\\:bg-pink-900:hover{background-color:var(--pink-900)!important}.active\\:bg-pink-50:active{background-color:var(--pink-50)!important}.active\\:bg-pink-100:active{background-color:var(--pink-100)!important}.active\\:bg-pink-200:active{background-color:var(--pink-200)!important}.active\\:bg-pink-300:active{background-color:var(--pink-300)!important}.active\\:bg-pink-400:active{background-color:var(--pink-400)!important}.active\\:bg-pink-500:active{background-color:var(--pink-500)!important}.active\\:bg-pink-600:active{background-color:var(--pink-600)!important}.active\\:bg-pink-700:active{background-color:var(--pink-700)!important}.active\\:bg-pink-800:active{background-color:var(--pink-800)!important}.active\\:bg-pink-900:active{background-color:var(--pink-900)!important}.bg-indigo-50{background-color:var(--indigo-50)!important}.bg-indigo-100{background-color:var(--indigo-100)!important}.bg-indigo-200{background-color:var(--indigo-200)!important}.bg-indigo-300{background-color:var(--indigo-300)!important}.bg-indigo-400{background-color:var(--indigo-400)!important}.bg-indigo-500{background-color:var(--indigo-500)!important}.bg-indigo-600{background-color:var(--indigo-600)!important}.bg-indigo-700{background-color:var(--indigo-700)!important}.bg-indigo-800{background-color:var(--indigo-800)!important}.bg-indigo-900{background-color:var(--indigo-900)!important}.focus\\:bg-indigo-50:focus{background-color:var(--indigo-50)!important}.focus\\:bg-indigo-100:focus{background-color:var(--indigo-100)!important}.focus\\:bg-indigo-200:focus{background-color:var(--indigo-200)!important}.focus\\:bg-indigo-300:focus{background-color:var(--indigo-300)!important}.focus\\:bg-indigo-400:focus{background-color:var(--indigo-400)!important}.focus\\:bg-indigo-500:focus{background-color:var(--indigo-500)!important}.focus\\:bg-indigo-600:focus{background-color:var(--indigo-600)!important}.focus\\:bg-indigo-700:focus{background-color:var(--indigo-700)!important}.focus\\:bg-indigo-800:focus{background-color:var(--indigo-800)!important}.focus\\:bg-indigo-900:focus{background-color:var(--indigo-900)!important}.hover\\:bg-indigo-50:hover{background-color:var(--indigo-50)!important}.hover\\:bg-indigo-100:hover{background-color:var(--indigo-100)!important}.hover\\:bg-indigo-200:hover{background-color:var(--indigo-200)!important}.hover\\:bg-indigo-300:hover{background-color:var(--indigo-300)!important}.hover\\:bg-indigo-400:hover{background-color:var(--indigo-400)!important}.hover\\:bg-indigo-500:hover{background-color:var(--indigo-500)!important}.hover\\:bg-indigo-600:hover{background-color:var(--indigo-600)!important}.hover\\:bg-indigo-700:hover{background-color:var(--indigo-700)!important}.hover\\:bg-indigo-800:hover{background-color:var(--indigo-800)!important}.hover\\:bg-indigo-900:hover{background-color:var(--indigo-900)!important}.active\\:bg-indigo-50:active{background-color:var(--indigo-50)!important}.active\\:bg-indigo-100:active{background-color:var(--indigo-100)!important}.active\\:bg-indigo-200:active{background-color:var(--indigo-200)!important}.active\\:bg-indigo-300:active{background-color:var(--indigo-300)!important}.active\\:bg-indigo-400:active{background-color:var(--indigo-400)!important}.active\\:bg-indigo-500:active{background-color:var(--indigo-500)!important}.active\\:bg-indigo-600:active{background-color:var(--indigo-600)!important}.active\\:bg-indigo-700:active{background-color:var(--indigo-700)!important}.active\\:bg-indigo-800:active{background-color:var(--indigo-800)!important}.active\\:bg-indigo-900:active{background-color:var(--indigo-900)!important}.bg-teal-50{background-color:var(--teal-50)!important}.bg-teal-100{background-color:var(--teal-100)!important}.bg-teal-200{background-color:var(--teal-200)!important}.bg-teal-300{background-color:var(--teal-300)!important}.bg-teal-400{background-color:var(--teal-400)!important}.bg-teal-500{background-color:var(--teal-500)!important}.bg-teal-600{background-color:var(--teal-600)!important}.bg-teal-700{background-color:var(--teal-700)!important}.bg-teal-800{background-color:var(--teal-800)!important}.bg-teal-900{background-color:var(--teal-900)!important}.focus\\:bg-teal-50:focus{background-color:var(--teal-50)!important}.focus\\:bg-teal-100:focus{background-color:var(--teal-100)!important}.focus\\:bg-teal-200:focus{background-color:var(--teal-200)!important}.focus\\:bg-teal-300:focus{background-color:var(--teal-300)!important}.focus\\:bg-teal-400:focus{background-color:var(--teal-400)!important}.focus\\:bg-teal-500:focus{background-color:var(--teal-500)!important}.focus\\:bg-teal-600:focus{background-color:var(--teal-600)!important}.focus\\:bg-teal-700:focus{background-color:var(--teal-700)!important}.focus\\:bg-teal-800:focus{background-color:var(--teal-800)!important}.focus\\:bg-teal-900:focus{background-color:var(--teal-900)!important}.hover\\:bg-teal-50:hover{background-color:var(--teal-50)!important}.hover\\:bg-teal-100:hover{background-color:var(--teal-100)!important}.hover\\:bg-teal-200:hover{background-color:var(--teal-200)!important}.hover\\:bg-teal-300:hover{background-color:var(--teal-300)!important}.hover\\:bg-teal-400:hover{background-color:var(--teal-400)!important}.hover\\:bg-teal-500:hover{background-color:var(--teal-500)!important}.hover\\:bg-teal-600:hover{background-color:var(--teal-600)!important}.hover\\:bg-teal-700:hover{background-color:var(--teal-700)!important}.hover\\:bg-teal-800:hover{background-color:var(--teal-800)!important}.hover\\:bg-teal-900:hover{background-color:var(--teal-900)!important}.active\\:bg-teal-50:active{background-color:var(--teal-50)!important}.active\\:bg-teal-100:active{background-color:var(--teal-100)!important}.active\\:bg-teal-200:active{background-color:var(--teal-200)!important}.active\\:bg-teal-300:active{background-color:var(--teal-300)!important}.active\\:bg-teal-400:active{background-color:var(--teal-400)!important}.active\\:bg-teal-500:active{background-color:var(--teal-500)!important}.active\\:bg-teal-600:active{background-color:var(--teal-600)!important}.active\\:bg-teal-700:active{background-color:var(--teal-700)!important}.active\\:bg-teal-800:active{background-color:var(--teal-800)!important}.active\\:bg-teal-900:active{background-color:var(--teal-900)!important}.bg-orange-50{background-color:var(--orange-50)!important}.bg-orange-100{background-color:var(--orange-100)!important}.bg-orange-200{background-color:var(--orange-200)!important}.bg-orange-300{background-color:var(--orange-300)!important}.bg-orange-400{background-color:var(--orange-400)!important}.bg-orange-500{background-color:var(--orange-500)!important}.bg-orange-600{background-color:var(--orange-600)!important}.bg-orange-700{background-color:var(--orange-700)!important}.bg-orange-800{background-color:var(--orange-800)!important}.bg-orange-900{background-color:var(--orange-900)!important}.focus\\:bg-orange-50:focus{background-color:var(--orange-50)!important}.focus\\:bg-orange-100:focus{background-color:var(--orange-100)!important}.focus\\:bg-orange-200:focus{background-color:var(--orange-200)!important}.focus\\:bg-orange-300:focus{background-color:var(--orange-300)!important}.focus\\:bg-orange-400:focus{background-color:var(--orange-400)!important}.focus\\:bg-orange-500:focus{background-color:var(--orange-500)!important}.focus\\:bg-orange-600:focus{background-color:var(--orange-600)!important}.focus\\:bg-orange-700:focus{background-color:var(--orange-700)!important}.focus\\:bg-orange-800:focus{background-color:var(--orange-800)!important}.focus\\:bg-orange-900:focus{background-color:var(--orange-900)!important}.hover\\:bg-orange-50:hover{background-color:var(--orange-50)!important}.hover\\:bg-orange-100:hover{background-color:var(--orange-100)!important}.hover\\:bg-orange-200:hover{background-color:var(--orange-200)!important}.hover\\:bg-orange-300:hover{background-color:var(--orange-300)!important}.hover\\:bg-orange-400:hover{background-color:var(--orange-400)!important}.hover\\:bg-orange-500:hover{background-color:var(--orange-500)!important}.hover\\:bg-orange-600:hover{background-color:var(--orange-600)!important}.hover\\:bg-orange-700:hover{background-color:var(--orange-700)!important}.hover\\:bg-orange-800:hover{background-color:var(--orange-800)!important}.hover\\:bg-orange-900:hover{background-color:var(--orange-900)!important}.active\\:bg-orange-50:active{background-color:var(--orange-50)!important}.active\\:bg-orange-100:active{background-color:var(--orange-100)!important}.active\\:bg-orange-200:active{background-color:var(--orange-200)!important}.active\\:bg-orange-300:active{background-color:var(--orange-300)!important}.active\\:bg-orange-400:active{background-color:var(--orange-400)!important}.active\\:bg-orange-500:active{background-color:var(--orange-500)!important}.active\\:bg-orange-600:active{background-color:var(--orange-600)!important}.active\\:bg-orange-700:active{background-color:var(--orange-700)!important}.active\\:bg-orange-800:active{background-color:var(--orange-800)!important}.active\\:bg-orange-900:active{background-color:var(--orange-900)!important}.bg-bluegray-50{background-color:var(--bluegray-50)!important}.bg-bluegray-100{background-color:var(--bluegray-100)!important}.bg-bluegray-200{background-color:var(--bluegray-200)!important}.bg-bluegray-300{background-color:var(--bluegray-300)!important}.bg-bluegray-400{background-color:var(--bluegray-400)!important}.bg-bluegray-500{background-color:var(--bluegray-500)!important}.bg-bluegray-600{background-color:var(--bluegray-600)!important}.bg-bluegray-700{background-color:var(--bluegray-700)!important}.bg-bluegray-800{background-color:var(--bluegray-800)!important}.bg-bluegray-900{background-color:var(--bluegray-900)!important}.focus\\:bg-bluegray-50:focus{background-color:var(--bluegray-50)!important}.focus\\:bg-bluegray-100:focus{background-color:var(--bluegray-100)!important}.focus\\:bg-bluegray-200:focus{background-color:var(--bluegray-200)!important}.focus\\:bg-bluegray-300:focus{background-color:var(--bluegray-300)!important}.focus\\:bg-bluegray-400:focus{background-color:var(--bluegray-400)!important}.focus\\:bg-bluegray-500:focus{background-color:var(--bluegray-500)!important}.focus\\:bg-bluegray-600:focus{background-color:var(--bluegray-600)!important}.focus\\:bg-bluegray-700:focus{background-color:var(--bluegray-700)!important}.focus\\:bg-bluegray-800:focus{background-color:var(--bluegray-800)!important}.focus\\:bg-bluegray-900:focus{background-color:var(--bluegray-900)!important}.hover\\:bg-bluegray-50:hover{background-color:var(--bluegray-50)!important}.hover\\:bg-bluegray-100:hover{background-color:var(--bluegray-100)!important}.hover\\:bg-bluegray-200:hover{background-color:var(--bluegray-200)!important}.hover\\:bg-bluegray-300:hover{background-color:var(--bluegray-300)!important}.hover\\:bg-bluegray-400:hover{background-color:var(--bluegray-400)!important}.hover\\:bg-bluegray-500:hover{background-color:var(--bluegray-500)!important}.hover\\:bg-bluegray-600:hover{background-color:var(--bluegray-600)!important}.hover\\:bg-bluegray-700:hover{background-color:var(--bluegray-700)!important}.hover\\:bg-bluegray-800:hover{background-color:var(--bluegray-800)!important}.hover\\:bg-bluegray-900:hover{background-color:var(--bluegray-900)!important}.active\\:bg-bluegray-50:active{background-color:var(--bluegray-50)!important}.active\\:bg-bluegray-100:active{background-color:var(--bluegray-100)!important}.active\\:bg-bluegray-200:active{background-color:var(--bluegray-200)!important}.active\\:bg-bluegray-300:active{background-color:var(--bluegray-300)!important}.active\\:bg-bluegray-400:active{background-color:var(--bluegray-400)!important}.active\\:bg-bluegray-500:active{background-color:var(--bluegray-500)!important}.active\\:bg-bluegray-600:active{background-color:var(--bluegray-600)!important}.active\\:bg-bluegray-700:active{background-color:var(--bluegray-700)!important}.active\\:bg-bluegray-800:active{background-color:var(--bluegray-800)!important}.active\\:bg-bluegray-900:active{background-color:var(--bluegray-900)!important}.bg-purple-50{background-color:var(--purple-50)!important}.bg-purple-100{background-color:var(--purple-100)!important}.bg-purple-200{background-color:var(--purple-200)!important}.bg-purple-300{background-color:var(--purple-300)!important}.bg-purple-400{background-color:var(--purple-400)!important}.bg-purple-500{background-color:var(--purple-500)!important}.bg-purple-600{background-color:var(--purple-600)!important}.bg-purple-700{background-color:var(--purple-700)!important}.bg-purple-800{background-color:var(--purple-800)!important}.bg-purple-900{background-color:var(--purple-900)!important}.focus\\:bg-purple-50:focus{background-color:var(--purple-50)!important}.focus\\:bg-purple-100:focus{background-color:var(--purple-100)!important}.focus\\:bg-purple-200:focus{background-color:var(--purple-200)!important}.focus\\:bg-purple-300:focus{background-color:var(--purple-300)!important}.focus\\:bg-purple-400:focus{background-color:var(--purple-400)!important}.focus\\:bg-purple-500:focus{background-color:var(--purple-500)!important}.focus\\:bg-purple-600:focus{background-color:var(--purple-600)!important}.focus\\:bg-purple-700:focus{background-color:var(--purple-700)!important}.focus\\:bg-purple-800:focus{background-color:var(--purple-800)!important}.focus\\:bg-purple-900:focus{background-color:var(--purple-900)!important}.hover\\:bg-purple-50:hover{background-color:var(--purple-50)!important}.hover\\:bg-purple-100:hover{background-color:var(--purple-100)!important}.hover\\:bg-purple-200:hover{background-color:var(--purple-200)!important}.hover\\:bg-purple-300:hover{background-color:var(--purple-300)!important}.hover\\:bg-purple-400:hover{background-color:var(--purple-400)!important}.hover\\:bg-purple-500:hover{background-color:var(--purple-500)!important}.hover\\:bg-purple-600:hover{background-color:var(--purple-600)!important}.hover\\:bg-purple-700:hover{background-color:var(--purple-700)!important}.hover\\:bg-purple-800:hover{background-color:var(--purple-800)!important}.hover\\:bg-purple-900:hover{background-color:var(--purple-900)!important}.active\\:bg-purple-50:active{background-color:var(--purple-50)!important}.active\\:bg-purple-100:active{background-color:var(--purple-100)!important}.active\\:bg-purple-200:active{background-color:var(--purple-200)!important}.active\\:bg-purple-300:active{background-color:var(--purple-300)!important}.active\\:bg-purple-400:active{background-color:var(--purple-400)!important}.active\\:bg-purple-500:active{background-color:var(--purple-500)!important}.active\\:bg-purple-600:active{background-color:var(--purple-600)!important}.active\\:bg-purple-700:active{background-color:var(--purple-700)!important}.active\\:bg-purple-800:active{background-color:var(--purple-800)!important}.active\\:bg-purple-900:active{background-color:var(--purple-900)!important}.bg-gray-50{background-color:var(--gray-50)!important}.bg-gray-100{background-color:var(--gray-100)!important}.bg-gray-200{background-color:var(--gray-200)!important}.bg-gray-300{background-color:var(--gray-300)!important}.bg-gray-400{background-color:var(--gray-400)!important}.bg-gray-500{background-color:var(--gray-500)!important}.bg-gray-600{background-color:var(--gray-600)!important}.bg-gray-700{background-color:var(--gray-700)!important}.bg-gray-800{background-color:var(--gray-800)!important}.bg-gray-900{background-color:var(--gray-900)!important}.focus\\:bg-gray-50:focus{background-color:var(--gray-50)!important}.focus\\:bg-gray-100:focus{background-color:var(--gray-100)!important}.focus\\:bg-gray-200:focus{background-color:var(--gray-200)!important}.focus\\:bg-gray-300:focus{background-color:var(--gray-300)!important}.focus\\:bg-gray-400:focus{background-color:var(--gray-400)!important}.focus\\:bg-gray-500:focus{background-color:var(--gray-500)!important}.focus\\:bg-gray-600:focus{background-color:var(--gray-600)!important}.focus\\:bg-gray-700:focus{background-color:var(--gray-700)!important}.focus\\:bg-gray-800:focus{background-color:var(--gray-800)!important}.focus\\:bg-gray-900:focus{background-color:var(--gray-900)!important}.hover\\:bg-gray-50:hover{background-color:var(--gray-50)!important}.hover\\:bg-gray-100:hover{background-color:var(--gray-100)!important}.hover\\:bg-gray-200:hover{background-color:var(--gray-200)!important}.hover\\:bg-gray-300:hover{background-color:var(--gray-300)!important}.hover\\:bg-gray-400:hover{background-color:var(--gray-400)!important}.hover\\:bg-gray-500:hover{background-color:var(--gray-500)!important}.hover\\:bg-gray-600:hover{background-color:var(--gray-600)!important}.hover\\:bg-gray-700:hover{background-color:var(--gray-700)!important}.hover\\:bg-gray-800:hover{background-color:var(--gray-800)!important}.hover\\:bg-gray-900:hover{background-color:var(--gray-900)!important}.active\\:bg-gray-50:active{background-color:var(--gray-50)!important}.active\\:bg-gray-100:active{background-color:var(--gray-100)!important}.active\\:bg-gray-200:active{background-color:var(--gray-200)!important}.active\\:bg-gray-300:active{background-color:var(--gray-300)!important}.active\\:bg-gray-400:active{background-color:var(--gray-400)!important}.active\\:bg-gray-500:active{background-color:var(--gray-500)!important}.active\\:bg-gray-600:active{background-color:var(--gray-600)!important}.active\\:bg-gray-700:active{background-color:var(--gray-700)!important}.active\\:bg-gray-800:active{background-color:var(--gray-800)!important}.active\\:bg-gray-900:active{background-color:var(--gray-900)!important}.bg-red-50{background-color:var(--red-50)!important}.bg-red-100{background-color:var(--red-100)!important}.bg-red-200{background-color:var(--red-200)!important}.bg-red-300{background-color:var(--red-300)!important}.bg-red-400{background-color:var(--red-400)!important}.bg-red-500{background-color:var(--red-500)!important}.bg-red-600{background-color:var(--red-600)!important}.bg-red-700{background-color:var(--red-700)!important}.bg-red-800{background-color:var(--red-800)!important}.bg-red-900{background-color:var(--red-900)!important}.focus\\:bg-red-50:focus{background-color:var(--red-50)!important}.focus\\:bg-red-100:focus{background-color:var(--red-100)!important}.focus\\:bg-red-200:focus{background-color:var(--red-200)!important}.focus\\:bg-red-300:focus{background-color:var(--red-300)!important}.focus\\:bg-red-400:focus{background-color:var(--red-400)!important}.focus\\:bg-red-500:focus{background-color:var(--red-500)!important}.focus\\:bg-red-600:focus{background-color:var(--red-600)!important}.focus\\:bg-red-700:focus{background-color:var(--red-700)!important}.focus\\:bg-red-800:focus{background-color:var(--red-800)!important}.focus\\:bg-red-900:focus{background-color:var(--red-900)!important}.hover\\:bg-red-50:hover{background-color:var(--red-50)!important}.hover\\:bg-red-100:hover{background-color:var(--red-100)!important}.hover\\:bg-red-200:hover{background-color:var(--red-200)!important}.hover\\:bg-red-300:hover{background-color:var(--red-300)!important}.hover\\:bg-red-400:hover{background-color:var(--red-400)!important}.hover\\:bg-red-500:hover{background-color:var(--red-500)!important}.hover\\:bg-red-600:hover{background-color:var(--red-600)!important}.hover\\:bg-red-700:hover{background-color:var(--red-700)!important}.hover\\:bg-red-800:hover{background-color:var(--red-800)!important}.hover\\:bg-red-900:hover{background-color:var(--red-900)!important}.active\\:bg-red-50:active{background-color:var(--red-50)!important}.active\\:bg-red-100:active{background-color:var(--red-100)!important}.active\\:bg-red-200:active{background-color:var(--red-200)!important}.active\\:bg-red-300:active{background-color:var(--red-300)!important}.active\\:bg-red-400:active{background-color:var(--red-400)!important}.active\\:bg-red-500:active{background-color:var(--red-500)!important}.active\\:bg-red-600:active{background-color:var(--red-600)!important}.active\\:bg-red-700:active{background-color:var(--red-700)!important}.active\\:bg-red-800:active{background-color:var(--red-800)!important}.active\\:bg-red-900:active{background-color:var(--red-900)!important}.bg-primary-50{background-color:var(--primary-50)!important}.bg-primary-100{background-color:var(--primary-100)!important}.bg-primary-200{background-color:var(--primary-200)!important}.bg-primary-300{background-color:var(--primary-300)!important}.bg-primary-400{background-color:var(--primary-400)!important}.bg-primary-500{background-color:var(--primary-500)!important}.bg-primary-600{background-color:var(--primary-600)!important}.bg-primary-700{background-color:var(--primary-700)!important}.bg-primary-800{background-color:var(--primary-800)!important}.bg-primary-900{background-color:var(--primary-900)!important}.focus\\:bg-primary-50:focus{background-color:var(--primary-50)!important}.focus\\:bg-primary-100:focus{background-color:var(--primary-100)!important}.focus\\:bg-primary-200:focus{background-color:var(--primary-200)!important}.focus\\:bg-primary-300:focus{background-color:var(--primary-300)!important}.focus\\:bg-primary-400:focus{background-color:var(--primary-400)!important}.focus\\:bg-primary-500:focus{background-color:var(--primary-500)!important}.focus\\:bg-primary-600:focus{background-color:var(--primary-600)!important}.focus\\:bg-primary-700:focus{background-color:var(--primary-700)!important}.focus\\:bg-primary-800:focus{background-color:var(--primary-800)!important}.focus\\:bg-primary-900:focus{background-color:var(--primary-900)!important}.hover\\:bg-primary-50:hover{background-color:var(--primary-50)!important}.hover\\:bg-primary-100:hover{background-color:var(--primary-100)!important}.hover\\:bg-primary-200:hover{background-color:var(--primary-200)!important}.hover\\:bg-primary-300:hover{background-color:var(--primary-300)!important}.hover\\:bg-primary-400:hover{background-color:var(--primary-400)!important}.hover\\:bg-primary-500:hover{background-color:var(--primary-500)!important}.hover\\:bg-primary-600:hover{background-color:var(--primary-600)!important}.hover\\:bg-primary-700:hover{background-color:var(--primary-700)!important}.hover\\:bg-primary-800:hover{background-color:var(--primary-800)!important}.hover\\:bg-primary-900:hover{background-color:var(--primary-900)!important}.active\\:bg-primary-50:active{background-color:var(--primary-50)!important}.active\\:bg-primary-100:active{background-color:var(--primary-100)!important}.active\\:bg-primary-200:active{background-color:var(--primary-200)!important}.active\\:bg-primary-300:active{background-color:var(--primary-300)!important}.active\\:bg-primary-400:active{background-color:var(--primary-400)!important}.active\\:bg-primary-500:active{background-color:var(--primary-500)!important}.active\\:bg-primary-600:active{background-color:var(--primary-600)!important}.active\\:bg-primary-700:active{background-color:var(--primary-700)!important}.active\\:bg-primary-800:active{background-color:var(--primary-800)!important}.active\\:bg-primary-900:active{background-color:var(--primary-900)!important}.border-blue-50{border-color:var(--blue-50)!important}.border-blue-100{border-color:var(--blue-100)!important}.border-blue-200{border-color:var(--blue-200)!important}.border-blue-300{border-color:var(--blue-300)!important}.border-blue-400{border-color:var(--blue-400)!important}.border-blue-500{border-color:var(--blue-500)!important}.border-blue-600{border-color:var(--blue-600)!important}.border-blue-700{border-color:var(--blue-700)!important}.border-blue-800{border-color:var(--blue-800)!important}.border-blue-900{border-color:var(--blue-900)!important}.focus\\:border-blue-50:focus{border-color:var(--blue-50)!important}.focus\\:border-blue-100:focus{border-color:var(--blue-100)!important}.focus\\:border-blue-200:focus{border-color:var(--blue-200)!important}.focus\\:border-blue-300:focus{border-color:var(--blue-300)!important}.focus\\:border-blue-400:focus{border-color:var(--blue-400)!important}.focus\\:border-blue-500:focus{border-color:var(--blue-500)!important}.focus\\:border-blue-600:focus{border-color:var(--blue-600)!important}.focus\\:border-blue-700:focus{border-color:var(--blue-700)!important}.focus\\:border-blue-800:focus{border-color:var(--blue-800)!important}.focus\\:border-blue-900:focus{border-color:var(--blue-900)!important}.hover\\:border-blue-50:hover{border-color:var(--blue-50)!important}.hover\\:border-blue-100:hover{border-color:var(--blue-100)!important}.hover\\:border-blue-200:hover{border-color:var(--blue-200)!important}.hover\\:border-blue-300:hover{border-color:var(--blue-300)!important}.hover\\:border-blue-400:hover{border-color:var(--blue-400)!important}.hover\\:border-blue-500:hover{border-color:var(--blue-500)!important}.hover\\:border-blue-600:hover{border-color:var(--blue-600)!important}.hover\\:border-blue-700:hover{border-color:var(--blue-700)!important}.hover\\:border-blue-800:hover{border-color:var(--blue-800)!important}.hover\\:border-blue-900:hover{border-color:var(--blue-900)!important}.active\\:border-blue-50:active{border-color:var(--blue-50)!important}.active\\:border-blue-100:active{border-color:var(--blue-100)!important}.active\\:border-blue-200:active{border-color:var(--blue-200)!important}.active\\:border-blue-300:active{border-color:var(--blue-300)!important}.active\\:border-blue-400:active{border-color:var(--blue-400)!important}.active\\:border-blue-500:active{border-color:var(--blue-500)!important}.active\\:border-blue-600:active{border-color:var(--blue-600)!important}.active\\:border-blue-700:active{border-color:var(--blue-700)!important}.active\\:border-blue-800:active{border-color:var(--blue-800)!important}.active\\:border-blue-900:active{border-color:var(--blue-900)!important}.border-green-50{border-color:var(--green-50)!important}.border-green-100{border-color:var(--green-100)!important}.border-green-200{border-color:var(--green-200)!important}.border-green-300{border-color:var(--green-300)!important}.border-green-400{border-color:var(--green-400)!important}.border-green-500{border-color:var(--green-500)!important}.border-green-600{border-color:var(--green-600)!important}.border-green-700{border-color:var(--green-700)!important}.border-green-800{border-color:var(--green-800)!important}.border-green-900{border-color:var(--green-900)!important}.focus\\:border-green-50:focus{border-color:var(--green-50)!important}.focus\\:border-green-100:focus{border-color:var(--green-100)!important}.focus\\:border-green-200:focus{border-color:var(--green-200)!important}.focus\\:border-green-300:focus{border-color:var(--green-300)!important}.focus\\:border-green-400:focus{border-color:var(--green-400)!important}.focus\\:border-green-500:focus{border-color:var(--green-500)!important}.focus\\:border-green-600:focus{border-color:var(--green-600)!important}.focus\\:border-green-700:focus{border-color:var(--green-700)!important}.focus\\:border-green-800:focus{border-color:var(--green-800)!important}.focus\\:border-green-900:focus{border-color:var(--green-900)!important}.hover\\:border-green-50:hover{border-color:var(--green-50)!important}.hover\\:border-green-100:hover{border-color:var(--green-100)!important}.hover\\:border-green-200:hover{border-color:var(--green-200)!important}.hover\\:border-green-300:hover{border-color:var(--green-300)!important}.hover\\:border-green-400:hover{border-color:var(--green-400)!important}.hover\\:border-green-500:hover{border-color:var(--green-500)!important}.hover\\:border-green-600:hover{border-color:var(--green-600)!important}.hover\\:border-green-700:hover{border-color:var(--green-700)!important}.hover\\:border-green-800:hover{border-color:var(--green-800)!important}.hover\\:border-green-900:hover{border-color:var(--green-900)!important}.active\\:border-green-50:active{border-color:var(--green-50)!important}.active\\:border-green-100:active{border-color:var(--green-100)!important}.active\\:border-green-200:active{border-color:var(--green-200)!important}.active\\:border-green-300:active{border-color:var(--green-300)!important}.active\\:border-green-400:active{border-color:var(--green-400)!important}.active\\:border-green-500:active{border-color:var(--green-500)!important}.active\\:border-green-600:active{border-color:var(--green-600)!important}.active\\:border-green-700:active{border-color:var(--green-700)!important}.active\\:border-green-800:active{border-color:var(--green-800)!important}.active\\:border-green-900:active{border-color:var(--green-900)!important}.border-yellow-50{border-color:var(--yellow-50)!important}.border-yellow-100{border-color:var(--yellow-100)!important}.border-yellow-200{border-color:var(--yellow-200)!important}.border-yellow-300{border-color:var(--yellow-300)!important}.border-yellow-400{border-color:var(--yellow-400)!important}.border-yellow-500{border-color:var(--yellow-500)!important}.border-yellow-600{border-color:var(--yellow-600)!important}.border-yellow-700{border-color:var(--yellow-700)!important}.border-yellow-800{border-color:var(--yellow-800)!important}.border-yellow-900{border-color:var(--yellow-900)!important}.focus\\:border-yellow-50:focus{border-color:var(--yellow-50)!important}.focus\\:border-yellow-100:focus{border-color:var(--yellow-100)!important}.focus\\:border-yellow-200:focus{border-color:var(--yellow-200)!important}.focus\\:border-yellow-300:focus{border-color:var(--yellow-300)!important}.focus\\:border-yellow-400:focus{border-color:var(--yellow-400)!important}.focus\\:border-yellow-500:focus{border-color:var(--yellow-500)!important}.focus\\:border-yellow-600:focus{border-color:var(--yellow-600)!important}.focus\\:border-yellow-700:focus{border-color:var(--yellow-700)!important}.focus\\:border-yellow-800:focus{border-color:var(--yellow-800)!important}.focus\\:border-yellow-900:focus{border-color:var(--yellow-900)!important}.hover\\:border-yellow-50:hover{border-color:var(--yellow-50)!important}.hover\\:border-yellow-100:hover{border-color:var(--yellow-100)!important}.hover\\:border-yellow-200:hover{border-color:var(--yellow-200)!important}.hover\\:border-yellow-300:hover{border-color:var(--yellow-300)!important}.hover\\:border-yellow-400:hover{border-color:var(--yellow-400)!important}.hover\\:border-yellow-500:hover{border-color:var(--yellow-500)!important}.hover\\:border-yellow-600:hover{border-color:var(--yellow-600)!important}.hover\\:border-yellow-700:hover{border-color:var(--yellow-700)!important}.hover\\:border-yellow-800:hover{border-color:var(--yellow-800)!important}.hover\\:border-yellow-900:hover{border-color:var(--yellow-900)!important}.active\\:border-yellow-50:active{border-color:var(--yellow-50)!important}.active\\:border-yellow-100:active{border-color:var(--yellow-100)!important}.active\\:border-yellow-200:active{border-color:var(--yellow-200)!important}.active\\:border-yellow-300:active{border-color:var(--yellow-300)!important}.active\\:border-yellow-400:active{border-color:var(--yellow-400)!important}.active\\:border-yellow-500:active{border-color:var(--yellow-500)!important}.active\\:border-yellow-600:active{border-color:var(--yellow-600)!important}.active\\:border-yellow-700:active{border-color:var(--yellow-700)!important}.active\\:border-yellow-800:active{border-color:var(--yellow-800)!important}.active\\:border-yellow-900:active{border-color:var(--yellow-900)!important}.border-cyan-50{border-color:var(--cyan-50)!important}.border-cyan-100{border-color:var(--cyan-100)!important}.border-cyan-200{border-color:var(--cyan-200)!important}.border-cyan-300{border-color:var(--cyan-300)!important}.border-cyan-400{border-color:var(--cyan-400)!important}.border-cyan-500{border-color:var(--cyan-500)!important}.border-cyan-600{border-color:var(--cyan-600)!important}.border-cyan-700{border-color:var(--cyan-700)!important}.border-cyan-800{border-color:var(--cyan-800)!important}.border-cyan-900{border-color:var(--cyan-900)!important}.focus\\:border-cyan-50:focus{border-color:var(--cyan-50)!important}.focus\\:border-cyan-100:focus{border-color:var(--cyan-100)!important}.focus\\:border-cyan-200:focus{border-color:var(--cyan-200)!important}.focus\\:border-cyan-300:focus{border-color:var(--cyan-300)!important}.focus\\:border-cyan-400:focus{border-color:var(--cyan-400)!important}.focus\\:border-cyan-500:focus{border-color:var(--cyan-500)!important}.focus\\:border-cyan-600:focus{border-color:var(--cyan-600)!important}.focus\\:border-cyan-700:focus{border-color:var(--cyan-700)!important}.focus\\:border-cyan-800:focus{border-color:var(--cyan-800)!important}.focus\\:border-cyan-900:focus{border-color:var(--cyan-900)!important}.hover\\:border-cyan-50:hover{border-color:var(--cyan-50)!important}.hover\\:border-cyan-100:hover{border-color:var(--cyan-100)!important}.hover\\:border-cyan-200:hover{border-color:var(--cyan-200)!important}.hover\\:border-cyan-300:hover{border-color:var(--cyan-300)!important}.hover\\:border-cyan-400:hover{border-color:var(--cyan-400)!important}.hover\\:border-cyan-500:hover{border-color:var(--cyan-500)!important}.hover\\:border-cyan-600:hover{border-color:var(--cyan-600)!important}.hover\\:border-cyan-700:hover{border-color:var(--cyan-700)!important}.hover\\:border-cyan-800:hover{border-color:var(--cyan-800)!important}.hover\\:border-cyan-900:hover{border-color:var(--cyan-900)!important}.active\\:border-cyan-50:active{border-color:var(--cyan-50)!important}.active\\:border-cyan-100:active{border-color:var(--cyan-100)!important}.active\\:border-cyan-200:active{border-color:var(--cyan-200)!important}.active\\:border-cyan-300:active{border-color:var(--cyan-300)!important}.active\\:border-cyan-400:active{border-color:var(--cyan-400)!important}.active\\:border-cyan-500:active{border-color:var(--cyan-500)!important}.active\\:border-cyan-600:active{border-color:var(--cyan-600)!important}.active\\:border-cyan-700:active{border-color:var(--cyan-700)!important}.active\\:border-cyan-800:active{border-color:var(--cyan-800)!important}.active\\:border-cyan-900:active{border-color:var(--cyan-900)!important}.border-pink-50{border-color:var(--pink-50)!important}.border-pink-100{border-color:var(--pink-100)!important}.border-pink-200{border-color:var(--pink-200)!important}.border-pink-300{border-color:var(--pink-300)!important}.border-pink-400{border-color:var(--pink-400)!important}.border-pink-500{border-color:var(--pink-500)!important}.border-pink-600{border-color:var(--pink-600)!important}.border-pink-700{border-color:var(--pink-700)!important}.border-pink-800{border-color:var(--pink-800)!important}.border-pink-900{border-color:var(--pink-900)!important}.focus\\:border-pink-50:focus{border-color:var(--pink-50)!important}.focus\\:border-pink-100:focus{border-color:var(--pink-100)!important}.focus\\:border-pink-200:focus{border-color:var(--pink-200)!important}.focus\\:border-pink-300:focus{border-color:var(--pink-300)!important}.focus\\:border-pink-400:focus{border-color:var(--pink-400)!important}.focus\\:border-pink-500:focus{border-color:var(--pink-500)!important}.focus\\:border-pink-600:focus{border-color:var(--pink-600)!important}.focus\\:border-pink-700:focus{border-color:var(--pink-700)!important}.focus\\:border-pink-800:focus{border-color:var(--pink-800)!important}.focus\\:border-pink-900:focus{border-color:var(--pink-900)!important}.hover\\:border-pink-50:hover{border-color:var(--pink-50)!important}.hover\\:border-pink-100:hover{border-color:var(--pink-100)!important}.hover\\:border-pink-200:hover{border-color:var(--pink-200)!important}.hover\\:border-pink-300:hover{border-color:var(--pink-300)!important}.hover\\:border-pink-400:hover{border-color:var(--pink-400)!important}.hover\\:border-pink-500:hover{border-color:var(--pink-500)!important}.hover\\:border-pink-600:hover{border-color:var(--pink-600)!important}.hover\\:border-pink-700:hover{border-color:var(--pink-700)!important}.hover\\:border-pink-800:hover{border-color:var(--pink-800)!important}.hover\\:border-pink-900:hover{border-color:var(--pink-900)!important}.active\\:border-pink-50:active{border-color:var(--pink-50)!important}.active\\:border-pink-100:active{border-color:var(--pink-100)!important}.active\\:border-pink-200:active{border-color:var(--pink-200)!important}.active\\:border-pink-300:active{border-color:var(--pink-300)!important}.active\\:border-pink-400:active{border-color:var(--pink-400)!important}.active\\:border-pink-500:active{border-color:var(--pink-500)!important}.active\\:border-pink-600:active{border-color:var(--pink-600)!important}.active\\:border-pink-700:active{border-color:var(--pink-700)!important}.active\\:border-pink-800:active{border-color:var(--pink-800)!important}.active\\:border-pink-900:active{border-color:var(--pink-900)!important}.border-indigo-50{border-color:var(--indigo-50)!important}.border-indigo-100{border-color:var(--indigo-100)!important}.border-indigo-200{border-color:var(--indigo-200)!important}.border-indigo-300{border-color:var(--indigo-300)!important}.border-indigo-400{border-color:var(--indigo-400)!important}.border-indigo-500{border-color:var(--indigo-500)!important}.border-indigo-600{border-color:var(--indigo-600)!important}.border-indigo-700{border-color:var(--indigo-700)!important}.border-indigo-800{border-color:var(--indigo-800)!important}.border-indigo-900{border-color:var(--indigo-900)!important}.focus\\:border-indigo-50:focus{border-color:var(--indigo-50)!important}.focus\\:border-indigo-100:focus{border-color:var(--indigo-100)!important}.focus\\:border-indigo-200:focus{border-color:var(--indigo-200)!important}.focus\\:border-indigo-300:focus{border-color:var(--indigo-300)!important}.focus\\:border-indigo-400:focus{border-color:var(--indigo-400)!important}.focus\\:border-indigo-500:focus{border-color:var(--indigo-500)!important}.focus\\:border-indigo-600:focus{border-color:var(--indigo-600)!important}.focus\\:border-indigo-700:focus{border-color:var(--indigo-700)!important}.focus\\:border-indigo-800:focus{border-color:var(--indigo-800)!important}.focus\\:border-indigo-900:focus{border-color:var(--indigo-900)!important}.hover\\:border-indigo-50:hover{border-color:var(--indigo-50)!important}.hover\\:border-indigo-100:hover{border-color:var(--indigo-100)!important}.hover\\:border-indigo-200:hover{border-color:var(--indigo-200)!important}.hover\\:border-indigo-300:hover{border-color:var(--indigo-300)!important}.hover\\:border-indigo-400:hover{border-color:var(--indigo-400)!important}.hover\\:border-indigo-500:hover{border-color:var(--indigo-500)!important}.hover\\:border-indigo-600:hover{border-color:var(--indigo-600)!important}.hover\\:border-indigo-700:hover{border-color:var(--indigo-700)!important}.hover\\:border-indigo-800:hover{border-color:var(--indigo-800)!important}.hover\\:border-indigo-900:hover{border-color:var(--indigo-900)!important}.active\\:border-indigo-50:active{border-color:var(--indigo-50)!important}.active\\:border-indigo-100:active{border-color:var(--indigo-100)!important}.active\\:border-indigo-200:active{border-color:var(--indigo-200)!important}.active\\:border-indigo-300:active{border-color:var(--indigo-300)!important}.active\\:border-indigo-400:active{border-color:var(--indigo-400)!important}.active\\:border-indigo-500:active{border-color:var(--indigo-500)!important}.active\\:border-indigo-600:active{border-color:var(--indigo-600)!important}.active\\:border-indigo-700:active{border-color:var(--indigo-700)!important}.active\\:border-indigo-800:active{border-color:var(--indigo-800)!important}.active\\:border-indigo-900:active{border-color:var(--indigo-900)!important}.border-teal-50{border-color:var(--teal-50)!important}.border-teal-100{border-color:var(--teal-100)!important}.border-teal-200{border-color:var(--teal-200)!important}.border-teal-300{border-color:var(--teal-300)!important}.border-teal-400{border-color:var(--teal-400)!important}.border-teal-500{border-color:var(--teal-500)!important}.border-teal-600{border-color:var(--teal-600)!important}.border-teal-700{border-color:var(--teal-700)!important}.border-teal-800{border-color:var(--teal-800)!important}.border-teal-900{border-color:var(--teal-900)!important}.focus\\:border-teal-50:focus{border-color:var(--teal-50)!important}.focus\\:border-teal-100:focus{border-color:var(--teal-100)!important}.focus\\:border-teal-200:focus{border-color:var(--teal-200)!important}.focus\\:border-teal-300:focus{border-color:var(--teal-300)!important}.focus\\:border-teal-400:focus{border-color:var(--teal-400)!important}.focus\\:border-teal-500:focus{border-color:var(--teal-500)!important}.focus\\:border-teal-600:focus{border-color:var(--teal-600)!important}.focus\\:border-teal-700:focus{border-color:var(--teal-700)!important}.focus\\:border-teal-800:focus{border-color:var(--teal-800)!important}.focus\\:border-teal-900:focus{border-color:var(--teal-900)!important}.hover\\:border-teal-50:hover{border-color:var(--teal-50)!important}.hover\\:border-teal-100:hover{border-color:var(--teal-100)!important}.hover\\:border-teal-200:hover{border-color:var(--teal-200)!important}.hover\\:border-teal-300:hover{border-color:var(--teal-300)!important}.hover\\:border-teal-400:hover{border-color:var(--teal-400)!important}.hover\\:border-teal-500:hover{border-color:var(--teal-500)!important}.hover\\:border-teal-600:hover{border-color:var(--teal-600)!important}.hover\\:border-teal-700:hover{border-color:var(--teal-700)!important}.hover\\:border-teal-800:hover{border-color:var(--teal-800)!important}.hover\\:border-teal-900:hover{border-color:var(--teal-900)!important}.active\\:border-teal-50:active{border-color:var(--teal-50)!important}.active\\:border-teal-100:active{border-color:var(--teal-100)!important}.active\\:border-teal-200:active{border-color:var(--teal-200)!important}.active\\:border-teal-300:active{border-color:var(--teal-300)!important}.active\\:border-teal-400:active{border-color:var(--teal-400)!important}.active\\:border-teal-500:active{border-color:var(--teal-500)!important}.active\\:border-teal-600:active{border-color:var(--teal-600)!important}.active\\:border-teal-700:active{border-color:var(--teal-700)!important}.active\\:border-teal-800:active{border-color:var(--teal-800)!important}.active\\:border-teal-900:active{border-color:var(--teal-900)!important}.border-orange-50{border-color:var(--orange-50)!important}.border-orange-100{border-color:var(--orange-100)!important}.border-orange-200{border-color:var(--orange-200)!important}.border-orange-300{border-color:var(--orange-300)!important}.border-orange-400{border-color:var(--orange-400)!important}.border-orange-500{border-color:var(--orange-500)!important}.border-orange-600{border-color:var(--orange-600)!important}.border-orange-700{border-color:var(--orange-700)!important}.border-orange-800{border-color:var(--orange-800)!important}.border-orange-900{border-color:var(--orange-900)!important}.focus\\:border-orange-50:focus{border-color:var(--orange-50)!important}.focus\\:border-orange-100:focus{border-color:var(--orange-100)!important}.focus\\:border-orange-200:focus{border-color:var(--orange-200)!important}.focus\\:border-orange-300:focus{border-color:var(--orange-300)!important}.focus\\:border-orange-400:focus{border-color:var(--orange-400)!important}.focus\\:border-orange-500:focus{border-color:var(--orange-500)!important}.focus\\:border-orange-600:focus{border-color:var(--orange-600)!important}.focus\\:border-orange-700:focus{border-color:var(--orange-700)!important}.focus\\:border-orange-800:focus{border-color:var(--orange-800)!important}.focus\\:border-orange-900:focus{border-color:var(--orange-900)!important}.hover\\:border-orange-50:hover{border-color:var(--orange-50)!important}.hover\\:border-orange-100:hover{border-color:var(--orange-100)!important}.hover\\:border-orange-200:hover{border-color:var(--orange-200)!important}.hover\\:border-orange-300:hover{border-color:var(--orange-300)!important}.hover\\:border-orange-400:hover{border-color:var(--orange-400)!important}.hover\\:border-orange-500:hover{border-color:var(--orange-500)!important}.hover\\:border-orange-600:hover{border-color:var(--orange-600)!important}.hover\\:border-orange-700:hover{border-color:var(--orange-700)!important}.hover\\:border-orange-800:hover{border-color:var(--orange-800)!important}.hover\\:border-orange-900:hover{border-color:var(--orange-900)!important}.active\\:border-orange-50:active{border-color:var(--orange-50)!important}.active\\:border-orange-100:active{border-color:var(--orange-100)!important}.active\\:border-orange-200:active{border-color:var(--orange-200)!important}.active\\:border-orange-300:active{border-color:var(--orange-300)!important}.active\\:border-orange-400:active{border-color:var(--orange-400)!important}.active\\:border-orange-500:active{border-color:var(--orange-500)!important}.active\\:border-orange-600:active{border-color:var(--orange-600)!important}.active\\:border-orange-700:active{border-color:var(--orange-700)!important}.active\\:border-orange-800:active{border-color:var(--orange-800)!important}.active\\:border-orange-900:active{border-color:var(--orange-900)!important}.border-bluegray-50{border-color:var(--bluegray-50)!important}.border-bluegray-100{border-color:var(--bluegray-100)!important}.border-bluegray-200{border-color:var(--bluegray-200)!important}.border-bluegray-300{border-color:var(--bluegray-300)!important}.border-bluegray-400{border-color:var(--bluegray-400)!important}.border-bluegray-500{border-color:var(--bluegray-500)!important}.border-bluegray-600{border-color:var(--bluegray-600)!important}.border-bluegray-700{border-color:var(--bluegray-700)!important}.border-bluegray-800{border-color:var(--bluegray-800)!important}.border-bluegray-900{border-color:var(--bluegray-900)!important}.focus\\:border-bluegray-50:focus{border-color:var(--bluegray-50)!important}.focus\\:border-bluegray-100:focus{border-color:var(--bluegray-100)!important}.focus\\:border-bluegray-200:focus{border-color:var(--bluegray-200)!important}.focus\\:border-bluegray-300:focus{border-color:var(--bluegray-300)!important}.focus\\:border-bluegray-400:focus{border-color:var(--bluegray-400)!important}.focus\\:border-bluegray-500:focus{border-color:var(--bluegray-500)!important}.focus\\:border-bluegray-600:focus{border-color:var(--bluegray-600)!important}.focus\\:border-bluegray-700:focus{border-color:var(--bluegray-700)!important}.focus\\:border-bluegray-800:focus{border-color:var(--bluegray-800)!important}.focus\\:border-bluegray-900:focus{border-color:var(--bluegray-900)!important}.hover\\:border-bluegray-50:hover{border-color:var(--bluegray-50)!important}.hover\\:border-bluegray-100:hover{border-color:var(--bluegray-100)!important}.hover\\:border-bluegray-200:hover{border-color:var(--bluegray-200)!important}.hover\\:border-bluegray-300:hover{border-color:var(--bluegray-300)!important}.hover\\:border-bluegray-400:hover{border-color:var(--bluegray-400)!important}.hover\\:border-bluegray-500:hover{border-color:var(--bluegray-500)!important}.hover\\:border-bluegray-600:hover{border-color:var(--bluegray-600)!important}.hover\\:border-bluegray-700:hover{border-color:var(--bluegray-700)!important}.hover\\:border-bluegray-800:hover{border-color:var(--bluegray-800)!important}.hover\\:border-bluegray-900:hover{border-color:var(--bluegray-900)!important}.active\\:border-bluegray-50:active{border-color:var(--bluegray-50)!important}.active\\:border-bluegray-100:active{border-color:var(--bluegray-100)!important}.active\\:border-bluegray-200:active{border-color:var(--bluegray-200)!important}.active\\:border-bluegray-300:active{border-color:var(--bluegray-300)!important}.active\\:border-bluegray-400:active{border-color:var(--bluegray-400)!important}.active\\:border-bluegray-500:active{border-color:var(--bluegray-500)!important}.active\\:border-bluegray-600:active{border-color:var(--bluegray-600)!important}.active\\:border-bluegray-700:active{border-color:var(--bluegray-700)!important}.active\\:border-bluegray-800:active{border-color:var(--bluegray-800)!important}.active\\:border-bluegray-900:active{border-color:var(--bluegray-900)!important}.border-purple-50{border-color:var(--purple-50)!important}.border-purple-100{border-color:var(--purple-100)!important}.border-purple-200{border-color:var(--purple-200)!important}.border-purple-300{border-color:var(--purple-300)!important}.border-purple-400{border-color:var(--purple-400)!important}.border-purple-500{border-color:var(--purple-500)!important}.border-purple-600{border-color:var(--purple-600)!important}.border-purple-700{border-color:var(--purple-700)!important}.border-purple-800{border-color:var(--purple-800)!important}.border-purple-900{border-color:var(--purple-900)!important}.focus\\:border-purple-50:focus{border-color:var(--purple-50)!important}.focus\\:border-purple-100:focus{border-color:var(--purple-100)!important}.focus\\:border-purple-200:focus{border-color:var(--purple-200)!important}.focus\\:border-purple-300:focus{border-color:var(--purple-300)!important}.focus\\:border-purple-400:focus{border-color:var(--purple-400)!important}.focus\\:border-purple-500:focus{border-color:var(--purple-500)!important}.focus\\:border-purple-600:focus{border-color:var(--purple-600)!important}.focus\\:border-purple-700:focus{border-color:var(--purple-700)!important}.focus\\:border-purple-800:focus{border-color:var(--purple-800)!important}.focus\\:border-purple-900:focus{border-color:var(--purple-900)!important}.hover\\:border-purple-50:hover{border-color:var(--purple-50)!important}.hover\\:border-purple-100:hover{border-color:var(--purple-100)!important}.hover\\:border-purple-200:hover{border-color:var(--purple-200)!important}.hover\\:border-purple-300:hover{border-color:var(--purple-300)!important}.hover\\:border-purple-400:hover{border-color:var(--purple-400)!important}.hover\\:border-purple-500:hover{border-color:var(--purple-500)!important}.hover\\:border-purple-600:hover{border-color:var(--purple-600)!important}.hover\\:border-purple-700:hover{border-color:var(--purple-700)!important}.hover\\:border-purple-800:hover{border-color:var(--purple-800)!important}.hover\\:border-purple-900:hover{border-color:var(--purple-900)!important}.active\\:border-purple-50:active{border-color:var(--purple-50)!important}.active\\:border-purple-100:active{border-color:var(--purple-100)!important}.active\\:border-purple-200:active{border-color:var(--purple-200)!important}.active\\:border-purple-300:active{border-color:var(--purple-300)!important}.active\\:border-purple-400:active{border-color:var(--purple-400)!important}.active\\:border-purple-500:active{border-color:var(--purple-500)!important}.active\\:border-purple-600:active{border-color:var(--purple-600)!important}.active\\:border-purple-700:active{border-color:var(--purple-700)!important}.active\\:border-purple-800:active{border-color:var(--purple-800)!important}.active\\:border-purple-900:active{border-color:var(--purple-900)!important}.border-gray-50{border-color:var(--gray-50)!important}.border-gray-100{border-color:var(--gray-100)!important}.border-gray-200{border-color:var(--gray-200)!important}.border-gray-300{border-color:var(--gray-300)!important}.border-gray-400{border-color:var(--gray-400)!important}.border-gray-500{border-color:var(--gray-500)!important}.border-gray-600{border-color:var(--gray-600)!important}.border-gray-700{border-color:var(--gray-700)!important}.border-gray-800{border-color:var(--gray-800)!important}.border-gray-900{border-color:var(--gray-900)!important}.focus\\:border-gray-50:focus{border-color:var(--gray-50)!important}.focus\\:border-gray-100:focus{border-color:var(--gray-100)!important}.focus\\:border-gray-200:focus{border-color:var(--gray-200)!important}.focus\\:border-gray-300:focus{border-color:var(--gray-300)!important}.focus\\:border-gray-400:focus{border-color:var(--gray-400)!important}.focus\\:border-gray-500:focus{border-color:var(--gray-500)!important}.focus\\:border-gray-600:focus{border-color:var(--gray-600)!important}.focus\\:border-gray-700:focus{border-color:var(--gray-700)!important}.focus\\:border-gray-800:focus{border-color:var(--gray-800)!important}.focus\\:border-gray-900:focus{border-color:var(--gray-900)!important}.hover\\:border-gray-50:hover{border-color:var(--gray-50)!important}.hover\\:border-gray-100:hover{border-color:var(--gray-100)!important}.hover\\:border-gray-200:hover{border-color:var(--gray-200)!important}.hover\\:border-gray-300:hover{border-color:var(--gray-300)!important}.hover\\:border-gray-400:hover{border-color:var(--gray-400)!important}.hover\\:border-gray-500:hover{border-color:var(--gray-500)!important}.hover\\:border-gray-600:hover{border-color:var(--gray-600)!important}.hover\\:border-gray-700:hover{border-color:var(--gray-700)!important}.hover\\:border-gray-800:hover{border-color:var(--gray-800)!important}.hover\\:border-gray-900:hover{border-color:var(--gray-900)!important}.active\\:border-gray-50:active{border-color:var(--gray-50)!important}.active\\:border-gray-100:active{border-color:var(--gray-100)!important}.active\\:border-gray-200:active{border-color:var(--gray-200)!important}.active\\:border-gray-300:active{border-color:var(--gray-300)!important}.active\\:border-gray-400:active{border-color:var(--gray-400)!important}.active\\:border-gray-500:active{border-color:var(--gray-500)!important}.active\\:border-gray-600:active{border-color:var(--gray-600)!important}.active\\:border-gray-700:active{border-color:var(--gray-700)!important}.active\\:border-gray-800:active{border-color:var(--gray-800)!important}.active\\:border-gray-900:active{border-color:var(--gray-900)!important}.border-red-50{border-color:var(--red-50)!important}.border-red-100{border-color:var(--red-100)!important}.border-red-200{border-color:var(--red-200)!important}.border-red-300{border-color:var(--red-300)!important}.border-red-400{border-color:var(--red-400)!important}.border-red-500{border-color:var(--red-500)!important}.border-red-600{border-color:var(--red-600)!important}.border-red-700{border-color:var(--red-700)!important}.border-red-800{border-color:var(--red-800)!important}.border-red-900{border-color:var(--red-900)!important}.focus\\:border-red-50:focus{border-color:var(--red-50)!important}.focus\\:border-red-100:focus{border-color:var(--red-100)!important}.focus\\:border-red-200:focus{border-color:var(--red-200)!important}.focus\\:border-red-300:focus{border-color:var(--red-300)!important}.focus\\:border-red-400:focus{border-color:var(--red-400)!important}.focus\\:border-red-500:focus{border-color:var(--red-500)!important}.focus\\:border-red-600:focus{border-color:var(--red-600)!important}.focus\\:border-red-700:focus{border-color:var(--red-700)!important}.focus\\:border-red-800:focus{border-color:var(--red-800)!important}.focus\\:border-red-900:focus{border-color:var(--red-900)!important}.hover\\:border-red-50:hover{border-color:var(--red-50)!important}.hover\\:border-red-100:hover{border-color:var(--red-100)!important}.hover\\:border-red-200:hover{border-color:var(--red-200)!important}.hover\\:border-red-300:hover{border-color:var(--red-300)!important}.hover\\:border-red-400:hover{border-color:var(--red-400)!important}.hover\\:border-red-500:hover{border-color:var(--red-500)!important}.hover\\:border-red-600:hover{border-color:var(--red-600)!important}.hover\\:border-red-700:hover{border-color:var(--red-700)!important}.hover\\:border-red-800:hover{border-color:var(--red-800)!important}.hover\\:border-red-900:hover{border-color:var(--red-900)!important}.active\\:border-red-50:active{border-color:var(--red-50)!important}.active\\:border-red-100:active{border-color:var(--red-100)!important}.active\\:border-red-200:active{border-color:var(--red-200)!important}.active\\:border-red-300:active{border-color:var(--red-300)!important}.active\\:border-red-400:active{border-color:var(--red-400)!important}.active\\:border-red-500:active{border-color:var(--red-500)!important}.active\\:border-red-600:active{border-color:var(--red-600)!important}.active\\:border-red-700:active{border-color:var(--red-700)!important}.active\\:border-red-800:active{border-color:var(--red-800)!important}.active\\:border-red-900:active{border-color:var(--red-900)!important}.border-primary-50{border-color:var(--primary-50)!important}.border-primary-100{border-color:var(--primary-100)!important}.border-primary-200{border-color:var(--primary-200)!important}.border-primary-300{border-color:var(--primary-300)!important}.border-primary-400{border-color:var(--primary-400)!important}.border-primary-500{border-color:var(--primary-500)!important}.border-primary-600{border-color:var(--primary-600)!important}.border-primary-700{border-color:var(--primary-700)!important}.border-primary-800{border-color:var(--primary-800)!important}.border-primary-900{border-color:var(--primary-900)!important}.focus\\:border-primary-50:focus{border-color:var(--primary-50)!important}.focus\\:border-primary-100:focus{border-color:var(--primary-100)!important}.focus\\:border-primary-200:focus{border-color:var(--primary-200)!important}.focus\\:border-primary-300:focus{border-color:var(--primary-300)!important}.focus\\:border-primary-400:focus{border-color:var(--primary-400)!important}.focus\\:border-primary-500:focus{border-color:var(--primary-500)!important}.focus\\:border-primary-600:focus{border-color:var(--primary-600)!important}.focus\\:border-primary-700:focus{border-color:var(--primary-700)!important}.focus\\:border-primary-800:focus{border-color:var(--primary-800)!important}.focus\\:border-primary-900:focus{border-color:var(--primary-900)!important}.hover\\:border-primary-50:hover{border-color:var(--primary-50)!important}.hover\\:border-primary-100:hover{border-color:var(--primary-100)!important}.hover\\:border-primary-200:hover{border-color:var(--primary-200)!important}.hover\\:border-primary-300:hover{border-color:var(--primary-300)!important}.hover\\:border-primary-400:hover{border-color:var(--primary-400)!important}.hover\\:border-primary-500:hover{border-color:var(--primary-500)!important}.hover\\:border-primary-600:hover{border-color:var(--primary-600)!important}.hover\\:border-primary-700:hover{border-color:var(--primary-700)!important}.hover\\:border-primary-800:hover{border-color:var(--primary-800)!important}.hover\\:border-primary-900:hover{border-color:var(--primary-900)!important}.active\\:border-primary-50:active{border-color:var(--primary-50)!important}.active\\:border-primary-100:active{border-color:var(--primary-100)!important}.active\\:border-primary-200:active{border-color:var(--primary-200)!important}.active\\:border-primary-300:active{border-color:var(--primary-300)!important}.active\\:border-primary-400:active{border-color:var(--primary-400)!important}.active\\:border-primary-500:active{border-color:var(--primary-500)!important}.active\\:border-primary-600:active{border-color:var(--primary-600)!important}.active\\:border-primary-700:active{border-color:var(--primary-700)!important}.active\\:border-primary-800:active{border-color:var(--primary-800)!important}.active\\:border-primary-900:active{border-color:var(--primary-900)!important}.bg-white-alpha-10{background-color:#ffffff1a!important}.bg-white-alpha-20{background-color:#fff3!important}.bg-white-alpha-30{background-color:#ffffff4d!important}.bg-white-alpha-40{background-color:#fff6!important}.bg-white-alpha-50{background-color:#ffffff80!important}.bg-white-alpha-60{background-color:#fff9!important}.bg-white-alpha-70{background-color:#ffffffb3!important}.bg-white-alpha-80{background-color:#fffc!important}.bg-white-alpha-90{background-color:#ffffffe6!important}.hover\\:bg-white-alpha-10:hover{background-color:#ffffff1a!important}.hover\\:bg-white-alpha-20:hover{background-color:#fff3!important}.hover\\:bg-white-alpha-30:hover{background-color:#ffffff4d!important}.hover\\:bg-white-alpha-40:hover{background-color:#fff6!important}.hover\\:bg-white-alpha-50:hover{background-color:#ffffff80!important}.hover\\:bg-white-alpha-60:hover{background-color:#fff9!important}.hover\\:bg-white-alpha-70:hover{background-color:#ffffffb3!important}.hover\\:bg-white-alpha-80:hover{background-color:#fffc!important}.hover\\:bg-white-alpha-90:hover{background-color:#ffffffe6!important}.focus\\:bg-white-alpha-10:focus{background-color:#ffffff1a!important}.focus\\:bg-white-alpha-20:focus{background-color:#fff3!important}.focus\\:bg-white-alpha-30:focus{background-color:#ffffff4d!important}.focus\\:bg-white-alpha-40:focus{background-color:#fff6!important}.focus\\:bg-white-alpha-50:focus{background-color:#ffffff80!important}.focus\\:bg-white-alpha-60:focus{background-color:#fff9!important}.focus\\:bg-white-alpha-70:focus{background-color:#ffffffb3!important}.focus\\:bg-white-alpha-80:focus{background-color:#fffc!important}.focus\\:bg-white-alpha-90:focus{background-color:#ffffffe6!important}.active\\:bg-white-alpha-10:active{background-color:#ffffff1a!important}.active\\:bg-white-alpha-20:active{background-color:#fff3!important}.active\\:bg-white-alpha-30:active{background-color:#ffffff4d!important}.active\\:bg-white-alpha-40:active{background-color:#fff6!important}.active\\:bg-white-alpha-50:active{background-color:#ffffff80!important}.active\\:bg-white-alpha-60:active{background-color:#fff9!important}.active\\:bg-white-alpha-70:active{background-color:#ffffffb3!important}.active\\:bg-white-alpha-80:active{background-color:#fffc!important}.active\\:bg-white-alpha-90:active{background-color:#ffffffe6!important}.bg-black-alpha-10{background-color:#0000001a!important}.bg-black-alpha-20{background-color:#0003!important}.bg-black-alpha-30{background-color:#0000004d!important}.bg-black-alpha-40{background-color:#0006!important}.bg-black-alpha-50{background-color:#00000080!important}.bg-black-alpha-60{background-color:#0009!important}.bg-black-alpha-70{background-color:#000000b3!important}.bg-black-alpha-80{background-color:#000c!important}.bg-black-alpha-90{background-color:#000000e6!important}.hover\\:bg-black-alpha-10:hover{background-color:#0000001a!important}.hover\\:bg-black-alpha-20:hover{background-color:#0003!important}.hover\\:bg-black-alpha-30:hover{background-color:#0000004d!important}.hover\\:bg-black-alpha-40:hover{background-color:#0006!important}.hover\\:bg-black-alpha-50:hover{background-color:#00000080!important}.hover\\:bg-black-alpha-60:hover{background-color:#0009!important}.hover\\:bg-black-alpha-70:hover{background-color:#000000b3!important}.hover\\:bg-black-alpha-80:hover{background-color:#000c!important}.hover\\:bg-black-alpha-90:hover{background-color:#000000e6!important}.focus\\:bg-black-alpha-10:focus{background-color:#0000001a!important}.focus\\:bg-black-alpha-20:focus{background-color:#0003!important}.focus\\:bg-black-alpha-30:focus{background-color:#0000004d!important}.focus\\:bg-black-alpha-40:focus{background-color:#0006!important}.focus\\:bg-black-alpha-50:focus{background-color:#00000080!important}.focus\\:bg-black-alpha-60:focus{background-color:#0009!important}.focus\\:bg-black-alpha-70:focus{background-color:#000000b3!important}.focus\\:bg-black-alpha-80:focus{background-color:#000c!important}.focus\\:bg-black-alpha-90:focus{background-color:#000000e6!important}.active\\:bg-black-alpha-10:active{background-color:#0000001a!important}.active\\:bg-black-alpha-20:active{background-color:#0003!important}.active\\:bg-black-alpha-30:active{background-color:#0000004d!important}.active\\:bg-black-alpha-40:active{background-color:#0006!important}.active\\:bg-black-alpha-50:active{background-color:#00000080!important}.active\\:bg-black-alpha-60:active{background-color:#0009!important}.active\\:bg-black-alpha-70:active{background-color:#000000b3!important}.active\\:bg-black-alpha-80:active{background-color:#000c!important}.active\\:bg-black-alpha-90:active{background-color:#000000e6!important}.border-white-alpha-10{border-color:#ffffff1a!important}.border-white-alpha-20{border-color:#fff3!important}.border-white-alpha-30{border-color:#ffffff4d!important}.border-white-alpha-40{border-color:#fff6!important}.border-white-alpha-50{border-color:#ffffff80!important}.border-white-alpha-60{border-color:#fff9!important}.border-white-alpha-70{border-color:#ffffffb3!important}.border-white-alpha-80{border-color:#fffc!important}.border-white-alpha-90{border-color:#ffffffe6!important}.hover\\:border-white-alpha-10:hover{border-color:#ffffff1a!important}.hover\\:border-white-alpha-20:hover{border-color:#fff3!important}.hover\\:border-white-alpha-30:hover{border-color:#ffffff4d!important}.hover\\:border-white-alpha-40:hover{border-color:#fff6!important}.hover\\:border-white-alpha-50:hover{border-color:#ffffff80!important}.hover\\:border-white-alpha-60:hover{border-color:#fff9!important}.hover\\:border-white-alpha-70:hover{border-color:#ffffffb3!important}.hover\\:border-white-alpha-80:hover{border-color:#fffc!important}.hover\\:border-white-alpha-90:hover{border-color:#ffffffe6!important}.focus\\:border-white-alpha-10:focus{border-color:#ffffff1a!important}.focus\\:border-white-alpha-20:focus{border-color:#fff3!important}.focus\\:border-white-alpha-30:focus{border-color:#ffffff4d!important}.focus\\:border-white-alpha-40:focus{border-color:#fff6!important}.focus\\:border-white-alpha-50:focus{border-color:#ffffff80!important}.focus\\:border-white-alpha-60:focus{border-color:#fff9!important}.focus\\:border-white-alpha-70:focus{border-color:#ffffffb3!important}.focus\\:border-white-alpha-80:focus{border-color:#fffc!important}.focus\\:border-white-alpha-90:focus{border-color:#ffffffe6!important}.active\\:border-white-alpha-10:active{border-color:#ffffff1a!important}.active\\:border-white-alpha-20:active{border-color:#fff3!important}.active\\:border-white-alpha-30:active{border-color:#ffffff4d!important}.active\\:border-white-alpha-40:active{border-color:#fff6!important}.active\\:border-white-alpha-50:active{border-color:#ffffff80!important}.active\\:border-white-alpha-60:active{border-color:#fff9!important}.active\\:border-white-alpha-70:active{border-color:#ffffffb3!important}.active\\:border-white-alpha-80:active{border-color:#fffc!important}.active\\:border-white-alpha-90:active{border-color:#ffffffe6!important}.border-black-alpha-10{border-color:#0000001a!important}.border-black-alpha-20{border-color:#0003!important}.border-black-alpha-30{border-color:#0000004d!important}.border-black-alpha-40{border-color:#0006!important}.border-black-alpha-50{border-color:#00000080!important}.border-black-alpha-60{border-color:#0009!important}.border-black-alpha-70{border-color:#000000b3!important}.border-black-alpha-80{border-color:#000c!important}.border-black-alpha-90{border-color:#000000e6!important}.hover\\:border-black-alpha-10:hover{border-color:#0000001a!important}.hover\\:border-black-alpha-20:hover{border-color:#0003!important}.hover\\:border-black-alpha-30:hover{border-color:#0000004d!important}.hover\\:border-black-alpha-40:hover{border-color:#0006!important}.hover\\:border-black-alpha-50:hover{border-color:#00000080!important}.hover\\:border-black-alpha-60:hover{border-color:#0009!important}.hover\\:border-black-alpha-70:hover{border-color:#000000b3!important}.hover\\:border-black-alpha-80:hover{border-color:#000c!important}.hover\\:border-black-alpha-90:hover{border-color:#000000e6!important}.focus\\:border-black-alpha-10:focus{border-color:#0000001a!important}.focus\\:border-black-alpha-20:focus{border-color:#0003!important}.focus\\:border-black-alpha-30:focus{border-color:#0000004d!important}.focus\\:border-black-alpha-40:focus{border-color:#0006!important}.focus\\:border-black-alpha-50:focus{border-color:#00000080!important}.focus\\:border-black-alpha-60:focus{border-color:#0009!important}.focus\\:border-black-alpha-70:focus{border-color:#000000b3!important}.focus\\:border-black-alpha-80:focus{border-color:#000c!important}.focus\\:border-black-alpha-90:focus{border-color:#000000e6!important}.active\\:border-black-alpha-10:active{border-color:#0000001a!important}.active\\:border-black-alpha-20:active{border-color:#0003!important}.active\\:border-black-alpha-30:active{border-color:#0000004d!important}.active\\:border-black-alpha-40:active{border-color:#0006!important}.active\\:border-black-alpha-50:active{border-color:#00000080!important}.active\\:border-black-alpha-60:active{border-color:#0009!important}.active\\:border-black-alpha-70:active{border-color:#000000b3!important}.active\\:border-black-alpha-80:active{border-color:#000c!important}.active\\:border-black-alpha-90:active{border-color:#000000e6!important}.text-white-alpha-10{color:#ffffff1a!important}.text-white-alpha-20{color:#fff3!important}.text-white-alpha-30{color:#ffffff4d!important}.text-white-alpha-40{color:#fff6!important}.text-white-alpha-50{color:#ffffff80!important}.text-white-alpha-60{color:#fff9!important}.text-white-alpha-70{color:#ffffffb3!important}.text-white-alpha-80{color:#fffc!important}.text-white-alpha-90{color:#ffffffe6!important}.hover\\:text-white-alpha-10:hover{color:#ffffff1a!important}.hover\\:text-white-alpha-20:hover{color:#fff3!important}.hover\\:text-white-alpha-30:hover{color:#ffffff4d!important}.hover\\:text-white-alpha-40:hover{color:#fff6!important}.hover\\:text-white-alpha-50:hover{color:#ffffff80!important}.hover\\:text-white-alpha-60:hover{color:#fff9!important}.hover\\:text-white-alpha-70:hover{color:#ffffffb3!important}.hover\\:text-white-alpha-80:hover{color:#fffc!important}.hover\\:text-white-alpha-90:hover{color:#ffffffe6!important}.focus\\:text-white-alpha-10:focus{color:#ffffff1a!important}.focus\\:text-white-alpha-20:focus{color:#fff3!important}.focus\\:text-white-alpha-30:focus{color:#ffffff4d!important}.focus\\:text-white-alpha-40:focus{color:#fff6!important}.focus\\:text-white-alpha-50:focus{color:#ffffff80!important}.focus\\:text-white-alpha-60:focus{color:#fff9!important}.focus\\:text-white-alpha-70:focus{color:#ffffffb3!important}.focus\\:text-white-alpha-80:focus{color:#fffc!important}.focus\\:text-white-alpha-90:focus{color:#ffffffe6!important}.active\\:text-white-alpha-10:active{color:#ffffff1a!important}.active\\:text-white-alpha-20:active{color:#fff3!important}.active\\:text-white-alpha-30:active{color:#ffffff4d!important}.active\\:text-white-alpha-40:active{color:#fff6!important}.active\\:text-white-alpha-50:active{color:#ffffff80!important}.active\\:text-white-alpha-60:active{color:#fff9!important}.active\\:text-white-alpha-70:active{color:#ffffffb3!important}.active\\:text-white-alpha-80:active{color:#fffc!important}.active\\:text-white-alpha-90:active{color:#ffffffe6!important}.text-black-alpha-10{color:#0000001a!important}.text-black-alpha-20{color:#0003!important}.text-black-alpha-30{color:#0000004d!important}.text-black-alpha-40{color:#0006!important}.text-black-alpha-50{color:#00000080!important}.text-black-alpha-60{color:#0009!important}.text-black-alpha-70{color:#000000b3!important}.text-black-alpha-80{color:#000c!important}.text-black-alpha-90{color:#000000e6!important}.hover\\:text-black-alpha-10:hover{color:#0000001a!important}.hover\\:text-black-alpha-20:hover{color:#0003!important}.hover\\:text-black-alpha-30:hover{color:#0000004d!important}.hover\\:text-black-alpha-40:hover{color:#0006!important}.hover\\:text-black-alpha-50:hover{color:#00000080!important}.hover\\:text-black-alpha-60:hover{color:#0009!important}.hover\\:text-black-alpha-70:hover{color:#000000b3!important}.hover\\:text-black-alpha-80:hover{color:#000c!important}.hover\\:text-black-alpha-90:hover{color:#000000e6!important}.focus\\:text-black-alpha-10:focus{color:#0000001a!important}.focus\\:text-black-alpha-20:focus{color:#0003!important}.focus\\:text-black-alpha-30:focus{color:#0000004d!important}.focus\\:text-black-alpha-40:focus{color:#0006!important}.focus\\:text-black-alpha-50:focus{color:#00000080!important}.focus\\:text-black-alpha-60:focus{color:#0009!important}.focus\\:text-black-alpha-70:focus{color:#000000b3!important}.focus\\:text-black-alpha-80:focus{color:#000c!important}.focus\\:text-black-alpha-90:focus{color:#000000e6!important}.active\\:text-black-alpha-10:active{color:#0000001a!important}.active\\:text-black-alpha-20:active{color:#0003!important}.active\\:text-black-alpha-30:active{color:#0000004d!important}.active\\:text-black-alpha-40:active{color:#0006!important}.active\\:text-black-alpha-50:active{color:#00000080!important}.active\\:text-black-alpha-60:active{color:#0009!important}.active\\:text-black-alpha-70:active{color:#000000b3!important}.active\\:text-black-alpha-80:active{color:#000c!important}.active\\:text-black-alpha-90:active{color:#000000e6!important}.text-primary{color:var(--primary-color)!important}.bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.bg-white{background-color:#fff!important}.border-primary{border-color:var(--primary-color)!important}.text-white{color:#fff!important}.border-white{border-color:#fff!important}.text-color{color:var(--text-color)!important}.text-color-secondary{color:var(--text-color-secondary)!important}.surface-ground{background-color:var(--surface-ground)!important}.surface-section{background-color:var(--surface-section)!important}.surface-card{background-color:var(--surface-card)!important}.surface-overlay{background-color:var(--surface-overlay)!important}.surface-hover{background-color:var(--surface-hover)!important}.surface-border{border-color:var(--surface-border)!important}.focus\\:text-primary:focus{color:var(--primary-color)!important}.hover\\:text-primary:hover,.active\\:text-primary:active{color:var(--primary-color)!important}.focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.hover\\:bg-primary:hover,.active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.hover\\:bg-primary-reverse:hover,.active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.focus\\:bg-white:focus{background-color:#fff!important}.hover\\:bg-white:hover,.active\\:bg-white:active{background-color:#fff!important}.focus\\:border-primary:focus{border-color:var(--primary-color)!important}.hover\\:border-primary:hover,.active\\:border-primary:active{border-color:var(--primary-color)!important}.focus\\:text-white:focus{color:#fff!important}.hover\\:text-white:hover,.active\\:text-white:active{color:#fff!important}.focus\\:border-white:focus{border-color:#fff!important}.hover\\:border-white:hover,.active\\:border-white:active{border-color:#fff!important}.focus\\:text-color:focus{color:var(--text-color)!important}.hover\\:text-color:hover,.active\\:text-color:active{color:var(--text-color)!important}.focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.hover\\:text-color-secondary:hover,.active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.hover\\:surface-ground:hover,.active\\:surface-ground:active{background-color:var(--surface-ground)!important}.focus\\:surface-section:focus{background-color:var(--surface-section)!important}.hover\\:surface-section:hover,.active\\:surface-section:active{background-color:var(--surface-section)!important}.focus\\:surface-card:focus{background-color:var(--surface-card)!important}.hover\\:surface-card:hover,.active\\:surface-card:active{background-color:var(--surface-card)!important}.focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.hover\\:surface-overlay:hover,.active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.hover\\:surface-hover:hover,.active\\:surface-hover:active{background-color:var(--surface-hover)!important}.focus\\:surface-border:focus{border-color:var(--surface-border)!important}.hover\\:surface-border:hover,.active\\:surface-border:active{border-color:var(--surface-border)!important}@media screen and (min-width: 576px){.sm\\:text-primary{color:var(--primary-color)!important}.sm\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:bg-white{background-color:#fff!important}.sm\\:border-primary{border-color:var(--primary-color)!important}.sm\\:text-white{color:#fff!important}.sm\\:border-white{border-color:#fff!important}.sm\\:text-color{color:var(--text-color)!important}.sm\\:text-color-secondary{color:var(--text-color-secondary)!important}.sm\\:surface-ground{background-color:var(--surface-ground)!important}.sm\\:surface-section{background-color:var(--surface-section)!important}.sm\\:surface-card{background-color:var(--surface-card)!important}.sm\\:surface-overlay{background-color:var(--surface-overlay)!important}.sm\\:surface-hover{background-color:var(--surface-hover)!important}.sm\\:surface-border{border-color:var(--surface-border)!important}.sm\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.sm\\:hover\\:text-primary:hover,.sm\\:active\\:text-primary:active{color:var(--primary-color)!important}.sm\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:hover\\:bg-primary:hover,.sm\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:hover\\:bg-primary-reverse:hover,.sm\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:focus\\:bg-white:focus{background-color:#fff!important}.sm\\:hover\\:bg-white:hover,.sm\\:active\\:bg-white:active{background-color:#fff!important}.sm\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.sm\\:hover\\:border-primary:hover,.sm\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.sm\\:focus\\:text-white:focus{color:#fff!important}.sm\\:hover\\:text-white:hover,.sm\\:active\\:text-white:active{color:#fff!important}.sm\\:focus\\:border-white:focus{border-color:#fff!important}.sm\\:hover\\:border-white:hover,.sm\\:active\\:border-white:active{border-color:#fff!important}.sm\\:focus\\:text-color:focus{color:var(--text-color)!important}.sm\\:hover\\:text-color:hover,.sm\\:active\\:text-color:active{color:var(--text-color)!important}.sm\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.sm\\:hover\\:text-color-secondary:hover,.sm\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.sm\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.sm\\:hover\\:surface-ground:hover,.sm\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.sm\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.sm\\:hover\\:surface-section:hover,.sm\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.sm\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.sm\\:hover\\:surface-card:hover,.sm\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.sm\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.sm\\:hover\\:surface-overlay:hover,.sm\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.sm\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.sm\\:hover\\:surface-hover:hover,.sm\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.sm\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.sm\\:hover\\:surface-border:hover,.sm\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 768px){.md\\:text-primary{color:var(--primary-color)!important}.md\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:bg-white{background-color:#fff!important}.md\\:border-primary{border-color:var(--primary-color)!important}.md\\:text-white{color:#fff!important}.md\\:border-white{border-color:#fff!important}.md\\:text-color{color:var(--text-color)!important}.md\\:text-color-secondary{color:var(--text-color-secondary)!important}.md\\:surface-ground{background-color:var(--surface-ground)!important}.md\\:surface-section{background-color:var(--surface-section)!important}.md\\:surface-card{background-color:var(--surface-card)!important}.md\\:surface-overlay{background-color:var(--surface-overlay)!important}.md\\:surface-hover{background-color:var(--surface-hover)!important}.md\\:surface-border{border-color:var(--surface-border)!important}.md\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.md\\:hover\\:text-primary:hover,.md\\:active\\:text-primary:active{color:var(--primary-color)!important}.md\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:hover\\:bg-primary:hover,.md\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:hover\\:bg-primary-reverse:hover,.md\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:focus\\:bg-white:focus{background-color:#fff!important}.md\\:hover\\:bg-white:hover,.md\\:active\\:bg-white:active{background-color:#fff!important}.md\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.md\\:hover\\:border-primary:hover,.md\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.md\\:focus\\:text-white:focus{color:#fff!important}.md\\:hover\\:text-white:hover,.md\\:active\\:text-white:active{color:#fff!important}.md\\:focus\\:border-white:focus{border-color:#fff!important}.md\\:hover\\:border-white:hover,.md\\:active\\:border-white:active{border-color:#fff!important}.md\\:focus\\:text-color:focus{color:var(--text-color)!important}.md\\:hover\\:text-color:hover,.md\\:active\\:text-color:active{color:var(--text-color)!important}.md\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.md\\:hover\\:text-color-secondary:hover,.md\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.md\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.md\\:hover\\:surface-ground:hover,.md\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.md\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.md\\:hover\\:surface-section:hover,.md\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.md\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.md\\:hover\\:surface-card:hover,.md\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.md\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.md\\:hover\\:surface-overlay:hover,.md\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.md\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.md\\:hover\\:surface-hover:hover,.md\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.md\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.md\\:hover\\:surface-border:hover,.md\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 992px){.lg\\:text-primary{color:var(--primary-color)!important}.lg\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:bg-white{background-color:#fff!important}.lg\\:border-primary{border-color:var(--primary-color)!important}.lg\\:text-white{color:#fff!important}.lg\\:border-white{border-color:#fff!important}.lg\\:text-color{color:var(--text-color)!important}.lg\\:text-color-secondary{color:var(--text-color-secondary)!important}.lg\\:surface-ground{background-color:var(--surface-ground)!important}.lg\\:surface-section{background-color:var(--surface-section)!important}.lg\\:surface-card{background-color:var(--surface-card)!important}.lg\\:surface-overlay{background-color:var(--surface-overlay)!important}.lg\\:surface-hover{background-color:var(--surface-hover)!important}.lg\\:surface-border{border-color:var(--surface-border)!important}.lg\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.lg\\:hover\\:text-primary:hover,.lg\\:active\\:text-primary:active{color:var(--primary-color)!important}.lg\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:hover\\:bg-primary:hover,.lg\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:hover\\:bg-primary-reverse:hover,.lg\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:focus\\:bg-white:focus{background-color:#fff!important}.lg\\:hover\\:bg-white:hover,.lg\\:active\\:bg-white:active{background-color:#fff!important}.lg\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.lg\\:hover\\:border-primary:hover,.lg\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.lg\\:focus\\:text-white:focus{color:#fff!important}.lg\\:hover\\:text-white:hover,.lg\\:active\\:text-white:active{color:#fff!important}.lg\\:focus\\:border-white:focus{border-color:#fff!important}.lg\\:hover\\:border-white:hover,.lg\\:active\\:border-white:active{border-color:#fff!important}.lg\\:focus\\:text-color:focus{color:var(--text-color)!important}.lg\\:hover\\:text-color:hover,.lg\\:active\\:text-color:active{color:var(--text-color)!important}.lg\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.lg\\:hover\\:text-color-secondary:hover,.lg\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.lg\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.lg\\:hover\\:surface-ground:hover,.lg\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.lg\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.lg\\:hover\\:surface-section:hover,.lg\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.lg\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.lg\\:hover\\:surface-card:hover,.lg\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.lg\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.lg\\:hover\\:surface-overlay:hover,.lg\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.lg\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.lg\\:hover\\:surface-hover:hover,.lg\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.lg\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.lg\\:hover\\:surface-border:hover,.lg\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 1200px){.xl\\:text-primary{color:var(--primary-color)!important}.xl\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:bg-white{background-color:#fff!important}.xl\\:border-primary{border-color:var(--primary-color)!important}.xl\\:text-white{color:#fff!important}.xl\\:border-white{border-color:#fff!important}.xl\\:text-color{color:var(--text-color)!important}.xl\\:text-color-secondary{color:var(--text-color-secondary)!important}.xl\\:surface-ground{background-color:var(--surface-ground)!important}.xl\\:surface-section{background-color:var(--surface-section)!important}.xl\\:surface-card{background-color:var(--surface-card)!important}.xl\\:surface-overlay{background-color:var(--surface-overlay)!important}.xl\\:surface-hover{background-color:var(--surface-hover)!important}.xl\\:surface-border{border-color:var(--surface-border)!important}.xl\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.xl\\:hover\\:text-primary:hover,.xl\\:active\\:text-primary:active{color:var(--primary-color)!important}.xl\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:hover\\:bg-primary:hover,.xl\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:hover\\:bg-primary-reverse:hover,.xl\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:focus\\:bg-white:focus{background-color:#fff!important}.xl\\:hover\\:bg-white:hover,.xl\\:active\\:bg-white:active{background-color:#fff!important}.xl\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.xl\\:hover\\:border-primary:hover,.xl\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.xl\\:focus\\:text-white:focus{color:#fff!important}.xl\\:hover\\:text-white:hover,.xl\\:active\\:text-white:active{color:#fff!important}.xl\\:focus\\:border-white:focus{border-color:#fff!important}.xl\\:hover\\:border-white:hover,.xl\\:active\\:border-white:active{border-color:#fff!important}.xl\\:focus\\:text-color:focus{color:var(--text-color)!important}.xl\\:hover\\:text-color:hover,.xl\\:active\\:text-color:active{color:var(--text-color)!important}.xl\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.xl\\:hover\\:text-color-secondary:hover,.xl\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.xl\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.xl\\:hover\\:surface-ground:hover,.xl\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.xl\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.xl\\:hover\\:surface-section:hover,.xl\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.xl\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.xl\\:hover\\:surface-card:hover,.xl\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.xl\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.xl\\:hover\\:surface-overlay:hover,.xl\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.xl\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.xl\\:hover\\:surface-hover:hover,.xl\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.xl\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.xl\\:hover\\:surface-border:hover,.xl\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}.field{margin-bottom:1rem}.field>label{display:inline-block;margin-bottom:.5rem}.field.grid>label{display:flex;align-items:center}.field>small{margin-top:.25rem}.field.grid,.formgrid.grid{margin-top:0}.field.grid .col-fixed,.formgrid.grid .col-fixed,.field.grid .col,.formgrid.grid .col,.field.grid .col-1,.formgrid.grid .col-1,.field.grid .col-2,.formgrid.grid .col-2,.field.grid .col-3,.formgrid.grid .col-3,.field.grid .col-4,.formgrid.grid .col-4,.field.grid .col-5,.formgrid.grid .col-5,.field.grid .col-6,.formgrid.grid .col-6,.field.grid .col-7,.formgrid.grid .col-7,.field.grid .col-8,.formgrid.grid .col-8,.field.grid .col-9,.formgrid.grid .col-9,.field.grid .col-10,.formgrid.grid .col-10,.field.grid .col-11,.formgrid.grid .col-11,.field.grid .col-12,.formgrid.grid .col-12{padding-top:0;padding-bottom:0}.formgroup-inline{display:flex;flex-wrap:wrap;align-items:flex-start}.formgroup-inline .field,.formgroup-inline .field-checkbox,.formgroup-inline .field-radiobutton{margin-right:1rem}.formgroup-inline .field>label,.formgroup-inline .field-checkbox>label,.formgroup-inline .field-radiobutton>label{margin-right:.5rem;margin-bottom:0}.field-checkbox,.field-radiobutton{margin-bottom:1rem;display:flex;align-items:center}.field-checkbox>label,.field-radiobutton>label{margin-left:.5rem;line-height:1}.hidden{display:none!important}.block{display:block!important}.inline{display:inline!important}.inline-block{display:inline-block!important}.flex{display:flex!important}.inline-flex{display:inline-flex!important}@media screen and (min-width: 576px){.sm\\:hidden{display:none!important}.sm\\:block{display:block!important}.sm\\:inline{display:inline!important}.sm\\:inline-block{display:inline-block!important}.sm\\:flex{display:flex!important}.sm\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 768px){.md\\:hidden{display:none!important}.md\\:block{display:block!important}.md\\:inline{display:inline!important}.md\\:inline-block{display:inline-block!important}.md\\:flex{display:flex!important}.md\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 992px){.lg\\:hidden{display:none!important}.lg\\:block{display:block!important}.lg\\:inline{display:inline!important}.lg\\:inline-block{display:inline-block!important}.lg\\:flex{display:flex!important}.lg\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 1200px){.xl\\:hidden{display:none!important}.xl\\:block{display:block!important}.xl\\:inline{display:inline!important}.xl\\:inline-block{display:inline-block!important}.xl\\:flex{display:flex!important}.xl\\:inline-flex{display:inline-flex!important}}.text-center{text-align:center!important}.text-justify{text-align:justify!important}.text-left{text-align:left!important}.text-right{text-align:right!important}@media screen and (min-width: 576px){.sm\\:text-center{text-align:center!important}.sm\\:text-justify{text-align:justify!important}.sm\\:text-left{text-align:left!important}.sm\\:text-right{text-align:right!important}}@media screen and (min-width: 768px){.md\\:text-center{text-align:center!important}.md\\:text-justify{text-align:justify!important}.md\\:text-left{text-align:left!important}.md\\:text-right{text-align:right!important}}@media screen and (min-width: 992px){.lg\\:text-center{text-align:center!important}.lg\\:text-justify{text-align:justify!important}.lg\\:text-left{text-align:left!important}.lg\\:text-right{text-align:right!important}}@media screen and (min-width: 1200px){.xl\\:text-center{text-align:center!important}.xl\\:text-justify{text-align:justify!important}.xl\\:text-left{text-align:left!important}.xl\\:text-right{text-align:right!important}}.underline{text-decoration:underline!important}.line-through{text-decoration:line-through!important}.no-underline{text-decoration:none!important}.focus\\:underline:focus{text-decoration:underline!important}.hover\\:underline:hover,.active\\:underline:active{text-decoration:underline!important}.focus\\:line-through:focus{text-decoration:line-through!important}.hover\\:line-through:hover,.active\\:line-through:active{text-decoration:line-through!important}.focus\\:no-underline:focus{text-decoration:none!important}.hover\\:no-underline:hover,.active\\:no-underline:active{text-decoration:none!important}.lowercase{text-transform:lowercase!important}.uppercase{text-transform:uppercase!important}.capitalize{text-transform:capitalize!important}.text-overflow-clip{text-overflow:clip!important}.text-overflow-ellipsis{text-overflow:ellipsis!important}@media screen and (min-width: 576px){.sm\\:text-overflow-clip{text-overflow:clip!important}.sm\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 768px){.md\\:text-overflow-clip{text-overflow:clip!important}.md\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 992px){.lg\\:text-overflow-clip{text-overflow:clip!important}.lg\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 1200px){.xl\\:text-overflow-clip{text-overflow:clip!important}.xl\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}.font-light{font-weight:300!important}.font-normal{font-weight:400!important}.font-medium{font-weight:500!important}.font-semibold{font-weight:600!important}.font-bold{font-weight:700!important}@media screen and (min-width: 576px){.sm\\:font-light{font-weight:300!important}.sm\\:font-normal{font-weight:400!important}.sm\\:font-medium{font-weight:500!important}.sm\\:font-semibold{font-weight:600!important}.sm\\:font-bold{font-weight:700!important}}@media screen and (min-width: 768px){.md\\:font-light{font-weight:300!important}.md\\:font-normal{font-weight:400!important}.md\\:font-medium{font-weight:500!important}.md\\:font-semibold{font-weight:600!important}.md\\:font-bold{font-weight:700!important}}@media screen and (min-width: 992px){.lg\\:font-light{font-weight:300!important}.lg\\:font-normal{font-weight:400!important}.lg\\:font-medium{font-weight:500!important}.lg\\:font-semibold{font-weight:600!important}.lg\\:font-bold{font-weight:700!important}}@media screen and (min-width: 1200px){.xl\\:font-light{font-weight:300!important}.xl\\:font-normal{font-weight:400!important}.xl\\:font-medium{font-weight:500!important}.xl\\:font-semibold{font-weight:600!important}.xl\\:font-bold{font-weight:700!important}}.font-italic{font-style:italic!important}.text-xs{font-size:.75rem!important}.text-sm{font-size:.875rem!important}.text-base{font-size:1rem!important}.text-lg{font-size:1.125rem!important}.text-xl{font-size:1.25rem!important}.text-2xl{font-size:1.5rem!important}.text-3xl{font-size:1.75rem!important}.text-4xl{font-size:2rem!important}.text-5xl{font-size:2.5rem!important}.text-6xl{font-size:3rem!important}.text-7xl{font-size:4rem!important}.text-8xl{font-size:6rem!important}@media screen and (min-width: 576px){.sm\\:text-xs{font-size:.75rem!important}.sm\\:text-sm{font-size:.875rem!important}.sm\\:text-base{font-size:1rem!important}.sm\\:text-lg{font-size:1.125rem!important}.sm\\:text-xl{font-size:1.25rem!important}.sm\\:text-2xl{font-size:1.5rem!important}.sm\\:text-3xl{font-size:1.75rem!important}.sm\\:text-4xl{font-size:2rem!important}.sm\\:text-5xl{font-size:2.5rem!important}.sm\\:text-6xl{font-size:3rem!important}.sm\\:text-7xl{font-size:4rem!important}.sm\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 768px){.md\\:text-xs{font-size:.75rem!important}.md\\:text-sm{font-size:.875rem!important}.md\\:text-base{font-size:1rem!important}.md\\:text-lg{font-size:1.125rem!important}.md\\:text-xl{font-size:1.25rem!important}.md\\:text-2xl{font-size:1.5rem!important}.md\\:text-3xl{font-size:1.75rem!important}.md\\:text-4xl{font-size:2rem!important}.md\\:text-5xl{font-size:2.5rem!important}.md\\:text-6xl{font-size:3rem!important}.md\\:text-7xl{font-size:4rem!important}.md\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 992px){.lg\\:text-xs{font-size:.75rem!important}.lg\\:text-sm{font-size:.875rem!important}.lg\\:text-base{font-size:1rem!important}.lg\\:text-lg{font-size:1.125rem!important}.lg\\:text-xl{font-size:1.25rem!important}.lg\\:text-2xl{font-size:1.5rem!important}.lg\\:text-3xl{font-size:1.75rem!important}.lg\\:text-4xl{font-size:2rem!important}.lg\\:text-5xl{font-size:2.5rem!important}.lg\\:text-6xl{font-size:3rem!important}.lg\\:text-7xl{font-size:4rem!important}.lg\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 1200px){.xl\\:text-xs{font-size:.75rem!important}.xl\\:text-sm{font-size:.875rem!important}.xl\\:text-base{font-size:1rem!important}.xl\\:text-lg{font-size:1.125rem!important}.xl\\:text-xl{font-size:1.25rem!important}.xl\\:text-2xl{font-size:1.5rem!important}.xl\\:text-3xl{font-size:1.75rem!important}.xl\\:text-4xl{font-size:2rem!important}.xl\\:text-5xl{font-size:2.5rem!important}.xl\\:text-6xl{font-size:3rem!important}.xl\\:text-7xl{font-size:4rem!important}.xl\\:text-8xl{font-size:6rem!important}}.line-height-1{line-height:1!important}.line-height-2{line-height:1.25!important}.line-height-3{line-height:1.5!important}.line-height-4{line-height:2!important}.white-space-normal{white-space:normal!important}.white-space-nowrap{white-space:nowrap!important}.vertical-align-baseline{vertical-align:baseline!important}.vertical-align-top{vertical-align:top!important}.vertical-align-middle{vertical-align:middle!important}.vertical-align-bottom{vertical-align:bottom!important}.vertical-align-text-top{vertical-align:text-top!important}.vertical-align-text-bottom{vertical-align:text-bottom!important}.vertical-align-sub{vertical-align:sub!important}.vertical-align-super{vertical-align:super!important}@media screen and (min-width: 576px){.sm\\:vertical-align-baseline{vertical-align:baseline!important}.sm\\:vertical-align-top{vertical-align:top!important}.sm\\:vertical-align-middle{vertical-align:middle!important}.sm\\:vertical-align-bottom{vertical-align:bottom!important}.sm\\:vertical-align-text-top{vertical-align:text-top!important}.sm\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.sm\\:vertical-align-sub{vertical-align:sub!important}.sm\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 768px){.md\\:vertical-align-baseline{vertical-align:baseline!important}.md\\:vertical-align-top{vertical-align:top!important}.md\\:vertical-align-middle{vertical-align:middle!important}.md\\:vertical-align-bottom{vertical-align:bottom!important}.md\\:vertical-align-text-top{vertical-align:text-top!important}.md\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.md\\:vertical-align-sub{vertical-align:sub!important}.md\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 992px){.lg\\:vertical-align-baseline{vertical-align:baseline!important}.lg\\:vertical-align-top{vertical-align:top!important}.lg\\:vertical-align-middle{vertical-align:middle!important}.lg\\:vertical-align-bottom{vertical-align:bottom!important}.lg\\:vertical-align-text-top{vertical-align:text-top!important}.lg\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.lg\\:vertical-align-sub{vertical-align:sub!important}.lg\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 1200px){.xl\\:vertical-align-baseline{vertical-align:baseline!important}.xl\\:vertical-align-top{vertical-align:top!important}.xl\\:vertical-align-middle{vertical-align:middle!important}.xl\\:vertical-align-bottom{vertical-align:bottom!important}.xl\\:vertical-align-text-top{vertical-align:text-top!important}.xl\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.xl\\:vertical-align-sub{vertical-align:sub!important}.xl\\:vertical-align-super{vertical-align:super!important}}.flex-row{flex-direction:row!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column{flex-direction:column!important}.flex-column-reverse{flex-direction:column-reverse!important}@media screen and (min-width: 576px){.sm\\:flex-row{flex-direction:row!important}.sm\\:flex-row-reverse{flex-direction:row-reverse!important}.sm\\:flex-column{flex-direction:column!important}.sm\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 768px){.md\\:flex-row{flex-direction:row!important}.md\\:flex-row-reverse{flex-direction:row-reverse!important}.md\\:flex-column{flex-direction:column!important}.md\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 992px){.lg\\:flex-row{flex-direction:row!important}.lg\\:flex-row-reverse{flex-direction:row-reverse!important}.lg\\:flex-column{flex-direction:column!important}.lg\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 1200px){.xl\\:flex-row{flex-direction:row!important}.xl\\:flex-row-reverse{flex-direction:row-reverse!important}.xl\\:flex-column{flex-direction:column!important}.xl\\:flex-column-reverse{flex-direction:column-reverse!important}}.flex-wrap{flex-wrap:wrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-nowrap{flex-wrap:nowrap!important}@media screen and (min-width: 576px){.sm\\:flex-wrap{flex-wrap:wrap!important}.sm\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.sm\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 768px){.md\\:flex-wrap{flex-wrap:wrap!important}.md\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.md\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 992px){.lg\\:flex-wrap{flex-wrap:wrap!important}.lg\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.lg\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 1200px){.xl\\:flex-wrap{flex-wrap:wrap!important}.xl\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.xl\\:flex-nowrap{flex-wrap:nowrap!important}}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}@media screen and (min-width: 576px){.sm\\:justify-content-start{justify-content:flex-start!important}.sm\\:justify-content-end{justify-content:flex-end!important}.sm\\:justify-content-center{justify-content:center!important}.sm\\:justify-content-between{justify-content:space-between!important}.sm\\:justify-content-around{justify-content:space-around!important}.sm\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 768px){.md\\:justify-content-start{justify-content:flex-start!important}.md\\:justify-content-end{justify-content:flex-end!important}.md\\:justify-content-center{justify-content:center!important}.md\\:justify-content-between{justify-content:space-between!important}.md\\:justify-content-around{justify-content:space-around!important}.md\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 992px){.lg\\:justify-content-start{justify-content:flex-start!important}.lg\\:justify-content-end{justify-content:flex-end!important}.lg\\:justify-content-center{justify-content:center!important}.lg\\:justify-content-between{justify-content:space-between!important}.lg\\:justify-content-around{justify-content:space-around!important}.lg\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 1200px){.xl\\:justify-content-start{justify-content:flex-start!important}.xl\\:justify-content-end{justify-content:flex-end!important}.xl\\:justify-content-center{justify-content:center!important}.xl\\:justify-content-between{justify-content:space-between!important}.xl\\:justify-content-around{justify-content:space-around!important}.xl\\:justify-content-evenly{justify-content:space-evenly!important}}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-evenly{align-content:space-evenly!important}@media screen and (min-width: 576px){.sm\\:align-content-start{align-content:flex-start!important}.sm\\:align-content-end{align-content:flex-end!important}.sm\\:align-content-center{align-content:center!important}.sm\\:align-content-between{align-content:space-between!important}.sm\\:align-content-around{align-content:space-around!important}.sm\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 768px){.md\\:align-content-start{align-content:flex-start!important}.md\\:align-content-end{align-content:flex-end!important}.md\\:align-content-center{align-content:center!important}.md\\:align-content-between{align-content:space-between!important}.md\\:align-content-around{align-content:space-around!important}.md\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 992px){.lg\\:align-content-start{align-content:flex-start!important}.lg\\:align-content-end{align-content:flex-end!important}.lg\\:align-content-center{align-content:center!important}.lg\\:align-content-between{align-content:space-between!important}.lg\\:align-content-around{align-content:space-around!important}.lg\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 1200px){.xl\\:align-content-start{align-content:flex-start!important}.xl\\:align-content-end{align-content:flex-end!important}.xl\\:align-content-center{align-content:center!important}.xl\\:align-content-between{align-content:space-between!important}.xl\\:align-content-around{align-content:space-around!important}.xl\\:align-content-evenly{align-content:space-evenly!important}}.align-items-stretch{align-items:stretch!important}.align-items-start{align-items:flex-start!important}.align-items-center{align-items:center!important}.align-items-end{align-items:flex-end!important}.align-items-baseline{align-items:baseline!important}@media screen and (min-width: 576px){.sm\\:align-items-stretch{align-items:stretch!important}.sm\\:align-items-start{align-items:flex-start!important}.sm\\:align-items-center{align-items:center!important}.sm\\:align-items-end{align-items:flex-end!important}.sm\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 768px){.md\\:align-items-stretch{align-items:stretch!important}.md\\:align-items-start{align-items:flex-start!important}.md\\:align-items-center{align-items:center!important}.md\\:align-items-end{align-items:flex-end!important}.md\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 992px){.lg\\:align-items-stretch{align-items:stretch!important}.lg\\:align-items-start{align-items:flex-start!important}.lg\\:align-items-center{align-items:center!important}.lg\\:align-items-end{align-items:flex-end!important}.lg\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 1200px){.xl\\:align-items-stretch{align-items:stretch!important}.xl\\:align-items-start{align-items:flex-start!important}.xl\\:align-items-center{align-items:center!important}.xl\\:align-items-end{align-items:flex-end!important}.xl\\:align-items-baseline{align-items:baseline!important}}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-stretch{align-self:stretch!important}.align-self-baseline{align-self:baseline!important}@media screen and (min-width: 576px){.sm\\:align-self-auto{align-self:auto!important}.sm\\:align-self-start{align-self:flex-start!important}.sm\\:align-self-end{align-self:flex-end!important}.sm\\:align-self-center{align-self:center!important}.sm\\:align-self-stretch{align-self:stretch!important}.sm\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 768px){.md\\:align-self-auto{align-self:auto!important}.md\\:align-self-start{align-self:flex-start!important}.md\\:align-self-end{align-self:flex-end!important}.md\\:align-self-center{align-self:center!important}.md\\:align-self-stretch{align-self:stretch!important}.md\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 992px){.lg\\:align-self-auto{align-self:auto!important}.lg\\:align-self-start{align-self:flex-start!important}.lg\\:align-self-end{align-self:flex-end!important}.lg\\:align-self-center{align-self:center!important}.lg\\:align-self-stretch{align-self:stretch!important}.lg\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 1200px){.xl\\:align-self-auto{align-self:auto!important}.xl\\:align-self-start{align-self:flex-start!important}.xl\\:align-self-end{align-self:flex-end!important}.xl\\:align-self-center{align-self:center!important}.xl\\:align-self-stretch{align-self:stretch!important}.xl\\:align-self-baseline{align-self:baseline!important}}.flex-order-0{order:0!important}.flex-order-1{order:1!important}.flex-order-2{order:2!important}.flex-order-3{order:3!important}.flex-order-4{order:4!important}.flex-order-5{order:5!important}.flex-order-6{order:6!important}@media screen and (min-width: 576px){.sm\\:flex-order-0{order:0!important}.sm\\:flex-order-1{order:1!important}.sm\\:flex-order-2{order:2!important}.sm\\:flex-order-3{order:3!important}.sm\\:flex-order-4{order:4!important}.sm\\:flex-order-5{order:5!important}.sm\\:flex-order-6{order:6!important}}@media screen and (min-width: 768px){.md\\:flex-order-0{order:0!important}.md\\:flex-order-1{order:1!important}.md\\:flex-order-2{order:2!important}.md\\:flex-order-3{order:3!important}.md\\:flex-order-4{order:4!important}.md\\:flex-order-5{order:5!important}.md\\:flex-order-6{order:6!important}}@media screen and (min-width: 992px){.lg\\:flex-order-0{order:0!important}.lg\\:flex-order-1{order:1!important}.lg\\:flex-order-2{order:2!important}.lg\\:flex-order-3{order:3!important}.lg\\:flex-order-4{order:4!important}.lg\\:flex-order-5{order:5!important}.lg\\:flex-order-6{order:6!important}}@media screen and (min-width: 1200px){.xl\\:flex-order-0{order:0!important}.xl\\:flex-order-1{order:1!important}.xl\\:flex-order-2{order:2!important}.xl\\:flex-order-3{order:3!important}.xl\\:flex-order-4{order:4!important}.xl\\:flex-order-5{order:5!important}.xl\\:flex-order-6{order:6!important}}.flex-1{flex:1 1 0%!important}.flex-auto{flex:1 1 auto!important}.flex-initial{flex:0 1 auto!important}.flex-none{flex:none!important}@media screen and (min-width: 576px){.sm\\:flex-1{flex:1 1 0%!important}.sm\\:flex-auto{flex:1 1 auto!important}.sm\\:flex-initial{flex:0 1 auto!important}.sm\\:flex-none{flex:none!important}}@media screen and (min-width: 768px){.md\\:flex-1{flex:1 1 0%!important}.md\\:flex-auto{flex:1 1 auto!important}.md\\:flex-initial{flex:0 1 auto!important}.md\\:flex-none{flex:none!important}}@media screen and (min-width: 992px){.lg\\:flex-1{flex:1 1 0%!important}.lg\\:flex-auto{flex:1 1 auto!important}.lg\\:flex-initial{flex:0 1 auto!important}.lg\\:flex-none{flex:none!important}}@media screen and (min-width: 1200px){.xl\\:flex-1{flex:1 1 0%!important}.xl\\:flex-auto{flex:1 1 auto!important}.xl\\:flex-initial{flex:0 1 auto!important}.xl\\:flex-none{flex:none!important}}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}@media screen and (min-width: 576px){.sm\\:flex-grow-0{flex-grow:0!important}.sm\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 768px){.md\\:flex-grow-0{flex-grow:0!important}.md\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 992px){.lg\\:flex-grow-0{flex-grow:0!important}.lg\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 1200px){.xl\\:flex-grow-0{flex-grow:0!important}.xl\\:flex-grow-1{flex-grow:1!important}}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}@media screen and (min-width: 576px){.sm\\:flex-shrink-0{flex-shrink:0!important}.sm\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 768px){.md\\:flex-shrink-0{flex-shrink:0!important}.md\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 992px){.lg\\:flex-shrink-0{flex-shrink:0!important}.lg\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 1200px){.xl\\:flex-shrink-0{flex-shrink:0!important}.xl\\:flex-shrink-1{flex-shrink:1!important}}.gap-0{gap:0rem!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:2rem!important}.gap-6{gap:3rem!important}.gap-7{gap:4rem!important}.gap-8{gap:5rem!important}.row-gap-0{row-gap:0rem!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:2rem!important}.row-gap-6{row-gap:3rem!important}.row-gap-7{row-gap:4rem!important}.row-gap-8{row-gap:5rem!important}.column-gap-0{column-gap:0rem!important}.column-gap-1{column-gap:.25rem!important}.column-gap-2{column-gap:.5rem!important}.column-gap-3{column-gap:1rem!important}.column-gap-4{column-gap:1.5rem!important}.column-gap-5{column-gap:2rem!important}.column-gap-6{column-gap:3rem!important}.column-gap-7{column-gap:4rem!important}.column-gap-8{column-gap:5rem!important}@media screen and (min-width: 576px){.sm\\:gap-0{gap:0rem!important}.sm\\:gap-1{gap:.25rem!important}.sm\\:gap-2{gap:.5rem!important}.sm\\:gap-3{gap:1rem!important}.sm\\:gap-4{gap:1.5rem!important}.sm\\:gap-5{gap:2rem!important}.sm\\:gap-6{gap:3rem!important}.sm\\:gap-7{gap:4rem!important}.sm\\:gap-8{gap:5rem!important}.sm\\:row-gap-0{row-gap:0rem!important}.sm\\:row-gap-1{row-gap:.25rem!important}.sm\\:row-gap-2{row-gap:.5rem!important}.sm\\:row-gap-3{row-gap:1rem!important}.sm\\:row-gap-4{row-gap:1.5rem!important}.sm\\:row-gap-5{row-gap:2rem!important}.sm\\:row-gap-6{row-gap:3rem!important}.sm\\:row-gap-7{row-gap:4rem!important}.sm\\:row-gap-8{row-gap:5rem!important}.sm\\:column-gap-0{column-gap:0rem!important}.sm\\:column-gap-1{column-gap:.25rem!important}.sm\\:column-gap-2{column-gap:.5rem!important}.sm\\:column-gap-3{column-gap:1rem!important}.sm\\:column-gap-4{column-gap:1.5rem!important}.sm\\:column-gap-5{column-gap:2rem!important}.sm\\:column-gap-6{column-gap:3rem!important}.sm\\:column-gap-7{column-gap:4rem!important}.sm\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 768px){.md\\:gap-0{gap:0rem!important}.md\\:gap-1{gap:.25rem!important}.md\\:gap-2{gap:.5rem!important}.md\\:gap-3{gap:1rem!important}.md\\:gap-4{gap:1.5rem!important}.md\\:gap-5{gap:2rem!important}.md\\:gap-6{gap:3rem!important}.md\\:gap-7{gap:4rem!important}.md\\:gap-8{gap:5rem!important}.md\\:row-gap-0{row-gap:0rem!important}.md\\:row-gap-1{row-gap:.25rem!important}.md\\:row-gap-2{row-gap:.5rem!important}.md\\:row-gap-3{row-gap:1rem!important}.md\\:row-gap-4{row-gap:1.5rem!important}.md\\:row-gap-5{row-gap:2rem!important}.md\\:row-gap-6{row-gap:3rem!important}.md\\:row-gap-7{row-gap:4rem!important}.md\\:row-gap-8{row-gap:5rem!important}.md\\:column-gap-0{column-gap:0rem!important}.md\\:column-gap-1{column-gap:.25rem!important}.md\\:column-gap-2{column-gap:.5rem!important}.md\\:column-gap-3{column-gap:1rem!important}.md\\:column-gap-4{column-gap:1.5rem!important}.md\\:column-gap-5{column-gap:2rem!important}.md\\:column-gap-6{column-gap:3rem!important}.md\\:column-gap-7{column-gap:4rem!important}.md\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 992px){.lg\\:gap-0{gap:0rem!important}.lg\\:gap-1{gap:.25rem!important}.lg\\:gap-2{gap:.5rem!important}.lg\\:gap-3{gap:1rem!important}.lg\\:gap-4{gap:1.5rem!important}.lg\\:gap-5{gap:2rem!important}.lg\\:gap-6{gap:3rem!important}.lg\\:gap-7{gap:4rem!important}.lg\\:gap-8{gap:5rem!important}.lg\\:row-gap-0{row-gap:0rem!important}.lg\\:row-gap-1{row-gap:.25rem!important}.lg\\:row-gap-2{row-gap:.5rem!important}.lg\\:row-gap-3{row-gap:1rem!important}.lg\\:row-gap-4{row-gap:1.5rem!important}.lg\\:row-gap-5{row-gap:2rem!important}.lg\\:row-gap-6{row-gap:3rem!important}.lg\\:row-gap-7{row-gap:4rem!important}.lg\\:row-gap-8{row-gap:5rem!important}.lg\\:column-gap-0{column-gap:0rem!important}.lg\\:column-gap-1{column-gap:.25rem!important}.lg\\:column-gap-2{column-gap:.5rem!important}.lg\\:column-gap-3{column-gap:1rem!important}.lg\\:column-gap-4{column-gap:1.5rem!important}.lg\\:column-gap-5{column-gap:2rem!important}.lg\\:column-gap-6{column-gap:3rem!important}.lg\\:column-gap-7{column-gap:4rem!important}.lg\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 1200px){.xl\\:gap-0{gap:0rem!important}.xl\\:gap-1{gap:.25rem!important}.xl\\:gap-2{gap:.5rem!important}.xl\\:gap-3{gap:1rem!important}.xl\\:gap-4{gap:1.5rem!important}.xl\\:gap-5{gap:2rem!important}.xl\\:gap-6{gap:3rem!important}.xl\\:gap-7{gap:4rem!important}.xl\\:gap-8{gap:5rem!important}.xl\\:row-gap-0{row-gap:0rem!important}.xl\\:row-gap-1{row-gap:.25rem!important}.xl\\:row-gap-2{row-gap:.5rem!important}.xl\\:row-gap-3{row-gap:1rem!important}.xl\\:row-gap-4{row-gap:1.5rem!important}.xl\\:row-gap-5{row-gap:2rem!important}.xl\\:row-gap-6{row-gap:3rem!important}.xl\\:row-gap-7{row-gap:4rem!important}.xl\\:row-gap-8{row-gap:5rem!important}.xl\\:column-gap-0{column-gap:0rem!important}.xl\\:column-gap-1{column-gap:.25rem!important}.xl\\:column-gap-2{column-gap:.5rem!important}.xl\\:column-gap-3{column-gap:1rem!important}.xl\\:column-gap-4{column-gap:1.5rem!important}.xl\\:column-gap-5{column-gap:2rem!important}.xl\\:column-gap-6{column-gap:3rem!important}.xl\\:column-gap-7{column-gap:4rem!important}.xl\\:column-gap-8{column-gap:5rem!important}}.p-0{padding:0rem!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:2rem!important}.p-6{padding:3rem!important}.p-7{padding:4rem!important}.p-8{padding:5rem!important}.pt-0{padding-top:0rem!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:2rem!important}.pt-6{padding-top:3rem!important}.pt-7{padding-top:4rem!important}.pt-8{padding-top:5rem!important}.pr-0{padding-right:0rem!important}.pr-1{padding-right:.25rem!important}.pr-2{padding-right:.5rem!important}.pr-3{padding-right:1rem!important}.pr-4{padding-right:1.5rem!important}.pr-5{padding-right:2rem!important}.pr-6{padding-right:3rem!important}.pr-7{padding-right:4rem!important}.pr-8{padding-right:5rem!important}.pl-0{padding-left:0rem!important}.pl-1{padding-left:.25rem!important}.pl-2{padding-left:.5rem!important}.pl-3{padding-left:1rem!important}.pl-4{padding-left:1.5rem!important}.pl-5{padding-left:2rem!important}.pl-6{padding-left:3rem!important}.pl-7{padding-left:4rem!important}.pl-8{padding-left:5rem!important}.pb-0{padding-bottom:0rem!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:2rem!important}.pb-6{padding-bottom:3rem!important}.pb-7{padding-bottom:4rem!important}.pb-8{padding-bottom:5rem!important}.px-0{padding-left:0rem!important;padding-right:0rem!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:2rem!important;padding-right:2rem!important}.px-6{padding-left:3rem!important;padding-right:3rem!important}.px-7{padding-left:4rem!important;padding-right:4rem!important}.px-8{padding-left:5rem!important;padding-right:5rem!important}.py-0{padding-top:0rem!important;padding-bottom:0rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:2rem!important;padding-bottom:2rem!important}.py-6{padding-top:3rem!important;padding-bottom:3rem!important}.py-7{padding-top:4rem!important;padding-bottom:4rem!important}.py-8{padding-top:5rem!important;padding-bottom:5rem!important}@media screen and (min-width: 576px){.sm\\:p-0{padding:0rem!important}.sm\\:p-1{padding:.25rem!important}.sm\\:p-2{padding:.5rem!important}.sm\\:p-3{padding:1rem!important}.sm\\:p-4{padding:1.5rem!important}.sm\\:p-5{padding:2rem!important}.sm\\:p-6{padding:3rem!important}.sm\\:p-7{padding:4rem!important}.sm\\:p-8{padding:5rem!important}.sm\\:pt-0{padding-top:0rem!important}.sm\\:pt-1{padding-top:.25rem!important}.sm\\:pt-2{padding-top:.5rem!important}.sm\\:pt-3{padding-top:1rem!important}.sm\\:pt-4{padding-top:1.5rem!important}.sm\\:pt-5{padding-top:2rem!important}.sm\\:pt-6{padding-top:3rem!important}.sm\\:pt-7{padding-top:4rem!important}.sm\\:pt-8{padding-top:5rem!important}.sm\\:pr-0{padding-right:0rem!important}.sm\\:pr-1{padding-right:.25rem!important}.sm\\:pr-2{padding-right:.5rem!important}.sm\\:pr-3{padding-right:1rem!important}.sm\\:pr-4{padding-right:1.5rem!important}.sm\\:pr-5{padding-right:2rem!important}.sm\\:pr-6{padding-right:3rem!important}.sm\\:pr-7{padding-right:4rem!important}.sm\\:pr-8{padding-right:5rem!important}.sm\\:pl-0{padding-left:0rem!important}.sm\\:pl-1{padding-left:.25rem!important}.sm\\:pl-2{padding-left:.5rem!important}.sm\\:pl-3{padding-left:1rem!important}.sm\\:pl-4{padding-left:1.5rem!important}.sm\\:pl-5{padding-left:2rem!important}.sm\\:pl-6{padding-left:3rem!important}.sm\\:pl-7{padding-left:4rem!important}.sm\\:pl-8{padding-left:5rem!important}.sm\\:pb-0{padding-bottom:0rem!important}.sm\\:pb-1{padding-bottom:.25rem!important}.sm\\:pb-2{padding-bottom:.5rem!important}.sm\\:pb-3{padding-bottom:1rem!important}.sm\\:pb-4{padding-bottom:1.5rem!important}.sm\\:pb-5{padding-bottom:2rem!important}.sm\\:pb-6{padding-bottom:3rem!important}.sm\\:pb-7{padding-bottom:4rem!important}.sm\\:pb-8{padding-bottom:5rem!important}.sm\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.sm\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.sm\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.sm\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.sm\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.sm\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.sm\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.sm\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.sm\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.sm\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.sm\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.sm\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.sm\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.sm\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.sm\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.sm\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.sm\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.sm\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 768px){.md\\:p-0{padding:0rem!important}.md\\:p-1{padding:.25rem!important}.md\\:p-2{padding:.5rem!important}.md\\:p-3{padding:1rem!important}.md\\:p-4{padding:1.5rem!important}.md\\:p-5{padding:2rem!important}.md\\:p-6{padding:3rem!important}.md\\:p-7{padding:4rem!important}.md\\:p-8{padding:5rem!important}.md\\:pt-0{padding-top:0rem!important}.md\\:pt-1{padding-top:.25rem!important}.md\\:pt-2{padding-top:.5rem!important}.md\\:pt-3{padding-top:1rem!important}.md\\:pt-4{padding-top:1.5rem!important}.md\\:pt-5{padding-top:2rem!important}.md\\:pt-6{padding-top:3rem!important}.md\\:pt-7{padding-top:4rem!important}.md\\:pt-8{padding-top:5rem!important}.md\\:pr-0{padding-right:0rem!important}.md\\:pr-1{padding-right:.25rem!important}.md\\:pr-2{padding-right:.5rem!important}.md\\:pr-3{padding-right:1rem!important}.md\\:pr-4{padding-right:1.5rem!important}.md\\:pr-5{padding-right:2rem!important}.md\\:pr-6{padding-right:3rem!important}.md\\:pr-7{padding-right:4rem!important}.md\\:pr-8{padding-right:5rem!important}.md\\:pl-0{padding-left:0rem!important}.md\\:pl-1{padding-left:.25rem!important}.md\\:pl-2{padding-left:.5rem!important}.md\\:pl-3{padding-left:1rem!important}.md\\:pl-4{padding-left:1.5rem!important}.md\\:pl-5{padding-left:2rem!important}.md\\:pl-6{padding-left:3rem!important}.md\\:pl-7{padding-left:4rem!important}.md\\:pl-8{padding-left:5rem!important}.md\\:pb-0{padding-bottom:0rem!important}.md\\:pb-1{padding-bottom:.25rem!important}.md\\:pb-2{padding-bottom:.5rem!important}.md\\:pb-3{padding-bottom:1rem!important}.md\\:pb-4{padding-bottom:1.5rem!important}.md\\:pb-5{padding-bottom:2rem!important}.md\\:pb-6{padding-bottom:3rem!important}.md\\:pb-7{padding-bottom:4rem!important}.md\\:pb-8{padding-bottom:5rem!important}.md\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.md\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.md\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.md\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.md\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.md\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.md\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.md\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.md\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.md\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.md\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.md\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.md\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.md\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.md\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.md\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.md\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.md\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 992px){.lg\\:p-0{padding:0rem!important}.lg\\:p-1{padding:.25rem!important}.lg\\:p-2{padding:.5rem!important}.lg\\:p-3{padding:1rem!important}.lg\\:p-4{padding:1.5rem!important}.lg\\:p-5{padding:2rem!important}.lg\\:p-6{padding:3rem!important}.lg\\:p-7{padding:4rem!important}.lg\\:p-8{padding:5rem!important}.lg\\:pt-0{padding-top:0rem!important}.lg\\:pt-1{padding-top:.25rem!important}.lg\\:pt-2{padding-top:.5rem!important}.lg\\:pt-3{padding-top:1rem!important}.lg\\:pt-4{padding-top:1.5rem!important}.lg\\:pt-5{padding-top:2rem!important}.lg\\:pt-6{padding-top:3rem!important}.lg\\:pt-7{padding-top:4rem!important}.lg\\:pt-8{padding-top:5rem!important}.lg\\:pr-0{padding-right:0rem!important}.lg\\:pr-1{padding-right:.25rem!important}.lg\\:pr-2{padding-right:.5rem!important}.lg\\:pr-3{padding-right:1rem!important}.lg\\:pr-4{padding-right:1.5rem!important}.lg\\:pr-5{padding-right:2rem!important}.lg\\:pr-6{padding-right:3rem!important}.lg\\:pr-7{padding-right:4rem!important}.lg\\:pr-8{padding-right:5rem!important}.lg\\:pl-0{padding-left:0rem!important}.lg\\:pl-1{padding-left:.25rem!important}.lg\\:pl-2{padding-left:.5rem!important}.lg\\:pl-3{padding-left:1rem!important}.lg\\:pl-4{padding-left:1.5rem!important}.lg\\:pl-5{padding-left:2rem!important}.lg\\:pl-6{padding-left:3rem!important}.lg\\:pl-7{padding-left:4rem!important}.lg\\:pl-8{padding-left:5rem!important}.lg\\:pb-0{padding-bottom:0rem!important}.lg\\:pb-1{padding-bottom:.25rem!important}.lg\\:pb-2{padding-bottom:.5rem!important}.lg\\:pb-3{padding-bottom:1rem!important}.lg\\:pb-4{padding-bottom:1.5rem!important}.lg\\:pb-5{padding-bottom:2rem!important}.lg\\:pb-6{padding-bottom:3rem!important}.lg\\:pb-7{padding-bottom:4rem!important}.lg\\:pb-8{padding-bottom:5rem!important}.lg\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.lg\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.lg\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.lg\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.lg\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.lg\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.lg\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.lg\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.lg\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.lg\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.lg\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.lg\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.lg\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.lg\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.lg\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.lg\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.lg\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.lg\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 1200px){.xl\\:p-0{padding:0rem!important}.xl\\:p-1{padding:.25rem!important}.xl\\:p-2{padding:.5rem!important}.xl\\:p-3{padding:1rem!important}.xl\\:p-4{padding:1.5rem!important}.xl\\:p-5{padding:2rem!important}.xl\\:p-6{padding:3rem!important}.xl\\:p-7{padding:4rem!important}.xl\\:p-8{padding:5rem!important}.xl\\:pt-0{padding-top:0rem!important}.xl\\:pt-1{padding-top:.25rem!important}.xl\\:pt-2{padding-top:.5rem!important}.xl\\:pt-3{padding-top:1rem!important}.xl\\:pt-4{padding-top:1.5rem!important}.xl\\:pt-5{padding-top:2rem!important}.xl\\:pt-6{padding-top:3rem!important}.xl\\:pt-7{padding-top:4rem!important}.xl\\:pt-8{padding-top:5rem!important}.xl\\:pr-0{padding-right:0rem!important}.xl\\:pr-1{padding-right:.25rem!important}.xl\\:pr-2{padding-right:.5rem!important}.xl\\:pr-3{padding-right:1rem!important}.xl\\:pr-4{padding-right:1.5rem!important}.xl\\:pr-5{padding-right:2rem!important}.xl\\:pr-6{padding-right:3rem!important}.xl\\:pr-7{padding-right:4rem!important}.xl\\:pr-8{padding-right:5rem!important}.xl\\:pl-0{padding-left:0rem!important}.xl\\:pl-1{padding-left:.25rem!important}.xl\\:pl-2{padding-left:.5rem!important}.xl\\:pl-3{padding-left:1rem!important}.xl\\:pl-4{padding-left:1.5rem!important}.xl\\:pl-5{padding-left:2rem!important}.xl\\:pl-6{padding-left:3rem!important}.xl\\:pl-7{padding-left:4rem!important}.xl\\:pl-8{padding-left:5rem!important}.xl\\:pb-0{padding-bottom:0rem!important}.xl\\:pb-1{padding-bottom:.25rem!important}.xl\\:pb-2{padding-bottom:.5rem!important}.xl\\:pb-3{padding-bottom:1rem!important}.xl\\:pb-4{padding-bottom:1.5rem!important}.xl\\:pb-5{padding-bottom:2rem!important}.xl\\:pb-6{padding-bottom:3rem!important}.xl\\:pb-7{padding-bottom:4rem!important}.xl\\:pb-8{padding-bottom:5rem!important}.xl\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.xl\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.xl\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.xl\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.xl\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.xl\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.xl\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.xl\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.xl\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.xl\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.xl\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.xl\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.xl\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.xl\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.xl\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.xl\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.xl\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.xl\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}.m-0{margin:0rem!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:2rem!important}.m-6{margin:3rem!important}.m-7{margin:4rem!important}.m-8{margin:5rem!important}.-m-1{margin:-.25rem!important}.-m-2{margin:-.5rem!important}.-m-3{margin:-1rem!important}.-m-4{margin:-1.5rem!important}.-m-5{margin:-2rem!important}.-m-6{margin:-3rem!important}.-m-7{margin:-4rem!important}.-m-8{margin:-5rem!important}.m-auto{margin:auto!important}.mt-0{margin-top:0rem!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:2rem!important}.mt-6{margin-top:3rem!important}.mt-7{margin-top:4rem!important}.mt-8{margin-top:5rem!important}.-mt-1{margin-top:-.25rem!important}.-mt-2{margin-top:-.5rem!important}.-mt-3{margin-top:-1rem!important}.-mt-4{margin-top:-1.5rem!important}.-mt-5{margin-top:-2rem!important}.-mt-6{margin-top:-3rem!important}.-mt-7{margin-top:-4rem!important}.-mt-8{margin-top:-5rem!important}.mt-auto{margin-top:auto!important}.mr-0{margin-right:0rem!important}.mr-1{margin-right:.25rem!important}.mr-2{margin-right:.5rem!important}.mr-3{margin-right:1rem!important}.mr-4{margin-right:1.5rem!important}.mr-5{margin-right:2rem!important}.mr-6{margin-right:3rem!important}.mr-7{margin-right:4rem!important}.mr-8{margin-right:5rem!important}.-mr-1{margin-right:-.25rem!important}.-mr-2{margin-right:-.5rem!important}.-mr-3{margin-right:-1rem!important}.-mr-4{margin-right:-1.5rem!important}.-mr-5{margin-right:-2rem!important}.-mr-6{margin-right:-3rem!important}.-mr-7{margin-right:-4rem!important}.-mr-8{margin-right:-5rem!important}.mr-auto{margin-right:auto!important}.ml-0{margin-left:0rem!important}.ml-1{margin-left:.25rem!important}.ml-2{margin-left:.5rem!important}.ml-3{margin-left:1rem!important}.ml-4{margin-left:1.5rem!important}.ml-5{margin-left:2rem!important}.ml-6{margin-left:3rem!important}.ml-7{margin-left:4rem!important}.ml-8{margin-left:5rem!important}.-ml-1{margin-left:-.25rem!important}.-ml-2{margin-left:-.5rem!important}.-ml-3{margin-left:-1rem!important}.-ml-4{margin-left:-1.5rem!important}.-ml-5{margin-left:-2rem!important}.-ml-6{margin-left:-3rem!important}.-ml-7{margin-left:-4rem!important}.-ml-8{margin-left:-5rem!important}.ml-auto{margin-left:auto!important}.mb-0{margin-bottom:0rem!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:2rem!important}.mb-6{margin-bottom:3rem!important}.mb-7{margin-bottom:4rem!important}.mb-8{margin-bottom:5rem!important}.-mb-1{margin-bottom:-.25rem!important}.-mb-2{margin-bottom:-.5rem!important}.-mb-3{margin-bottom:-1rem!important}.-mb-4{margin-bottom:-1.5rem!important}.-mb-5{margin-bottom:-2rem!important}.-mb-6{margin-bottom:-3rem!important}.-mb-7{margin-bottom:-4rem!important}.-mb-8{margin-bottom:-5rem!important}.mb-auto{margin-bottom:auto!important}.mx-0{margin-left:0rem!important;margin-right:0rem!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:2rem!important;margin-right:2rem!important}.mx-6{margin-left:3rem!important;margin-right:3rem!important}.mx-7{margin-left:4rem!important;margin-right:4rem!important}.mx-8{margin-left:5rem!important;margin-right:5rem!important}.-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0rem!important;margin-bottom:0rem!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:2rem!important;margin-bottom:2rem!important}.my-6{margin-top:3rem!important;margin-bottom:3rem!important}.my-7{margin-top:4rem!important;margin-bottom:4rem!important}.my-8{margin-top:5rem!important;margin-bottom:5rem!important}.-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}@media screen and (min-width: 576px){.sm\\:m-0{margin:0rem!important}.sm\\:m-1{margin:.25rem!important}.sm\\:m-2{margin:.5rem!important}.sm\\:m-3{margin:1rem!important}.sm\\:m-4{margin:1.5rem!important}.sm\\:m-5{margin:2rem!important}.sm\\:m-6{margin:3rem!important}.sm\\:m-7{margin:4rem!important}.sm\\:m-8{margin:5rem!important}.sm\\:-m-1{margin:-.25rem!important}.sm\\:-m-2{margin:-.5rem!important}.sm\\:-m-3{margin:-1rem!important}.sm\\:-m-4{margin:-1.5rem!important}.sm\\:-m-5{margin:-2rem!important}.sm\\:-m-6{margin:-3rem!important}.sm\\:-m-7{margin:-4rem!important}.sm\\:-m-8{margin:-5rem!important}.sm\\:m-auto{margin:auto!important}.sm\\:mt-0{margin-top:0rem!important}.sm\\:mt-1{margin-top:.25rem!important}.sm\\:mt-2{margin-top:.5rem!important}.sm\\:mt-3{margin-top:1rem!important}.sm\\:mt-4{margin-top:1.5rem!important}.sm\\:mt-5{margin-top:2rem!important}.sm\\:mt-6{margin-top:3rem!important}.sm\\:mt-7{margin-top:4rem!important}.sm\\:mt-8{margin-top:5rem!important}.sm\\:-mt-1{margin-top:-.25rem!important}.sm\\:-mt-2{margin-top:-.5rem!important}.sm\\:-mt-3{margin-top:-1rem!important}.sm\\:-mt-4{margin-top:-1.5rem!important}.sm\\:-mt-5{margin-top:-2rem!important}.sm\\:-mt-6{margin-top:-3rem!important}.sm\\:-mt-7{margin-top:-4rem!important}.sm\\:-mt-8{margin-top:-5rem!important}.sm\\:mt-auto{margin-top:auto!important}.sm\\:mr-0{margin-right:0rem!important}.sm\\:mr-1{margin-right:.25rem!important}.sm\\:mr-2{margin-right:.5rem!important}.sm\\:mr-3{margin-right:1rem!important}.sm\\:mr-4{margin-right:1.5rem!important}.sm\\:mr-5{margin-right:2rem!important}.sm\\:mr-6{margin-right:3rem!important}.sm\\:mr-7{margin-right:4rem!important}.sm\\:mr-8{margin-right:5rem!important}.sm\\:-mr-1{margin-right:-.25rem!important}.sm\\:-mr-2{margin-right:-.5rem!important}.sm\\:-mr-3{margin-right:-1rem!important}.sm\\:-mr-4{margin-right:-1.5rem!important}.sm\\:-mr-5{margin-right:-2rem!important}.sm\\:-mr-6{margin-right:-3rem!important}.sm\\:-mr-7{margin-right:-4rem!important}.sm\\:-mr-8{margin-right:-5rem!important}.sm\\:mr-auto{margin-right:auto!important}.sm\\:ml-0{margin-left:0rem!important}.sm\\:ml-1{margin-left:.25rem!important}.sm\\:ml-2{margin-left:.5rem!important}.sm\\:ml-3{margin-left:1rem!important}.sm\\:ml-4{margin-left:1.5rem!important}.sm\\:ml-5{margin-left:2rem!important}.sm\\:ml-6{margin-left:3rem!important}.sm\\:ml-7{margin-left:4rem!important}.sm\\:ml-8{margin-left:5rem!important}.sm\\:-ml-1{margin-left:-.25rem!important}.sm\\:-ml-2{margin-left:-.5rem!important}.sm\\:-ml-3{margin-left:-1rem!important}.sm\\:-ml-4{margin-left:-1.5rem!important}.sm\\:-ml-5{margin-left:-2rem!important}.sm\\:-ml-6{margin-left:-3rem!important}.sm\\:-ml-7{margin-left:-4rem!important}.sm\\:-ml-8{margin-left:-5rem!important}.sm\\:ml-auto{margin-left:auto!important}.sm\\:mb-0{margin-bottom:0rem!important}.sm\\:mb-1{margin-bottom:.25rem!important}.sm\\:mb-2{margin-bottom:.5rem!important}.sm\\:mb-3{margin-bottom:1rem!important}.sm\\:mb-4{margin-bottom:1.5rem!important}.sm\\:mb-5{margin-bottom:2rem!important}.sm\\:mb-6{margin-bottom:3rem!important}.sm\\:mb-7{margin-bottom:4rem!important}.sm\\:mb-8{margin-bottom:5rem!important}.sm\\:-mb-1{margin-bottom:-.25rem!important}.sm\\:-mb-2{margin-bottom:-.5rem!important}.sm\\:-mb-3{margin-bottom:-1rem!important}.sm\\:-mb-4{margin-bottom:-1.5rem!important}.sm\\:-mb-5{margin-bottom:-2rem!important}.sm\\:-mb-6{margin-bottom:-3rem!important}.sm\\:-mb-7{margin-bottom:-4rem!important}.sm\\:-mb-8{margin-bottom:-5rem!important}.sm\\:mb-auto{margin-bottom:auto!important}.sm\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.sm\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.sm\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.sm\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.sm\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.sm\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.sm\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.sm\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.sm\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.sm\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.sm\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.sm\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.sm\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.sm\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.sm\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.sm\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.sm\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.sm\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.sm\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.sm\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.sm\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.sm\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.sm\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.sm\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.sm\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.sm\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.sm\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.sm\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.sm\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.sm\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.sm\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.sm\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.sm\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.sm\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.sm\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.sm\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 768px){.md\\:m-0{margin:0rem!important}.md\\:m-1{margin:.25rem!important}.md\\:m-2{margin:.5rem!important}.md\\:m-3{margin:1rem!important}.md\\:m-4{margin:1.5rem!important}.md\\:m-5{margin:2rem!important}.md\\:m-6{margin:3rem!important}.md\\:m-7{margin:4rem!important}.md\\:m-8{margin:5rem!important}.md\\:-m-1{margin:-.25rem!important}.md\\:-m-2{margin:-.5rem!important}.md\\:-m-3{margin:-1rem!important}.md\\:-m-4{margin:-1.5rem!important}.md\\:-m-5{margin:-2rem!important}.md\\:-m-6{margin:-3rem!important}.md\\:-m-7{margin:-4rem!important}.md\\:-m-8{margin:-5rem!important}.md\\:m-auto{margin:auto!important}.md\\:mt-0{margin-top:0rem!important}.md\\:mt-1{margin-top:.25rem!important}.md\\:mt-2{margin-top:.5rem!important}.md\\:mt-3{margin-top:1rem!important}.md\\:mt-4{margin-top:1.5rem!important}.md\\:mt-5{margin-top:2rem!important}.md\\:mt-6{margin-top:3rem!important}.md\\:mt-7{margin-top:4rem!important}.md\\:mt-8{margin-top:5rem!important}.md\\:-mt-1{margin-top:-.25rem!important}.md\\:-mt-2{margin-top:-.5rem!important}.md\\:-mt-3{margin-top:-1rem!important}.md\\:-mt-4{margin-top:-1.5rem!important}.md\\:-mt-5{margin-top:-2rem!important}.md\\:-mt-6{margin-top:-3rem!important}.md\\:-mt-7{margin-top:-4rem!important}.md\\:-mt-8{margin-top:-5rem!important}.md\\:mt-auto{margin-top:auto!important}.md\\:mr-0{margin-right:0rem!important}.md\\:mr-1{margin-right:.25rem!important}.md\\:mr-2{margin-right:.5rem!important}.md\\:mr-3{margin-right:1rem!important}.md\\:mr-4{margin-right:1.5rem!important}.md\\:mr-5{margin-right:2rem!important}.md\\:mr-6{margin-right:3rem!important}.md\\:mr-7{margin-right:4rem!important}.md\\:mr-8{margin-right:5rem!important}.md\\:-mr-1{margin-right:-.25rem!important}.md\\:-mr-2{margin-right:-.5rem!important}.md\\:-mr-3{margin-right:-1rem!important}.md\\:-mr-4{margin-right:-1.5rem!important}.md\\:-mr-5{margin-right:-2rem!important}.md\\:-mr-6{margin-right:-3rem!important}.md\\:-mr-7{margin-right:-4rem!important}.md\\:-mr-8{margin-right:-5rem!important}.md\\:mr-auto{margin-right:auto!important}.md\\:ml-0{margin-left:0rem!important}.md\\:ml-1{margin-left:.25rem!important}.md\\:ml-2{margin-left:.5rem!important}.md\\:ml-3{margin-left:1rem!important}.md\\:ml-4{margin-left:1.5rem!important}.md\\:ml-5{margin-left:2rem!important}.md\\:ml-6{margin-left:3rem!important}.md\\:ml-7{margin-left:4rem!important}.md\\:ml-8{margin-left:5rem!important}.md\\:-ml-1{margin-left:-.25rem!important}.md\\:-ml-2{margin-left:-.5rem!important}.md\\:-ml-3{margin-left:-1rem!important}.md\\:-ml-4{margin-left:-1.5rem!important}.md\\:-ml-5{margin-left:-2rem!important}.md\\:-ml-6{margin-left:-3rem!important}.md\\:-ml-7{margin-left:-4rem!important}.md\\:-ml-8{margin-left:-5rem!important}.md\\:ml-auto{margin-left:auto!important}.md\\:mb-0{margin-bottom:0rem!important}.md\\:mb-1{margin-bottom:.25rem!important}.md\\:mb-2{margin-bottom:.5rem!important}.md\\:mb-3{margin-bottom:1rem!important}.md\\:mb-4{margin-bottom:1.5rem!important}.md\\:mb-5{margin-bottom:2rem!important}.md\\:mb-6{margin-bottom:3rem!important}.md\\:mb-7{margin-bottom:4rem!important}.md\\:mb-8{margin-bottom:5rem!important}.md\\:-mb-1{margin-bottom:-.25rem!important}.md\\:-mb-2{margin-bottom:-.5rem!important}.md\\:-mb-3{margin-bottom:-1rem!important}.md\\:-mb-4{margin-bottom:-1.5rem!important}.md\\:-mb-5{margin-bottom:-2rem!important}.md\\:-mb-6{margin-bottom:-3rem!important}.md\\:-mb-7{margin-bottom:-4rem!important}.md\\:-mb-8{margin-bottom:-5rem!important}.md\\:mb-auto{margin-bottom:auto!important}.md\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.md\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.md\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.md\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.md\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.md\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.md\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.md\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.md\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.md\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.md\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.md\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.md\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.md\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.md\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.md\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.md\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.md\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.md\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.md\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.md\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.md\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.md\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.md\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.md\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.md\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.md\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.md\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.md\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.md\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.md\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.md\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.md\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.md\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.md\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.md\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 992px){.lg\\:m-0{margin:0rem!important}.lg\\:m-1{margin:.25rem!important}.lg\\:m-2{margin:.5rem!important}.lg\\:m-3{margin:1rem!important}.lg\\:m-4{margin:1.5rem!important}.lg\\:m-5{margin:2rem!important}.lg\\:m-6{margin:3rem!important}.lg\\:m-7{margin:4rem!important}.lg\\:m-8{margin:5rem!important}.lg\\:-m-1{margin:-.25rem!important}.lg\\:-m-2{margin:-.5rem!important}.lg\\:-m-3{margin:-1rem!important}.lg\\:-m-4{margin:-1.5rem!important}.lg\\:-m-5{margin:-2rem!important}.lg\\:-m-6{margin:-3rem!important}.lg\\:-m-7{margin:-4rem!important}.lg\\:-m-8{margin:-5rem!important}.lg\\:m-auto{margin:auto!important}.lg\\:mt-0{margin-top:0rem!important}.lg\\:mt-1{margin-top:.25rem!important}.lg\\:mt-2{margin-top:.5rem!important}.lg\\:mt-3{margin-top:1rem!important}.lg\\:mt-4{margin-top:1.5rem!important}.lg\\:mt-5{margin-top:2rem!important}.lg\\:mt-6{margin-top:3rem!important}.lg\\:mt-7{margin-top:4rem!important}.lg\\:mt-8{margin-top:5rem!important}.lg\\:-mt-1{margin-top:-.25rem!important}.lg\\:-mt-2{margin-top:-.5rem!important}.lg\\:-mt-3{margin-top:-1rem!important}.lg\\:-mt-4{margin-top:-1.5rem!important}.lg\\:-mt-5{margin-top:-2rem!important}.lg\\:-mt-6{margin-top:-3rem!important}.lg\\:-mt-7{margin-top:-4rem!important}.lg\\:-mt-8{margin-top:-5rem!important}.lg\\:mt-auto{margin-top:auto!important}.lg\\:mr-0{margin-right:0rem!important}.lg\\:mr-1{margin-right:.25rem!important}.lg\\:mr-2{margin-right:.5rem!important}.lg\\:mr-3{margin-right:1rem!important}.lg\\:mr-4{margin-right:1.5rem!important}.lg\\:mr-5{margin-right:2rem!important}.lg\\:mr-6{margin-right:3rem!important}.lg\\:mr-7{margin-right:4rem!important}.lg\\:mr-8{margin-right:5rem!important}.lg\\:-mr-1{margin-right:-.25rem!important}.lg\\:-mr-2{margin-right:-.5rem!important}.lg\\:-mr-3{margin-right:-1rem!important}.lg\\:-mr-4{margin-right:-1.5rem!important}.lg\\:-mr-5{margin-right:-2rem!important}.lg\\:-mr-6{margin-right:-3rem!important}.lg\\:-mr-7{margin-right:-4rem!important}.lg\\:-mr-8{margin-right:-5rem!important}.lg\\:mr-auto{margin-right:auto!important}.lg\\:ml-0{margin-left:0rem!important}.lg\\:ml-1{margin-left:.25rem!important}.lg\\:ml-2{margin-left:.5rem!important}.lg\\:ml-3{margin-left:1rem!important}.lg\\:ml-4{margin-left:1.5rem!important}.lg\\:ml-5{margin-left:2rem!important}.lg\\:ml-6{margin-left:3rem!important}.lg\\:ml-7{margin-left:4rem!important}.lg\\:ml-8{margin-left:5rem!important}.lg\\:-ml-1{margin-left:-.25rem!important}.lg\\:-ml-2{margin-left:-.5rem!important}.lg\\:-ml-3{margin-left:-1rem!important}.lg\\:-ml-4{margin-left:-1.5rem!important}.lg\\:-ml-5{margin-left:-2rem!important}.lg\\:-ml-6{margin-left:-3rem!important}.lg\\:-ml-7{margin-left:-4rem!important}.lg\\:-ml-8{margin-left:-5rem!important}.lg\\:ml-auto{margin-left:auto!important}.lg\\:mb-0{margin-bottom:0rem!important}.lg\\:mb-1{margin-bottom:.25rem!important}.lg\\:mb-2{margin-bottom:.5rem!important}.lg\\:mb-3{margin-bottom:1rem!important}.lg\\:mb-4{margin-bottom:1.5rem!important}.lg\\:mb-5{margin-bottom:2rem!important}.lg\\:mb-6{margin-bottom:3rem!important}.lg\\:mb-7{margin-bottom:4rem!important}.lg\\:mb-8{margin-bottom:5rem!important}.lg\\:-mb-1{margin-bottom:-.25rem!important}.lg\\:-mb-2{margin-bottom:-.5rem!important}.lg\\:-mb-3{margin-bottom:-1rem!important}.lg\\:-mb-4{margin-bottom:-1.5rem!important}.lg\\:-mb-5{margin-bottom:-2rem!important}.lg\\:-mb-6{margin-bottom:-3rem!important}.lg\\:-mb-7{margin-bottom:-4rem!important}.lg\\:-mb-8{margin-bottom:-5rem!important}.lg\\:mb-auto{margin-bottom:auto!important}.lg\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.lg\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.lg\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.lg\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.lg\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.lg\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.lg\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.lg\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.lg\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.lg\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.lg\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.lg\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.lg\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.lg\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.lg\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.lg\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.lg\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.lg\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.lg\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.lg\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.lg\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.lg\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.lg\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.lg\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.lg\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.lg\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.lg\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.lg\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.lg\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.lg\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.lg\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.lg\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.lg\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.lg\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.lg\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.lg\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 1200px){.xl\\:m-0{margin:0rem!important}.xl\\:m-1{margin:.25rem!important}.xl\\:m-2{margin:.5rem!important}.xl\\:m-3{margin:1rem!important}.xl\\:m-4{margin:1.5rem!important}.xl\\:m-5{margin:2rem!important}.xl\\:m-6{margin:3rem!important}.xl\\:m-7{margin:4rem!important}.xl\\:m-8{margin:5rem!important}.xl\\:-m-1{margin:-.25rem!important}.xl\\:-m-2{margin:-.5rem!important}.xl\\:-m-3{margin:-1rem!important}.xl\\:-m-4{margin:-1.5rem!important}.xl\\:-m-5{margin:-2rem!important}.xl\\:-m-6{margin:-3rem!important}.xl\\:-m-7{margin:-4rem!important}.xl\\:-m-8{margin:-5rem!important}.xl\\:m-auto{margin:auto!important}.xl\\:mt-0{margin-top:0rem!important}.xl\\:mt-1{margin-top:.25rem!important}.xl\\:mt-2{margin-top:.5rem!important}.xl\\:mt-3{margin-top:1rem!important}.xl\\:mt-4{margin-top:1.5rem!important}.xl\\:mt-5{margin-top:2rem!important}.xl\\:mt-6{margin-top:3rem!important}.xl\\:mt-7{margin-top:4rem!important}.xl\\:mt-8{margin-top:5rem!important}.xl\\:-mt-1{margin-top:-.25rem!important}.xl\\:-mt-2{margin-top:-.5rem!important}.xl\\:-mt-3{margin-top:-1rem!important}.xl\\:-mt-4{margin-top:-1.5rem!important}.xl\\:-mt-5{margin-top:-2rem!important}.xl\\:-mt-6{margin-top:-3rem!important}.xl\\:-mt-7{margin-top:-4rem!important}.xl\\:-mt-8{margin-top:-5rem!important}.xl\\:mt-auto{margin-top:auto!important}.xl\\:mr-0{margin-right:0rem!important}.xl\\:mr-1{margin-right:.25rem!important}.xl\\:mr-2{margin-right:.5rem!important}.xl\\:mr-3{margin-right:1rem!important}.xl\\:mr-4{margin-right:1.5rem!important}.xl\\:mr-5{margin-right:2rem!important}.xl\\:mr-6{margin-right:3rem!important}.xl\\:mr-7{margin-right:4rem!important}.xl\\:mr-8{margin-right:5rem!important}.xl\\:-mr-1{margin-right:-.25rem!important}.xl\\:-mr-2{margin-right:-.5rem!important}.xl\\:-mr-3{margin-right:-1rem!important}.xl\\:-mr-4{margin-right:-1.5rem!important}.xl\\:-mr-5{margin-right:-2rem!important}.xl\\:-mr-6{margin-right:-3rem!important}.xl\\:-mr-7{margin-right:-4rem!important}.xl\\:-mr-8{margin-right:-5rem!important}.xl\\:mr-auto{margin-right:auto!important}.xl\\:ml-0{margin-left:0rem!important}.xl\\:ml-1{margin-left:.25rem!important}.xl\\:ml-2{margin-left:.5rem!important}.xl\\:ml-3{margin-left:1rem!important}.xl\\:ml-4{margin-left:1.5rem!important}.xl\\:ml-5{margin-left:2rem!important}.xl\\:ml-6{margin-left:3rem!important}.xl\\:ml-7{margin-left:4rem!important}.xl\\:ml-8{margin-left:5rem!important}.xl\\:-ml-1{margin-left:-.25rem!important}.xl\\:-ml-2{margin-left:-.5rem!important}.xl\\:-ml-3{margin-left:-1rem!important}.xl\\:-ml-4{margin-left:-1.5rem!important}.xl\\:-ml-5{margin-left:-2rem!important}.xl\\:-ml-6{margin-left:-3rem!important}.xl\\:-ml-7{margin-left:-4rem!important}.xl\\:-ml-8{margin-left:-5rem!important}.xl\\:ml-auto{margin-left:auto!important}.xl\\:mb-0{margin-bottom:0rem!important}.xl\\:mb-1{margin-bottom:.25rem!important}.xl\\:mb-2{margin-bottom:.5rem!important}.xl\\:mb-3{margin-bottom:1rem!important}.xl\\:mb-4{margin-bottom:1.5rem!important}.xl\\:mb-5{margin-bottom:2rem!important}.xl\\:mb-6{margin-bottom:3rem!important}.xl\\:mb-7{margin-bottom:4rem!important}.xl\\:mb-8{margin-bottom:5rem!important}.xl\\:-mb-1{margin-bottom:-.25rem!important}.xl\\:-mb-2{margin-bottom:-.5rem!important}.xl\\:-mb-3{margin-bottom:-1rem!important}.xl\\:-mb-4{margin-bottom:-1.5rem!important}.xl\\:-mb-5{margin-bottom:-2rem!important}.xl\\:-mb-6{margin-bottom:-3rem!important}.xl\\:-mb-7{margin-bottom:-4rem!important}.xl\\:-mb-8{margin-bottom:-5rem!important}.xl\\:mb-auto{margin-bottom:auto!important}.xl\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.xl\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.xl\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.xl\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.xl\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.xl\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.xl\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.xl\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.xl\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.xl\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.xl\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.xl\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.xl\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.xl\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.xl\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.xl\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.xl\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.xl\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.xl\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.xl\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.xl\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.xl\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.xl\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.xl\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.xl\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.xl\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.xl\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.xl\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.xl\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.xl\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.xl\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.xl\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.xl\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.xl\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.xl\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.xl\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}.shadow-none{box-shadow:none!important}.shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.focus\\:shadow-none:focus{box-shadow:none!important}.hover\\:shadow-none:hover,.active\\:shadow-none:active{box-shadow:none!important}.focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.hover\\:shadow-1:hover,.active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.hover\\:shadow-2:hover,.active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.hover\\:shadow-3:hover,.active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.hover\\:shadow-4:hover,.active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.hover\\:shadow-5:hover,.active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.hover\\:shadow-6:hover,.active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.hover\\:shadow-7:hover,.active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.hover\\:shadow-8:hover,.active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}@media screen and (min-width: 576px){.sm\\:shadow-none{box-shadow:none!important}.sm\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.sm\\:focus\\:shadow-none:focus{box-shadow:none!important}.sm\\:hover\\:shadow-none:hover,.sm\\:active\\:shadow-none:active{box-shadow:none!important}.sm\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:hover\\:shadow-1:hover,.sm\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:hover\\:shadow-2:hover,.sm\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:hover\\:shadow-3:hover,.sm\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:hover\\:shadow-4:hover,.sm\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:hover\\:shadow-5:hover,.sm\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:hover\\:shadow-6:hover,.sm\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:hover\\:shadow-7:hover,.sm\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.sm\\:hover\\:shadow-8:hover,.sm\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 768px){.md\\:shadow-none{box-shadow:none!important}.md\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.md\\:focus\\:shadow-none:focus{box-shadow:none!important}.md\\:hover\\:shadow-none:hover,.md\\:active\\:shadow-none:active{box-shadow:none!important}.md\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:hover\\:shadow-1:hover,.md\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:hover\\:shadow-2:hover,.md\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:hover\\:shadow-3:hover,.md\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:hover\\:shadow-4:hover,.md\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:hover\\:shadow-5:hover,.md\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:hover\\:shadow-6:hover,.md\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:hover\\:shadow-7:hover,.md\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.md\\:hover\\:shadow-8:hover,.md\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 992px){.lg\\:shadow-none{box-shadow:none!important}.lg\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.lg\\:focus\\:shadow-none:focus{box-shadow:none!important}.lg\\:hover\\:shadow-none:hover,.lg\\:active\\:shadow-none:active{box-shadow:none!important}.lg\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:hover\\:shadow-1:hover,.lg\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:hover\\:shadow-2:hover,.lg\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:hover\\:shadow-3:hover,.lg\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:hover\\:shadow-4:hover,.lg\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:hover\\:shadow-5:hover,.lg\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:hover\\:shadow-6:hover,.lg\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:hover\\:shadow-7:hover,.lg\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.lg\\:hover\\:shadow-8:hover,.lg\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 1200px){.xl\\:shadow-none{box-shadow:none!important}.xl\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.xl\\:focus\\:shadow-none:focus{box-shadow:none!important}.xl\\:hover\\:shadow-none:hover,.xl\\:active\\:shadow-none:active{box-shadow:none!important}.xl\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:hover\\:shadow-1:hover,.xl\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:hover\\:shadow-2:hover,.xl\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:hover\\:shadow-3:hover,.xl\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:hover\\:shadow-4:hover,.xl\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:hover\\:shadow-5:hover,.xl\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:hover\\:shadow-6:hover,.xl\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:hover\\:shadow-7:hover,.xl\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.xl\\:hover\\:shadow-8:hover,.xl\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}.border-none{border-width:0px!important;border-style:none}.border-1{border-width:1px!important;border-style:solid}.border-2{border-width:2px!important;border-style:solid}.border-3{border-width:3px!important;border-style:solid}.border-top-none{border-top-width:0px!important;border-top-style:none}.border-top-1{border-top-width:1px!important;border-top-style:solid}.border-top-2{border-top-width:2px!important;border-top-style:solid}.border-top-3{border-top-width:3px!important;border-top-style:solid}.border-right-none{border-right-width:0px!important;border-right-style:none}.border-right-1{border-right-width:1px!important;border-right-style:solid}.border-right-2{border-right-width:2px!important;border-right-style:solid}.border-right-3{border-right-width:3px!important;border-right-style:solid}.border-left-none{border-left-width:0px!important;border-left-style:none}.border-left-1{border-left-width:1px!important;border-left-style:solid}.border-left-2{border-left-width:2px!important;border-left-style:solid}.border-left-3{border-left-width:3px!important;border-left-style:solid}.border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}@media screen and (min-width: 576px){.sm\\:border-none{border-width:0px!important;border-style:none}.sm\\:border-1{border-width:1px!important;border-style:solid}.sm\\:border-2{border-width:2px!important;border-style:solid}.sm\\:border-3{border-width:3px!important;border-style:solid}.sm\\:border-top-none{border-top-width:0px!important;border-top-style:none}.sm\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.sm\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.sm\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.sm\\:border-right-none{border-right-width:0px!important;border-right-style:none}.sm\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.sm\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.sm\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.sm\\:border-left-none{border-left-width:0px!important;border-left-style:none}.sm\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.sm\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.sm\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.sm\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.sm\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.sm\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.sm\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.sm\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.sm\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.sm\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.sm\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.sm\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.sm\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.sm\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.sm\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 768px){.md\\:border-none{border-width:0px!important;border-style:none}.md\\:border-1{border-width:1px!important;border-style:solid}.md\\:border-2{border-width:2px!important;border-style:solid}.md\\:border-3{border-width:3px!important;border-style:solid}.md\\:border-top-none{border-top-width:0px!important;border-top-style:none}.md\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.md\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.md\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.md\\:border-right-none{border-right-width:0px!important;border-right-style:none}.md\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.md\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.md\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.md\\:border-left-none{border-left-width:0px!important;border-left-style:none}.md\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.md\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.md\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.md\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.md\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.md\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.md\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.md\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.md\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.md\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.md\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.md\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.md\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.md\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.md\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 992px){.lg\\:border-none{border-width:0px!important;border-style:none}.lg\\:border-1{border-width:1px!important;border-style:solid}.lg\\:border-2{border-width:2px!important;border-style:solid}.lg\\:border-3{border-width:3px!important;border-style:solid}.lg\\:border-top-none{border-top-width:0px!important;border-top-style:none}.lg\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.lg\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.lg\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.lg\\:border-right-none{border-right-width:0px!important;border-right-style:none}.lg\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.lg\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.lg\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.lg\\:border-left-none{border-left-width:0px!important;border-left-style:none}.lg\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.lg\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.lg\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.lg\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.lg\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.lg\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.lg\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.lg\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.lg\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.lg\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.lg\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.lg\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.lg\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.lg\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.lg\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 1200px){.xl\\:border-none{border-width:0px!important;border-style:none}.xl\\:border-1{border-width:1px!important;border-style:solid}.xl\\:border-2{border-width:2px!important;border-style:solid}.xl\\:border-3{border-width:3px!important;border-style:solid}.xl\\:border-top-none{border-top-width:0px!important;border-top-style:none}.xl\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.xl\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.xl\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.xl\\:border-right-none{border-right-width:0px!important;border-right-style:none}.xl\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.xl\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.xl\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.xl\\:border-left-none{border-left-width:0px!important;border-left-style:none}.xl\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.xl\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.xl\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.xl\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.xl\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.xl\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.xl\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.xl\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.xl\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.xl\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.xl\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.xl\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.xl\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.xl\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.xl\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}.border-solid{border-style:solid!important}.border-dashed{border-style:dashed!important}.border-dotted{border-style:dotted!important}.border-double{border-style:double!important}@media screen and (min-width: 576px){.sm\\:border-solid{border-style:solid!important}.sm\\:border-dashed{border-style:dashed!important}.sm\\:border-dotted{border-style:dotted!important}.sm\\:border-double{border-style:double!important}}@media screen and (min-width: 768px){.md\\:border-solid{border-style:solid!important}.md\\:border-dashed{border-style:dashed!important}.md\\:border-dotted{border-style:dotted!important}.md\\:border-double{border-style:double!important}}@media screen and (min-width: 992px){.lg\\:border-solid{border-style:solid!important}.lg\\:border-dashed{border-style:dashed!important}.lg\\:border-dotted{border-style:dotted!important}.lg\\:border-double{border-style:double!important}}@media screen and (min-width: 1200px){.xl\\:border-solid{border-style:solid!important}.xl\\:border-dashed{border-style:dashed!important}.xl\\:border-dotted{border-style:dotted!important}.xl\\:border-double{border-style:double!important}}.border-noround{border-radius:0!important}.border-round{border-radius:var(--border-radius)!important}.border-round-xs{border-radius:.125rem!important}.border-round-sm{border-radius:.25rem!important}.border-round-md{border-radius:.375rem!important}.border-round-lg{border-radius:.5rem!important}.border-round-xl{border-radius:.75rem!important}.border-round-2xl{border-radius:1rem!important}.border-round-3xl{border-radius:1.5rem!important}.border-circle{border-radius:50%!important}@media screen and (min-width: 576px){.sm\\:border-noround{border-radius:0!important}.sm\\:border-round{border-radius:var(--border-radius)!important}.sm\\:border-round-xs{border-radius:.125rem!important}.sm\\:border-round-sm{border-radius:.25rem!important}.sm\\:border-round-md{border-radius:.375rem!important}.sm\\:border-round-lg{border-radius:.5rem!important}.sm\\:border-round-xl{border-radius:.75rem!important}.sm\\:border-round-2xl{border-radius:1rem!important}.sm\\:border-round-3xl{border-radius:1.5rem!important}.sm\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 768px){.md\\:border-noround{border-radius:0!important}.md\\:border-round{border-radius:var(--border-radius)!important}.md\\:border-round-xs{border-radius:.125rem!important}.md\\:border-round-sm{border-radius:.25rem!important}.md\\:border-round-md{border-radius:.375rem!important}.md\\:border-round-lg{border-radius:.5rem!important}.md\\:border-round-xl{border-radius:.75rem!important}.md\\:border-round-2xl{border-radius:1rem!important}.md\\:border-round-3xl{border-radius:1.5rem!important}.md\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 992px){.lg\\:border-noround{border-radius:0!important}.lg\\:border-round{border-radius:var(--border-radius)!important}.lg\\:border-round-xs{border-radius:.125rem!important}.lg\\:border-round-sm{border-radius:.25rem!important}.lg\\:border-round-md{border-radius:.375rem!important}.lg\\:border-round-lg{border-radius:.5rem!important}.lg\\:border-round-xl{border-radius:.75rem!important}.lg\\:border-round-2xl{border-radius:1rem!important}.lg\\:border-round-3xl{border-radius:1.5rem!important}.lg\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 1200px){.xl\\:border-noround{border-radius:0!important}.xl\\:border-round{border-radius:var(--border-radius)!important}.xl\\:border-round-xs{border-radius:.125rem!important}.xl\\:border-round-sm{border-radius:.25rem!important}.xl\\:border-round-md{border-radius:.375rem!important}.xl\\:border-round-lg{border-radius:.5rem!important}.xl\\:border-round-xl{border-radius:.75rem!important}.xl\\:border-round-2xl{border-radius:1rem!important}.xl\\:border-round-3xl{border-radius:1.5rem!important}.xl\\:border-circle{border-radius:50%!important}}.border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}@media screen and (min-width: 576px){.sm\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.sm\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.sm\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.sm\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.sm\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.sm\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.sm\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.sm\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.sm\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.sm\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.sm\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.sm\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.sm\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.sm\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.sm\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.sm\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.sm\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.sm\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.sm\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.sm\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.sm\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.sm\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.sm\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.sm\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.sm\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.sm\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.sm\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.sm\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.sm\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.sm\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.sm\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.sm\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.sm\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.sm\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.sm\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.sm\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.sm\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.sm\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.sm\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.sm\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 768px){.md\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.md\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.md\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.md\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.md\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.md\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.md\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.md\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.md\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.md\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.md\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.md\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.md\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.md\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.md\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.md\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.md\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.md\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.md\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.md\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.md\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.md\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.md\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.md\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.md\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.md\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.md\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.md\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.md\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.md\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.md\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.md\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.md\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.md\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.md\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.md\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.md\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.md\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.md\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.md\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 992px){.lg\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.lg\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.lg\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.lg\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.lg\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.lg\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.lg\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.lg\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.lg\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.lg\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.lg\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.lg\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.lg\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.lg\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.lg\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.lg\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.lg\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.lg\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.lg\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.lg\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.lg\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.lg\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.lg\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.lg\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.lg\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.lg\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.lg\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.lg\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.lg\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.lg\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.lg\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.lg\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.lg\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.lg\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.lg\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.lg\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.lg\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.lg\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.lg\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.lg\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 1200px){.xl\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.xl\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.xl\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.xl\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.xl\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.xl\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.xl\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.xl\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.xl\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.xl\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.xl\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.xl\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.xl\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.xl\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.xl\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.xl\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.xl\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.xl\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.xl\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.xl\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.xl\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.xl\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.xl\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.xl\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.xl\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.xl\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.xl\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.xl\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.xl\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.xl\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.xl\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.xl\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.xl\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.xl\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.xl\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.xl\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.xl\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.xl\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.xl\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.xl\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}.w-full{width:100%!important}.w-screen{width:100vw!important}.w-auto{width:auto!important}.w-1{width:8.3333%!important}.w-2{width:16.6667%!important}.w-3{width:25%!important}.w-4{width:33.3333%!important}.w-5{width:41.6667%!important}.w-6{width:50%!important}.w-7{width:58.3333%!important}.w-8{width:66.6667%!important}.w-9{width:75%!important}.w-10{width:83.3333%!important}.w-11{width:91.6667%!important}.w-12{width:100%!important}.w-min{width:min-content!important}.w-max{width:max-content!important}.w-fit{width:-moz-fit-content!important;width:fit-content!important}.w-1rem{width:1rem!important}.w-2rem{width:2rem!important}.w-3rem{width:3rem!important}.w-4rem{width:4rem!important}.w-5rem{width:5rem!important}.w-6rem{width:6rem!important}.w-7rem{width:7rem!important}.w-8rem{width:8rem!important}.w-9rem{width:9rem!important}.w-10rem{width:10rem!important}.w-11rem{width:11rem!important}.w-12rem{width:12rem!important}.w-13rem{width:13rem!important}.w-14rem{width:14rem!important}.w-15rem{width:15rem!important}.w-16rem{width:16rem!important}.w-17rem{width:17rem!important}.w-18rem{width:18rem!important}.w-19rem{width:19rem!important}.w-20rem{width:20rem!important}.w-21rem{width:21rem!important}.w-22rem{width:22rem!important}.w-23rem{width:23rem!important}.w-24rem{width:24rem!important}.w-25rem{width:25rem!important}.w-26rem{width:26rem!important}.w-27rem{width:27rem!important}.w-28rem{width:28rem!important}.w-29rem{width:29rem!important}.w-30rem{width:30rem!important}@media screen and (min-width: 576px){.sm\\:w-full{width:100%!important}.sm\\:w-screen{width:100vw!important}.sm\\:w-auto{width:auto!important}.sm\\:w-1{width:8.3333%!important}.sm\\:w-2{width:16.6667%!important}.sm\\:w-3{width:25%!important}.sm\\:w-4{width:33.3333%!important}.sm\\:w-5{width:41.6667%!important}.sm\\:w-6{width:50%!important}.sm\\:w-7{width:58.3333%!important}.sm\\:w-8{width:66.6667%!important}.sm\\:w-9{width:75%!important}.sm\\:w-10{width:83.3333%!important}.sm\\:w-11{width:91.6667%!important}.sm\\:w-12{width:100%!important}.sm\\:w-min{width:min-content!important}.sm\\:w-max{width:max-content!important}.sm\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.sm\\:w-1rem{width:1rem!important}.sm\\:w-2rem{width:2rem!important}.sm\\:w-3rem{width:3rem!important}.sm\\:w-4rem{width:4rem!important}.sm\\:w-5rem{width:5rem!important}.sm\\:w-6rem{width:6rem!important}.sm\\:w-7rem{width:7rem!important}.sm\\:w-8rem{width:8rem!important}.sm\\:w-9rem{width:9rem!important}.sm\\:w-10rem{width:10rem!important}.sm\\:w-11rem{width:11rem!important}.sm\\:w-12rem{width:12rem!important}.sm\\:w-13rem{width:13rem!important}.sm\\:w-14rem{width:14rem!important}.sm\\:w-15rem{width:15rem!important}.sm\\:w-16rem{width:16rem!important}.sm\\:w-17rem{width:17rem!important}.sm\\:w-18rem{width:18rem!important}.sm\\:w-19rem{width:19rem!important}.sm\\:w-20rem{width:20rem!important}.sm\\:w-21rem{width:21rem!important}.sm\\:w-22rem{width:22rem!important}.sm\\:w-23rem{width:23rem!important}.sm\\:w-24rem{width:24rem!important}.sm\\:w-25rem{width:25rem!important}.sm\\:w-26rem{width:26rem!important}.sm\\:w-27rem{width:27rem!important}.sm\\:w-28rem{width:28rem!important}.sm\\:w-29rem{width:29rem!important}.sm\\:w-30rem{width:30rem!important}}@media screen and (min-width: 768px){.md\\:w-full{width:100%!important}.md\\:w-screen{width:100vw!important}.md\\:w-auto{width:auto!important}.md\\:w-1{width:8.3333%!important}.md\\:w-2{width:16.6667%!important}.md\\:w-3{width:25%!important}.md\\:w-4{width:33.3333%!important}.md\\:w-5{width:41.6667%!important}.md\\:w-6{width:50%!important}.md\\:w-7{width:58.3333%!important}.md\\:w-8{width:66.6667%!important}.md\\:w-9{width:75%!important}.md\\:w-10{width:83.3333%!important}.md\\:w-11{width:91.6667%!important}.md\\:w-12{width:100%!important}.md\\:w-min{width:min-content!important}.md\\:w-max{width:max-content!important}.md\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.md\\:w-1rem{width:1rem!important}.md\\:w-2rem{width:2rem!important}.md\\:w-3rem{width:3rem!important}.md\\:w-4rem{width:4rem!important}.md\\:w-5rem{width:5rem!important}.md\\:w-6rem{width:6rem!important}.md\\:w-7rem{width:7rem!important}.md\\:w-8rem{width:8rem!important}.md\\:w-9rem{width:9rem!important}.md\\:w-10rem{width:10rem!important}.md\\:w-11rem{width:11rem!important}.md\\:w-12rem{width:12rem!important}.md\\:w-13rem{width:13rem!important}.md\\:w-14rem{width:14rem!important}.md\\:w-15rem{width:15rem!important}.md\\:w-16rem{width:16rem!important}.md\\:w-17rem{width:17rem!important}.md\\:w-18rem{width:18rem!important}.md\\:w-19rem{width:19rem!important}.md\\:w-20rem{width:20rem!important}.md\\:w-21rem{width:21rem!important}.md\\:w-22rem{width:22rem!important}.md\\:w-23rem{width:23rem!important}.md\\:w-24rem{width:24rem!important}.md\\:w-25rem{width:25rem!important}.md\\:w-26rem{width:26rem!important}.md\\:w-27rem{width:27rem!important}.md\\:w-28rem{width:28rem!important}.md\\:w-29rem{width:29rem!important}.md\\:w-30rem{width:30rem!important}}@media screen and (min-width: 992px){.lg\\:w-full{width:100%!important}.lg\\:w-screen{width:100vw!important}.lg\\:w-auto{width:auto!important}.lg\\:w-1{width:8.3333%!important}.lg\\:w-2{width:16.6667%!important}.lg\\:w-3{width:25%!important}.lg\\:w-4{width:33.3333%!important}.lg\\:w-5{width:41.6667%!important}.lg\\:w-6{width:50%!important}.lg\\:w-7{width:58.3333%!important}.lg\\:w-8{width:66.6667%!important}.lg\\:w-9{width:75%!important}.lg\\:w-10{width:83.3333%!important}.lg\\:w-11{width:91.6667%!important}.lg\\:w-12{width:100%!important}.lg\\:w-min{width:min-content!important}.lg\\:w-max{width:max-content!important}.lg\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.lg\\:w-1rem{width:1rem!important}.lg\\:w-2rem{width:2rem!important}.lg\\:w-3rem{width:3rem!important}.lg\\:w-4rem{width:4rem!important}.lg\\:w-5rem{width:5rem!important}.lg\\:w-6rem{width:6rem!important}.lg\\:w-7rem{width:7rem!important}.lg\\:w-8rem{width:8rem!important}.lg\\:w-9rem{width:9rem!important}.lg\\:w-10rem{width:10rem!important}.lg\\:w-11rem{width:11rem!important}.lg\\:w-12rem{width:12rem!important}.lg\\:w-13rem{width:13rem!important}.lg\\:w-14rem{width:14rem!important}.lg\\:w-15rem{width:15rem!important}.lg\\:w-16rem{width:16rem!important}.lg\\:w-17rem{width:17rem!important}.lg\\:w-18rem{width:18rem!important}.lg\\:w-19rem{width:19rem!important}.lg\\:w-20rem{width:20rem!important}.lg\\:w-21rem{width:21rem!important}.lg\\:w-22rem{width:22rem!important}.lg\\:w-23rem{width:23rem!important}.lg\\:w-24rem{width:24rem!important}.lg\\:w-25rem{width:25rem!important}.lg\\:w-26rem{width:26rem!important}.lg\\:w-27rem{width:27rem!important}.lg\\:w-28rem{width:28rem!important}.lg\\:w-29rem{width:29rem!important}.lg\\:w-30rem{width:30rem!important}}@media screen and (min-width: 1200px){.xl\\:w-full{width:100%!important}.xl\\:w-screen{width:100vw!important}.xl\\:w-auto{width:auto!important}.xl\\:w-1{width:8.3333%!important}.xl\\:w-2{width:16.6667%!important}.xl\\:w-3{width:25%!important}.xl\\:w-4{width:33.3333%!important}.xl\\:w-5{width:41.6667%!important}.xl\\:w-6{width:50%!important}.xl\\:w-7{width:58.3333%!important}.xl\\:w-8{width:66.6667%!important}.xl\\:w-9{width:75%!important}.xl\\:w-10{width:83.3333%!important}.xl\\:w-11{width:91.6667%!important}.xl\\:w-12{width:100%!important}.xl\\:w-min{width:min-content!important}.xl\\:w-max{width:max-content!important}.xl\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.xl\\:w-1rem{width:1rem!important}.xl\\:w-2rem{width:2rem!important}.xl\\:w-3rem{width:3rem!important}.xl\\:w-4rem{width:4rem!important}.xl\\:w-5rem{width:5rem!important}.xl\\:w-6rem{width:6rem!important}.xl\\:w-7rem{width:7rem!important}.xl\\:w-8rem{width:8rem!important}.xl\\:w-9rem{width:9rem!important}.xl\\:w-10rem{width:10rem!important}.xl\\:w-11rem{width:11rem!important}.xl\\:w-12rem{width:12rem!important}.xl\\:w-13rem{width:13rem!important}.xl\\:w-14rem{width:14rem!important}.xl\\:w-15rem{width:15rem!important}.xl\\:w-16rem{width:16rem!important}.xl\\:w-17rem{width:17rem!important}.xl\\:w-18rem{width:18rem!important}.xl\\:w-19rem{width:19rem!important}.xl\\:w-20rem{width:20rem!important}.xl\\:w-21rem{width:21rem!important}.xl\\:w-22rem{width:22rem!important}.xl\\:w-23rem{width:23rem!important}.xl\\:w-24rem{width:24rem!important}.xl\\:w-25rem{width:25rem!important}.xl\\:w-26rem{width:26rem!important}.xl\\:w-27rem{width:27rem!important}.xl\\:w-28rem{width:28rem!important}.xl\\:w-29rem{width:29rem!important}.xl\\:w-30rem{width:30rem!important}}.h-full{height:100%!important}.h-screen{height:100vh!important}.h-auto{height:auto!important}.h-min{height:min-content!important}.h-max{height:max-content!important}.h-fit{height:-moz-fit-content!important;height:fit-content!important}.h-1rem{height:1rem!important}.h-2rem{height:2rem!important}.h-3rem{height:3rem!important}.h-4rem{height:4rem!important}.h-5rem{height:5rem!important}.h-6rem{height:6rem!important}.h-7rem{height:7rem!important}.h-8rem{height:8rem!important}.h-9rem{height:9rem!important}.h-10rem{height:10rem!important}.h-11rem{height:11rem!important}.h-12rem{height:12rem!important}.h-13rem{height:13rem!important}.h-14rem{height:14rem!important}.h-15rem{height:15rem!important}.h-16rem{height:16rem!important}.h-17rem{height:17rem!important}.h-18rem{height:18rem!important}.h-19rem{height:19rem!important}.h-20rem{height:20rem!important}.h-21rem{height:21rem!important}.h-22rem{height:22rem!important}.h-23rem{height:23rem!important}.h-24rem{height:24rem!important}.h-25rem{height:25rem!important}.h-26rem{height:26rem!important}.h-27rem{height:27rem!important}.h-28rem{height:28rem!important}.h-29rem{height:29rem!important}.h-30rem{height:30rem!important}@media screen and (min-width: 576px){.sm\\:h-full{height:100%!important}.sm\\:h-screen{height:100vh!important}.sm\\:h-auto{height:auto!important}.sm\\:h-min{height:min-content!important}.sm\\:h-max{height:max-content!important}.sm\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.sm\\:h-1rem{height:1rem!important}.sm\\:h-2rem{height:2rem!important}.sm\\:h-3rem{height:3rem!important}.sm\\:h-4rem{height:4rem!important}.sm\\:h-5rem{height:5rem!important}.sm\\:h-6rem{height:6rem!important}.sm\\:h-7rem{height:7rem!important}.sm\\:h-8rem{height:8rem!important}.sm\\:h-9rem{height:9rem!important}.sm\\:h-10rem{height:10rem!important}.sm\\:h-11rem{height:11rem!important}.sm\\:h-12rem{height:12rem!important}.sm\\:h-13rem{height:13rem!important}.sm\\:h-14rem{height:14rem!important}.sm\\:h-15rem{height:15rem!important}.sm\\:h-16rem{height:16rem!important}.sm\\:h-17rem{height:17rem!important}.sm\\:h-18rem{height:18rem!important}.sm\\:h-19rem{height:19rem!important}.sm\\:h-20rem{height:20rem!important}.sm\\:h-21rem{height:21rem!important}.sm\\:h-22rem{height:22rem!important}.sm\\:h-23rem{height:23rem!important}.sm\\:h-24rem{height:24rem!important}.sm\\:h-25rem{height:25rem!important}.sm\\:h-26rem{height:26rem!important}.sm\\:h-27rem{height:27rem!important}.sm\\:h-28rem{height:28rem!important}.sm\\:h-29rem{height:29rem!important}.sm\\:h-30rem{height:30rem!important}}@media screen and (min-width: 768px){.md\\:h-full{height:100%!important}.md\\:h-screen{height:100vh!important}.md\\:h-auto{height:auto!important}.md\\:h-min{height:min-content!important}.md\\:h-max{height:max-content!important}.md\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.md\\:h-1rem{height:1rem!important}.md\\:h-2rem{height:2rem!important}.md\\:h-3rem{height:3rem!important}.md\\:h-4rem{height:4rem!important}.md\\:h-5rem{height:5rem!important}.md\\:h-6rem{height:6rem!important}.md\\:h-7rem{height:7rem!important}.md\\:h-8rem{height:8rem!important}.md\\:h-9rem{height:9rem!important}.md\\:h-10rem{height:10rem!important}.md\\:h-11rem{height:11rem!important}.md\\:h-12rem{height:12rem!important}.md\\:h-13rem{height:13rem!important}.md\\:h-14rem{height:14rem!important}.md\\:h-15rem{height:15rem!important}.md\\:h-16rem{height:16rem!important}.md\\:h-17rem{height:17rem!important}.md\\:h-18rem{height:18rem!important}.md\\:h-19rem{height:19rem!important}.md\\:h-20rem{height:20rem!important}.md\\:h-21rem{height:21rem!important}.md\\:h-22rem{height:22rem!important}.md\\:h-23rem{height:23rem!important}.md\\:h-24rem{height:24rem!important}.md\\:h-25rem{height:25rem!important}.md\\:h-26rem{height:26rem!important}.md\\:h-27rem{height:27rem!important}.md\\:h-28rem{height:28rem!important}.md\\:h-29rem{height:29rem!important}.md\\:h-30rem{height:30rem!important}}@media screen and (min-width: 992px){.lg\\:h-full{height:100%!important}.lg\\:h-screen{height:100vh!important}.lg\\:h-auto{height:auto!important}.lg\\:h-min{height:min-content!important}.lg\\:h-max{height:max-content!important}.lg\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.lg\\:h-1rem{height:1rem!important}.lg\\:h-2rem{height:2rem!important}.lg\\:h-3rem{height:3rem!important}.lg\\:h-4rem{height:4rem!important}.lg\\:h-5rem{height:5rem!important}.lg\\:h-6rem{height:6rem!important}.lg\\:h-7rem{height:7rem!important}.lg\\:h-8rem{height:8rem!important}.lg\\:h-9rem{height:9rem!important}.lg\\:h-10rem{height:10rem!important}.lg\\:h-11rem{height:11rem!important}.lg\\:h-12rem{height:12rem!important}.lg\\:h-13rem{height:13rem!important}.lg\\:h-14rem{height:14rem!important}.lg\\:h-15rem{height:15rem!important}.lg\\:h-16rem{height:16rem!important}.lg\\:h-17rem{height:17rem!important}.lg\\:h-18rem{height:18rem!important}.lg\\:h-19rem{height:19rem!important}.lg\\:h-20rem{height:20rem!important}.lg\\:h-21rem{height:21rem!important}.lg\\:h-22rem{height:22rem!important}.lg\\:h-23rem{height:23rem!important}.lg\\:h-24rem{height:24rem!important}.lg\\:h-25rem{height:25rem!important}.lg\\:h-26rem{height:26rem!important}.lg\\:h-27rem{height:27rem!important}.lg\\:h-28rem{height:28rem!important}.lg\\:h-29rem{height:29rem!important}.lg\\:h-30rem{height:30rem!important}}@media screen and (min-width: 1200px){.xl\\:h-full{height:100%!important}.xl\\:h-screen{height:100vh!important}.xl\\:h-auto{height:auto!important}.xl\\:h-min{height:min-content!important}.xl\\:h-max{height:max-content!important}.xl\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.xl\\:h-1rem{height:1rem!important}.xl\\:h-2rem{height:2rem!important}.xl\\:h-3rem{height:3rem!important}.xl\\:h-4rem{height:4rem!important}.xl\\:h-5rem{height:5rem!important}.xl\\:h-6rem{height:6rem!important}.xl\\:h-7rem{height:7rem!important}.xl\\:h-8rem{height:8rem!important}.xl\\:h-9rem{height:9rem!important}.xl\\:h-10rem{height:10rem!important}.xl\\:h-11rem{height:11rem!important}.xl\\:h-12rem{height:12rem!important}.xl\\:h-13rem{height:13rem!important}.xl\\:h-14rem{height:14rem!important}.xl\\:h-15rem{height:15rem!important}.xl\\:h-16rem{height:16rem!important}.xl\\:h-17rem{height:17rem!important}.xl\\:h-18rem{height:18rem!important}.xl\\:h-19rem{height:19rem!important}.xl\\:h-20rem{height:20rem!important}.xl\\:h-21rem{height:21rem!important}.xl\\:h-22rem{height:22rem!important}.xl\\:h-23rem{height:23rem!important}.xl\\:h-24rem{height:24rem!important}.xl\\:h-25rem{height:25rem!important}.xl\\:h-26rem{height:26rem!important}.xl\\:h-27rem{height:27rem!important}.xl\\:h-28rem{height:28rem!important}.xl\\:h-29rem{height:29rem!important}.xl\\:h-30rem{height:30rem!important}}.min-w-0{min-width:0px!important}.min-w-full{min-width:100%!important}.min-w-screen{min-width:100vw!important}.min-w-min{min-width:min-content!important}.min-w-max{min-width:max-content!important}@media screen and (min-width: 576px){.sm\\:min-w-0{min-width:0px!important}.sm\\:min-w-full{min-width:100%!important}.sm\\:min-w-screen{min-width:100vw!important}.sm\\:min-w-min{min-width:min-content!important}.sm\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 768px){.md\\:min-w-0{min-width:0px!important}.md\\:min-w-full{min-width:100%!important}.md\\:min-w-screen{min-width:100vw!important}.md\\:min-w-min{min-width:min-content!important}.md\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 992px){.lg\\:min-w-0{min-width:0px!important}.lg\\:min-w-full{min-width:100%!important}.lg\\:min-w-screen{min-width:100vw!important}.lg\\:min-w-min{min-width:min-content!important}.lg\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 1200px){.xl\\:min-w-0{min-width:0px!important}.xl\\:min-w-full{min-width:100%!important}.xl\\:min-w-screen{min-width:100vw!important}.xl\\:min-w-min{min-width:min-content!important}.xl\\:min-w-max{min-width:max-content!important}}.max-w-0{max-width:0px!important}.max-w-full{max-width:100%!important}.max-w-screen{max-width:100vw!important}.max-w-min{max-width:min-content!important}.max-w-max{max-width:max-content!important}.max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.max-w-1rem{max-width:1rem!important}.max-w-2rem{max-width:2rem!important}.max-w-3rem{max-width:3rem!important}.max-w-4rem{max-width:4rem!important}.max-w-5rem{max-width:5rem!important}.max-w-6rem{max-width:6rem!important}.max-w-7rem{max-width:7rem!important}.max-w-8rem{max-width:8rem!important}.max-w-9rem{max-width:9rem!important}.max-w-10rem{max-width:10rem!important}.max-w-11rem{max-width:11rem!important}.max-w-12rem{max-width:12rem!important}.max-w-13rem{max-width:13rem!important}.max-w-14rem{max-width:14rem!important}.max-w-15rem{max-width:15rem!important}.max-w-16rem{max-width:16rem!important}.max-w-17rem{max-width:17rem!important}.max-w-18rem{max-width:18rem!important}.max-w-19rem{max-width:19rem!important}.max-w-20rem{max-width:20rem!important}.max-w-21rem{max-width:21rem!important}.max-w-22rem{max-width:22rem!important}.max-w-23rem{max-width:23rem!important}.max-w-24rem{max-width:24rem!important}.max-w-25rem{max-width:25rem!important}.max-w-26rem{max-width:26rem!important}.max-w-27rem{max-width:27rem!important}.max-w-28rem{max-width:28rem!important}.max-w-29rem{max-width:29rem!important}.max-w-30rem{max-width:30rem!important}@media screen and (min-width: 576px){.sm\\:max-w-0{max-width:0px!important}.sm\\:max-w-full{max-width:100%!important}.sm\\:max-w-screen{max-width:100vw!important}.sm\\:max-w-min{max-width:min-content!important}.sm\\:max-w-max{max-width:max-content!important}.sm\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.sm\\:max-w-1rem{max-width:1rem!important}.sm\\:max-w-2rem{max-width:2rem!important}.sm\\:max-w-3rem{max-width:3rem!important}.sm\\:max-w-4rem{max-width:4rem!important}.sm\\:max-w-5rem{max-width:5rem!important}.sm\\:max-w-6rem{max-width:6rem!important}.sm\\:max-w-7rem{max-width:7rem!important}.sm\\:max-w-8rem{max-width:8rem!important}.sm\\:max-w-9rem{max-width:9rem!important}.sm\\:max-w-10rem{max-width:10rem!important}.sm\\:max-w-11rem{max-width:11rem!important}.sm\\:max-w-12rem{max-width:12rem!important}.sm\\:max-w-13rem{max-width:13rem!important}.sm\\:max-w-14rem{max-width:14rem!important}.sm\\:max-w-15rem{max-width:15rem!important}.sm\\:max-w-16rem{max-width:16rem!important}.sm\\:max-w-17rem{max-width:17rem!important}.sm\\:max-w-18rem{max-width:18rem!important}.sm\\:max-w-19rem{max-width:19rem!important}.sm\\:max-w-20rem{max-width:20rem!important}.sm\\:max-w-21rem{max-width:21rem!important}.sm\\:max-w-22rem{max-width:22rem!important}.sm\\:max-w-23rem{max-width:23rem!important}.sm\\:max-w-24rem{max-width:24rem!important}.sm\\:max-w-25rem{max-width:25rem!important}.sm\\:max-w-26rem{max-width:26rem!important}.sm\\:max-w-27rem{max-width:27rem!important}.sm\\:max-w-28rem{max-width:28rem!important}.sm\\:max-w-29rem{max-width:29rem!important}.sm\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 768px){.md\\:max-w-0{max-width:0px!important}.md\\:max-w-full{max-width:100%!important}.md\\:max-w-screen{max-width:100vw!important}.md\\:max-w-min{max-width:min-content!important}.md\\:max-w-max{max-width:max-content!important}.md\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.md\\:max-w-1rem{max-width:1rem!important}.md\\:max-w-2rem{max-width:2rem!important}.md\\:max-w-3rem{max-width:3rem!important}.md\\:max-w-4rem{max-width:4rem!important}.md\\:max-w-5rem{max-width:5rem!important}.md\\:max-w-6rem{max-width:6rem!important}.md\\:max-w-7rem{max-width:7rem!important}.md\\:max-w-8rem{max-width:8rem!important}.md\\:max-w-9rem{max-width:9rem!important}.md\\:max-w-10rem{max-width:10rem!important}.md\\:max-w-11rem{max-width:11rem!important}.md\\:max-w-12rem{max-width:12rem!important}.md\\:max-w-13rem{max-width:13rem!important}.md\\:max-w-14rem{max-width:14rem!important}.md\\:max-w-15rem{max-width:15rem!important}.md\\:max-w-16rem{max-width:16rem!important}.md\\:max-w-17rem{max-width:17rem!important}.md\\:max-w-18rem{max-width:18rem!important}.md\\:max-w-19rem{max-width:19rem!important}.md\\:max-w-20rem{max-width:20rem!important}.md\\:max-w-21rem{max-width:21rem!important}.md\\:max-w-22rem{max-width:22rem!important}.md\\:max-w-23rem{max-width:23rem!important}.md\\:max-w-24rem{max-width:24rem!important}.md\\:max-w-25rem{max-width:25rem!important}.md\\:max-w-26rem{max-width:26rem!important}.md\\:max-w-27rem{max-width:27rem!important}.md\\:max-w-28rem{max-width:28rem!important}.md\\:max-w-29rem{max-width:29rem!important}.md\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 992px){.lg\\:max-w-0{max-width:0px!important}.lg\\:max-w-full{max-width:100%!important}.lg\\:max-w-screen{max-width:100vw!important}.lg\\:max-w-min{max-width:min-content!important}.lg\\:max-w-max{max-width:max-content!important}.lg\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.lg\\:max-w-1rem{max-width:1rem!important}.lg\\:max-w-2rem{max-width:2rem!important}.lg\\:max-w-3rem{max-width:3rem!important}.lg\\:max-w-4rem{max-width:4rem!important}.lg\\:max-w-5rem{max-width:5rem!important}.lg\\:max-w-6rem{max-width:6rem!important}.lg\\:max-w-7rem{max-width:7rem!important}.lg\\:max-w-8rem{max-width:8rem!important}.lg\\:max-w-9rem{max-width:9rem!important}.lg\\:max-w-10rem{max-width:10rem!important}.lg\\:max-w-11rem{max-width:11rem!important}.lg\\:max-w-12rem{max-width:12rem!important}.lg\\:max-w-13rem{max-width:13rem!important}.lg\\:max-w-14rem{max-width:14rem!important}.lg\\:max-w-15rem{max-width:15rem!important}.lg\\:max-w-16rem{max-width:16rem!important}.lg\\:max-w-17rem{max-width:17rem!important}.lg\\:max-w-18rem{max-width:18rem!important}.lg\\:max-w-19rem{max-width:19rem!important}.lg\\:max-w-20rem{max-width:20rem!important}.lg\\:max-w-21rem{max-width:21rem!important}.lg\\:max-w-22rem{max-width:22rem!important}.lg\\:max-w-23rem{max-width:23rem!important}.lg\\:max-w-24rem{max-width:24rem!important}.lg\\:max-w-25rem{max-width:25rem!important}.lg\\:max-w-26rem{max-width:26rem!important}.lg\\:max-w-27rem{max-width:27rem!important}.lg\\:max-w-28rem{max-width:28rem!important}.lg\\:max-w-29rem{max-width:29rem!important}.lg\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 1200px){.xl\\:max-w-0{max-width:0px!important}.xl\\:max-w-full{max-width:100%!important}.xl\\:max-w-screen{max-width:100vw!important}.xl\\:max-w-min{max-width:min-content!important}.xl\\:max-w-max{max-width:max-content!important}.xl\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.xl\\:max-w-1rem{max-width:1rem!important}.xl\\:max-w-2rem{max-width:2rem!important}.xl\\:max-w-3rem{max-width:3rem!important}.xl\\:max-w-4rem{max-width:4rem!important}.xl\\:max-w-5rem{max-width:5rem!important}.xl\\:max-w-6rem{max-width:6rem!important}.xl\\:max-w-7rem{max-width:7rem!important}.xl\\:max-w-8rem{max-width:8rem!important}.xl\\:max-w-9rem{max-width:9rem!important}.xl\\:max-w-10rem{max-width:10rem!important}.xl\\:max-w-11rem{max-width:11rem!important}.xl\\:max-w-12rem{max-width:12rem!important}.xl\\:max-w-13rem{max-width:13rem!important}.xl\\:max-w-14rem{max-width:14rem!important}.xl\\:max-w-15rem{max-width:15rem!important}.xl\\:max-w-16rem{max-width:16rem!important}.xl\\:max-w-17rem{max-width:17rem!important}.xl\\:max-w-18rem{max-width:18rem!important}.xl\\:max-w-19rem{max-width:19rem!important}.xl\\:max-w-20rem{max-width:20rem!important}.xl\\:max-w-21rem{max-width:21rem!important}.xl\\:max-w-22rem{max-width:22rem!important}.xl\\:max-w-23rem{max-width:23rem!important}.xl\\:max-w-24rem{max-width:24rem!important}.xl\\:max-w-25rem{max-width:25rem!important}.xl\\:max-w-26rem{max-width:26rem!important}.xl\\:max-w-27rem{max-width:27rem!important}.xl\\:max-w-28rem{max-width:28rem!important}.xl\\:max-w-29rem{max-width:29rem!important}.xl\\:max-w-30rem{max-width:30rem!important}}.min-h-0{min-height:0px!important}.min-h-full{min-height:100%!important}.min-h-screen{min-height:100vh!important}@media screen and (min-width: 576px){.sm\\:min-h-0{min-height:0px!important}.sm\\:min-h-full{min-height:100%!important}.sm\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 768px){.md\\:min-h-0{min-height:0px!important}.md\\:min-h-full{min-height:100%!important}.md\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 992px){.lg\\:min-h-0{min-height:0px!important}.lg\\:min-h-full{min-height:100%!important}.lg\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 1200px){.xl\\:min-h-0{min-height:0px!important}.xl\\:min-h-full{min-height:100%!important}.xl\\:min-h-screen{min-height:100vh!important}}.max-h-0{max-height:0px!important}.max-h-full{max-height:100%!important}.max-h-screen{max-height:100vh!important}.max-h-min{max-height:min-content!important}.max-h-max{max-height:max-content!important}.max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.max-h-1rem{max-height:1rem!important}.max-h-2rem{max-height:2rem!important}.max-h-3rem{max-height:3rem!important}.max-h-4rem{max-height:4rem!important}.max-h-5rem{max-height:5rem!important}.max-h-6rem{max-height:6rem!important}.max-h-7rem{max-height:7rem!important}.max-h-8rem{max-height:8rem!important}.max-h-9rem{max-height:9rem!important}.max-h-10rem{max-height:10rem!important}.max-h-11rem{max-height:11rem!important}.max-h-12rem{max-height:12rem!important}.max-h-13rem{max-height:13rem!important}.max-h-14rem{max-height:14rem!important}.max-h-15rem{max-height:15rem!important}.max-h-16rem{max-height:16rem!important}.max-h-17rem{max-height:17rem!important}.max-h-18rem{max-height:18rem!important}.max-h-19rem{max-height:19rem!important}.max-h-20rem{max-height:20rem!important}.max-h-21rem{max-height:21rem!important}.max-h-22rem{max-height:22rem!important}.max-h-23rem{max-height:23rem!important}.max-h-24rem{max-height:24rem!important}.max-h-25rem{max-height:25rem!important}.max-h-26rem{max-height:26rem!important}.max-h-27rem{max-height:27rem!important}.max-h-28rem{max-height:28rem!important}.max-h-29rem{max-height:29rem!important}.max-h-30rem{max-height:30rem!important}@media screen and (min-width: 576px){.sm\\:max-h-0{max-height:0px!important}.sm\\:max-h-full{max-height:100%!important}.sm\\:max-h-screen{max-height:100vh!important}.sm\\:max-h-min{max-height:min-content!important}.sm\\:max-h-max{max-height:max-content!important}.sm\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.sm\\:max-h-1rem{max-height:1rem!important}.sm\\:max-h-2rem{max-height:2rem!important}.sm\\:max-h-3rem{max-height:3rem!important}.sm\\:max-h-4rem{max-height:4rem!important}.sm\\:max-h-5rem{max-height:5rem!important}.sm\\:max-h-6rem{max-height:6rem!important}.sm\\:max-h-7rem{max-height:7rem!important}.sm\\:max-h-8rem{max-height:8rem!important}.sm\\:max-h-9rem{max-height:9rem!important}.sm\\:max-h-10rem{max-height:10rem!important}.sm\\:max-h-11rem{max-height:11rem!important}.sm\\:max-h-12rem{max-height:12rem!important}.sm\\:max-h-13rem{max-height:13rem!important}.sm\\:max-h-14rem{max-height:14rem!important}.sm\\:max-h-15rem{max-height:15rem!important}.sm\\:max-h-16rem{max-height:16rem!important}.sm\\:max-h-17rem{max-height:17rem!important}.sm\\:max-h-18rem{max-height:18rem!important}.sm\\:max-h-19rem{max-height:19rem!important}.sm\\:max-h-20rem{max-height:20rem!important}.sm\\:max-h-21rem{max-height:21rem!important}.sm\\:max-h-22rem{max-height:22rem!important}.sm\\:max-h-23rem{max-height:23rem!important}.sm\\:max-h-24rem{max-height:24rem!important}.sm\\:max-h-25rem{max-height:25rem!important}.sm\\:max-h-26rem{max-height:26rem!important}.sm\\:max-h-27rem{max-height:27rem!important}.sm\\:max-h-28rem{max-height:28rem!important}.sm\\:max-h-29rem{max-height:29rem!important}.sm\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 768px){.md\\:max-h-0{max-height:0px!important}.md\\:max-h-full{max-height:100%!important}.md\\:max-h-screen{max-height:100vh!important}.md\\:max-h-min{max-height:min-content!important}.md\\:max-h-max{max-height:max-content!important}.md\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.md\\:max-h-1rem{max-height:1rem!important}.md\\:max-h-2rem{max-height:2rem!important}.md\\:max-h-3rem{max-height:3rem!important}.md\\:max-h-4rem{max-height:4rem!important}.md\\:max-h-5rem{max-height:5rem!important}.md\\:max-h-6rem{max-height:6rem!important}.md\\:max-h-7rem{max-height:7rem!important}.md\\:max-h-8rem{max-height:8rem!important}.md\\:max-h-9rem{max-height:9rem!important}.md\\:max-h-10rem{max-height:10rem!important}.md\\:max-h-11rem{max-height:11rem!important}.md\\:max-h-12rem{max-height:12rem!important}.md\\:max-h-13rem{max-height:13rem!important}.md\\:max-h-14rem{max-height:14rem!important}.md\\:max-h-15rem{max-height:15rem!important}.md\\:max-h-16rem{max-height:16rem!important}.md\\:max-h-17rem{max-height:17rem!important}.md\\:max-h-18rem{max-height:18rem!important}.md\\:max-h-19rem{max-height:19rem!important}.md\\:max-h-20rem{max-height:20rem!important}.md\\:max-h-21rem{max-height:21rem!important}.md\\:max-h-22rem{max-height:22rem!important}.md\\:max-h-23rem{max-height:23rem!important}.md\\:max-h-24rem{max-height:24rem!important}.md\\:max-h-25rem{max-height:25rem!important}.md\\:max-h-26rem{max-height:26rem!important}.md\\:max-h-27rem{max-height:27rem!important}.md\\:max-h-28rem{max-height:28rem!important}.md\\:max-h-29rem{max-height:29rem!important}.md\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 992px){.lg\\:max-h-0{max-height:0px!important}.lg\\:max-h-full{max-height:100%!important}.lg\\:max-h-screen{max-height:100vh!important}.lg\\:max-h-min{max-height:min-content!important}.lg\\:max-h-max{max-height:max-content!important}.lg\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.lg\\:max-h-1rem{max-height:1rem!important}.lg\\:max-h-2rem{max-height:2rem!important}.lg\\:max-h-3rem{max-height:3rem!important}.lg\\:max-h-4rem{max-height:4rem!important}.lg\\:max-h-5rem{max-height:5rem!important}.lg\\:max-h-6rem{max-height:6rem!important}.lg\\:max-h-7rem{max-height:7rem!important}.lg\\:max-h-8rem{max-height:8rem!important}.lg\\:max-h-9rem{max-height:9rem!important}.lg\\:max-h-10rem{max-height:10rem!important}.lg\\:max-h-11rem{max-height:11rem!important}.lg\\:max-h-12rem{max-height:12rem!important}.lg\\:max-h-13rem{max-height:13rem!important}.lg\\:max-h-14rem{max-height:14rem!important}.lg\\:max-h-15rem{max-height:15rem!important}.lg\\:max-h-16rem{max-height:16rem!important}.lg\\:max-h-17rem{max-height:17rem!important}.lg\\:max-h-18rem{max-height:18rem!important}.lg\\:max-h-19rem{max-height:19rem!important}.lg\\:max-h-20rem{max-height:20rem!important}.lg\\:max-h-21rem{max-height:21rem!important}.lg\\:max-h-22rem{max-height:22rem!important}.lg\\:max-h-23rem{max-height:23rem!important}.lg\\:max-h-24rem{max-height:24rem!important}.lg\\:max-h-25rem{max-height:25rem!important}.lg\\:max-h-26rem{max-height:26rem!important}.lg\\:max-h-27rem{max-height:27rem!important}.lg\\:max-h-28rem{max-height:28rem!important}.lg\\:max-h-29rem{max-height:29rem!important}.lg\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 1200px){.xl\\:max-h-0{max-height:0px!important}.xl\\:max-h-full{max-height:100%!important}.xl\\:max-h-screen{max-height:100vh!important}.xl\\:max-h-min{max-height:min-content!important}.xl\\:max-h-max{max-height:max-content!important}.xl\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.xl\\:max-h-1rem{max-height:1rem!important}.xl\\:max-h-2rem{max-height:2rem!important}.xl\\:max-h-3rem{max-height:3rem!important}.xl\\:max-h-4rem{max-height:4rem!important}.xl\\:max-h-5rem{max-height:5rem!important}.xl\\:max-h-6rem{max-height:6rem!important}.xl\\:max-h-7rem{max-height:7rem!important}.xl\\:max-h-8rem{max-height:8rem!important}.xl\\:max-h-9rem{max-height:9rem!important}.xl\\:max-h-10rem{max-height:10rem!important}.xl\\:max-h-11rem{max-height:11rem!important}.xl\\:max-h-12rem{max-height:12rem!important}.xl\\:max-h-13rem{max-height:13rem!important}.xl\\:max-h-14rem{max-height:14rem!important}.xl\\:max-h-15rem{max-height:15rem!important}.xl\\:max-h-16rem{max-height:16rem!important}.xl\\:max-h-17rem{max-height:17rem!important}.xl\\:max-h-18rem{max-height:18rem!important}.xl\\:max-h-19rem{max-height:19rem!important}.xl\\:max-h-20rem{max-height:20rem!important}.xl\\:max-h-21rem{max-height:21rem!important}.xl\\:max-h-22rem{max-height:22rem!important}.xl\\:max-h-23rem{max-height:23rem!important}.xl\\:max-h-24rem{max-height:24rem!important}.xl\\:max-h-25rem{max-height:25rem!important}.xl\\:max-h-26rem{max-height:26rem!important}.xl\\:max-h-27rem{max-height:27rem!important}.xl\\:max-h-28rem{max-height:28rem!important}.xl\\:max-h-29rem{max-height:29rem!important}.xl\\:max-h-30rem{max-height:30rem!important}}.static{position:static!important}.fixed{position:fixed!important}.absolute{position:absolute!important}.relative{position:relative!important}.sticky{position:sticky!important}@media screen and (min-width: 576px){.sm\\:static{position:static!important}.sm\\:fixed{position:fixed!important}.sm\\:absolute{position:absolute!important}.sm\\:relative{position:relative!important}.sm\\:sticky{position:sticky!important}}@media screen and (min-width: 768px){.md\\:static{position:static!important}.md\\:fixed{position:fixed!important}.md\\:absolute{position:absolute!important}.md\\:relative{position:relative!important}.md\\:sticky{position:sticky!important}}@media screen and (min-width: 992px){.lg\\:static{position:static!important}.lg\\:fixed{position:fixed!important}.lg\\:absolute{position:absolute!important}.lg\\:relative{position:relative!important}.lg\\:sticky{position:sticky!important}}@media screen and (min-width: 1200px){.xl\\:static{position:static!important}.xl\\:fixed{position:fixed!important}.xl\\:absolute{position:absolute!important}.xl\\:relative{position:relative!important}.xl\\:sticky{position:sticky!important}}.top-auto{top:auto!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}@media screen and (min-width: 576px){.sm\\:top-auto{top:auto!important}.sm\\:top-0{top:0!important}.sm\\:top-50{top:50%!important}.sm\\:top-100{top:100%!important}}@media screen and (min-width: 768px){.md\\:top-auto{top:auto!important}.md\\:top-0{top:0!important}.md\\:top-50{top:50%!important}.md\\:top-100{top:100%!important}}@media screen and (min-width: 992px){.lg\\:top-auto{top:auto!important}.lg\\:top-0{top:0!important}.lg\\:top-50{top:50%!important}.lg\\:top-100{top:100%!important}}@media screen and (min-width: 1200px){.xl\\:top-auto{top:auto!important}.xl\\:top-0{top:0!important}.xl\\:top-50{top:50%!important}.xl\\:top-100{top:100%!important}}.left-auto{left:auto!important}.left-0{left:0!important}.left-50{left:50%!important}.left-100{left:100%!important}@media screen and (min-width: 576px){.sm\\:left-auto{left:auto!important}.sm\\:left-0{left:0!important}.sm\\:left-50{left:50%!important}.sm\\:left-100{left:100%!important}}@media screen and (min-width: 768px){.md\\:left-auto{left:auto!important}.md\\:left-0{left:0!important}.md\\:left-50{left:50%!important}.md\\:left-100{left:100%!important}}@media screen and (min-width: 992px){.lg\\:left-auto{left:auto!important}.lg\\:left-0{left:0!important}.lg\\:left-50{left:50%!important}.lg\\:left-100{left:100%!important}}@media screen and (min-width: 1200px){.xl\\:left-auto{left:auto!important}.xl\\:left-0{left:0!important}.xl\\:left-50{left:50%!important}.xl\\:left-100{left:100%!important}}.right-auto{right:auto!important}.right-0{right:0!important}.right-50{right:50%!important}.right-100{right:100%!important}@media screen and (min-width: 576px){.sm\\:right-auto{right:auto!important}.sm\\:right-0{right:0!important}.sm\\:right-50{right:50%!important}.sm\\:right-100{right:100%!important}}@media screen and (min-width: 768px){.md\\:right-auto{right:auto!important}.md\\:right-0{right:0!important}.md\\:right-50{right:50%!important}.md\\:right-100{right:100%!important}}@media screen and (min-width: 992px){.lg\\:right-auto{right:auto!important}.lg\\:right-0{right:0!important}.lg\\:right-50{right:50%!important}.lg\\:right-100{right:100%!important}}@media screen and (min-width: 1200px){.xl\\:right-auto{right:auto!important}.xl\\:right-0{right:0!important}.xl\\:right-50{right:50%!important}.xl\\:right-100{right:100%!important}}.bottom-auto{bottom:auto!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}@media screen and (min-width: 576px){.sm\\:bottom-auto{bottom:auto!important}.sm\\:bottom-0{bottom:0!important}.sm\\:bottom-50{bottom:50%!important}.sm\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 768px){.md\\:bottom-auto{bottom:auto!important}.md\\:bottom-0{bottom:0!important}.md\\:bottom-50{bottom:50%!important}.md\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 992px){.lg\\:bottom-auto{bottom:auto!important}.lg\\:bottom-0{bottom:0!important}.lg\\:bottom-50{bottom:50%!important}.lg\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 1200px){.xl\\:bottom-auto{bottom:auto!important}.xl\\:bottom-0{bottom:0!important}.xl\\:bottom-50{bottom:50%!important}.xl\\:bottom-100{bottom:100%!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-auto{overflow:auto!important}.sm\\:overflow-hidden{overflow:hidden!important}.sm\\:overflow-visible{overflow:visible!important}.sm\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-auto{overflow:auto!important}.md\\:overflow-hidden{overflow:hidden!important}.md\\:overflow-visible{overflow:visible!important}.md\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-auto{overflow:auto!important}.lg\\:overflow-hidden{overflow:hidden!important}.lg\\:overflow-visible{overflow:visible!important}.lg\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-auto{overflow:auto!important}.xl\\:overflow-hidden{overflow:hidden!important}.xl\\:overflow-visible{overflow:visible!important}.xl\\:overflow-scroll{overflow:scroll!important}}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-x-auto{overflow-x:auto!important}.sm\\:overflow-x-hidden{overflow-x:hidden!important}.sm\\:overflow-x-visible{overflow-x:visible!important}.sm\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-x-auto{overflow-x:auto!important}.md\\:overflow-x-hidden{overflow-x:hidden!important}.md\\:overflow-x-visible{overflow-x:visible!important}.md\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-x-auto{overflow-x:auto!important}.lg\\:overflow-x-hidden{overflow-x:hidden!important}.lg\\:overflow-x-visible{overflow-x:visible!important}.lg\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-x-auto{overflow-x:auto!important}.xl\\:overflow-x-hidden{overflow-x:hidden!important}.xl\\:overflow-x-visible{overflow-x:visible!important}.xl\\:overflow-x-scroll{overflow-x:scroll!important}}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-y-auto{overflow-y:auto!important}.sm\\:overflow-y-hidden{overflow-y:hidden!important}.sm\\:overflow-y-visible{overflow-y:visible!important}.sm\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-y-auto{overflow-y:auto!important}.md\\:overflow-y-hidden{overflow-y:hidden!important}.md\\:overflow-y-visible{overflow-y:visible!important}.md\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-y-auto{overflow-y:auto!important}.lg\\:overflow-y-hidden{overflow-y:hidden!important}.lg\\:overflow-y-visible{overflow-y:visible!important}.lg\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-y-auto{overflow-y:auto!important}.xl\\:overflow-y-hidden{overflow-y:hidden!important}.xl\\:overflow-y-visible{overflow-y:visible!important}.xl\\:overflow-y-scroll{overflow-y:scroll!important}}.z-auto{z-index:auto!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}.z-4{z-index:4!important}.z-5{z-index:5!important}@media screen and (min-width: 576px){.sm\\:z-auto{z-index:auto!important}.sm\\:z-0{z-index:0!important}.sm\\:z-1{z-index:1!important}.sm\\:z-2{z-index:2!important}.sm\\:z-3{z-index:3!important}.sm\\:z-4{z-index:4!important}.sm\\:z-5{z-index:5!important}}@media screen and (min-width: 768px){.md\\:z-auto{z-index:auto!important}.md\\:z-0{z-index:0!important}.md\\:z-1{z-index:1!important}.md\\:z-2{z-index:2!important}.md\\:z-3{z-index:3!important}.md\\:z-4{z-index:4!important}.md\\:z-5{z-index:5!important}}@media screen and (min-width: 992px){.lg\\:z-auto{z-index:auto!important}.lg\\:z-0{z-index:0!important}.lg\\:z-1{z-index:1!important}.lg\\:z-2{z-index:2!important}.lg\\:z-3{z-index:3!important}.lg\\:z-4{z-index:4!important}.lg\\:z-5{z-index:5!important}}@media screen and (min-width: 1200px){.xl\\:z-auto{z-index:auto!important}.xl\\:z-0{z-index:0!important}.xl\\:z-1{z-index:1!important}.xl\\:z-2{z-index:2!important}.xl\\:z-3{z-index:3!important}.xl\\:z-4{z-index:4!important}.xl\\:z-5{z-index:5!important}}.bg-repeat{background-repeat:repeat!important}.bg-no-repeat{background-repeat:no-repeat!important}.bg-repeat-x{background-repeat:repeat-x!important}.bg-repeat-y{background-repeat:repeat-y!important}.bg-repeat-round{background-repeat:round!important}.bg-repeat-space{background-repeat:space!important}@media screen and (min-width: 576px){.sm\\:bg-repeat{background-repeat:repeat!important}.sm\\:bg-no-repeat{background-repeat:no-repeat!important}.sm\\:bg-repeat-x{background-repeat:repeat-x!important}.sm\\:bg-repeat-y{background-repeat:repeat-y!important}.sm\\:bg-repeat-round{background-repeat:round!important}.sm\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 768px){.md\\:bg-repeat{background-repeat:repeat!important}.md\\:bg-no-repeat{background-repeat:no-repeat!important}.md\\:bg-repeat-x{background-repeat:repeat-x!important}.md\\:bg-repeat-y{background-repeat:repeat-y!important}.md\\:bg-repeat-round{background-repeat:round!important}.md\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 992px){.lg\\:bg-repeat{background-repeat:repeat!important}.lg\\:bg-no-repeat{background-repeat:no-repeat!important}.lg\\:bg-repeat-x{background-repeat:repeat-x!important}.lg\\:bg-repeat-y{background-repeat:repeat-y!important}.lg\\:bg-repeat-round{background-repeat:round!important}.lg\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 1200px){.xl\\:bg-repeat{background-repeat:repeat!important}.xl\\:bg-no-repeat{background-repeat:no-repeat!important}.xl\\:bg-repeat-x{background-repeat:repeat-x!important}.xl\\:bg-repeat-y{background-repeat:repeat-y!important}.xl\\:bg-repeat-round{background-repeat:round!important}.xl\\:bg-repeat-space{background-repeat:space!important}}.bg-auto{background-size:auto!important}.bg-cover{background-size:cover!important}.bg-contain{background-size:contain!important}@media screen and (min-width: 576px){.sm\\:bg-auto{background-size:auto!important}.sm\\:bg-cover{background-size:cover!important}.sm\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 768px){.md\\:bg-auto{background-size:auto!important}.md\\:bg-cover{background-size:cover!important}.md\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 992px){.lg\\:bg-auto{background-size:auto!important}.lg\\:bg-cover{background-size:cover!important}.lg\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 1200px){.xl\\:bg-auto{background-size:auto!important}.xl\\:bg-cover{background-size:cover!important}.xl\\:bg-contain{background-size:contain!important}}.bg-bottom{background-position:bottom!important}.bg-center{background-position:center!important}.bg-left{background-position:left!important}.bg-left-bottom{background-position:left bottom!important}.bg-left-top{background-position:left top!important}.bg-right{background-position:right!important}.bg-right-bottom{background-position:right bottom!important}.bg-right-top{background-position:right top!important}.bg-top{background-position:top!important}@media screen and (min-width: 576px){.sm\\:bg-bottom{background-position:bottom!important}.sm\\:bg-center{background-position:center!important}.sm\\:bg-left{background-position:left!important}.sm\\:bg-left-bottom{background-position:left bottom!important}.sm\\:bg-left-top{background-position:left top!important}.sm\\:bg-right{background-position:right!important}.sm\\:bg-right-bottom{background-position:right bottom!important}.sm\\:bg-right-top{background-position:right top!important}.sm\\:bg-top{background-position:top!important}}@media screen and (min-width: 768px){.md\\:bg-bottom{background-position:bottom!important}.md\\:bg-center{background-position:center!important}.md\\:bg-left{background-position:left!important}.md\\:bg-left-bottom{background-position:left bottom!important}.md\\:bg-left-top{background-position:left top!important}.md\\:bg-right{background-position:right!important}.md\\:bg-right-bottom{background-position:right bottom!important}.md\\:bg-right-top{background-position:right top!important}.md\\:bg-top{background-position:top!important}}@media screen and (min-width: 992px){.lg\\:bg-bottom{background-position:bottom!important}.lg\\:bg-center{background-position:center!important}.lg\\:bg-left{background-position:left!important}.lg\\:bg-left-bottom{background-position:left bottom!important}.lg\\:bg-left-top{background-position:left top!important}.lg\\:bg-right{background-position:right!important}.lg\\:bg-right-bottom{background-position:right bottom!important}.lg\\:bg-right-top{background-position:right top!important}.lg\\:bg-top{background-position:top!important}}@media screen and (min-width: 1200px){.xl\\:bg-bottom{background-position:bottom!important}.xl\\:bg-center{background-position:center!important}.xl\\:bg-left{background-position:left!important}.xl\\:bg-left-bottom{background-position:left bottom!important}.xl\\:bg-left-top{background-position:left top!important}.xl\\:bg-right{background-position:right!important}.xl\\:bg-right-bottom{background-position:right bottom!important}.xl\\:bg-right-top{background-position:right top!important}.xl\\:bg-top{background-position:top!important}}.list-none{list-style:none!important}.list-disc{list-style:disc!important}.list-decimal{list-style:decimal!important}.appearance-none{-webkit-appearance:none!important;appearance:none!important}.outline-none{outline:none!important}.pointer-events-none{pointer-events:none!important}.pointer-events-auto{pointer-events:auto!important}.cursor-auto{cursor:auto!important}.cursor-pointer{cursor:pointer!important}.cursor-wait{cursor:wait!important}.cursor-move{cursor:move!important}.select-none{-webkit-user-select:none!important;user-select:none!important}.select-text{-webkit-user-select:text!important;user-select:text!important}.select-all{-webkit-user-select:all!important;user-select:all!important}.select-auto{-webkit-user-select:auto!important;user-select:auto!important}.opacity-0{opacity:0!important}.opacity-10{opacity:.1!important}.opacity-20{opacity:.2!important}.opacity-30{opacity:.3!important}.opacity-40{opacity:.4!important}.opacity-50{opacity:.5!important}.opacity-60{opacity:.6!important}.opacity-70{opacity:.7!important}.opacity-80{opacity:.8!important}.opacity-90{opacity:.9!important}.opacity-100{opacity:1!important}.reset{all:unset}.transition-none{transition-property:none!important}.transition-all{transition-property:all!important}.transition-colors{transition-property:background-color,border-color,color!important}.transition-transform{transition-property:transform!important}.transition-duration-100{transition-duration:.1s!important}.transition-duration-150{transition-duration:.15s!important}.transition-duration-200{transition-duration:.2s!important}.transition-duration-300{transition-duration:.3s!important}.transition-duration-400{transition-duration:.4s!important}.transition-duration-500{transition-duration:.5s!important}.transition-duration-1000{transition-duration:1s!important}.transition-duration-2000{transition-duration:2s!important}.transition-duration-3000{transition-duration:3s!important}.transition-linear{transition-timing-function:linear!important}.transition-ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)!important}.transition-ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.transition-ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.transition-delay-100{transition-delay:.1s!important}.transition-delay-150{transition-delay:.15s!important}.transition-delay-200{transition-delay:.2s!important}.transition-delay-300{transition-delay:.3s!important}.transition-delay-400{transition-delay:.4s!important}.transition-delay-500{transition-delay:.5s!important}.transition-delay-1000{transition-delay:1s!important}.translate-x-0{transform:translate(0)!important}.translate-x-100{transform:translate(100%)!important}.-translate-x-100{transform:translate(-100%)!important}.translate-y-0{transform:translateY(0)!important}.translate-y-100{transform:translateY(100%)!important}.-translate-y-100{transform:translateY(-100%)!important}@media screen and (min-width: 576px){.sm\\:translate-x-0{transform:translate(0)!important}.sm\\:translate-x-100{transform:translate(100%)!important}.sm\\:-translate-x-100{transform:translate(-100%)!important}.sm\\:translate-y-0{transform:translateY(0)!important}.sm\\:translate-y-100{transform:translateY(100%)!important}.sm\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 768px){.md\\:translate-x-0{transform:translate(0)!important}.md\\:translate-x-100{transform:translate(100%)!important}.md\\:-translate-x-100{transform:translate(-100%)!important}.md\\:translate-y-0{transform:translateY(0)!important}.md\\:translate-y-100{transform:translateY(100%)!important}.md\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 992px){.lg\\:translate-x-0{transform:translate(0)!important}.lg\\:translate-x-100{transform:translate(100%)!important}.lg\\:-translate-x-100{transform:translate(-100%)!important}.lg\\:translate-y-0{transform:translateY(0)!important}.lg\\:translate-y-100{transform:translateY(100%)!important}.lg\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 1200px){.xl\\:translate-x-0{transform:translate(0)!important}.xl\\:translate-x-100{transform:translate(100%)!important}.xl\\:-translate-x-100{transform:translate(-100%)!important}.xl\\:translate-y-0{transform:translateY(0)!important}.xl\\:translate-y-100{transform:translateY(100%)!important}.xl\\:-translate-y-100{transform:translateY(-100%)!important}}.rotate-45{transform:rotate(45deg)!important}.-rotate-45{transform:rotate(-45deg)!important}.rotate-90{transform:rotate(90deg)!important}.-rotate-90{transform:rotate(-90deg)!important}.rotate-180{transform:rotate(180deg)!important}.-rotate-180{transform:rotate(-180deg)!important}@media screen and (min-width: 576px){.sm\\:rotate-45{transform:rotate(45deg)!important}.sm\\:-rotate-45{transform:rotate(-45deg)!important}.sm\\:rotate-90{transform:rotate(90deg)!important}.sm\\:-rotate-90{transform:rotate(-90deg)!important}.sm\\:rotate-180{transform:rotate(180deg)!important}.sm\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 768px){.md\\:rotate-45{transform:rotate(45deg)!important}.md\\:-rotate-45{transform:rotate(-45deg)!important}.md\\:rotate-90{transform:rotate(90deg)!important}.md\\:-rotate-90{transform:rotate(-90deg)!important}.md\\:rotate-180{transform:rotate(180deg)!important}.md\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 992px){.lg\\:rotate-45{transform:rotate(45deg)!important}.lg\\:-rotate-45{transform:rotate(-45deg)!important}.lg\\:rotate-90{transform:rotate(90deg)!important}.lg\\:-rotate-90{transform:rotate(-90deg)!important}.lg\\:rotate-180{transform:rotate(180deg)!important}.lg\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 1200px){.xl\\:rotate-45{transform:rotate(45deg)!important}.xl\\:-rotate-45{transform:rotate(-45deg)!important}.xl\\:rotate-90{transform:rotate(90deg)!important}.xl\\:-rotate-90{transform:rotate(-90deg)!important}.xl\\:rotate-180{transform:rotate(180deg)!important}.xl\\:-rotate-180{transform:rotate(-180deg)!important}}.origin-center{transform-origin:center!important}.origin-top{transform-origin:top!important}.origin-top-right{transform-origin:top right!important}.origin-right{transform-origin:right!important}.origin-bottom-right{transform-origin:bottom right!important}.origin-bottom{transform-origin:bottom!important}.origin-bottom-left{transform-origin:bottom left!important}.origin-left{transform-origin:left!important}.origin-top-left{transform-origin:top-left!important}@media screen and (min-width: 576px){.sm\\:origin-center{transform-origin:center!important}.sm\\:origin-top{transform-origin:top!important}.sm\\:origin-top-right{transform-origin:top right!important}.sm\\:origin-right{transform-origin:right!important}.sm\\:origin-bottom-right{transform-origin:bottom right!important}.sm\\:origin-bottom{transform-origin:bottom!important}.sm\\:origin-bottom-left{transform-origin:bottom left!important}.sm\\:origin-left{transform-origin:left!important}.sm\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 768px){.md\\:origin-center{transform-origin:center!important}.md\\:origin-top{transform-origin:top!important}.md\\:origin-top-right{transform-origin:top right!important}.md\\:origin-right{transform-origin:right!important}.md\\:origin-bottom-right{transform-origin:bottom right!important}.md\\:origin-bottom{transform-origin:bottom!important}.md\\:origin-bottom-left{transform-origin:bottom left!important}.md\\:origin-left{transform-origin:left!important}.md\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 992px){.lg\\:origin-center{transform-origin:center!important}.lg\\:origin-top{transform-origin:top!important}.lg\\:origin-top-right{transform-origin:top right!important}.lg\\:origin-right{transform-origin:right!important}.lg\\:origin-bottom-right{transform-origin:bottom right!important}.lg\\:origin-bottom{transform-origin:bottom!important}.lg\\:origin-bottom-left{transform-origin:bottom left!important}.lg\\:origin-left{transform-origin:left!important}.lg\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 1200px){.xl\\:origin-center{transform-origin:center!important}.xl\\:origin-top{transform-origin:top!important}.xl\\:origin-top-right{transform-origin:top right!important}.xl\\:origin-right{transform-origin:right!important}.xl\\:origin-bottom-right{transform-origin:bottom right!important}.xl\\:origin-bottom{transform-origin:bottom!important}.xl\\:origin-bottom-left{transform-origin:bottom left!important}.xl\\:origin-left{transform-origin:left!important}.xl\\:origin-top-left{transform-origin:top-left!important}}@keyframes fadein{0%{opacity:0}to{opacity:1}}@keyframes fadeout{0%{opacity:1}to{opacity:0}}@keyframes scalein{0%{opacity:0;transform:scaleY(.8);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:scaleY(1)}}@keyframes slidedown{0%{max-height:0}to{max-height:auto}}@keyframes slideup{0%{max-height:1000px}to{max-height:0}}@keyframes fadeinleft{0%{opacity:0;transform:translate(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutleft{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(-100%)}}@keyframes fadeinright{0%{opacity:0;transform:translate(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutright{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(100%)}}@keyframes fadeinup{0%{opacity:0;transform:translateY(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutup{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(-100%)}}@keyframes fadeindown{0%{opacity:0;transform:translateY(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutdown{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(100%)}}@keyframes animate-width{0%{width:0}to{width:100%}}@keyframes flip{0%{transform:perspective(2000px) rotateX(-100deg)}to{transform:perspective(2000px) rotateX(0)}}@keyframes flipleft{0%{transform:perspective(2000px) rotateY(-100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipright{0%{transform:perspective(2000px) rotateY(100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipup{0%{transform:perspective(2000px) rotateX(-100deg);opacity:0}to{transform:perspective(2000px) rotateX(0);opacity:1}}@keyframes zoomin{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomindown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}}@keyframes zoominleft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0)}}@keyframes zoominright{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0)}}@keyframes zoominup{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}}.fadein{animation:fadein .15s linear}.fadeout{animation:fadeout .15s linear}.slidedown{animation:slidedown .45s ease-in-out}.slideup{animation:slideup .45s cubic-bezier(0,1,0,1)}.scalein{animation:scalein .15s linear}.fadeinleft{animation:fadeinleft .15s linear}.fadeoutleft{animation:fadeoutleft .15s linear}.fadeinright{animation:fadeinright .15s linear}.fadeoutright{animation:fadeoutright .15s linear}.fadeinup{animation:fadeinup .15s linear}.fadeoutup{animation:fadeoutup .15s linear}.fadeindown{animation:fadeindown .15s linear}.fadeoutdown{animation:fadeoutdown .15s linear}.animate-width{animation:animate-width 1s linear}.flip{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flip .15s linear}.flipup{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipup .15s linear}.flipleft{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipleft .15s linear}.flipright{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipright .15s linear}.zoomin{animation:zoomin .15s linear}.zoomindown{animation:zoomindown .15s linear}.zoominleft{animation:zoominleft .15s linear}.zoominright{animation:zoominright .15s linear}.zoominup{animation:zoominup .15s linear}.animation-duration-100{animation-duration:.1s!important}.animation-duration-150{animation-duration:.15s!important}.animation-duration-200{animation-duration:.2s!important}.animation-duration-300{animation-duration:.3s!important}.animation-duration-400{animation-duration:.4s!important}.animation-duration-500{animation-duration:.5s!important}.animation-duration-1000{animation-duration:1s!important}.animation-duration-2000{animation-duration:2s!important}.animation-duration-3000{animation-duration:3s!important}.animation-delay-100{animation-delay:.1s!important}.animation-delay-150{animation-delay:.15s!important}.animation-delay-200{animation-delay:.2s!important}.animation-delay-300{animation-delay:.3s!important}.animation-delay-400{animation-delay:.4s!important}.animation-delay-500{animation-delay:.5s!important}.animation-delay-1000{animation-delay:1s!important}.animation-iteration-1{animation-iteration-count:1!important}.animation-iteration-2{animation-iteration-count:2!important}.animation-iteration-infinite{animation-iteration-count:infinite!important}.animation-linear{animation-timing-function:linear!important}.animation-ease-in{animation-timing-function:cubic-bezier(.4,0,1,1)!important}.animation-ease-out{animation-timing-function:cubic-bezier(0,0,.2,1)!important}.animation-ease-in-out{animation-timing-function:cubic-bezier(.4,0,.2,1)!important}.animation-fill-none{animation-fill-mode:none!important}.animation-fill-forwards{animation-fill-mode:forwards!important}.animation-fill-backwards{animation-fill-mode:backwards!important}.animation-fill-both{animation-fill-mode:both!important}:host ::ng-deep w-image-file-uploader,:host ::ng-deep .w-image-file-uploader,:host ::ng-deep .w-image-file-button .p-fileupload,:host ::ng-deep .p-fileupload,:host ::ng-deep .w-image-file-uploader-gallery,:host ::ng-deep p-galleriacontent{display:block;height:100%}::ng-deep .p-fileupload-content{display:flex;flex-direction:column;height:100%}::ng-deep .p-galleria.p-component{max-width:100%;height:100%}::ng-deep .p-galleria-content{display:flex;flex-direction:column;height:100%}::ng-deep p-galleriaitem{height:100%}::ng-deep .p-galleria-item-wrapper{display:flex;flex-direction:column;position:relative;height:100%}::ng-deep .p-galleria-item-container{position:relative;display:flex;height:100%}::ng-deep .p-galleria-item{display:flex;justify-content:center;align-items:center;height:100%;width:100%}.wapp-file-upload-button-remove{top:-10px;right:-10px;display:none}.wapp-file-upload-button{visibility:hidden}.w-image-file-uploader-delete-button{position:absolute;top:0%;left:0%}.w-image-file-uploader-hide-move-button{visibility:hidden}::ng-deep .w-image-file-uploader-gallery p-galleriacontent .p-galleria .p-galleria-content p-galleriaitem .p-galleria-item-wrapper .p-galleria-item-container .p-galleria-item-prev.p-disabled{visibility:hidden}::ng-deep .w-image-file-uploader-gallery p-galleriacontent .p-galleria .p-galleria-content p-galleriaitem .p-galleria-item-wrapper .p-galleria-item-container .p-galleria-item-next.p-disabled{visibility:hidden}:host ::ng-deep .w-image-file-button .p-fileupload .p-fileupload-buttonbar{display:none}:host ::ng-deep .w-image-file-button .p-fileupload .p-fileupload-content{border:none!important;padding:0}:host ::ng-deep .w-image-file-uploader-delete-button-icon.w-button-text-small.p-button.p-button-icon-only .p-button-icon{font-size:16px}.w-image-file-uploader-move-buttons{position:absolute;bottom:0%;left:0%}:host ::ng-deep .w-button-text-small.p-button.p-button-icon-only .p-button-icon{color:#fff;filter:drop-shadow(1px 1px 16.9px rgba(0,0,0,.2)) drop-shadow(1px 1px 1px rgba(0,0,0,.6))}::ng-deep .p-galleria-item-prev-icon,::ng-deep .p-galleria-item-next-icon{filter:drop-shadow(1px 1px 16.9px rgba(0,0,0,.2)) drop-shadow(1px 1px 1px rgba(0,0,0,.6))}::ng-deep .p-galleria-item{border-radius:2px;background-color:#f8f9fa}.w-image-file-uploader-space-container{padding:24px 8px}.w-image-file-uploader-field-container-height{height:398px!important}.w-image-file-uploader-container-height{height:100%!important}.w-image-file-uploader-multi-action-button{align-items:center;justify-content:center;align-content:center;width:24px!important;height:24px!important;display:flex;flex-direction:row;border-radius:16px;cursor:pointer}.w-image-file-uploader-arrow{filter:drop-shadow(1px 1px 16.9px rgba(0,0,0,.2)) drop-shadow(1px 1px 1px rgba(0,0,0,.6))}.w-image-file-uploader-multi-images-index{text-shadow:1px 1px 16.9px rgba(0,0,0,.2),1px 1px 1px rgba(0,0,0,.6)}:host ::ng-deep .w-image-file-uploader-field .p-fileupload{border:1px solid #e8ebee;height:auto}:host ::ng-deep .w-image-file-uploader-field-no-image .p-fileupload{border:1px solid #e8ebee;height:398px}.w-image-file-uploader-field-img-container{width:280px;height:280px}.w-image-file-uploader-gallery-field{height:280px;display:block}\n"], dependencies: [{ kind: "directive", type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { kind: "component", type: i5.ConfirmPopup, selector: "p-confirmPopup", inputs: ["key", "defaultFocus", "showTransitionOptions", "hideTransitionOptions", "autoZIndex", "baseZIndex", "style", "styleClass", "visible"] }, { kind: "component", type: i6.FileUpload, selector: "p-fileUpload", inputs: ["name", "url", "method", "multiple", "accept", "disabled", "auto", "withCredentials", "maxFileSize", "invalidFileSizeMessageSummary", "invalidFileSizeMessageDetail", "invalidFileTypeMessageSummary", "invalidFileTypeMessageDetail", "invalidFileLimitMessageDetail", "invalidFileLimitMessageSummary", "style", "styleClass", "previewWidth", "chooseLabel", "uploadLabel", "cancelLabel", "chooseIcon", "uploadIcon", "cancelIcon", "showUploadButton", "showCancelButton", "mode", "headers", "customUpload", "fileLimit", "uploadStyleClass", "cancelStyleClass", "removeStyleClass", "chooseStyleClass", "files"], outputs: ["onBeforeUpload", "onSend", "onUpload", "onError", "onClear", "onRemove", "onSelect", "onProgress", "uploadHandler", "onImageError"] }, { kind: "component", type: i7.ProgressBar, selector: "p-progressBar", inputs: ["value", "showValue", "style", "styleClass", "unit", "mode", "color"] }, { kind: "component", type: i8.Galleria, selector: "p-galleria", inputs: ["activeIndex", "fullScreen", "id", "value", "numVisible", "responsiveOptions", "showItemNavigators", "showThumbnailNavigators", "showItemNavigatorsOnHover", "changeItemOnIndicatorHover", "circular", "autoPlay", "transitionInterval", "showThumbnails", "thumbnailsPosition", "verticalThumbnailViewPortHeight", "showIndicators", "showIndicatorsOnItem", "indicatorsPosition", "baseZIndex", "maskClass", "containerClass", "containerStyle", "showTransitionOptions", "hideTransitionOptions", "visible"], outputs: ["activeIndexChange", "visibleChange"] }, { kind: "component", type: i9.WIconsComponent, selector: "w-icons", inputs: ["name", "width", "height", "color"] }, { kind: "component", type: i10.WButtonComponent, selector: "w-button", inputs: ["type", "label", "size", "icon", "iconPos", "tooltipPosition", "tooltip", "disabled", "loading", "buttonClass"], outputs: ["onClick"] }, { kind: "component", type: i11.WInputLabelComponent, selector: "w-input-label", inputs: ["label", "disabled", "required", "tooltip", "size"] }, { kind: "pipe", type: i4.SlicePipe, name: "slice" }] });
393
397
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: WImageFileUploaderComponent, decorators: [{
394
398
  type: Component,
395
- args: [{ selector: 'w-image-file-uploader', providers: [ConfirmationService], template: "\r\n<w-input-label *ngIf=\"activeFieldVersion == true\" [label]=\"label\" [tooltip]=\"tooltip\" [required]=\"required\"></w-input-label>\r\n<div *ngIf=\"activeFieldVersion == true && (label != undefined && label.length > 0)\" class=\"input-label-gap-divider\"></div>\r\n<p-fileUpload *ngIf=\"allowMultipleImages == false; else withCarousel\" #fileUploadOnlyImage class=\"w-image-file-button\" \r\n [ngClass]=\"{'w-image-file-uploader' : activeFieldVersion == false, \r\n 'w-image-file-uploader-field' : activeFieldVersion == true, \r\n 'w-image-file-uploader-field-no-image' : activeFieldVersion == true && (onlyCroppedImageSelected == null || undefined ) && (imageSingleMode == null || undefined)}\"\r\n mode=\"advanced\" \r\n [accept]=\"imageUploadConfig.acceptImageTypes\" \r\n [multiple]=\"false\" \r\n (onSelect)=\"onCustomUploadSingleMode($event)\" \r\n [uploadLabel]=\"onlyCroppedImageSelected ? (onlyCroppedImageSelected.name.length>6)? (onlyCroppedImageSelected.name | slice:0:6)+'...':(onlyCroppedImageSelected.name) : ''\" \r\n [customUpload]=\"true\" \r\n (uploadHandler)=\"onCustomizeUploadFunctionSingleMode($event)\" \r\n [maxFileSize]=\"imageUploadConfig.maxImageSize\">\r\n <ng-template let-file let-i=\"index\" pTemplate='file'>\r\n <div *ngIf=\"activeImageUpload\"></div>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <p-progressBar *ngIf=\"false\"></p-progressBar>\r\n <div *ngIf=\"(onlyCroppedImageSelected != null || undefined) || (imageSingleMode != null || undefined)\" style=\"flex-grow: 1;\">\r\n <p-galleria \r\n [ngClass]=\"getGalleryClass()\" \r\n [value]=\"(onlyCroppedImageSelected !== null) ? [onlyCroppedImageSelected.fileBase64] : (imageUploadConfig.singleModeImageDefault ? [imageUploadConfig.singleModeImageDefault] : (imageSingleMode ? [imageSingleMode] : ['https://wappingstoragedev.blob.core.windows.net/wapping/appresources/ic_image_blue.png']))\" \r\n [responsiveOptions]=\"carouselImagesResponsiveOptions\" \r\n [containerStyle]=\"{ 'max-width': '100%', 'max-height':'100%'}\" \r\n [numVisible]=\"2\" \r\n [showItemNavigators]=\"false\"\r\n [showThumbnails]=\"false\" [showIndicators]=\"false\">\r\n <ng-template pTemplate=\"item\" let-image>\r\n <div *ngIf=\"(viewSingleMode == false && (imageSingleMode != null || undefined)) || \r\n (viewSingleMode == false && onlyCroppedImageSelected != null)\" class=\"w-image-file-uploader-delete-button flex align-content-center justify-content-center\" style=\"width: 100%;\">\r\n <w-button buttonClass=\"w-image-file-uploader-delete-button-icon\" icon=\"pi pi-trash\" type=\"text\" (click)=\"removeImageSingleMode($event, onlyImageSelected)\"></w-button>\r\n </div>\r\n <div class=\"flex flex-wrap align-content-center justify-content-center\" [ngClass]=\"{'w-image-file-uploader-field-img-container': activeFieldVersion}\" style=\"object-fit: contain; /* width: 300px; height: 300px; */\">\r\n <img [src]=\"image\" style=\"max-width:100%;\r\n max-height:100%;\r\n height: auto;\r\n width:auto;\" />\r\n </div>\r\n </ng-template>\r\n </p-galleria>\r\n </div>\r\n <div *ngIf=\"viewSingleMode == false; else viewSingleModeMessage\" (click)=\"openSingleImageFileSelector()\" \r\n class=\"w-image-file-uploader-space-container flex flex-column justify-content-center align-items-center\" style=\"cursor: pointer;\"\r\n [ngClass]=\"{'w-image-file-uploader-container-height' : (onlyCroppedImageSelected == null || undefined ) && (imageSingleMode == null || undefined) && activeFieldVersion == false, 'w-image-file-uploader-field-container-height' : activeFieldVersion == true && (onlyCroppedImageSelected == null || undefined ) && (imageSingleMode == null || undefined)}\">\r\n <span class=\"pi pi-upload subtitle1 textMainColor\"></span>\r\n <span class=\"subtitle1 textMainColor m-2\">\r\n {{imageUploadConfig.contentHeaderLabel}}\r\n </span>\r\n <span class=\"textSoftColor text-center\">\r\n {{imageUploadConfig.contentSubheaderLabel}}\r\n </span>\r\n </div>\r\n <ng-template #viewSingleModeMessage>\r\n <div *ngIf=\"imageSingleMode == null || undefined\" class=\"textSoftColor flex justify-content-center align-items-center w-image-file-uploader-container-height\">\r\n {{imageUploadConfig.viewModecontentLabel}}\r\n </div>\r\n </ng-template>\r\n </ng-template>\r\n</p-fileUpload>\r\n<ng-template #withCarousel>\r\n <p-fileUpload *ngIf=\"imageUploadConfig\" #fileUpload class=\"w-image-file-button\" \r\n [ngClass]=\"{'w-image-file-uploader' : activeFieldVersion == false, \r\n 'w-image-file-uploader-field' : activeFieldVersion == true, \r\n 'w-image-file-uploader-field-no-image' : activeFieldVersion == true && (imagesAlreadyUploaded.length == 0 || undefined ) || (imagesAlreadyUploaded == null || undefined)}\"\r\n name=\"mediaImages[]\" \r\n [accept]=\"imageUploadConfig.acceptImageTypes\" \r\n mode=\"advanced\" \r\n [customUpload]=\"true\" \r\n (onSelect)=\"onCustomUploadMultiMode($event)\" \r\n (uploadHandler)=\"onCustomizeUploadFunctionMultiMode($event)\" \r\n [uploadLabel]=\"imageUploadConfig.uploadButtonLabel ?? ''\" \r\n [chooseLabel]=\"imageUploadConfig.chooseButtonLabel ?? ''\" \r\n [cancelLabel]=\"imageUploadConfig.cancelButtonLabel ?? ''\" \r\n [showUploadButton]=\"activeImageUpload\"\r\n [showCancelButton]=\"activeImageUpload\"\r\n [auto]=\"imageUploadConfig.allowAuto\" \r\n [multiple]=\"true\" \r\n [maxFileSize]=\"imageUploadConfig.maxImageSize\" \r\n [chooseStyleClass]=\"'p-button-icon p-button-icon-right'\">\r\n <ng-template let-file let-i=\"index\" pTemplate='file'>\r\n <div *ngIf=\"activeImageUpload && cropperImages.length > 0\" class=\"p-fileupload-row\">\r\n <div><img [src]=\"cropperImages[i]?.fileBase64\" width=\"50\"/></div>\r\n <div class=\"p-fileupload-filename\">{{file.name}}</div>\r\n <div> <w-button icon=\"pi pi-times\" (onClick)=\"onDeleteFileMultiMode($event, file, fileUpload)\"></w-button> </div>\r\n </div>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <p-progressBar *ngIf=\"isUploadingMultiMode\" class=\"p-element ng-star-inserted\" [mode]=\"'indeterminate'\">\r\n <div role=\"progressbar\" aria-valuemin=\"0\" aria-valuenow=\"0\" aria-valuemax=\"100\" data-pc-name=\"progressbar\" data-pc-section=\"root\" class=\"p-progressbar p-component p-progressbar-determinate\">\r\n <div class=\"p-progressbar-value p-progressbar-value-animate ng-star-inserted\" style=\"display: flex; width: 0%;\" data-pc-section=\"value\"></div>\r\n </div>\r\n </p-progressBar>\r\n <div *ngIf=\"imagesAlreadyUploaded.length > 0\" style=\"flex-grow: 1;\">\r\n <p-galleria \r\n [ngClass]=\"getGalleryClass()\" \r\n [value]=\"imagesAlreadyUploaded\" \r\n [activeIndex]=\"activeIndexGallery\" \r\n [responsiveOptions]=\"carouselImagesResponsiveOptions\" \r\n [containerStyle]=\"{ 'max-width': '100%', 'max-height':'100%'}\" \r\n [numVisible]=\"3\" \r\n [showItemNavigators]=\"true\"\r\n [showThumbnails]=\"false\">\r\n <ng-template pTemplate=\"item\" let-image>\r\n <div *ngIf=\"viewMultiMode == false\" class=\"w-image-file-uploader-delete-button flex align-content-center justify-content-center\" style=\"width: 100%;\">\r\n <w-button buttonClass=\"w-image-file-uploader-delete-button-icon\" icon=\"pi pi-trash\" type=\"text\" (onClick)=\"confirmDeleteImageMultiMode($event, image)\" [loading]=\"isDeletingMultiMode\"></w-button>\r\n </div>\r\n <div class=\"flex flex-wrap align-content-center justify-content-center\" [ngClass]=\"{'w-image-file-uploader-field-img-container': activeFieldVersion}\" style=\"object-fit: contain;\">\r\n <img [src]=\"readProperty(image, imageUploadConfig.imagePropertyNames[0]) ?? image.fileBase64\" style=\"max-width:100%;\r\n max-height:100%;\r\n height: auto;\r\n width:auto;\" />\r\n </div>\r\n <div class=\"w-image-file-uploader-move-buttons flex align-content-center justify-content-center\" style=\"width: 100%;\">\r\n <div *ngIf=\"viewMultiMode == false && activePositionProperty == true\" class=\"w-image-file-uploader-multi-action-button\" [ngClass]=\"{'w-image-file-uploader-hide-move-button' : findIndex(image) == 0 || disableMoveButtons}\" (click)=\"moveImageToLeft(image)\">\r\n <w-icons name=\"doubleArrowLeft\" class=\"w-image-file-uploader-arrow\" [height]=\"10\" [width]=\"10\" [color]=\"'white'\"></w-icons>\r\n </div>\r\n\r\n <div *ngIf=\"isDeletingMultiMode == false; else indexLoading\" class=\"w-image-file-uploader-multi-images-index flex align-items-center justify-content-center\">\r\n {{ findIndex(image) + 1 }} / {{ imagesAlreadyUploaded.length }}\r\n </div>\r\n <ng-template #indexLoading>\r\n <div class=\"w-image-file-uploader-multi-images-index flex align-items-center justify-content-center\"> - / - </div>\r\n </ng-template>\r\n \r\n <div *ngIf=\"viewMultiMode == false && activePositionProperty == true\" class=\"w-image-file-uploader-multi-action-button\" [ngClass]=\"{'w-image-file-uploader-hide-move-button' : (findIndex(image) == imagesAlreadyUploaded.length-1) || disableMoveButtons}\" (click)=\"moveImageToRight(image)\">\r\n <w-icons name=\"doubleArrowRight\" class=\"w-image-file-uploader-arrow\" [height]=\"10\" [width]=\"10\" [color]=\"'white'\"></w-icons>\r\n </div>\r\n </div>\r\n </ng-template>\r\n </p-galleria>\r\n </div>\r\n <div *ngIf=\"viewMultiMode == false; else viewMultiModeMessage\" (click)=\"openImageFileSelector()\" \r\n class=\"w-image-file-uploader-space-container flex flex-column justify-content-center align-items-center\" \r\n style=\"cursor: pointer;\" \r\n [ngClass]=\"{'w-image-file-uploader-container-height' : (imagesAlreadyUploaded.length == 0 || undefined ) || (imagesAlreadyUploaded == null || undefined) && activeFieldVersion == false, 'w-image-file-uploader-field-container-height' : activeFieldVersion == true && (imagesAlreadyUploaded.length == 0 || undefined ) || (imagesAlreadyUploaded == null || undefined)}\">\r\n <span class=\"pi pi-upload subtitle1 textMainColor\"></span>\r\n <span class=\"subtitle1 textMainColor m-2\">\r\n {{imageUploadConfig.contentHeaderLabel}}\r\n </span>\r\n <span class=\"textSoftColor text-center\">\r\n {{imageUploadConfig.contentSubheaderLabel}}\r\n </span>\r\n </div>\r\n <ng-template #viewMultiModeMessage>\r\n <div *ngIf=\"imagesAlreadyUploaded.length==0\" class=\"textSoftColor flex justify-content-center align-items-center w-image-file-uploader-container-height\">\r\n {{imageUploadConfig.viewModecontentLabel}}\r\n </div>\r\n </ng-template>\r\n </ng-template>\r\n </p-fileUpload>\r\n</ng-template>\r\n\r\n<p-confirmPopup></p-confirmPopup>\r\n", styles: [".heading1{font-size:2.6666666667rem;line-height:3rem;font-weight:700}.heading2{font-size:2.3333333333rem;line-height:2.6666666667rem;font-weight:700}.heading3{font-size:2rem;line-height:2.3333333333rem;font-weight:700}.heading4{font-size:1.6666666667rem;line-height:2rem;font-weight:700}.heading5,.w-sidebar-title-text{font-size:1.5rem;line-height:1.8333333333rem;font-weight:700}.heading6{font-size:1.3333333333rem;line-height:1.6666666667rem;font-weight:700}.subtitle1,.w-tab-text,.w-panel-title-text{font-size:1.1666666667rem;line-height:1.3333333333rem;font-weight:700}.subtitle2,.w-table-th-text,.w-panel-subtitle-text,.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled,.w-view-small-label-text-typography,.w-view-small-label-text,.w-button-small-text-label-text-typography,.w-button-small-text-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:600}.body,.w-image-file-uploader-navigators-text,.w-image-file-uploader-multi-images-index,.w-table-td-text,.w-chip-text,.w-panel-content,.w-input-small-select-options-text,.w-input-small-placeholder-text-typography,.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text,.w-view-small-value-text-typography,.w-view-small-value-text,.w-button-small-label-text-typography,.w-button-small-tertiary-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:400}.caption,.w-input-error-alert-text,.w-input-warning-alert-text,.w-input-success-alert-text{font-size:.6666666667rem;line-height:1rem;font-weight:400}.light,.w-input-small-placeholder-text-only-color{font-size:.9166666667rem;line-height:1.0833333333rem;font-weight:300}.small,.w-button-small-label-text-typography-sm{font-size:.8333333333rem;line-height:1rem;font-weight:400}.textMainColor{color:#1f2224}.textSoftColor{color:#5f6468}.textSofterColor{color:#9aa0a7}.textSoftestColor{color:#e8ebee}.textInverseColor{color:#fff}.spacingXXS{padding:4px}.spacingXSM{padding:6px}.spacingXSMDivider{height:6px}.spacingXS{padding:8px}.spacingS{padding:12px}.spacingM{padding:16px}.spacingL{padding:20px}.spacingXL{padding:24px}.spacingXXL{padding:28px}.spacingXXXL{padding:32px}.panel-title-gap-divider{height:20px}.panel-section-gap-divider{height:32px}.input-vertical-gap-divider{height:24px}.input-label-gap-divider{height:6px}.focusedInput{border:1px solid rgba(0,157,253,.25);box-shadow:0 0 10px #00b3eb40}.focus{box-shadow:0 0 8px #00a6e980}.hover{border-radius:8px;border:1px solid #00b3eb}.hoveredInput{border-radius:8px;border:1px solid rgba(0,179,235,.5)}.input-generic-valid{border-radius:8px;border:1px solid #B3FFD3}.input-generic-valid-focus{border-radius:8px;border:1px solid #B3FFD3!important;box-shadow:0 0 8px #46ff9b80!important;padding-left:16px}.input-generic-warning{border-radius:8px;border:1px solid #FFECB8!important}.input-generic-warning-focus{border-radius:8px;border:1px solid #FFECB8!important;box-shadow:0 0 8px #ffcd4680!important;padding-left:16px}.input-generic-error-focus{border-radius:8px;border:1px solid #FFBDBD!important;box-shadow:0 0 8px #ff555580!important;padding-left:16px}.input-generic-error{border-radius:8px;border:1px solid #FFBDBD}.toggle-small-typography{font-size:12px;line-height:16px;font-weight:600}.w-button-small-label-text-typography,.w-button-small-tertiary-label-text,.w-button-small-label-text-typography-sm{font-weight:600}.w-button-small-tertiary-label-text{color:#5f6468}.w-button-small-text-label-text{color:#1f2224}.w-button-small-icon-text{font-size:12px;font-weight:600}.w-table-button-small-icon-text{font-size:12px;color:#9aa0a7}.w-control-button-small-label-text{font-size:12px;font-weight:600;line-height:16px}.w-control-button-x-small-icon-text{font-size:10px;font-weight:700}.w-control-button-small-icon-text{font-size:8px;font-weight:700}.w-button-medium-label-text-typography,.w-button-medium-tertiary-label-text{font-size:16px;font-weight:600;line-height:16px}.w-button-medium-tertiary-label-text{color:#1f2224}.w-button-medium-icon-text{font-size:16px}.w-control-button-medium-label-text{font-size:14px;font-weight:600;line-height:16px}.w-control-button-medium-icon-text{font-size:12px;font-weight:700}.w-button-large-label-text-typography,.w-button-large-tertiary-label-text{font-size:20px;font-weight:600;line-height:24px}.w-button-large-tertiary-label-text{color:#1f2224}.w-button-x-small-label-text{font-size:10px;font-weight:600;line-height:10px}.w-button-small-only-label-text{font-size:12px;font-weight:600;line-height:16px}.w-button-large-icon-text{font-size:24px}.w-view-small-label-text{color:#1f2224}.w-view-small-value-text{color:#5f6468}.w-input-no-label-height{height:14px}.w-input-disabled{background-color:#f1f3f4;border-color:#e8ebee;opacity:1}.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled{height:-moz-fit-content;height:fit-content}.w-input-small-label-text,.w-input-small-label-disabled{color:#1f2224}.w-input-small-label-disabled{color:#9aa0a7}.w-input-small-label-text-content{padding:12px 8px 8px 0;margin:0}.w-input-small-label-text-content-no-top{padding-top:0}.w-input-small-placeholder-text{color:#1f2224}.w-input-small-placeholder-text-only-color{color:#9aa0a7;line-height:1.3333333333rem}.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text-disabled-only-color{color:#5f6468}.w-input-small-text-icon,.w-input-small-select-options-text{color:#1f2224}.w-input-medium-label-text-typography,.w-input-medium-label-text,.w-input-medium-label-disabled{font-size:14px;font-weight:600;line-height:16px}.w-input-medium-label-text,.w-input-medium-label-disabled{color:#1f2224}.w-input-medium-label-disabled{color:#9aa0a7}.w-input-medium-placeholder-text-typography,.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text{font-size:16px;font-weight:400;line-height:24px}.w-input-medium-placeholder-text,.w-input-medium-placeholder-text-only-color{color:#1f2224}.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text-disabled-only-color{color:#5f6468}.w-input-medium-text-icon{color:#1f2224}.w-input-medium-select-options-text{font-size:16px;font-weight:400;line-height:24px;color:#1f2224}.w-input-success-alert-text{color:#00db5d;padding:8px 8px 0;margin-top:0}.w-input-warning-alert-text{color:#eeae00;padding:8px 8px 0;margin-top:0}.w-input-error-alert-text{color:#e50000;padding:8px 8px 0;margin-top:0}.w-input-alert-message-height{height:32px}.w-sidebar-title-text,.w-panel-title-text,.w-panel-subtitle-text{color:#1f2224}.w-panel-content{color:#5f6468}.w-tab-text,.w-chip-text{color:#1f2224}.w-badge-text{font-size:10px;font-weight:700;line-height:8px}.w-table-th-text{color:#1f2224}.w-table-td-text{color:#5f6468}.w-table-height{padding:6px 8px 5px}.w-table-no-buttons-height{padding:16px 8px 15px!important}.w-tree-table-height{padding:8px 8px 7px}.w-image-file-uploader-navigators-text,.w-image-file-uploader-multi-images-index{font-size:12px;color:#fff}.grid{margin:0}::ng-deep .p-tooltip,.p-tooltip{filter:0px 0px 1px 0px rgba(0,0,0,.1) inset,1px 1px 5px rgba(0,0,0,.06),1px 1px 1px rgba(0,0,0,.08)}::ng-deep .p-tooltip .p-tooltip-text,.p-tooltip .p-tooltip-text{background:#ffffff!important;color:#1f2224;padding:12px 16px;max-width:192px;width:max-content;margin-left:3px}::ng-deep .p-tooltip.p-tooltip-right,.p-tooltip.p-tooltip-right{margin-left:6px;width:max-content;transform:translateY(-1px)}::ng-deep .p-tooltip.p-tooltip-right .p-tooltip-arrow,.p-tooltip.p-tooltip-right .p-tooltip-arrow{border-right-color:#fff!important;top:50%;left:0;margin-top:-4px;border-width:4px 6px 4px 0!important}::ng-deep .p-tooltip.p-tooltip-bottom .p-tooltip-arrow,.p-tooltip.p-tooltip-bottom .p-tooltip-arrow{border-bottom-color:#fff!important;border-width:0 4px 6px 4px!important;margin-top:-3px}.grid{display:flex;flex-wrap:wrap;margin-right:-.5rem;margin-left:-.5rem;margin-top:-.5rem}.grid>.col,.grid>[class*=col]{box-sizing:border-box}.grid-nogutter{margin-right:0;margin-left:0;margin-top:0}.grid-nogutter>.col,.grid-nogutter>[class*=col-]{padding:0}.col{flex-grow:1;flex-basis:0;padding:.5rem}.col-fixed{flex:0 0 auto;padding:.5rem}.col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.col-3{flex:0 0 auto;padding:.5rem;width:25%}.col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.col-6{flex:0 0 auto;padding:.5rem;width:50%}.col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.col-9{flex:0 0 auto;padding:.5rem;width:75%}.col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.col-12{flex:0 0 auto;padding:.5rem;width:100%}@media screen and (min-width: 576px){.sm\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.sm\\:col-fixed{flex:0 0 auto;padding:.5rem}.sm\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.sm\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.sm\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.sm\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.sm\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.sm\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.sm\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.sm\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.sm\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.sm\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.sm\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.sm\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 768px){.md\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.md\\:col-fixed{flex:0 0 auto;padding:.5rem}.md\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.md\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.md\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.md\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.md\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.md\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.md\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.md\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.md\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.md\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.md\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.md\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 992px){.lg\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.lg\\:col-fixed{flex:0 0 auto;padding:.5rem}.lg\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.lg\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.lg\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.lg\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.lg\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.lg\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.lg\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.lg\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.lg\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.lg\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.lg\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.lg\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 1200px){.xl\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.xl\\:col-fixed{flex:0 0 auto;padding:.5rem}.xl\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.xl\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.xl\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.xl\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.xl\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.xl\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.xl\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.xl\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.xl\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.xl\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.xl\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.xl\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}.col-offset-0{margin-left:0!important}.col-offset-1{margin-left:8.3333%!important}.col-offset-2{margin-left:16.6667%!important}.col-offset-3{margin-left:25%!important}.col-offset-4{margin-left:33.3333%!important}.col-offset-5{margin-left:41.6667%!important}.col-offset-6{margin-left:50%!important}.col-offset-7{margin-left:58.3333%!important}.col-offset-8{margin-left:66.6667%!important}.col-offset-9{margin-left:75%!important}.col-offset-10{margin-left:83.3333%!important}.col-offset-11{margin-left:91.6667%!important}.col-offset-12{margin-left:100%!important}@media screen and (min-width: 576px){.sm\\:col-offset-0{margin-left:0!important}.sm\\:col-offset-1{margin-left:8.3333%!important}.sm\\:col-offset-2{margin-left:16.6667%!important}.sm\\:col-offset-3{margin-left:25%!important}.sm\\:col-offset-4{margin-left:33.3333%!important}.sm\\:col-offset-5{margin-left:41.6667%!important}.sm\\:col-offset-6{margin-left:50%!important}.sm\\:col-offset-7{margin-left:58.3333%!important}.sm\\:col-offset-8{margin-left:66.6667%!important}.sm\\:col-offset-9{margin-left:75%!important}.sm\\:col-offset-10{margin-left:83.3333%!important}.sm\\:col-offset-11{margin-left:91.6667%!important}.sm\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 768px){.md\\:col-offset-0{margin-left:0!important}.md\\:col-offset-1{margin-left:8.3333%!important}.md\\:col-offset-2{margin-left:16.6667%!important}.md\\:col-offset-3{margin-left:25%!important}.md\\:col-offset-4{margin-left:33.3333%!important}.md\\:col-offset-5{margin-left:41.6667%!important}.md\\:col-offset-6{margin-left:50%!important}.md\\:col-offset-7{margin-left:58.3333%!important}.md\\:col-offset-8{margin-left:66.6667%!important}.md\\:col-offset-9{margin-left:75%!important}.md\\:col-offset-10{margin-left:83.3333%!important}.md\\:col-offset-11{margin-left:91.6667%!important}.md\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 992px){.lg\\:col-offset-0{margin-left:0!important}.lg\\:col-offset-1{margin-left:8.3333%!important}.lg\\:col-offset-2{margin-left:16.6667%!important}.lg\\:col-offset-3{margin-left:25%!important}.lg\\:col-offset-4{margin-left:33.3333%!important}.lg\\:col-offset-5{margin-left:41.6667%!important}.lg\\:col-offset-6{margin-left:50%!important}.lg\\:col-offset-7{margin-left:58.3333%!important}.lg\\:col-offset-8{margin-left:66.6667%!important}.lg\\:col-offset-9{margin-left:75%!important}.lg\\:col-offset-10{margin-left:83.3333%!important}.lg\\:col-offset-11{margin-left:91.6667%!important}.lg\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 1200px){.xl\\:col-offset-0{margin-left:0!important}.xl\\:col-offset-1{margin-left:8.3333%!important}.xl\\:col-offset-2{margin-left:16.6667%!important}.xl\\:col-offset-3{margin-left:25%!important}.xl\\:col-offset-4{margin-left:33.3333%!important}.xl\\:col-offset-5{margin-left:41.6667%!important}.xl\\:col-offset-6{margin-left:50%!important}.xl\\:col-offset-7{margin-left:58.3333%!important}.xl\\:col-offset-8{margin-left:66.6667%!important}.xl\\:col-offset-9{margin-left:75%!important}.xl\\:col-offset-10{margin-left:83.3333%!important}.xl\\:col-offset-11{margin-left:91.6667%!important}.xl\\:col-offset-12{margin-left:100%!important}}.text-0{color:var(--surface-0)!important}.text-50{color:var(--surface-50)!important}.text-100{color:var(--surface-100)!important}.text-200{color:var(--surface-200)!important}.text-300{color:var(--surface-300)!important}.text-400{color:var(--surface-400)!important}.text-500{color:var(--surface-500)!important}.text-600{color:var(--surface-600)!important}.text-700{color:var(--surface-700)!important}.text-800{color:var(--surface-800)!important}.text-900{color:var(--surface-900)!important}.focus\\:text-0:focus{color:var(--surface-0)!important}.hover\\:text-0:hover,.active\\:text-0:active{color:var(--surface-0)!important}.focus\\:text-50:focus{color:var(--surface-50)!important}.hover\\:text-50:hover,.active\\:text-50:active{color:var(--surface-50)!important}.focus\\:text-100:focus{color:var(--surface-100)!important}.hover\\:text-100:hover,.active\\:text-100:active{color:var(--surface-100)!important}.focus\\:text-200:focus{color:var(--surface-200)!important}.hover\\:text-200:hover,.active\\:text-200:active{color:var(--surface-200)!important}.focus\\:text-300:focus{color:var(--surface-300)!important}.hover\\:text-300:hover,.active\\:text-300:active{color:var(--surface-300)!important}.focus\\:text-400:focus{color:var(--surface-400)!important}.hover\\:text-400:hover,.active\\:text-400:active{color:var(--surface-400)!important}.focus\\:text-500:focus{color:var(--surface-500)!important}.hover\\:text-500:hover,.active\\:text-500:active{color:var(--surface-500)!important}.focus\\:text-600:focus{color:var(--surface-600)!important}.hover\\:text-600:hover,.active\\:text-600:active{color:var(--surface-600)!important}.focus\\:text-700:focus{color:var(--surface-700)!important}.hover\\:text-700:hover,.active\\:text-700:active{color:var(--surface-700)!important}.focus\\:text-800:focus{color:var(--surface-800)!important}.hover\\:text-800:hover,.active\\:text-800:active{color:var(--surface-800)!important}.focus\\:text-900:focus{color:var(--surface-900)!important}.hover\\:text-900:hover,.active\\:text-900:active{color:var(--surface-900)!important}.surface-0{background-color:var(--surface-0)!important}.surface-50{background-color:var(--surface-50)!important}.surface-100{background-color:var(--surface-100)!important}.surface-200{background-color:var(--surface-200)!important}.surface-300{background-color:var(--surface-300)!important}.surface-400{background-color:var(--surface-400)!important}.surface-500{background-color:var(--surface-500)!important}.surface-600{background-color:var(--surface-600)!important}.surface-700{background-color:var(--surface-700)!important}.surface-800{background-color:var(--surface-800)!important}.surface-900{background-color:var(--surface-900)!important}.focus\\:surface-0:focus{background-color:var(--surface-0)!important}.hover\\:surface-0:hover,.active\\:surface-0:active{background-color:var(--surface-0)!important}.focus\\:surface-50:focus{background-color:var(--surface-50)!important}.hover\\:surface-50:hover,.active\\:surface-50:active{background-color:var(--surface-50)!important}.focus\\:surface-100:focus{background-color:var(--surface-100)!important}.hover\\:surface-100:hover,.active\\:surface-100:active{background-color:var(--surface-100)!important}.focus\\:surface-200:focus{background-color:var(--surface-200)!important}.hover\\:surface-200:hover,.active\\:surface-200:active{background-color:var(--surface-200)!important}.focus\\:surface-300:focus{background-color:var(--surface-300)!important}.hover\\:surface-300:hover,.active\\:surface-300:active{background-color:var(--surface-300)!important}.focus\\:surface-400:focus{background-color:var(--surface-400)!important}.hover\\:surface-400:hover,.active\\:surface-400:active{background-color:var(--surface-400)!important}.focus\\:surface-500:focus{background-color:var(--surface-500)!important}.hover\\:surface-500:hover,.active\\:surface-500:active{background-color:var(--surface-500)!important}.focus\\:surface-600:focus{background-color:var(--surface-600)!important}.hover\\:surface-600:hover,.active\\:surface-600:active{background-color:var(--surface-600)!important}.focus\\:surface-700:focus{background-color:var(--surface-700)!important}.hover\\:surface-700:hover,.active\\:surface-700:active{background-color:var(--surface-700)!important}.focus\\:surface-800:focus{background-color:var(--surface-800)!important}.hover\\:surface-800:hover,.active\\:surface-800:active{background-color:var(--surface-800)!important}.focus\\:surface-900:focus{background-color:var(--surface-900)!important}.hover\\:surface-900:hover,.active\\:surface-900:active{background-color:var(--surface-900)!important}.border-0{border-color:var(--surface-0)!important}.border-50{border-color:var(--surface-50)!important}.border-100{border-color:var(--surface-100)!important}.border-200{border-color:var(--surface-200)!important}.border-300{border-color:var(--surface-300)!important}.border-400{border-color:var(--surface-400)!important}.border-500{border-color:var(--surface-500)!important}.border-600{border-color:var(--surface-600)!important}.border-700{border-color:var(--surface-700)!important}.border-800{border-color:var(--surface-800)!important}.border-900{border-color:var(--surface-900)!important}.focus\\:border-0:focus{border-color:var(--surface-0)!important}.hover\\:border-0:hover,.active\\:border-0:active{border-color:var(--surface-0)!important}.focus\\:border-50:focus{border-color:var(--surface-50)!important}.hover\\:border-50:hover,.active\\:border-50:active{border-color:var(--surface-50)!important}.focus\\:border-100:focus{border-color:var(--surface-100)!important}.hover\\:border-100:hover,.active\\:border-100:active{border-color:var(--surface-100)!important}.focus\\:border-200:focus{border-color:var(--surface-200)!important}.hover\\:border-200:hover,.active\\:border-200:active{border-color:var(--surface-200)!important}.focus\\:border-300:focus{border-color:var(--surface-300)!important}.hover\\:border-300:hover,.active\\:border-300:active{border-color:var(--surface-300)!important}.focus\\:border-400:focus{border-color:var(--surface-400)!important}.hover\\:border-400:hover,.active\\:border-400:active{border-color:var(--surface-400)!important}.focus\\:border-500:focus{border-color:var(--surface-500)!important}.hover\\:border-500:hover,.active\\:border-500:active{border-color:var(--surface-500)!important}.focus\\:border-600:focus{border-color:var(--surface-600)!important}.hover\\:border-600:hover,.active\\:border-600:active{border-color:var(--surface-600)!important}.focus\\:border-700:focus{border-color:var(--surface-700)!important}.hover\\:border-700:hover,.active\\:border-700:active{border-color:var(--surface-700)!important}.focus\\:border-800:focus{border-color:var(--surface-800)!important}.hover\\:border-800:hover,.active\\:border-800:active{border-color:var(--surface-800)!important}.focus\\:border-900:focus{border-color:var(--surface-900)!important}.hover\\:border-900:hover,.active\\:border-900:active{border-color:var(--surface-900)!important}.bg-transparent{background-color:transparent!important}@media screen and (min-width: 576px){.sm\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 768px){.md\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 992px){.lg\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 1200px){.xl\\:bg-transparent{background-color:transparent!important}}.border-transparent{border-color:transparent!important}@media screen and (min-width: 576px){.sm\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 768px){.md\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 992px){.lg\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 1200px){.xl\\:border-transparent{border-color:transparent!important}}.text-blue-50{color:var(--blue-50)!important}.text-blue-100{color:var(--blue-100)!important}.text-blue-200{color:var(--blue-200)!important}.text-blue-300{color:var(--blue-300)!important}.text-blue-400{color:var(--blue-400)!important}.text-blue-500{color:var(--blue-500)!important}.text-blue-600{color:var(--blue-600)!important}.text-blue-700{color:var(--blue-700)!important}.text-blue-800{color:var(--blue-800)!important}.text-blue-900{color:var(--blue-900)!important}.focus\\:text-blue-50:focus{color:var(--blue-50)!important}.focus\\:text-blue-100:focus{color:var(--blue-100)!important}.focus\\:text-blue-200:focus{color:var(--blue-200)!important}.focus\\:text-blue-300:focus{color:var(--blue-300)!important}.focus\\:text-blue-400:focus{color:var(--blue-400)!important}.focus\\:text-blue-500:focus{color:var(--blue-500)!important}.focus\\:text-blue-600:focus{color:var(--blue-600)!important}.focus\\:text-blue-700:focus{color:var(--blue-700)!important}.focus\\:text-blue-800:focus{color:var(--blue-800)!important}.focus\\:text-blue-900:focus{color:var(--blue-900)!important}.hover\\:text-blue-50:hover{color:var(--blue-50)!important}.hover\\:text-blue-100:hover{color:var(--blue-100)!important}.hover\\:text-blue-200:hover{color:var(--blue-200)!important}.hover\\:text-blue-300:hover{color:var(--blue-300)!important}.hover\\:text-blue-400:hover{color:var(--blue-400)!important}.hover\\:text-blue-500:hover{color:var(--blue-500)!important}.hover\\:text-blue-600:hover{color:var(--blue-600)!important}.hover\\:text-blue-700:hover{color:var(--blue-700)!important}.hover\\:text-blue-800:hover{color:var(--blue-800)!important}.hover\\:text-blue-900:hover{color:var(--blue-900)!important}.active\\:text-blue-50:active{color:var(--blue-50)!important}.active\\:text-blue-100:active{color:var(--blue-100)!important}.active\\:text-blue-200:active{color:var(--blue-200)!important}.active\\:text-blue-300:active{color:var(--blue-300)!important}.active\\:text-blue-400:active{color:var(--blue-400)!important}.active\\:text-blue-500:active{color:var(--blue-500)!important}.active\\:text-blue-600:active{color:var(--blue-600)!important}.active\\:text-blue-700:active{color:var(--blue-700)!important}.active\\:text-blue-800:active{color:var(--blue-800)!important}.active\\:text-blue-900:active{color:var(--blue-900)!important}.text-green-50{color:var(--green-50)!important}.text-green-100{color:var(--green-100)!important}.text-green-200{color:var(--green-200)!important}.text-green-300{color:var(--green-300)!important}.text-green-400{color:var(--green-400)!important}.text-green-500{color:var(--green-500)!important}.text-green-600{color:var(--green-600)!important}.text-green-700{color:var(--green-700)!important}.text-green-800{color:var(--green-800)!important}.text-green-900{color:var(--green-900)!important}.focus\\:text-green-50:focus{color:var(--green-50)!important}.focus\\:text-green-100:focus{color:var(--green-100)!important}.focus\\:text-green-200:focus{color:var(--green-200)!important}.focus\\:text-green-300:focus{color:var(--green-300)!important}.focus\\:text-green-400:focus{color:var(--green-400)!important}.focus\\:text-green-500:focus{color:var(--green-500)!important}.focus\\:text-green-600:focus{color:var(--green-600)!important}.focus\\:text-green-700:focus{color:var(--green-700)!important}.focus\\:text-green-800:focus{color:var(--green-800)!important}.focus\\:text-green-900:focus{color:var(--green-900)!important}.hover\\:text-green-50:hover{color:var(--green-50)!important}.hover\\:text-green-100:hover{color:var(--green-100)!important}.hover\\:text-green-200:hover{color:var(--green-200)!important}.hover\\:text-green-300:hover{color:var(--green-300)!important}.hover\\:text-green-400:hover{color:var(--green-400)!important}.hover\\:text-green-500:hover{color:var(--green-500)!important}.hover\\:text-green-600:hover{color:var(--green-600)!important}.hover\\:text-green-700:hover{color:var(--green-700)!important}.hover\\:text-green-800:hover{color:var(--green-800)!important}.hover\\:text-green-900:hover{color:var(--green-900)!important}.active\\:text-green-50:active{color:var(--green-50)!important}.active\\:text-green-100:active{color:var(--green-100)!important}.active\\:text-green-200:active{color:var(--green-200)!important}.active\\:text-green-300:active{color:var(--green-300)!important}.active\\:text-green-400:active{color:var(--green-400)!important}.active\\:text-green-500:active{color:var(--green-500)!important}.active\\:text-green-600:active{color:var(--green-600)!important}.active\\:text-green-700:active{color:var(--green-700)!important}.active\\:text-green-800:active{color:var(--green-800)!important}.active\\:text-green-900:active{color:var(--green-900)!important}.text-yellow-50{color:var(--yellow-50)!important}.text-yellow-100{color:var(--yellow-100)!important}.text-yellow-200{color:var(--yellow-200)!important}.text-yellow-300{color:var(--yellow-300)!important}.text-yellow-400{color:var(--yellow-400)!important}.text-yellow-500{color:var(--yellow-500)!important}.text-yellow-600{color:var(--yellow-600)!important}.text-yellow-700{color:var(--yellow-700)!important}.text-yellow-800{color:var(--yellow-800)!important}.text-yellow-900{color:var(--yellow-900)!important}.focus\\:text-yellow-50:focus{color:var(--yellow-50)!important}.focus\\:text-yellow-100:focus{color:var(--yellow-100)!important}.focus\\:text-yellow-200:focus{color:var(--yellow-200)!important}.focus\\:text-yellow-300:focus{color:var(--yellow-300)!important}.focus\\:text-yellow-400:focus{color:var(--yellow-400)!important}.focus\\:text-yellow-500:focus{color:var(--yellow-500)!important}.focus\\:text-yellow-600:focus{color:var(--yellow-600)!important}.focus\\:text-yellow-700:focus{color:var(--yellow-700)!important}.focus\\:text-yellow-800:focus{color:var(--yellow-800)!important}.focus\\:text-yellow-900:focus{color:var(--yellow-900)!important}.hover\\:text-yellow-50:hover{color:var(--yellow-50)!important}.hover\\:text-yellow-100:hover{color:var(--yellow-100)!important}.hover\\:text-yellow-200:hover{color:var(--yellow-200)!important}.hover\\:text-yellow-300:hover{color:var(--yellow-300)!important}.hover\\:text-yellow-400:hover{color:var(--yellow-400)!important}.hover\\:text-yellow-500:hover{color:var(--yellow-500)!important}.hover\\:text-yellow-600:hover{color:var(--yellow-600)!important}.hover\\:text-yellow-700:hover{color:var(--yellow-700)!important}.hover\\:text-yellow-800:hover{color:var(--yellow-800)!important}.hover\\:text-yellow-900:hover{color:var(--yellow-900)!important}.active\\:text-yellow-50:active{color:var(--yellow-50)!important}.active\\:text-yellow-100:active{color:var(--yellow-100)!important}.active\\:text-yellow-200:active{color:var(--yellow-200)!important}.active\\:text-yellow-300:active{color:var(--yellow-300)!important}.active\\:text-yellow-400:active{color:var(--yellow-400)!important}.active\\:text-yellow-500:active{color:var(--yellow-500)!important}.active\\:text-yellow-600:active{color:var(--yellow-600)!important}.active\\:text-yellow-700:active{color:var(--yellow-700)!important}.active\\:text-yellow-800:active{color:var(--yellow-800)!important}.active\\:text-yellow-900:active{color:var(--yellow-900)!important}.text-cyan-50{color:var(--cyan-50)!important}.text-cyan-100{color:var(--cyan-100)!important}.text-cyan-200{color:var(--cyan-200)!important}.text-cyan-300{color:var(--cyan-300)!important}.text-cyan-400{color:var(--cyan-400)!important}.text-cyan-500{color:var(--cyan-500)!important}.text-cyan-600{color:var(--cyan-600)!important}.text-cyan-700{color:var(--cyan-700)!important}.text-cyan-800{color:var(--cyan-800)!important}.text-cyan-900{color:var(--cyan-900)!important}.focus\\:text-cyan-50:focus{color:var(--cyan-50)!important}.focus\\:text-cyan-100:focus{color:var(--cyan-100)!important}.focus\\:text-cyan-200:focus{color:var(--cyan-200)!important}.focus\\:text-cyan-300:focus{color:var(--cyan-300)!important}.focus\\:text-cyan-400:focus{color:var(--cyan-400)!important}.focus\\:text-cyan-500:focus{color:var(--cyan-500)!important}.focus\\:text-cyan-600:focus{color:var(--cyan-600)!important}.focus\\:text-cyan-700:focus{color:var(--cyan-700)!important}.focus\\:text-cyan-800:focus{color:var(--cyan-800)!important}.focus\\:text-cyan-900:focus{color:var(--cyan-900)!important}.hover\\:text-cyan-50:hover{color:var(--cyan-50)!important}.hover\\:text-cyan-100:hover{color:var(--cyan-100)!important}.hover\\:text-cyan-200:hover{color:var(--cyan-200)!important}.hover\\:text-cyan-300:hover{color:var(--cyan-300)!important}.hover\\:text-cyan-400:hover{color:var(--cyan-400)!important}.hover\\:text-cyan-500:hover{color:var(--cyan-500)!important}.hover\\:text-cyan-600:hover{color:var(--cyan-600)!important}.hover\\:text-cyan-700:hover{color:var(--cyan-700)!important}.hover\\:text-cyan-800:hover{color:var(--cyan-800)!important}.hover\\:text-cyan-900:hover{color:var(--cyan-900)!important}.active\\:text-cyan-50:active{color:var(--cyan-50)!important}.active\\:text-cyan-100:active{color:var(--cyan-100)!important}.active\\:text-cyan-200:active{color:var(--cyan-200)!important}.active\\:text-cyan-300:active{color:var(--cyan-300)!important}.active\\:text-cyan-400:active{color:var(--cyan-400)!important}.active\\:text-cyan-500:active{color:var(--cyan-500)!important}.active\\:text-cyan-600:active{color:var(--cyan-600)!important}.active\\:text-cyan-700:active{color:var(--cyan-700)!important}.active\\:text-cyan-800:active{color:var(--cyan-800)!important}.active\\:text-cyan-900:active{color:var(--cyan-900)!important}.text-pink-50{color:var(--pink-50)!important}.text-pink-100{color:var(--pink-100)!important}.text-pink-200{color:var(--pink-200)!important}.text-pink-300{color:var(--pink-300)!important}.text-pink-400{color:var(--pink-400)!important}.text-pink-500{color:var(--pink-500)!important}.text-pink-600{color:var(--pink-600)!important}.text-pink-700{color:var(--pink-700)!important}.text-pink-800{color:var(--pink-800)!important}.text-pink-900{color:var(--pink-900)!important}.focus\\:text-pink-50:focus{color:var(--pink-50)!important}.focus\\:text-pink-100:focus{color:var(--pink-100)!important}.focus\\:text-pink-200:focus{color:var(--pink-200)!important}.focus\\:text-pink-300:focus{color:var(--pink-300)!important}.focus\\:text-pink-400:focus{color:var(--pink-400)!important}.focus\\:text-pink-500:focus{color:var(--pink-500)!important}.focus\\:text-pink-600:focus{color:var(--pink-600)!important}.focus\\:text-pink-700:focus{color:var(--pink-700)!important}.focus\\:text-pink-800:focus{color:var(--pink-800)!important}.focus\\:text-pink-900:focus{color:var(--pink-900)!important}.hover\\:text-pink-50:hover{color:var(--pink-50)!important}.hover\\:text-pink-100:hover{color:var(--pink-100)!important}.hover\\:text-pink-200:hover{color:var(--pink-200)!important}.hover\\:text-pink-300:hover{color:var(--pink-300)!important}.hover\\:text-pink-400:hover{color:var(--pink-400)!important}.hover\\:text-pink-500:hover{color:var(--pink-500)!important}.hover\\:text-pink-600:hover{color:var(--pink-600)!important}.hover\\:text-pink-700:hover{color:var(--pink-700)!important}.hover\\:text-pink-800:hover{color:var(--pink-800)!important}.hover\\:text-pink-900:hover{color:var(--pink-900)!important}.active\\:text-pink-50:active{color:var(--pink-50)!important}.active\\:text-pink-100:active{color:var(--pink-100)!important}.active\\:text-pink-200:active{color:var(--pink-200)!important}.active\\:text-pink-300:active{color:var(--pink-300)!important}.active\\:text-pink-400:active{color:var(--pink-400)!important}.active\\:text-pink-500:active{color:var(--pink-500)!important}.active\\:text-pink-600:active{color:var(--pink-600)!important}.active\\:text-pink-700:active{color:var(--pink-700)!important}.active\\:text-pink-800:active{color:var(--pink-800)!important}.active\\:text-pink-900:active{color:var(--pink-900)!important}.text-indigo-50{color:var(--indigo-50)!important}.text-indigo-100{color:var(--indigo-100)!important}.text-indigo-200{color:var(--indigo-200)!important}.text-indigo-300{color:var(--indigo-300)!important}.text-indigo-400{color:var(--indigo-400)!important}.text-indigo-500{color:var(--indigo-500)!important}.text-indigo-600{color:var(--indigo-600)!important}.text-indigo-700{color:var(--indigo-700)!important}.text-indigo-800{color:var(--indigo-800)!important}.text-indigo-900{color:var(--indigo-900)!important}.focus\\:text-indigo-50:focus{color:var(--indigo-50)!important}.focus\\:text-indigo-100:focus{color:var(--indigo-100)!important}.focus\\:text-indigo-200:focus{color:var(--indigo-200)!important}.focus\\:text-indigo-300:focus{color:var(--indigo-300)!important}.focus\\:text-indigo-400:focus{color:var(--indigo-400)!important}.focus\\:text-indigo-500:focus{color:var(--indigo-500)!important}.focus\\:text-indigo-600:focus{color:var(--indigo-600)!important}.focus\\:text-indigo-700:focus{color:var(--indigo-700)!important}.focus\\:text-indigo-800:focus{color:var(--indigo-800)!important}.focus\\:text-indigo-900:focus{color:var(--indigo-900)!important}.hover\\:text-indigo-50:hover{color:var(--indigo-50)!important}.hover\\:text-indigo-100:hover{color:var(--indigo-100)!important}.hover\\:text-indigo-200:hover{color:var(--indigo-200)!important}.hover\\:text-indigo-300:hover{color:var(--indigo-300)!important}.hover\\:text-indigo-400:hover{color:var(--indigo-400)!important}.hover\\:text-indigo-500:hover{color:var(--indigo-500)!important}.hover\\:text-indigo-600:hover{color:var(--indigo-600)!important}.hover\\:text-indigo-700:hover{color:var(--indigo-700)!important}.hover\\:text-indigo-800:hover{color:var(--indigo-800)!important}.hover\\:text-indigo-900:hover{color:var(--indigo-900)!important}.active\\:text-indigo-50:active{color:var(--indigo-50)!important}.active\\:text-indigo-100:active{color:var(--indigo-100)!important}.active\\:text-indigo-200:active{color:var(--indigo-200)!important}.active\\:text-indigo-300:active{color:var(--indigo-300)!important}.active\\:text-indigo-400:active{color:var(--indigo-400)!important}.active\\:text-indigo-500:active{color:var(--indigo-500)!important}.active\\:text-indigo-600:active{color:var(--indigo-600)!important}.active\\:text-indigo-700:active{color:var(--indigo-700)!important}.active\\:text-indigo-800:active{color:var(--indigo-800)!important}.active\\:text-indigo-900:active{color:var(--indigo-900)!important}.text-teal-50{color:var(--teal-50)!important}.text-teal-100{color:var(--teal-100)!important}.text-teal-200{color:var(--teal-200)!important}.text-teal-300{color:var(--teal-300)!important}.text-teal-400{color:var(--teal-400)!important}.text-teal-500{color:var(--teal-500)!important}.text-teal-600{color:var(--teal-600)!important}.text-teal-700{color:var(--teal-700)!important}.text-teal-800{color:var(--teal-800)!important}.text-teal-900{color:var(--teal-900)!important}.focus\\:text-teal-50:focus{color:var(--teal-50)!important}.focus\\:text-teal-100:focus{color:var(--teal-100)!important}.focus\\:text-teal-200:focus{color:var(--teal-200)!important}.focus\\:text-teal-300:focus{color:var(--teal-300)!important}.focus\\:text-teal-400:focus{color:var(--teal-400)!important}.focus\\:text-teal-500:focus{color:var(--teal-500)!important}.focus\\:text-teal-600:focus{color:var(--teal-600)!important}.focus\\:text-teal-700:focus{color:var(--teal-700)!important}.focus\\:text-teal-800:focus{color:var(--teal-800)!important}.focus\\:text-teal-900:focus{color:var(--teal-900)!important}.hover\\:text-teal-50:hover{color:var(--teal-50)!important}.hover\\:text-teal-100:hover{color:var(--teal-100)!important}.hover\\:text-teal-200:hover{color:var(--teal-200)!important}.hover\\:text-teal-300:hover{color:var(--teal-300)!important}.hover\\:text-teal-400:hover{color:var(--teal-400)!important}.hover\\:text-teal-500:hover{color:var(--teal-500)!important}.hover\\:text-teal-600:hover{color:var(--teal-600)!important}.hover\\:text-teal-700:hover{color:var(--teal-700)!important}.hover\\:text-teal-800:hover{color:var(--teal-800)!important}.hover\\:text-teal-900:hover{color:var(--teal-900)!important}.active\\:text-teal-50:active{color:var(--teal-50)!important}.active\\:text-teal-100:active{color:var(--teal-100)!important}.active\\:text-teal-200:active{color:var(--teal-200)!important}.active\\:text-teal-300:active{color:var(--teal-300)!important}.active\\:text-teal-400:active{color:var(--teal-400)!important}.active\\:text-teal-500:active{color:var(--teal-500)!important}.active\\:text-teal-600:active{color:var(--teal-600)!important}.active\\:text-teal-700:active{color:var(--teal-700)!important}.active\\:text-teal-800:active{color:var(--teal-800)!important}.active\\:text-teal-900:active{color:var(--teal-900)!important}.text-orange-50{color:var(--orange-50)!important}.text-orange-100{color:var(--orange-100)!important}.text-orange-200{color:var(--orange-200)!important}.text-orange-300{color:var(--orange-300)!important}.text-orange-400{color:var(--orange-400)!important}.text-orange-500{color:var(--orange-500)!important}.text-orange-600{color:var(--orange-600)!important}.text-orange-700{color:var(--orange-700)!important}.text-orange-800{color:var(--orange-800)!important}.text-orange-900{color:var(--orange-900)!important}.focus\\:text-orange-50:focus{color:var(--orange-50)!important}.focus\\:text-orange-100:focus{color:var(--orange-100)!important}.focus\\:text-orange-200:focus{color:var(--orange-200)!important}.focus\\:text-orange-300:focus{color:var(--orange-300)!important}.focus\\:text-orange-400:focus{color:var(--orange-400)!important}.focus\\:text-orange-500:focus{color:var(--orange-500)!important}.focus\\:text-orange-600:focus{color:var(--orange-600)!important}.focus\\:text-orange-700:focus{color:var(--orange-700)!important}.focus\\:text-orange-800:focus{color:var(--orange-800)!important}.focus\\:text-orange-900:focus{color:var(--orange-900)!important}.hover\\:text-orange-50:hover{color:var(--orange-50)!important}.hover\\:text-orange-100:hover{color:var(--orange-100)!important}.hover\\:text-orange-200:hover{color:var(--orange-200)!important}.hover\\:text-orange-300:hover{color:var(--orange-300)!important}.hover\\:text-orange-400:hover{color:var(--orange-400)!important}.hover\\:text-orange-500:hover{color:var(--orange-500)!important}.hover\\:text-orange-600:hover{color:var(--orange-600)!important}.hover\\:text-orange-700:hover{color:var(--orange-700)!important}.hover\\:text-orange-800:hover{color:var(--orange-800)!important}.hover\\:text-orange-900:hover{color:var(--orange-900)!important}.active\\:text-orange-50:active{color:var(--orange-50)!important}.active\\:text-orange-100:active{color:var(--orange-100)!important}.active\\:text-orange-200:active{color:var(--orange-200)!important}.active\\:text-orange-300:active{color:var(--orange-300)!important}.active\\:text-orange-400:active{color:var(--orange-400)!important}.active\\:text-orange-500:active{color:var(--orange-500)!important}.active\\:text-orange-600:active{color:var(--orange-600)!important}.active\\:text-orange-700:active{color:var(--orange-700)!important}.active\\:text-orange-800:active{color:var(--orange-800)!important}.active\\:text-orange-900:active{color:var(--orange-900)!important}.text-bluegray-50{color:var(--bluegray-50)!important}.text-bluegray-100{color:var(--bluegray-100)!important}.text-bluegray-200{color:var(--bluegray-200)!important}.text-bluegray-300{color:var(--bluegray-300)!important}.text-bluegray-400{color:var(--bluegray-400)!important}.text-bluegray-500{color:var(--bluegray-500)!important}.text-bluegray-600{color:var(--bluegray-600)!important}.text-bluegray-700{color:var(--bluegray-700)!important}.text-bluegray-800{color:var(--bluegray-800)!important}.text-bluegray-900{color:var(--bluegray-900)!important}.focus\\:text-bluegray-50:focus{color:var(--bluegray-50)!important}.focus\\:text-bluegray-100:focus{color:var(--bluegray-100)!important}.focus\\:text-bluegray-200:focus{color:var(--bluegray-200)!important}.focus\\:text-bluegray-300:focus{color:var(--bluegray-300)!important}.focus\\:text-bluegray-400:focus{color:var(--bluegray-400)!important}.focus\\:text-bluegray-500:focus{color:var(--bluegray-500)!important}.focus\\:text-bluegray-600:focus{color:var(--bluegray-600)!important}.focus\\:text-bluegray-700:focus{color:var(--bluegray-700)!important}.focus\\:text-bluegray-800:focus{color:var(--bluegray-800)!important}.focus\\:text-bluegray-900:focus{color:var(--bluegray-900)!important}.hover\\:text-bluegray-50:hover{color:var(--bluegray-50)!important}.hover\\:text-bluegray-100:hover{color:var(--bluegray-100)!important}.hover\\:text-bluegray-200:hover{color:var(--bluegray-200)!important}.hover\\:text-bluegray-300:hover{color:var(--bluegray-300)!important}.hover\\:text-bluegray-400:hover{color:var(--bluegray-400)!important}.hover\\:text-bluegray-500:hover{color:var(--bluegray-500)!important}.hover\\:text-bluegray-600:hover{color:var(--bluegray-600)!important}.hover\\:text-bluegray-700:hover{color:var(--bluegray-700)!important}.hover\\:text-bluegray-800:hover{color:var(--bluegray-800)!important}.hover\\:text-bluegray-900:hover{color:var(--bluegray-900)!important}.active\\:text-bluegray-50:active{color:var(--bluegray-50)!important}.active\\:text-bluegray-100:active{color:var(--bluegray-100)!important}.active\\:text-bluegray-200:active{color:var(--bluegray-200)!important}.active\\:text-bluegray-300:active{color:var(--bluegray-300)!important}.active\\:text-bluegray-400:active{color:var(--bluegray-400)!important}.active\\:text-bluegray-500:active{color:var(--bluegray-500)!important}.active\\:text-bluegray-600:active{color:var(--bluegray-600)!important}.active\\:text-bluegray-700:active{color:var(--bluegray-700)!important}.active\\:text-bluegray-800:active{color:var(--bluegray-800)!important}.active\\:text-bluegray-900:active{color:var(--bluegray-900)!important}.text-purple-50{color:var(--purple-50)!important}.text-purple-100{color:var(--purple-100)!important}.text-purple-200{color:var(--purple-200)!important}.text-purple-300{color:var(--purple-300)!important}.text-purple-400{color:var(--purple-400)!important}.text-purple-500{color:var(--purple-500)!important}.text-purple-600{color:var(--purple-600)!important}.text-purple-700{color:var(--purple-700)!important}.text-purple-800{color:var(--purple-800)!important}.text-purple-900{color:var(--purple-900)!important}.focus\\:text-purple-50:focus{color:var(--purple-50)!important}.focus\\:text-purple-100:focus{color:var(--purple-100)!important}.focus\\:text-purple-200:focus{color:var(--purple-200)!important}.focus\\:text-purple-300:focus{color:var(--purple-300)!important}.focus\\:text-purple-400:focus{color:var(--purple-400)!important}.focus\\:text-purple-500:focus{color:var(--purple-500)!important}.focus\\:text-purple-600:focus{color:var(--purple-600)!important}.focus\\:text-purple-700:focus{color:var(--purple-700)!important}.focus\\:text-purple-800:focus{color:var(--purple-800)!important}.focus\\:text-purple-900:focus{color:var(--purple-900)!important}.hover\\:text-purple-50:hover{color:var(--purple-50)!important}.hover\\:text-purple-100:hover{color:var(--purple-100)!important}.hover\\:text-purple-200:hover{color:var(--purple-200)!important}.hover\\:text-purple-300:hover{color:var(--purple-300)!important}.hover\\:text-purple-400:hover{color:var(--purple-400)!important}.hover\\:text-purple-500:hover{color:var(--purple-500)!important}.hover\\:text-purple-600:hover{color:var(--purple-600)!important}.hover\\:text-purple-700:hover{color:var(--purple-700)!important}.hover\\:text-purple-800:hover{color:var(--purple-800)!important}.hover\\:text-purple-900:hover{color:var(--purple-900)!important}.active\\:text-purple-50:active{color:var(--purple-50)!important}.active\\:text-purple-100:active{color:var(--purple-100)!important}.active\\:text-purple-200:active{color:var(--purple-200)!important}.active\\:text-purple-300:active{color:var(--purple-300)!important}.active\\:text-purple-400:active{color:var(--purple-400)!important}.active\\:text-purple-500:active{color:var(--purple-500)!important}.active\\:text-purple-600:active{color:var(--purple-600)!important}.active\\:text-purple-700:active{color:var(--purple-700)!important}.active\\:text-purple-800:active{color:var(--purple-800)!important}.active\\:text-purple-900:active{color:var(--purple-900)!important}.text-gray-50{color:var(--gray-50)!important}.text-gray-100{color:var(--gray-100)!important}.text-gray-200{color:var(--gray-200)!important}.text-gray-300{color:var(--gray-300)!important}.text-gray-400{color:var(--gray-400)!important}.text-gray-500{color:var(--gray-500)!important}.text-gray-600{color:var(--gray-600)!important}.text-gray-700{color:var(--gray-700)!important}.text-gray-800{color:var(--gray-800)!important}.text-gray-900{color:var(--gray-900)!important}.focus\\:text-gray-50:focus{color:var(--gray-50)!important}.focus\\:text-gray-100:focus{color:var(--gray-100)!important}.focus\\:text-gray-200:focus{color:var(--gray-200)!important}.focus\\:text-gray-300:focus{color:var(--gray-300)!important}.focus\\:text-gray-400:focus{color:var(--gray-400)!important}.focus\\:text-gray-500:focus{color:var(--gray-500)!important}.focus\\:text-gray-600:focus{color:var(--gray-600)!important}.focus\\:text-gray-700:focus{color:var(--gray-700)!important}.focus\\:text-gray-800:focus{color:var(--gray-800)!important}.focus\\:text-gray-900:focus{color:var(--gray-900)!important}.hover\\:text-gray-50:hover{color:var(--gray-50)!important}.hover\\:text-gray-100:hover{color:var(--gray-100)!important}.hover\\:text-gray-200:hover{color:var(--gray-200)!important}.hover\\:text-gray-300:hover{color:var(--gray-300)!important}.hover\\:text-gray-400:hover{color:var(--gray-400)!important}.hover\\:text-gray-500:hover{color:var(--gray-500)!important}.hover\\:text-gray-600:hover{color:var(--gray-600)!important}.hover\\:text-gray-700:hover{color:var(--gray-700)!important}.hover\\:text-gray-800:hover{color:var(--gray-800)!important}.hover\\:text-gray-900:hover{color:var(--gray-900)!important}.active\\:text-gray-50:active{color:var(--gray-50)!important}.active\\:text-gray-100:active{color:var(--gray-100)!important}.active\\:text-gray-200:active{color:var(--gray-200)!important}.active\\:text-gray-300:active{color:var(--gray-300)!important}.active\\:text-gray-400:active{color:var(--gray-400)!important}.active\\:text-gray-500:active{color:var(--gray-500)!important}.active\\:text-gray-600:active{color:var(--gray-600)!important}.active\\:text-gray-700:active{color:var(--gray-700)!important}.active\\:text-gray-800:active{color:var(--gray-800)!important}.active\\:text-gray-900:active{color:var(--gray-900)!important}.text-red-50{color:var(--red-50)!important}.text-red-100{color:var(--red-100)!important}.text-red-200{color:var(--red-200)!important}.text-red-300{color:var(--red-300)!important}.text-red-400{color:var(--red-400)!important}.text-red-500{color:var(--red-500)!important}.text-red-600{color:var(--red-600)!important}.text-red-700{color:var(--red-700)!important}.text-red-800{color:var(--red-800)!important}.text-red-900{color:var(--red-900)!important}.focus\\:text-red-50:focus{color:var(--red-50)!important}.focus\\:text-red-100:focus{color:var(--red-100)!important}.focus\\:text-red-200:focus{color:var(--red-200)!important}.focus\\:text-red-300:focus{color:var(--red-300)!important}.focus\\:text-red-400:focus{color:var(--red-400)!important}.focus\\:text-red-500:focus{color:var(--red-500)!important}.focus\\:text-red-600:focus{color:var(--red-600)!important}.focus\\:text-red-700:focus{color:var(--red-700)!important}.focus\\:text-red-800:focus{color:var(--red-800)!important}.focus\\:text-red-900:focus{color:var(--red-900)!important}.hover\\:text-red-50:hover{color:var(--red-50)!important}.hover\\:text-red-100:hover{color:var(--red-100)!important}.hover\\:text-red-200:hover{color:var(--red-200)!important}.hover\\:text-red-300:hover{color:var(--red-300)!important}.hover\\:text-red-400:hover{color:var(--red-400)!important}.hover\\:text-red-500:hover{color:var(--red-500)!important}.hover\\:text-red-600:hover{color:var(--red-600)!important}.hover\\:text-red-700:hover{color:var(--red-700)!important}.hover\\:text-red-800:hover{color:var(--red-800)!important}.hover\\:text-red-900:hover{color:var(--red-900)!important}.active\\:text-red-50:active{color:var(--red-50)!important}.active\\:text-red-100:active{color:var(--red-100)!important}.active\\:text-red-200:active{color:var(--red-200)!important}.active\\:text-red-300:active{color:var(--red-300)!important}.active\\:text-red-400:active{color:var(--red-400)!important}.active\\:text-red-500:active{color:var(--red-500)!important}.active\\:text-red-600:active{color:var(--red-600)!important}.active\\:text-red-700:active{color:var(--red-700)!important}.active\\:text-red-800:active{color:var(--red-800)!important}.active\\:text-red-900:active{color:var(--red-900)!important}.text-primary-50{color:var(--primary-50)!important}.text-primary-100{color:var(--primary-100)!important}.text-primary-200{color:var(--primary-200)!important}.text-primary-300{color:var(--primary-300)!important}.text-primary-400{color:var(--primary-400)!important}.text-primary-500{color:var(--primary-500)!important}.text-primary-600{color:var(--primary-600)!important}.text-primary-700{color:var(--primary-700)!important}.text-primary-800{color:var(--primary-800)!important}.text-primary-900{color:var(--primary-900)!important}.focus\\:text-primary-50:focus{color:var(--primary-50)!important}.focus\\:text-primary-100:focus{color:var(--primary-100)!important}.focus\\:text-primary-200:focus{color:var(--primary-200)!important}.focus\\:text-primary-300:focus{color:var(--primary-300)!important}.focus\\:text-primary-400:focus{color:var(--primary-400)!important}.focus\\:text-primary-500:focus{color:var(--primary-500)!important}.focus\\:text-primary-600:focus{color:var(--primary-600)!important}.focus\\:text-primary-700:focus{color:var(--primary-700)!important}.focus\\:text-primary-800:focus{color:var(--primary-800)!important}.focus\\:text-primary-900:focus{color:var(--primary-900)!important}.hover\\:text-primary-50:hover{color:var(--primary-50)!important}.hover\\:text-primary-100:hover{color:var(--primary-100)!important}.hover\\:text-primary-200:hover{color:var(--primary-200)!important}.hover\\:text-primary-300:hover{color:var(--primary-300)!important}.hover\\:text-primary-400:hover{color:var(--primary-400)!important}.hover\\:text-primary-500:hover{color:var(--primary-500)!important}.hover\\:text-primary-600:hover{color:var(--primary-600)!important}.hover\\:text-primary-700:hover{color:var(--primary-700)!important}.hover\\:text-primary-800:hover{color:var(--primary-800)!important}.hover\\:text-primary-900:hover{color:var(--primary-900)!important}.active\\:text-primary-50:active{color:var(--primary-50)!important}.active\\:text-primary-100:active{color:var(--primary-100)!important}.active\\:text-primary-200:active{color:var(--primary-200)!important}.active\\:text-primary-300:active{color:var(--primary-300)!important}.active\\:text-primary-400:active{color:var(--primary-400)!important}.active\\:text-primary-500:active{color:var(--primary-500)!important}.active\\:text-primary-600:active{color:var(--primary-600)!important}.active\\:text-primary-700:active{color:var(--primary-700)!important}.active\\:text-primary-800:active{color:var(--primary-800)!important}.active\\:text-primary-900:active{color:var(--primary-900)!important}.bg-blue-50{background-color:var(--blue-50)!important}.bg-blue-100{background-color:var(--blue-100)!important}.bg-blue-200{background-color:var(--blue-200)!important}.bg-blue-300{background-color:var(--blue-300)!important}.bg-blue-400{background-color:var(--blue-400)!important}.bg-blue-500{background-color:var(--blue-500)!important}.bg-blue-600{background-color:var(--blue-600)!important}.bg-blue-700{background-color:var(--blue-700)!important}.bg-blue-800{background-color:var(--blue-800)!important}.bg-blue-900{background-color:var(--blue-900)!important}.focus\\:bg-blue-50:focus{background-color:var(--blue-50)!important}.focus\\:bg-blue-100:focus{background-color:var(--blue-100)!important}.focus\\:bg-blue-200:focus{background-color:var(--blue-200)!important}.focus\\:bg-blue-300:focus{background-color:var(--blue-300)!important}.focus\\:bg-blue-400:focus{background-color:var(--blue-400)!important}.focus\\:bg-blue-500:focus{background-color:var(--blue-500)!important}.focus\\:bg-blue-600:focus{background-color:var(--blue-600)!important}.focus\\:bg-blue-700:focus{background-color:var(--blue-700)!important}.focus\\:bg-blue-800:focus{background-color:var(--blue-800)!important}.focus\\:bg-blue-900:focus{background-color:var(--blue-900)!important}.hover\\:bg-blue-50:hover{background-color:var(--blue-50)!important}.hover\\:bg-blue-100:hover{background-color:var(--blue-100)!important}.hover\\:bg-blue-200:hover{background-color:var(--blue-200)!important}.hover\\:bg-blue-300:hover{background-color:var(--blue-300)!important}.hover\\:bg-blue-400:hover{background-color:var(--blue-400)!important}.hover\\:bg-blue-500:hover{background-color:var(--blue-500)!important}.hover\\:bg-blue-600:hover{background-color:var(--blue-600)!important}.hover\\:bg-blue-700:hover{background-color:var(--blue-700)!important}.hover\\:bg-blue-800:hover{background-color:var(--blue-800)!important}.hover\\:bg-blue-900:hover{background-color:var(--blue-900)!important}.active\\:bg-blue-50:active{background-color:var(--blue-50)!important}.active\\:bg-blue-100:active{background-color:var(--blue-100)!important}.active\\:bg-blue-200:active{background-color:var(--blue-200)!important}.active\\:bg-blue-300:active{background-color:var(--blue-300)!important}.active\\:bg-blue-400:active{background-color:var(--blue-400)!important}.active\\:bg-blue-500:active{background-color:var(--blue-500)!important}.active\\:bg-blue-600:active{background-color:var(--blue-600)!important}.active\\:bg-blue-700:active{background-color:var(--blue-700)!important}.active\\:bg-blue-800:active{background-color:var(--blue-800)!important}.active\\:bg-blue-900:active{background-color:var(--blue-900)!important}.bg-green-50{background-color:var(--green-50)!important}.bg-green-100{background-color:var(--green-100)!important}.bg-green-200{background-color:var(--green-200)!important}.bg-green-300{background-color:var(--green-300)!important}.bg-green-400{background-color:var(--green-400)!important}.bg-green-500{background-color:var(--green-500)!important}.bg-green-600{background-color:var(--green-600)!important}.bg-green-700{background-color:var(--green-700)!important}.bg-green-800{background-color:var(--green-800)!important}.bg-green-900{background-color:var(--green-900)!important}.focus\\:bg-green-50:focus{background-color:var(--green-50)!important}.focus\\:bg-green-100:focus{background-color:var(--green-100)!important}.focus\\:bg-green-200:focus{background-color:var(--green-200)!important}.focus\\:bg-green-300:focus{background-color:var(--green-300)!important}.focus\\:bg-green-400:focus{background-color:var(--green-400)!important}.focus\\:bg-green-500:focus{background-color:var(--green-500)!important}.focus\\:bg-green-600:focus{background-color:var(--green-600)!important}.focus\\:bg-green-700:focus{background-color:var(--green-700)!important}.focus\\:bg-green-800:focus{background-color:var(--green-800)!important}.focus\\:bg-green-900:focus{background-color:var(--green-900)!important}.hover\\:bg-green-50:hover{background-color:var(--green-50)!important}.hover\\:bg-green-100:hover{background-color:var(--green-100)!important}.hover\\:bg-green-200:hover{background-color:var(--green-200)!important}.hover\\:bg-green-300:hover{background-color:var(--green-300)!important}.hover\\:bg-green-400:hover{background-color:var(--green-400)!important}.hover\\:bg-green-500:hover{background-color:var(--green-500)!important}.hover\\:bg-green-600:hover{background-color:var(--green-600)!important}.hover\\:bg-green-700:hover{background-color:var(--green-700)!important}.hover\\:bg-green-800:hover{background-color:var(--green-800)!important}.hover\\:bg-green-900:hover{background-color:var(--green-900)!important}.active\\:bg-green-50:active{background-color:var(--green-50)!important}.active\\:bg-green-100:active{background-color:var(--green-100)!important}.active\\:bg-green-200:active{background-color:var(--green-200)!important}.active\\:bg-green-300:active{background-color:var(--green-300)!important}.active\\:bg-green-400:active{background-color:var(--green-400)!important}.active\\:bg-green-500:active{background-color:var(--green-500)!important}.active\\:bg-green-600:active{background-color:var(--green-600)!important}.active\\:bg-green-700:active{background-color:var(--green-700)!important}.active\\:bg-green-800:active{background-color:var(--green-800)!important}.active\\:bg-green-900:active{background-color:var(--green-900)!important}.bg-yellow-50{background-color:var(--yellow-50)!important}.bg-yellow-100{background-color:var(--yellow-100)!important}.bg-yellow-200{background-color:var(--yellow-200)!important}.bg-yellow-300{background-color:var(--yellow-300)!important}.bg-yellow-400{background-color:var(--yellow-400)!important}.bg-yellow-500{background-color:var(--yellow-500)!important}.bg-yellow-600{background-color:var(--yellow-600)!important}.bg-yellow-700{background-color:var(--yellow-700)!important}.bg-yellow-800{background-color:var(--yellow-800)!important}.bg-yellow-900{background-color:var(--yellow-900)!important}.focus\\:bg-yellow-50:focus{background-color:var(--yellow-50)!important}.focus\\:bg-yellow-100:focus{background-color:var(--yellow-100)!important}.focus\\:bg-yellow-200:focus{background-color:var(--yellow-200)!important}.focus\\:bg-yellow-300:focus{background-color:var(--yellow-300)!important}.focus\\:bg-yellow-400:focus{background-color:var(--yellow-400)!important}.focus\\:bg-yellow-500:focus{background-color:var(--yellow-500)!important}.focus\\:bg-yellow-600:focus{background-color:var(--yellow-600)!important}.focus\\:bg-yellow-700:focus{background-color:var(--yellow-700)!important}.focus\\:bg-yellow-800:focus{background-color:var(--yellow-800)!important}.focus\\:bg-yellow-900:focus{background-color:var(--yellow-900)!important}.hover\\:bg-yellow-50:hover{background-color:var(--yellow-50)!important}.hover\\:bg-yellow-100:hover{background-color:var(--yellow-100)!important}.hover\\:bg-yellow-200:hover{background-color:var(--yellow-200)!important}.hover\\:bg-yellow-300:hover{background-color:var(--yellow-300)!important}.hover\\:bg-yellow-400:hover{background-color:var(--yellow-400)!important}.hover\\:bg-yellow-500:hover{background-color:var(--yellow-500)!important}.hover\\:bg-yellow-600:hover{background-color:var(--yellow-600)!important}.hover\\:bg-yellow-700:hover{background-color:var(--yellow-700)!important}.hover\\:bg-yellow-800:hover{background-color:var(--yellow-800)!important}.hover\\:bg-yellow-900:hover{background-color:var(--yellow-900)!important}.active\\:bg-yellow-50:active{background-color:var(--yellow-50)!important}.active\\:bg-yellow-100:active{background-color:var(--yellow-100)!important}.active\\:bg-yellow-200:active{background-color:var(--yellow-200)!important}.active\\:bg-yellow-300:active{background-color:var(--yellow-300)!important}.active\\:bg-yellow-400:active{background-color:var(--yellow-400)!important}.active\\:bg-yellow-500:active{background-color:var(--yellow-500)!important}.active\\:bg-yellow-600:active{background-color:var(--yellow-600)!important}.active\\:bg-yellow-700:active{background-color:var(--yellow-700)!important}.active\\:bg-yellow-800:active{background-color:var(--yellow-800)!important}.active\\:bg-yellow-900:active{background-color:var(--yellow-900)!important}.bg-cyan-50{background-color:var(--cyan-50)!important}.bg-cyan-100{background-color:var(--cyan-100)!important}.bg-cyan-200{background-color:var(--cyan-200)!important}.bg-cyan-300{background-color:var(--cyan-300)!important}.bg-cyan-400{background-color:var(--cyan-400)!important}.bg-cyan-500{background-color:var(--cyan-500)!important}.bg-cyan-600{background-color:var(--cyan-600)!important}.bg-cyan-700{background-color:var(--cyan-700)!important}.bg-cyan-800{background-color:var(--cyan-800)!important}.bg-cyan-900{background-color:var(--cyan-900)!important}.focus\\:bg-cyan-50:focus{background-color:var(--cyan-50)!important}.focus\\:bg-cyan-100:focus{background-color:var(--cyan-100)!important}.focus\\:bg-cyan-200:focus{background-color:var(--cyan-200)!important}.focus\\:bg-cyan-300:focus{background-color:var(--cyan-300)!important}.focus\\:bg-cyan-400:focus{background-color:var(--cyan-400)!important}.focus\\:bg-cyan-500:focus{background-color:var(--cyan-500)!important}.focus\\:bg-cyan-600:focus{background-color:var(--cyan-600)!important}.focus\\:bg-cyan-700:focus{background-color:var(--cyan-700)!important}.focus\\:bg-cyan-800:focus{background-color:var(--cyan-800)!important}.focus\\:bg-cyan-900:focus{background-color:var(--cyan-900)!important}.hover\\:bg-cyan-50:hover{background-color:var(--cyan-50)!important}.hover\\:bg-cyan-100:hover{background-color:var(--cyan-100)!important}.hover\\:bg-cyan-200:hover{background-color:var(--cyan-200)!important}.hover\\:bg-cyan-300:hover{background-color:var(--cyan-300)!important}.hover\\:bg-cyan-400:hover{background-color:var(--cyan-400)!important}.hover\\:bg-cyan-500:hover{background-color:var(--cyan-500)!important}.hover\\:bg-cyan-600:hover{background-color:var(--cyan-600)!important}.hover\\:bg-cyan-700:hover{background-color:var(--cyan-700)!important}.hover\\:bg-cyan-800:hover{background-color:var(--cyan-800)!important}.hover\\:bg-cyan-900:hover{background-color:var(--cyan-900)!important}.active\\:bg-cyan-50:active{background-color:var(--cyan-50)!important}.active\\:bg-cyan-100:active{background-color:var(--cyan-100)!important}.active\\:bg-cyan-200:active{background-color:var(--cyan-200)!important}.active\\:bg-cyan-300:active{background-color:var(--cyan-300)!important}.active\\:bg-cyan-400:active{background-color:var(--cyan-400)!important}.active\\:bg-cyan-500:active{background-color:var(--cyan-500)!important}.active\\:bg-cyan-600:active{background-color:var(--cyan-600)!important}.active\\:bg-cyan-700:active{background-color:var(--cyan-700)!important}.active\\:bg-cyan-800:active{background-color:var(--cyan-800)!important}.active\\:bg-cyan-900:active{background-color:var(--cyan-900)!important}.bg-pink-50{background-color:var(--pink-50)!important}.bg-pink-100{background-color:var(--pink-100)!important}.bg-pink-200{background-color:var(--pink-200)!important}.bg-pink-300{background-color:var(--pink-300)!important}.bg-pink-400{background-color:var(--pink-400)!important}.bg-pink-500{background-color:var(--pink-500)!important}.bg-pink-600{background-color:var(--pink-600)!important}.bg-pink-700{background-color:var(--pink-700)!important}.bg-pink-800{background-color:var(--pink-800)!important}.bg-pink-900{background-color:var(--pink-900)!important}.focus\\:bg-pink-50:focus{background-color:var(--pink-50)!important}.focus\\:bg-pink-100:focus{background-color:var(--pink-100)!important}.focus\\:bg-pink-200:focus{background-color:var(--pink-200)!important}.focus\\:bg-pink-300:focus{background-color:var(--pink-300)!important}.focus\\:bg-pink-400:focus{background-color:var(--pink-400)!important}.focus\\:bg-pink-500:focus{background-color:var(--pink-500)!important}.focus\\:bg-pink-600:focus{background-color:var(--pink-600)!important}.focus\\:bg-pink-700:focus{background-color:var(--pink-700)!important}.focus\\:bg-pink-800:focus{background-color:var(--pink-800)!important}.focus\\:bg-pink-900:focus{background-color:var(--pink-900)!important}.hover\\:bg-pink-50:hover{background-color:var(--pink-50)!important}.hover\\:bg-pink-100:hover{background-color:var(--pink-100)!important}.hover\\:bg-pink-200:hover{background-color:var(--pink-200)!important}.hover\\:bg-pink-300:hover{background-color:var(--pink-300)!important}.hover\\:bg-pink-400:hover{background-color:var(--pink-400)!important}.hover\\:bg-pink-500:hover{background-color:var(--pink-500)!important}.hover\\:bg-pink-600:hover{background-color:var(--pink-600)!important}.hover\\:bg-pink-700:hover{background-color:var(--pink-700)!important}.hover\\:bg-pink-800:hover{background-color:var(--pink-800)!important}.hover\\:bg-pink-900:hover{background-color:var(--pink-900)!important}.active\\:bg-pink-50:active{background-color:var(--pink-50)!important}.active\\:bg-pink-100:active{background-color:var(--pink-100)!important}.active\\:bg-pink-200:active{background-color:var(--pink-200)!important}.active\\:bg-pink-300:active{background-color:var(--pink-300)!important}.active\\:bg-pink-400:active{background-color:var(--pink-400)!important}.active\\:bg-pink-500:active{background-color:var(--pink-500)!important}.active\\:bg-pink-600:active{background-color:var(--pink-600)!important}.active\\:bg-pink-700:active{background-color:var(--pink-700)!important}.active\\:bg-pink-800:active{background-color:var(--pink-800)!important}.active\\:bg-pink-900:active{background-color:var(--pink-900)!important}.bg-indigo-50{background-color:var(--indigo-50)!important}.bg-indigo-100{background-color:var(--indigo-100)!important}.bg-indigo-200{background-color:var(--indigo-200)!important}.bg-indigo-300{background-color:var(--indigo-300)!important}.bg-indigo-400{background-color:var(--indigo-400)!important}.bg-indigo-500{background-color:var(--indigo-500)!important}.bg-indigo-600{background-color:var(--indigo-600)!important}.bg-indigo-700{background-color:var(--indigo-700)!important}.bg-indigo-800{background-color:var(--indigo-800)!important}.bg-indigo-900{background-color:var(--indigo-900)!important}.focus\\:bg-indigo-50:focus{background-color:var(--indigo-50)!important}.focus\\:bg-indigo-100:focus{background-color:var(--indigo-100)!important}.focus\\:bg-indigo-200:focus{background-color:var(--indigo-200)!important}.focus\\:bg-indigo-300:focus{background-color:var(--indigo-300)!important}.focus\\:bg-indigo-400:focus{background-color:var(--indigo-400)!important}.focus\\:bg-indigo-500:focus{background-color:var(--indigo-500)!important}.focus\\:bg-indigo-600:focus{background-color:var(--indigo-600)!important}.focus\\:bg-indigo-700:focus{background-color:var(--indigo-700)!important}.focus\\:bg-indigo-800:focus{background-color:var(--indigo-800)!important}.focus\\:bg-indigo-900:focus{background-color:var(--indigo-900)!important}.hover\\:bg-indigo-50:hover{background-color:var(--indigo-50)!important}.hover\\:bg-indigo-100:hover{background-color:var(--indigo-100)!important}.hover\\:bg-indigo-200:hover{background-color:var(--indigo-200)!important}.hover\\:bg-indigo-300:hover{background-color:var(--indigo-300)!important}.hover\\:bg-indigo-400:hover{background-color:var(--indigo-400)!important}.hover\\:bg-indigo-500:hover{background-color:var(--indigo-500)!important}.hover\\:bg-indigo-600:hover{background-color:var(--indigo-600)!important}.hover\\:bg-indigo-700:hover{background-color:var(--indigo-700)!important}.hover\\:bg-indigo-800:hover{background-color:var(--indigo-800)!important}.hover\\:bg-indigo-900:hover{background-color:var(--indigo-900)!important}.active\\:bg-indigo-50:active{background-color:var(--indigo-50)!important}.active\\:bg-indigo-100:active{background-color:var(--indigo-100)!important}.active\\:bg-indigo-200:active{background-color:var(--indigo-200)!important}.active\\:bg-indigo-300:active{background-color:var(--indigo-300)!important}.active\\:bg-indigo-400:active{background-color:var(--indigo-400)!important}.active\\:bg-indigo-500:active{background-color:var(--indigo-500)!important}.active\\:bg-indigo-600:active{background-color:var(--indigo-600)!important}.active\\:bg-indigo-700:active{background-color:var(--indigo-700)!important}.active\\:bg-indigo-800:active{background-color:var(--indigo-800)!important}.active\\:bg-indigo-900:active{background-color:var(--indigo-900)!important}.bg-teal-50{background-color:var(--teal-50)!important}.bg-teal-100{background-color:var(--teal-100)!important}.bg-teal-200{background-color:var(--teal-200)!important}.bg-teal-300{background-color:var(--teal-300)!important}.bg-teal-400{background-color:var(--teal-400)!important}.bg-teal-500{background-color:var(--teal-500)!important}.bg-teal-600{background-color:var(--teal-600)!important}.bg-teal-700{background-color:var(--teal-700)!important}.bg-teal-800{background-color:var(--teal-800)!important}.bg-teal-900{background-color:var(--teal-900)!important}.focus\\:bg-teal-50:focus{background-color:var(--teal-50)!important}.focus\\:bg-teal-100:focus{background-color:var(--teal-100)!important}.focus\\:bg-teal-200:focus{background-color:var(--teal-200)!important}.focus\\:bg-teal-300:focus{background-color:var(--teal-300)!important}.focus\\:bg-teal-400:focus{background-color:var(--teal-400)!important}.focus\\:bg-teal-500:focus{background-color:var(--teal-500)!important}.focus\\:bg-teal-600:focus{background-color:var(--teal-600)!important}.focus\\:bg-teal-700:focus{background-color:var(--teal-700)!important}.focus\\:bg-teal-800:focus{background-color:var(--teal-800)!important}.focus\\:bg-teal-900:focus{background-color:var(--teal-900)!important}.hover\\:bg-teal-50:hover{background-color:var(--teal-50)!important}.hover\\:bg-teal-100:hover{background-color:var(--teal-100)!important}.hover\\:bg-teal-200:hover{background-color:var(--teal-200)!important}.hover\\:bg-teal-300:hover{background-color:var(--teal-300)!important}.hover\\:bg-teal-400:hover{background-color:var(--teal-400)!important}.hover\\:bg-teal-500:hover{background-color:var(--teal-500)!important}.hover\\:bg-teal-600:hover{background-color:var(--teal-600)!important}.hover\\:bg-teal-700:hover{background-color:var(--teal-700)!important}.hover\\:bg-teal-800:hover{background-color:var(--teal-800)!important}.hover\\:bg-teal-900:hover{background-color:var(--teal-900)!important}.active\\:bg-teal-50:active{background-color:var(--teal-50)!important}.active\\:bg-teal-100:active{background-color:var(--teal-100)!important}.active\\:bg-teal-200:active{background-color:var(--teal-200)!important}.active\\:bg-teal-300:active{background-color:var(--teal-300)!important}.active\\:bg-teal-400:active{background-color:var(--teal-400)!important}.active\\:bg-teal-500:active{background-color:var(--teal-500)!important}.active\\:bg-teal-600:active{background-color:var(--teal-600)!important}.active\\:bg-teal-700:active{background-color:var(--teal-700)!important}.active\\:bg-teal-800:active{background-color:var(--teal-800)!important}.active\\:bg-teal-900:active{background-color:var(--teal-900)!important}.bg-orange-50{background-color:var(--orange-50)!important}.bg-orange-100{background-color:var(--orange-100)!important}.bg-orange-200{background-color:var(--orange-200)!important}.bg-orange-300{background-color:var(--orange-300)!important}.bg-orange-400{background-color:var(--orange-400)!important}.bg-orange-500{background-color:var(--orange-500)!important}.bg-orange-600{background-color:var(--orange-600)!important}.bg-orange-700{background-color:var(--orange-700)!important}.bg-orange-800{background-color:var(--orange-800)!important}.bg-orange-900{background-color:var(--orange-900)!important}.focus\\:bg-orange-50:focus{background-color:var(--orange-50)!important}.focus\\:bg-orange-100:focus{background-color:var(--orange-100)!important}.focus\\:bg-orange-200:focus{background-color:var(--orange-200)!important}.focus\\:bg-orange-300:focus{background-color:var(--orange-300)!important}.focus\\:bg-orange-400:focus{background-color:var(--orange-400)!important}.focus\\:bg-orange-500:focus{background-color:var(--orange-500)!important}.focus\\:bg-orange-600:focus{background-color:var(--orange-600)!important}.focus\\:bg-orange-700:focus{background-color:var(--orange-700)!important}.focus\\:bg-orange-800:focus{background-color:var(--orange-800)!important}.focus\\:bg-orange-900:focus{background-color:var(--orange-900)!important}.hover\\:bg-orange-50:hover{background-color:var(--orange-50)!important}.hover\\:bg-orange-100:hover{background-color:var(--orange-100)!important}.hover\\:bg-orange-200:hover{background-color:var(--orange-200)!important}.hover\\:bg-orange-300:hover{background-color:var(--orange-300)!important}.hover\\:bg-orange-400:hover{background-color:var(--orange-400)!important}.hover\\:bg-orange-500:hover{background-color:var(--orange-500)!important}.hover\\:bg-orange-600:hover{background-color:var(--orange-600)!important}.hover\\:bg-orange-700:hover{background-color:var(--orange-700)!important}.hover\\:bg-orange-800:hover{background-color:var(--orange-800)!important}.hover\\:bg-orange-900:hover{background-color:var(--orange-900)!important}.active\\:bg-orange-50:active{background-color:var(--orange-50)!important}.active\\:bg-orange-100:active{background-color:var(--orange-100)!important}.active\\:bg-orange-200:active{background-color:var(--orange-200)!important}.active\\:bg-orange-300:active{background-color:var(--orange-300)!important}.active\\:bg-orange-400:active{background-color:var(--orange-400)!important}.active\\:bg-orange-500:active{background-color:var(--orange-500)!important}.active\\:bg-orange-600:active{background-color:var(--orange-600)!important}.active\\:bg-orange-700:active{background-color:var(--orange-700)!important}.active\\:bg-orange-800:active{background-color:var(--orange-800)!important}.active\\:bg-orange-900:active{background-color:var(--orange-900)!important}.bg-bluegray-50{background-color:var(--bluegray-50)!important}.bg-bluegray-100{background-color:var(--bluegray-100)!important}.bg-bluegray-200{background-color:var(--bluegray-200)!important}.bg-bluegray-300{background-color:var(--bluegray-300)!important}.bg-bluegray-400{background-color:var(--bluegray-400)!important}.bg-bluegray-500{background-color:var(--bluegray-500)!important}.bg-bluegray-600{background-color:var(--bluegray-600)!important}.bg-bluegray-700{background-color:var(--bluegray-700)!important}.bg-bluegray-800{background-color:var(--bluegray-800)!important}.bg-bluegray-900{background-color:var(--bluegray-900)!important}.focus\\:bg-bluegray-50:focus{background-color:var(--bluegray-50)!important}.focus\\:bg-bluegray-100:focus{background-color:var(--bluegray-100)!important}.focus\\:bg-bluegray-200:focus{background-color:var(--bluegray-200)!important}.focus\\:bg-bluegray-300:focus{background-color:var(--bluegray-300)!important}.focus\\:bg-bluegray-400:focus{background-color:var(--bluegray-400)!important}.focus\\:bg-bluegray-500:focus{background-color:var(--bluegray-500)!important}.focus\\:bg-bluegray-600:focus{background-color:var(--bluegray-600)!important}.focus\\:bg-bluegray-700:focus{background-color:var(--bluegray-700)!important}.focus\\:bg-bluegray-800:focus{background-color:var(--bluegray-800)!important}.focus\\:bg-bluegray-900:focus{background-color:var(--bluegray-900)!important}.hover\\:bg-bluegray-50:hover{background-color:var(--bluegray-50)!important}.hover\\:bg-bluegray-100:hover{background-color:var(--bluegray-100)!important}.hover\\:bg-bluegray-200:hover{background-color:var(--bluegray-200)!important}.hover\\:bg-bluegray-300:hover{background-color:var(--bluegray-300)!important}.hover\\:bg-bluegray-400:hover{background-color:var(--bluegray-400)!important}.hover\\:bg-bluegray-500:hover{background-color:var(--bluegray-500)!important}.hover\\:bg-bluegray-600:hover{background-color:var(--bluegray-600)!important}.hover\\:bg-bluegray-700:hover{background-color:var(--bluegray-700)!important}.hover\\:bg-bluegray-800:hover{background-color:var(--bluegray-800)!important}.hover\\:bg-bluegray-900:hover{background-color:var(--bluegray-900)!important}.active\\:bg-bluegray-50:active{background-color:var(--bluegray-50)!important}.active\\:bg-bluegray-100:active{background-color:var(--bluegray-100)!important}.active\\:bg-bluegray-200:active{background-color:var(--bluegray-200)!important}.active\\:bg-bluegray-300:active{background-color:var(--bluegray-300)!important}.active\\:bg-bluegray-400:active{background-color:var(--bluegray-400)!important}.active\\:bg-bluegray-500:active{background-color:var(--bluegray-500)!important}.active\\:bg-bluegray-600:active{background-color:var(--bluegray-600)!important}.active\\:bg-bluegray-700:active{background-color:var(--bluegray-700)!important}.active\\:bg-bluegray-800:active{background-color:var(--bluegray-800)!important}.active\\:bg-bluegray-900:active{background-color:var(--bluegray-900)!important}.bg-purple-50{background-color:var(--purple-50)!important}.bg-purple-100{background-color:var(--purple-100)!important}.bg-purple-200{background-color:var(--purple-200)!important}.bg-purple-300{background-color:var(--purple-300)!important}.bg-purple-400{background-color:var(--purple-400)!important}.bg-purple-500{background-color:var(--purple-500)!important}.bg-purple-600{background-color:var(--purple-600)!important}.bg-purple-700{background-color:var(--purple-700)!important}.bg-purple-800{background-color:var(--purple-800)!important}.bg-purple-900{background-color:var(--purple-900)!important}.focus\\:bg-purple-50:focus{background-color:var(--purple-50)!important}.focus\\:bg-purple-100:focus{background-color:var(--purple-100)!important}.focus\\:bg-purple-200:focus{background-color:var(--purple-200)!important}.focus\\:bg-purple-300:focus{background-color:var(--purple-300)!important}.focus\\:bg-purple-400:focus{background-color:var(--purple-400)!important}.focus\\:bg-purple-500:focus{background-color:var(--purple-500)!important}.focus\\:bg-purple-600:focus{background-color:var(--purple-600)!important}.focus\\:bg-purple-700:focus{background-color:var(--purple-700)!important}.focus\\:bg-purple-800:focus{background-color:var(--purple-800)!important}.focus\\:bg-purple-900:focus{background-color:var(--purple-900)!important}.hover\\:bg-purple-50:hover{background-color:var(--purple-50)!important}.hover\\:bg-purple-100:hover{background-color:var(--purple-100)!important}.hover\\:bg-purple-200:hover{background-color:var(--purple-200)!important}.hover\\:bg-purple-300:hover{background-color:var(--purple-300)!important}.hover\\:bg-purple-400:hover{background-color:var(--purple-400)!important}.hover\\:bg-purple-500:hover{background-color:var(--purple-500)!important}.hover\\:bg-purple-600:hover{background-color:var(--purple-600)!important}.hover\\:bg-purple-700:hover{background-color:var(--purple-700)!important}.hover\\:bg-purple-800:hover{background-color:var(--purple-800)!important}.hover\\:bg-purple-900:hover{background-color:var(--purple-900)!important}.active\\:bg-purple-50:active{background-color:var(--purple-50)!important}.active\\:bg-purple-100:active{background-color:var(--purple-100)!important}.active\\:bg-purple-200:active{background-color:var(--purple-200)!important}.active\\:bg-purple-300:active{background-color:var(--purple-300)!important}.active\\:bg-purple-400:active{background-color:var(--purple-400)!important}.active\\:bg-purple-500:active{background-color:var(--purple-500)!important}.active\\:bg-purple-600:active{background-color:var(--purple-600)!important}.active\\:bg-purple-700:active{background-color:var(--purple-700)!important}.active\\:bg-purple-800:active{background-color:var(--purple-800)!important}.active\\:bg-purple-900:active{background-color:var(--purple-900)!important}.bg-gray-50{background-color:var(--gray-50)!important}.bg-gray-100{background-color:var(--gray-100)!important}.bg-gray-200{background-color:var(--gray-200)!important}.bg-gray-300{background-color:var(--gray-300)!important}.bg-gray-400{background-color:var(--gray-400)!important}.bg-gray-500{background-color:var(--gray-500)!important}.bg-gray-600{background-color:var(--gray-600)!important}.bg-gray-700{background-color:var(--gray-700)!important}.bg-gray-800{background-color:var(--gray-800)!important}.bg-gray-900{background-color:var(--gray-900)!important}.focus\\:bg-gray-50:focus{background-color:var(--gray-50)!important}.focus\\:bg-gray-100:focus{background-color:var(--gray-100)!important}.focus\\:bg-gray-200:focus{background-color:var(--gray-200)!important}.focus\\:bg-gray-300:focus{background-color:var(--gray-300)!important}.focus\\:bg-gray-400:focus{background-color:var(--gray-400)!important}.focus\\:bg-gray-500:focus{background-color:var(--gray-500)!important}.focus\\:bg-gray-600:focus{background-color:var(--gray-600)!important}.focus\\:bg-gray-700:focus{background-color:var(--gray-700)!important}.focus\\:bg-gray-800:focus{background-color:var(--gray-800)!important}.focus\\:bg-gray-900:focus{background-color:var(--gray-900)!important}.hover\\:bg-gray-50:hover{background-color:var(--gray-50)!important}.hover\\:bg-gray-100:hover{background-color:var(--gray-100)!important}.hover\\:bg-gray-200:hover{background-color:var(--gray-200)!important}.hover\\:bg-gray-300:hover{background-color:var(--gray-300)!important}.hover\\:bg-gray-400:hover{background-color:var(--gray-400)!important}.hover\\:bg-gray-500:hover{background-color:var(--gray-500)!important}.hover\\:bg-gray-600:hover{background-color:var(--gray-600)!important}.hover\\:bg-gray-700:hover{background-color:var(--gray-700)!important}.hover\\:bg-gray-800:hover{background-color:var(--gray-800)!important}.hover\\:bg-gray-900:hover{background-color:var(--gray-900)!important}.active\\:bg-gray-50:active{background-color:var(--gray-50)!important}.active\\:bg-gray-100:active{background-color:var(--gray-100)!important}.active\\:bg-gray-200:active{background-color:var(--gray-200)!important}.active\\:bg-gray-300:active{background-color:var(--gray-300)!important}.active\\:bg-gray-400:active{background-color:var(--gray-400)!important}.active\\:bg-gray-500:active{background-color:var(--gray-500)!important}.active\\:bg-gray-600:active{background-color:var(--gray-600)!important}.active\\:bg-gray-700:active{background-color:var(--gray-700)!important}.active\\:bg-gray-800:active{background-color:var(--gray-800)!important}.active\\:bg-gray-900:active{background-color:var(--gray-900)!important}.bg-red-50{background-color:var(--red-50)!important}.bg-red-100{background-color:var(--red-100)!important}.bg-red-200{background-color:var(--red-200)!important}.bg-red-300{background-color:var(--red-300)!important}.bg-red-400{background-color:var(--red-400)!important}.bg-red-500{background-color:var(--red-500)!important}.bg-red-600{background-color:var(--red-600)!important}.bg-red-700{background-color:var(--red-700)!important}.bg-red-800{background-color:var(--red-800)!important}.bg-red-900{background-color:var(--red-900)!important}.focus\\:bg-red-50:focus{background-color:var(--red-50)!important}.focus\\:bg-red-100:focus{background-color:var(--red-100)!important}.focus\\:bg-red-200:focus{background-color:var(--red-200)!important}.focus\\:bg-red-300:focus{background-color:var(--red-300)!important}.focus\\:bg-red-400:focus{background-color:var(--red-400)!important}.focus\\:bg-red-500:focus{background-color:var(--red-500)!important}.focus\\:bg-red-600:focus{background-color:var(--red-600)!important}.focus\\:bg-red-700:focus{background-color:var(--red-700)!important}.focus\\:bg-red-800:focus{background-color:var(--red-800)!important}.focus\\:bg-red-900:focus{background-color:var(--red-900)!important}.hover\\:bg-red-50:hover{background-color:var(--red-50)!important}.hover\\:bg-red-100:hover{background-color:var(--red-100)!important}.hover\\:bg-red-200:hover{background-color:var(--red-200)!important}.hover\\:bg-red-300:hover{background-color:var(--red-300)!important}.hover\\:bg-red-400:hover{background-color:var(--red-400)!important}.hover\\:bg-red-500:hover{background-color:var(--red-500)!important}.hover\\:bg-red-600:hover{background-color:var(--red-600)!important}.hover\\:bg-red-700:hover{background-color:var(--red-700)!important}.hover\\:bg-red-800:hover{background-color:var(--red-800)!important}.hover\\:bg-red-900:hover{background-color:var(--red-900)!important}.active\\:bg-red-50:active{background-color:var(--red-50)!important}.active\\:bg-red-100:active{background-color:var(--red-100)!important}.active\\:bg-red-200:active{background-color:var(--red-200)!important}.active\\:bg-red-300:active{background-color:var(--red-300)!important}.active\\:bg-red-400:active{background-color:var(--red-400)!important}.active\\:bg-red-500:active{background-color:var(--red-500)!important}.active\\:bg-red-600:active{background-color:var(--red-600)!important}.active\\:bg-red-700:active{background-color:var(--red-700)!important}.active\\:bg-red-800:active{background-color:var(--red-800)!important}.active\\:bg-red-900:active{background-color:var(--red-900)!important}.bg-primary-50{background-color:var(--primary-50)!important}.bg-primary-100{background-color:var(--primary-100)!important}.bg-primary-200{background-color:var(--primary-200)!important}.bg-primary-300{background-color:var(--primary-300)!important}.bg-primary-400{background-color:var(--primary-400)!important}.bg-primary-500{background-color:var(--primary-500)!important}.bg-primary-600{background-color:var(--primary-600)!important}.bg-primary-700{background-color:var(--primary-700)!important}.bg-primary-800{background-color:var(--primary-800)!important}.bg-primary-900{background-color:var(--primary-900)!important}.focus\\:bg-primary-50:focus{background-color:var(--primary-50)!important}.focus\\:bg-primary-100:focus{background-color:var(--primary-100)!important}.focus\\:bg-primary-200:focus{background-color:var(--primary-200)!important}.focus\\:bg-primary-300:focus{background-color:var(--primary-300)!important}.focus\\:bg-primary-400:focus{background-color:var(--primary-400)!important}.focus\\:bg-primary-500:focus{background-color:var(--primary-500)!important}.focus\\:bg-primary-600:focus{background-color:var(--primary-600)!important}.focus\\:bg-primary-700:focus{background-color:var(--primary-700)!important}.focus\\:bg-primary-800:focus{background-color:var(--primary-800)!important}.focus\\:bg-primary-900:focus{background-color:var(--primary-900)!important}.hover\\:bg-primary-50:hover{background-color:var(--primary-50)!important}.hover\\:bg-primary-100:hover{background-color:var(--primary-100)!important}.hover\\:bg-primary-200:hover{background-color:var(--primary-200)!important}.hover\\:bg-primary-300:hover{background-color:var(--primary-300)!important}.hover\\:bg-primary-400:hover{background-color:var(--primary-400)!important}.hover\\:bg-primary-500:hover{background-color:var(--primary-500)!important}.hover\\:bg-primary-600:hover{background-color:var(--primary-600)!important}.hover\\:bg-primary-700:hover{background-color:var(--primary-700)!important}.hover\\:bg-primary-800:hover{background-color:var(--primary-800)!important}.hover\\:bg-primary-900:hover{background-color:var(--primary-900)!important}.active\\:bg-primary-50:active{background-color:var(--primary-50)!important}.active\\:bg-primary-100:active{background-color:var(--primary-100)!important}.active\\:bg-primary-200:active{background-color:var(--primary-200)!important}.active\\:bg-primary-300:active{background-color:var(--primary-300)!important}.active\\:bg-primary-400:active{background-color:var(--primary-400)!important}.active\\:bg-primary-500:active{background-color:var(--primary-500)!important}.active\\:bg-primary-600:active{background-color:var(--primary-600)!important}.active\\:bg-primary-700:active{background-color:var(--primary-700)!important}.active\\:bg-primary-800:active{background-color:var(--primary-800)!important}.active\\:bg-primary-900:active{background-color:var(--primary-900)!important}.border-blue-50{border-color:var(--blue-50)!important}.border-blue-100{border-color:var(--blue-100)!important}.border-blue-200{border-color:var(--blue-200)!important}.border-blue-300{border-color:var(--blue-300)!important}.border-blue-400{border-color:var(--blue-400)!important}.border-blue-500{border-color:var(--blue-500)!important}.border-blue-600{border-color:var(--blue-600)!important}.border-blue-700{border-color:var(--blue-700)!important}.border-blue-800{border-color:var(--blue-800)!important}.border-blue-900{border-color:var(--blue-900)!important}.focus\\:border-blue-50:focus{border-color:var(--blue-50)!important}.focus\\:border-blue-100:focus{border-color:var(--blue-100)!important}.focus\\:border-blue-200:focus{border-color:var(--blue-200)!important}.focus\\:border-blue-300:focus{border-color:var(--blue-300)!important}.focus\\:border-blue-400:focus{border-color:var(--blue-400)!important}.focus\\:border-blue-500:focus{border-color:var(--blue-500)!important}.focus\\:border-blue-600:focus{border-color:var(--blue-600)!important}.focus\\:border-blue-700:focus{border-color:var(--blue-700)!important}.focus\\:border-blue-800:focus{border-color:var(--blue-800)!important}.focus\\:border-blue-900:focus{border-color:var(--blue-900)!important}.hover\\:border-blue-50:hover{border-color:var(--blue-50)!important}.hover\\:border-blue-100:hover{border-color:var(--blue-100)!important}.hover\\:border-blue-200:hover{border-color:var(--blue-200)!important}.hover\\:border-blue-300:hover{border-color:var(--blue-300)!important}.hover\\:border-blue-400:hover{border-color:var(--blue-400)!important}.hover\\:border-blue-500:hover{border-color:var(--blue-500)!important}.hover\\:border-blue-600:hover{border-color:var(--blue-600)!important}.hover\\:border-blue-700:hover{border-color:var(--blue-700)!important}.hover\\:border-blue-800:hover{border-color:var(--blue-800)!important}.hover\\:border-blue-900:hover{border-color:var(--blue-900)!important}.active\\:border-blue-50:active{border-color:var(--blue-50)!important}.active\\:border-blue-100:active{border-color:var(--blue-100)!important}.active\\:border-blue-200:active{border-color:var(--blue-200)!important}.active\\:border-blue-300:active{border-color:var(--blue-300)!important}.active\\:border-blue-400:active{border-color:var(--blue-400)!important}.active\\:border-blue-500:active{border-color:var(--blue-500)!important}.active\\:border-blue-600:active{border-color:var(--blue-600)!important}.active\\:border-blue-700:active{border-color:var(--blue-700)!important}.active\\:border-blue-800:active{border-color:var(--blue-800)!important}.active\\:border-blue-900:active{border-color:var(--blue-900)!important}.border-green-50{border-color:var(--green-50)!important}.border-green-100{border-color:var(--green-100)!important}.border-green-200{border-color:var(--green-200)!important}.border-green-300{border-color:var(--green-300)!important}.border-green-400{border-color:var(--green-400)!important}.border-green-500{border-color:var(--green-500)!important}.border-green-600{border-color:var(--green-600)!important}.border-green-700{border-color:var(--green-700)!important}.border-green-800{border-color:var(--green-800)!important}.border-green-900{border-color:var(--green-900)!important}.focus\\:border-green-50:focus{border-color:var(--green-50)!important}.focus\\:border-green-100:focus{border-color:var(--green-100)!important}.focus\\:border-green-200:focus{border-color:var(--green-200)!important}.focus\\:border-green-300:focus{border-color:var(--green-300)!important}.focus\\:border-green-400:focus{border-color:var(--green-400)!important}.focus\\:border-green-500:focus{border-color:var(--green-500)!important}.focus\\:border-green-600:focus{border-color:var(--green-600)!important}.focus\\:border-green-700:focus{border-color:var(--green-700)!important}.focus\\:border-green-800:focus{border-color:var(--green-800)!important}.focus\\:border-green-900:focus{border-color:var(--green-900)!important}.hover\\:border-green-50:hover{border-color:var(--green-50)!important}.hover\\:border-green-100:hover{border-color:var(--green-100)!important}.hover\\:border-green-200:hover{border-color:var(--green-200)!important}.hover\\:border-green-300:hover{border-color:var(--green-300)!important}.hover\\:border-green-400:hover{border-color:var(--green-400)!important}.hover\\:border-green-500:hover{border-color:var(--green-500)!important}.hover\\:border-green-600:hover{border-color:var(--green-600)!important}.hover\\:border-green-700:hover{border-color:var(--green-700)!important}.hover\\:border-green-800:hover{border-color:var(--green-800)!important}.hover\\:border-green-900:hover{border-color:var(--green-900)!important}.active\\:border-green-50:active{border-color:var(--green-50)!important}.active\\:border-green-100:active{border-color:var(--green-100)!important}.active\\:border-green-200:active{border-color:var(--green-200)!important}.active\\:border-green-300:active{border-color:var(--green-300)!important}.active\\:border-green-400:active{border-color:var(--green-400)!important}.active\\:border-green-500:active{border-color:var(--green-500)!important}.active\\:border-green-600:active{border-color:var(--green-600)!important}.active\\:border-green-700:active{border-color:var(--green-700)!important}.active\\:border-green-800:active{border-color:var(--green-800)!important}.active\\:border-green-900:active{border-color:var(--green-900)!important}.border-yellow-50{border-color:var(--yellow-50)!important}.border-yellow-100{border-color:var(--yellow-100)!important}.border-yellow-200{border-color:var(--yellow-200)!important}.border-yellow-300{border-color:var(--yellow-300)!important}.border-yellow-400{border-color:var(--yellow-400)!important}.border-yellow-500{border-color:var(--yellow-500)!important}.border-yellow-600{border-color:var(--yellow-600)!important}.border-yellow-700{border-color:var(--yellow-700)!important}.border-yellow-800{border-color:var(--yellow-800)!important}.border-yellow-900{border-color:var(--yellow-900)!important}.focus\\:border-yellow-50:focus{border-color:var(--yellow-50)!important}.focus\\:border-yellow-100:focus{border-color:var(--yellow-100)!important}.focus\\:border-yellow-200:focus{border-color:var(--yellow-200)!important}.focus\\:border-yellow-300:focus{border-color:var(--yellow-300)!important}.focus\\:border-yellow-400:focus{border-color:var(--yellow-400)!important}.focus\\:border-yellow-500:focus{border-color:var(--yellow-500)!important}.focus\\:border-yellow-600:focus{border-color:var(--yellow-600)!important}.focus\\:border-yellow-700:focus{border-color:var(--yellow-700)!important}.focus\\:border-yellow-800:focus{border-color:var(--yellow-800)!important}.focus\\:border-yellow-900:focus{border-color:var(--yellow-900)!important}.hover\\:border-yellow-50:hover{border-color:var(--yellow-50)!important}.hover\\:border-yellow-100:hover{border-color:var(--yellow-100)!important}.hover\\:border-yellow-200:hover{border-color:var(--yellow-200)!important}.hover\\:border-yellow-300:hover{border-color:var(--yellow-300)!important}.hover\\:border-yellow-400:hover{border-color:var(--yellow-400)!important}.hover\\:border-yellow-500:hover{border-color:var(--yellow-500)!important}.hover\\:border-yellow-600:hover{border-color:var(--yellow-600)!important}.hover\\:border-yellow-700:hover{border-color:var(--yellow-700)!important}.hover\\:border-yellow-800:hover{border-color:var(--yellow-800)!important}.hover\\:border-yellow-900:hover{border-color:var(--yellow-900)!important}.active\\:border-yellow-50:active{border-color:var(--yellow-50)!important}.active\\:border-yellow-100:active{border-color:var(--yellow-100)!important}.active\\:border-yellow-200:active{border-color:var(--yellow-200)!important}.active\\:border-yellow-300:active{border-color:var(--yellow-300)!important}.active\\:border-yellow-400:active{border-color:var(--yellow-400)!important}.active\\:border-yellow-500:active{border-color:var(--yellow-500)!important}.active\\:border-yellow-600:active{border-color:var(--yellow-600)!important}.active\\:border-yellow-700:active{border-color:var(--yellow-700)!important}.active\\:border-yellow-800:active{border-color:var(--yellow-800)!important}.active\\:border-yellow-900:active{border-color:var(--yellow-900)!important}.border-cyan-50{border-color:var(--cyan-50)!important}.border-cyan-100{border-color:var(--cyan-100)!important}.border-cyan-200{border-color:var(--cyan-200)!important}.border-cyan-300{border-color:var(--cyan-300)!important}.border-cyan-400{border-color:var(--cyan-400)!important}.border-cyan-500{border-color:var(--cyan-500)!important}.border-cyan-600{border-color:var(--cyan-600)!important}.border-cyan-700{border-color:var(--cyan-700)!important}.border-cyan-800{border-color:var(--cyan-800)!important}.border-cyan-900{border-color:var(--cyan-900)!important}.focus\\:border-cyan-50:focus{border-color:var(--cyan-50)!important}.focus\\:border-cyan-100:focus{border-color:var(--cyan-100)!important}.focus\\:border-cyan-200:focus{border-color:var(--cyan-200)!important}.focus\\:border-cyan-300:focus{border-color:var(--cyan-300)!important}.focus\\:border-cyan-400:focus{border-color:var(--cyan-400)!important}.focus\\:border-cyan-500:focus{border-color:var(--cyan-500)!important}.focus\\:border-cyan-600:focus{border-color:var(--cyan-600)!important}.focus\\:border-cyan-700:focus{border-color:var(--cyan-700)!important}.focus\\:border-cyan-800:focus{border-color:var(--cyan-800)!important}.focus\\:border-cyan-900:focus{border-color:var(--cyan-900)!important}.hover\\:border-cyan-50:hover{border-color:var(--cyan-50)!important}.hover\\:border-cyan-100:hover{border-color:var(--cyan-100)!important}.hover\\:border-cyan-200:hover{border-color:var(--cyan-200)!important}.hover\\:border-cyan-300:hover{border-color:var(--cyan-300)!important}.hover\\:border-cyan-400:hover{border-color:var(--cyan-400)!important}.hover\\:border-cyan-500:hover{border-color:var(--cyan-500)!important}.hover\\:border-cyan-600:hover{border-color:var(--cyan-600)!important}.hover\\:border-cyan-700:hover{border-color:var(--cyan-700)!important}.hover\\:border-cyan-800:hover{border-color:var(--cyan-800)!important}.hover\\:border-cyan-900:hover{border-color:var(--cyan-900)!important}.active\\:border-cyan-50:active{border-color:var(--cyan-50)!important}.active\\:border-cyan-100:active{border-color:var(--cyan-100)!important}.active\\:border-cyan-200:active{border-color:var(--cyan-200)!important}.active\\:border-cyan-300:active{border-color:var(--cyan-300)!important}.active\\:border-cyan-400:active{border-color:var(--cyan-400)!important}.active\\:border-cyan-500:active{border-color:var(--cyan-500)!important}.active\\:border-cyan-600:active{border-color:var(--cyan-600)!important}.active\\:border-cyan-700:active{border-color:var(--cyan-700)!important}.active\\:border-cyan-800:active{border-color:var(--cyan-800)!important}.active\\:border-cyan-900:active{border-color:var(--cyan-900)!important}.border-pink-50{border-color:var(--pink-50)!important}.border-pink-100{border-color:var(--pink-100)!important}.border-pink-200{border-color:var(--pink-200)!important}.border-pink-300{border-color:var(--pink-300)!important}.border-pink-400{border-color:var(--pink-400)!important}.border-pink-500{border-color:var(--pink-500)!important}.border-pink-600{border-color:var(--pink-600)!important}.border-pink-700{border-color:var(--pink-700)!important}.border-pink-800{border-color:var(--pink-800)!important}.border-pink-900{border-color:var(--pink-900)!important}.focus\\:border-pink-50:focus{border-color:var(--pink-50)!important}.focus\\:border-pink-100:focus{border-color:var(--pink-100)!important}.focus\\:border-pink-200:focus{border-color:var(--pink-200)!important}.focus\\:border-pink-300:focus{border-color:var(--pink-300)!important}.focus\\:border-pink-400:focus{border-color:var(--pink-400)!important}.focus\\:border-pink-500:focus{border-color:var(--pink-500)!important}.focus\\:border-pink-600:focus{border-color:var(--pink-600)!important}.focus\\:border-pink-700:focus{border-color:var(--pink-700)!important}.focus\\:border-pink-800:focus{border-color:var(--pink-800)!important}.focus\\:border-pink-900:focus{border-color:var(--pink-900)!important}.hover\\:border-pink-50:hover{border-color:var(--pink-50)!important}.hover\\:border-pink-100:hover{border-color:var(--pink-100)!important}.hover\\:border-pink-200:hover{border-color:var(--pink-200)!important}.hover\\:border-pink-300:hover{border-color:var(--pink-300)!important}.hover\\:border-pink-400:hover{border-color:var(--pink-400)!important}.hover\\:border-pink-500:hover{border-color:var(--pink-500)!important}.hover\\:border-pink-600:hover{border-color:var(--pink-600)!important}.hover\\:border-pink-700:hover{border-color:var(--pink-700)!important}.hover\\:border-pink-800:hover{border-color:var(--pink-800)!important}.hover\\:border-pink-900:hover{border-color:var(--pink-900)!important}.active\\:border-pink-50:active{border-color:var(--pink-50)!important}.active\\:border-pink-100:active{border-color:var(--pink-100)!important}.active\\:border-pink-200:active{border-color:var(--pink-200)!important}.active\\:border-pink-300:active{border-color:var(--pink-300)!important}.active\\:border-pink-400:active{border-color:var(--pink-400)!important}.active\\:border-pink-500:active{border-color:var(--pink-500)!important}.active\\:border-pink-600:active{border-color:var(--pink-600)!important}.active\\:border-pink-700:active{border-color:var(--pink-700)!important}.active\\:border-pink-800:active{border-color:var(--pink-800)!important}.active\\:border-pink-900:active{border-color:var(--pink-900)!important}.border-indigo-50{border-color:var(--indigo-50)!important}.border-indigo-100{border-color:var(--indigo-100)!important}.border-indigo-200{border-color:var(--indigo-200)!important}.border-indigo-300{border-color:var(--indigo-300)!important}.border-indigo-400{border-color:var(--indigo-400)!important}.border-indigo-500{border-color:var(--indigo-500)!important}.border-indigo-600{border-color:var(--indigo-600)!important}.border-indigo-700{border-color:var(--indigo-700)!important}.border-indigo-800{border-color:var(--indigo-800)!important}.border-indigo-900{border-color:var(--indigo-900)!important}.focus\\:border-indigo-50:focus{border-color:var(--indigo-50)!important}.focus\\:border-indigo-100:focus{border-color:var(--indigo-100)!important}.focus\\:border-indigo-200:focus{border-color:var(--indigo-200)!important}.focus\\:border-indigo-300:focus{border-color:var(--indigo-300)!important}.focus\\:border-indigo-400:focus{border-color:var(--indigo-400)!important}.focus\\:border-indigo-500:focus{border-color:var(--indigo-500)!important}.focus\\:border-indigo-600:focus{border-color:var(--indigo-600)!important}.focus\\:border-indigo-700:focus{border-color:var(--indigo-700)!important}.focus\\:border-indigo-800:focus{border-color:var(--indigo-800)!important}.focus\\:border-indigo-900:focus{border-color:var(--indigo-900)!important}.hover\\:border-indigo-50:hover{border-color:var(--indigo-50)!important}.hover\\:border-indigo-100:hover{border-color:var(--indigo-100)!important}.hover\\:border-indigo-200:hover{border-color:var(--indigo-200)!important}.hover\\:border-indigo-300:hover{border-color:var(--indigo-300)!important}.hover\\:border-indigo-400:hover{border-color:var(--indigo-400)!important}.hover\\:border-indigo-500:hover{border-color:var(--indigo-500)!important}.hover\\:border-indigo-600:hover{border-color:var(--indigo-600)!important}.hover\\:border-indigo-700:hover{border-color:var(--indigo-700)!important}.hover\\:border-indigo-800:hover{border-color:var(--indigo-800)!important}.hover\\:border-indigo-900:hover{border-color:var(--indigo-900)!important}.active\\:border-indigo-50:active{border-color:var(--indigo-50)!important}.active\\:border-indigo-100:active{border-color:var(--indigo-100)!important}.active\\:border-indigo-200:active{border-color:var(--indigo-200)!important}.active\\:border-indigo-300:active{border-color:var(--indigo-300)!important}.active\\:border-indigo-400:active{border-color:var(--indigo-400)!important}.active\\:border-indigo-500:active{border-color:var(--indigo-500)!important}.active\\:border-indigo-600:active{border-color:var(--indigo-600)!important}.active\\:border-indigo-700:active{border-color:var(--indigo-700)!important}.active\\:border-indigo-800:active{border-color:var(--indigo-800)!important}.active\\:border-indigo-900:active{border-color:var(--indigo-900)!important}.border-teal-50{border-color:var(--teal-50)!important}.border-teal-100{border-color:var(--teal-100)!important}.border-teal-200{border-color:var(--teal-200)!important}.border-teal-300{border-color:var(--teal-300)!important}.border-teal-400{border-color:var(--teal-400)!important}.border-teal-500{border-color:var(--teal-500)!important}.border-teal-600{border-color:var(--teal-600)!important}.border-teal-700{border-color:var(--teal-700)!important}.border-teal-800{border-color:var(--teal-800)!important}.border-teal-900{border-color:var(--teal-900)!important}.focus\\:border-teal-50:focus{border-color:var(--teal-50)!important}.focus\\:border-teal-100:focus{border-color:var(--teal-100)!important}.focus\\:border-teal-200:focus{border-color:var(--teal-200)!important}.focus\\:border-teal-300:focus{border-color:var(--teal-300)!important}.focus\\:border-teal-400:focus{border-color:var(--teal-400)!important}.focus\\:border-teal-500:focus{border-color:var(--teal-500)!important}.focus\\:border-teal-600:focus{border-color:var(--teal-600)!important}.focus\\:border-teal-700:focus{border-color:var(--teal-700)!important}.focus\\:border-teal-800:focus{border-color:var(--teal-800)!important}.focus\\:border-teal-900:focus{border-color:var(--teal-900)!important}.hover\\:border-teal-50:hover{border-color:var(--teal-50)!important}.hover\\:border-teal-100:hover{border-color:var(--teal-100)!important}.hover\\:border-teal-200:hover{border-color:var(--teal-200)!important}.hover\\:border-teal-300:hover{border-color:var(--teal-300)!important}.hover\\:border-teal-400:hover{border-color:var(--teal-400)!important}.hover\\:border-teal-500:hover{border-color:var(--teal-500)!important}.hover\\:border-teal-600:hover{border-color:var(--teal-600)!important}.hover\\:border-teal-700:hover{border-color:var(--teal-700)!important}.hover\\:border-teal-800:hover{border-color:var(--teal-800)!important}.hover\\:border-teal-900:hover{border-color:var(--teal-900)!important}.active\\:border-teal-50:active{border-color:var(--teal-50)!important}.active\\:border-teal-100:active{border-color:var(--teal-100)!important}.active\\:border-teal-200:active{border-color:var(--teal-200)!important}.active\\:border-teal-300:active{border-color:var(--teal-300)!important}.active\\:border-teal-400:active{border-color:var(--teal-400)!important}.active\\:border-teal-500:active{border-color:var(--teal-500)!important}.active\\:border-teal-600:active{border-color:var(--teal-600)!important}.active\\:border-teal-700:active{border-color:var(--teal-700)!important}.active\\:border-teal-800:active{border-color:var(--teal-800)!important}.active\\:border-teal-900:active{border-color:var(--teal-900)!important}.border-orange-50{border-color:var(--orange-50)!important}.border-orange-100{border-color:var(--orange-100)!important}.border-orange-200{border-color:var(--orange-200)!important}.border-orange-300{border-color:var(--orange-300)!important}.border-orange-400{border-color:var(--orange-400)!important}.border-orange-500{border-color:var(--orange-500)!important}.border-orange-600{border-color:var(--orange-600)!important}.border-orange-700{border-color:var(--orange-700)!important}.border-orange-800{border-color:var(--orange-800)!important}.border-orange-900{border-color:var(--orange-900)!important}.focus\\:border-orange-50:focus{border-color:var(--orange-50)!important}.focus\\:border-orange-100:focus{border-color:var(--orange-100)!important}.focus\\:border-orange-200:focus{border-color:var(--orange-200)!important}.focus\\:border-orange-300:focus{border-color:var(--orange-300)!important}.focus\\:border-orange-400:focus{border-color:var(--orange-400)!important}.focus\\:border-orange-500:focus{border-color:var(--orange-500)!important}.focus\\:border-orange-600:focus{border-color:var(--orange-600)!important}.focus\\:border-orange-700:focus{border-color:var(--orange-700)!important}.focus\\:border-orange-800:focus{border-color:var(--orange-800)!important}.focus\\:border-orange-900:focus{border-color:var(--orange-900)!important}.hover\\:border-orange-50:hover{border-color:var(--orange-50)!important}.hover\\:border-orange-100:hover{border-color:var(--orange-100)!important}.hover\\:border-orange-200:hover{border-color:var(--orange-200)!important}.hover\\:border-orange-300:hover{border-color:var(--orange-300)!important}.hover\\:border-orange-400:hover{border-color:var(--orange-400)!important}.hover\\:border-orange-500:hover{border-color:var(--orange-500)!important}.hover\\:border-orange-600:hover{border-color:var(--orange-600)!important}.hover\\:border-orange-700:hover{border-color:var(--orange-700)!important}.hover\\:border-orange-800:hover{border-color:var(--orange-800)!important}.hover\\:border-orange-900:hover{border-color:var(--orange-900)!important}.active\\:border-orange-50:active{border-color:var(--orange-50)!important}.active\\:border-orange-100:active{border-color:var(--orange-100)!important}.active\\:border-orange-200:active{border-color:var(--orange-200)!important}.active\\:border-orange-300:active{border-color:var(--orange-300)!important}.active\\:border-orange-400:active{border-color:var(--orange-400)!important}.active\\:border-orange-500:active{border-color:var(--orange-500)!important}.active\\:border-orange-600:active{border-color:var(--orange-600)!important}.active\\:border-orange-700:active{border-color:var(--orange-700)!important}.active\\:border-orange-800:active{border-color:var(--orange-800)!important}.active\\:border-orange-900:active{border-color:var(--orange-900)!important}.border-bluegray-50{border-color:var(--bluegray-50)!important}.border-bluegray-100{border-color:var(--bluegray-100)!important}.border-bluegray-200{border-color:var(--bluegray-200)!important}.border-bluegray-300{border-color:var(--bluegray-300)!important}.border-bluegray-400{border-color:var(--bluegray-400)!important}.border-bluegray-500{border-color:var(--bluegray-500)!important}.border-bluegray-600{border-color:var(--bluegray-600)!important}.border-bluegray-700{border-color:var(--bluegray-700)!important}.border-bluegray-800{border-color:var(--bluegray-800)!important}.border-bluegray-900{border-color:var(--bluegray-900)!important}.focus\\:border-bluegray-50:focus{border-color:var(--bluegray-50)!important}.focus\\:border-bluegray-100:focus{border-color:var(--bluegray-100)!important}.focus\\:border-bluegray-200:focus{border-color:var(--bluegray-200)!important}.focus\\:border-bluegray-300:focus{border-color:var(--bluegray-300)!important}.focus\\:border-bluegray-400:focus{border-color:var(--bluegray-400)!important}.focus\\:border-bluegray-500:focus{border-color:var(--bluegray-500)!important}.focus\\:border-bluegray-600:focus{border-color:var(--bluegray-600)!important}.focus\\:border-bluegray-700:focus{border-color:var(--bluegray-700)!important}.focus\\:border-bluegray-800:focus{border-color:var(--bluegray-800)!important}.focus\\:border-bluegray-900:focus{border-color:var(--bluegray-900)!important}.hover\\:border-bluegray-50:hover{border-color:var(--bluegray-50)!important}.hover\\:border-bluegray-100:hover{border-color:var(--bluegray-100)!important}.hover\\:border-bluegray-200:hover{border-color:var(--bluegray-200)!important}.hover\\:border-bluegray-300:hover{border-color:var(--bluegray-300)!important}.hover\\:border-bluegray-400:hover{border-color:var(--bluegray-400)!important}.hover\\:border-bluegray-500:hover{border-color:var(--bluegray-500)!important}.hover\\:border-bluegray-600:hover{border-color:var(--bluegray-600)!important}.hover\\:border-bluegray-700:hover{border-color:var(--bluegray-700)!important}.hover\\:border-bluegray-800:hover{border-color:var(--bluegray-800)!important}.hover\\:border-bluegray-900:hover{border-color:var(--bluegray-900)!important}.active\\:border-bluegray-50:active{border-color:var(--bluegray-50)!important}.active\\:border-bluegray-100:active{border-color:var(--bluegray-100)!important}.active\\:border-bluegray-200:active{border-color:var(--bluegray-200)!important}.active\\:border-bluegray-300:active{border-color:var(--bluegray-300)!important}.active\\:border-bluegray-400:active{border-color:var(--bluegray-400)!important}.active\\:border-bluegray-500:active{border-color:var(--bluegray-500)!important}.active\\:border-bluegray-600:active{border-color:var(--bluegray-600)!important}.active\\:border-bluegray-700:active{border-color:var(--bluegray-700)!important}.active\\:border-bluegray-800:active{border-color:var(--bluegray-800)!important}.active\\:border-bluegray-900:active{border-color:var(--bluegray-900)!important}.border-purple-50{border-color:var(--purple-50)!important}.border-purple-100{border-color:var(--purple-100)!important}.border-purple-200{border-color:var(--purple-200)!important}.border-purple-300{border-color:var(--purple-300)!important}.border-purple-400{border-color:var(--purple-400)!important}.border-purple-500{border-color:var(--purple-500)!important}.border-purple-600{border-color:var(--purple-600)!important}.border-purple-700{border-color:var(--purple-700)!important}.border-purple-800{border-color:var(--purple-800)!important}.border-purple-900{border-color:var(--purple-900)!important}.focus\\:border-purple-50:focus{border-color:var(--purple-50)!important}.focus\\:border-purple-100:focus{border-color:var(--purple-100)!important}.focus\\:border-purple-200:focus{border-color:var(--purple-200)!important}.focus\\:border-purple-300:focus{border-color:var(--purple-300)!important}.focus\\:border-purple-400:focus{border-color:var(--purple-400)!important}.focus\\:border-purple-500:focus{border-color:var(--purple-500)!important}.focus\\:border-purple-600:focus{border-color:var(--purple-600)!important}.focus\\:border-purple-700:focus{border-color:var(--purple-700)!important}.focus\\:border-purple-800:focus{border-color:var(--purple-800)!important}.focus\\:border-purple-900:focus{border-color:var(--purple-900)!important}.hover\\:border-purple-50:hover{border-color:var(--purple-50)!important}.hover\\:border-purple-100:hover{border-color:var(--purple-100)!important}.hover\\:border-purple-200:hover{border-color:var(--purple-200)!important}.hover\\:border-purple-300:hover{border-color:var(--purple-300)!important}.hover\\:border-purple-400:hover{border-color:var(--purple-400)!important}.hover\\:border-purple-500:hover{border-color:var(--purple-500)!important}.hover\\:border-purple-600:hover{border-color:var(--purple-600)!important}.hover\\:border-purple-700:hover{border-color:var(--purple-700)!important}.hover\\:border-purple-800:hover{border-color:var(--purple-800)!important}.hover\\:border-purple-900:hover{border-color:var(--purple-900)!important}.active\\:border-purple-50:active{border-color:var(--purple-50)!important}.active\\:border-purple-100:active{border-color:var(--purple-100)!important}.active\\:border-purple-200:active{border-color:var(--purple-200)!important}.active\\:border-purple-300:active{border-color:var(--purple-300)!important}.active\\:border-purple-400:active{border-color:var(--purple-400)!important}.active\\:border-purple-500:active{border-color:var(--purple-500)!important}.active\\:border-purple-600:active{border-color:var(--purple-600)!important}.active\\:border-purple-700:active{border-color:var(--purple-700)!important}.active\\:border-purple-800:active{border-color:var(--purple-800)!important}.active\\:border-purple-900:active{border-color:var(--purple-900)!important}.border-gray-50{border-color:var(--gray-50)!important}.border-gray-100{border-color:var(--gray-100)!important}.border-gray-200{border-color:var(--gray-200)!important}.border-gray-300{border-color:var(--gray-300)!important}.border-gray-400{border-color:var(--gray-400)!important}.border-gray-500{border-color:var(--gray-500)!important}.border-gray-600{border-color:var(--gray-600)!important}.border-gray-700{border-color:var(--gray-700)!important}.border-gray-800{border-color:var(--gray-800)!important}.border-gray-900{border-color:var(--gray-900)!important}.focus\\:border-gray-50:focus{border-color:var(--gray-50)!important}.focus\\:border-gray-100:focus{border-color:var(--gray-100)!important}.focus\\:border-gray-200:focus{border-color:var(--gray-200)!important}.focus\\:border-gray-300:focus{border-color:var(--gray-300)!important}.focus\\:border-gray-400:focus{border-color:var(--gray-400)!important}.focus\\:border-gray-500:focus{border-color:var(--gray-500)!important}.focus\\:border-gray-600:focus{border-color:var(--gray-600)!important}.focus\\:border-gray-700:focus{border-color:var(--gray-700)!important}.focus\\:border-gray-800:focus{border-color:var(--gray-800)!important}.focus\\:border-gray-900:focus{border-color:var(--gray-900)!important}.hover\\:border-gray-50:hover{border-color:var(--gray-50)!important}.hover\\:border-gray-100:hover{border-color:var(--gray-100)!important}.hover\\:border-gray-200:hover{border-color:var(--gray-200)!important}.hover\\:border-gray-300:hover{border-color:var(--gray-300)!important}.hover\\:border-gray-400:hover{border-color:var(--gray-400)!important}.hover\\:border-gray-500:hover{border-color:var(--gray-500)!important}.hover\\:border-gray-600:hover{border-color:var(--gray-600)!important}.hover\\:border-gray-700:hover{border-color:var(--gray-700)!important}.hover\\:border-gray-800:hover{border-color:var(--gray-800)!important}.hover\\:border-gray-900:hover{border-color:var(--gray-900)!important}.active\\:border-gray-50:active{border-color:var(--gray-50)!important}.active\\:border-gray-100:active{border-color:var(--gray-100)!important}.active\\:border-gray-200:active{border-color:var(--gray-200)!important}.active\\:border-gray-300:active{border-color:var(--gray-300)!important}.active\\:border-gray-400:active{border-color:var(--gray-400)!important}.active\\:border-gray-500:active{border-color:var(--gray-500)!important}.active\\:border-gray-600:active{border-color:var(--gray-600)!important}.active\\:border-gray-700:active{border-color:var(--gray-700)!important}.active\\:border-gray-800:active{border-color:var(--gray-800)!important}.active\\:border-gray-900:active{border-color:var(--gray-900)!important}.border-red-50{border-color:var(--red-50)!important}.border-red-100{border-color:var(--red-100)!important}.border-red-200{border-color:var(--red-200)!important}.border-red-300{border-color:var(--red-300)!important}.border-red-400{border-color:var(--red-400)!important}.border-red-500{border-color:var(--red-500)!important}.border-red-600{border-color:var(--red-600)!important}.border-red-700{border-color:var(--red-700)!important}.border-red-800{border-color:var(--red-800)!important}.border-red-900{border-color:var(--red-900)!important}.focus\\:border-red-50:focus{border-color:var(--red-50)!important}.focus\\:border-red-100:focus{border-color:var(--red-100)!important}.focus\\:border-red-200:focus{border-color:var(--red-200)!important}.focus\\:border-red-300:focus{border-color:var(--red-300)!important}.focus\\:border-red-400:focus{border-color:var(--red-400)!important}.focus\\:border-red-500:focus{border-color:var(--red-500)!important}.focus\\:border-red-600:focus{border-color:var(--red-600)!important}.focus\\:border-red-700:focus{border-color:var(--red-700)!important}.focus\\:border-red-800:focus{border-color:var(--red-800)!important}.focus\\:border-red-900:focus{border-color:var(--red-900)!important}.hover\\:border-red-50:hover{border-color:var(--red-50)!important}.hover\\:border-red-100:hover{border-color:var(--red-100)!important}.hover\\:border-red-200:hover{border-color:var(--red-200)!important}.hover\\:border-red-300:hover{border-color:var(--red-300)!important}.hover\\:border-red-400:hover{border-color:var(--red-400)!important}.hover\\:border-red-500:hover{border-color:var(--red-500)!important}.hover\\:border-red-600:hover{border-color:var(--red-600)!important}.hover\\:border-red-700:hover{border-color:var(--red-700)!important}.hover\\:border-red-800:hover{border-color:var(--red-800)!important}.hover\\:border-red-900:hover{border-color:var(--red-900)!important}.active\\:border-red-50:active{border-color:var(--red-50)!important}.active\\:border-red-100:active{border-color:var(--red-100)!important}.active\\:border-red-200:active{border-color:var(--red-200)!important}.active\\:border-red-300:active{border-color:var(--red-300)!important}.active\\:border-red-400:active{border-color:var(--red-400)!important}.active\\:border-red-500:active{border-color:var(--red-500)!important}.active\\:border-red-600:active{border-color:var(--red-600)!important}.active\\:border-red-700:active{border-color:var(--red-700)!important}.active\\:border-red-800:active{border-color:var(--red-800)!important}.active\\:border-red-900:active{border-color:var(--red-900)!important}.border-primary-50{border-color:var(--primary-50)!important}.border-primary-100{border-color:var(--primary-100)!important}.border-primary-200{border-color:var(--primary-200)!important}.border-primary-300{border-color:var(--primary-300)!important}.border-primary-400{border-color:var(--primary-400)!important}.border-primary-500{border-color:var(--primary-500)!important}.border-primary-600{border-color:var(--primary-600)!important}.border-primary-700{border-color:var(--primary-700)!important}.border-primary-800{border-color:var(--primary-800)!important}.border-primary-900{border-color:var(--primary-900)!important}.focus\\:border-primary-50:focus{border-color:var(--primary-50)!important}.focus\\:border-primary-100:focus{border-color:var(--primary-100)!important}.focus\\:border-primary-200:focus{border-color:var(--primary-200)!important}.focus\\:border-primary-300:focus{border-color:var(--primary-300)!important}.focus\\:border-primary-400:focus{border-color:var(--primary-400)!important}.focus\\:border-primary-500:focus{border-color:var(--primary-500)!important}.focus\\:border-primary-600:focus{border-color:var(--primary-600)!important}.focus\\:border-primary-700:focus{border-color:var(--primary-700)!important}.focus\\:border-primary-800:focus{border-color:var(--primary-800)!important}.focus\\:border-primary-900:focus{border-color:var(--primary-900)!important}.hover\\:border-primary-50:hover{border-color:var(--primary-50)!important}.hover\\:border-primary-100:hover{border-color:var(--primary-100)!important}.hover\\:border-primary-200:hover{border-color:var(--primary-200)!important}.hover\\:border-primary-300:hover{border-color:var(--primary-300)!important}.hover\\:border-primary-400:hover{border-color:var(--primary-400)!important}.hover\\:border-primary-500:hover{border-color:var(--primary-500)!important}.hover\\:border-primary-600:hover{border-color:var(--primary-600)!important}.hover\\:border-primary-700:hover{border-color:var(--primary-700)!important}.hover\\:border-primary-800:hover{border-color:var(--primary-800)!important}.hover\\:border-primary-900:hover{border-color:var(--primary-900)!important}.active\\:border-primary-50:active{border-color:var(--primary-50)!important}.active\\:border-primary-100:active{border-color:var(--primary-100)!important}.active\\:border-primary-200:active{border-color:var(--primary-200)!important}.active\\:border-primary-300:active{border-color:var(--primary-300)!important}.active\\:border-primary-400:active{border-color:var(--primary-400)!important}.active\\:border-primary-500:active{border-color:var(--primary-500)!important}.active\\:border-primary-600:active{border-color:var(--primary-600)!important}.active\\:border-primary-700:active{border-color:var(--primary-700)!important}.active\\:border-primary-800:active{border-color:var(--primary-800)!important}.active\\:border-primary-900:active{border-color:var(--primary-900)!important}.bg-white-alpha-10{background-color:#ffffff1a!important}.bg-white-alpha-20{background-color:#fff3!important}.bg-white-alpha-30{background-color:#ffffff4d!important}.bg-white-alpha-40{background-color:#fff6!important}.bg-white-alpha-50{background-color:#ffffff80!important}.bg-white-alpha-60{background-color:#fff9!important}.bg-white-alpha-70{background-color:#ffffffb3!important}.bg-white-alpha-80{background-color:#fffc!important}.bg-white-alpha-90{background-color:#ffffffe6!important}.hover\\:bg-white-alpha-10:hover{background-color:#ffffff1a!important}.hover\\:bg-white-alpha-20:hover{background-color:#fff3!important}.hover\\:bg-white-alpha-30:hover{background-color:#ffffff4d!important}.hover\\:bg-white-alpha-40:hover{background-color:#fff6!important}.hover\\:bg-white-alpha-50:hover{background-color:#ffffff80!important}.hover\\:bg-white-alpha-60:hover{background-color:#fff9!important}.hover\\:bg-white-alpha-70:hover{background-color:#ffffffb3!important}.hover\\:bg-white-alpha-80:hover{background-color:#fffc!important}.hover\\:bg-white-alpha-90:hover{background-color:#ffffffe6!important}.focus\\:bg-white-alpha-10:focus{background-color:#ffffff1a!important}.focus\\:bg-white-alpha-20:focus{background-color:#fff3!important}.focus\\:bg-white-alpha-30:focus{background-color:#ffffff4d!important}.focus\\:bg-white-alpha-40:focus{background-color:#fff6!important}.focus\\:bg-white-alpha-50:focus{background-color:#ffffff80!important}.focus\\:bg-white-alpha-60:focus{background-color:#fff9!important}.focus\\:bg-white-alpha-70:focus{background-color:#ffffffb3!important}.focus\\:bg-white-alpha-80:focus{background-color:#fffc!important}.focus\\:bg-white-alpha-90:focus{background-color:#ffffffe6!important}.active\\:bg-white-alpha-10:active{background-color:#ffffff1a!important}.active\\:bg-white-alpha-20:active{background-color:#fff3!important}.active\\:bg-white-alpha-30:active{background-color:#ffffff4d!important}.active\\:bg-white-alpha-40:active{background-color:#fff6!important}.active\\:bg-white-alpha-50:active{background-color:#ffffff80!important}.active\\:bg-white-alpha-60:active{background-color:#fff9!important}.active\\:bg-white-alpha-70:active{background-color:#ffffffb3!important}.active\\:bg-white-alpha-80:active{background-color:#fffc!important}.active\\:bg-white-alpha-90:active{background-color:#ffffffe6!important}.bg-black-alpha-10{background-color:#0000001a!important}.bg-black-alpha-20{background-color:#0003!important}.bg-black-alpha-30{background-color:#0000004d!important}.bg-black-alpha-40{background-color:#0006!important}.bg-black-alpha-50{background-color:#00000080!important}.bg-black-alpha-60{background-color:#0009!important}.bg-black-alpha-70{background-color:#000000b3!important}.bg-black-alpha-80{background-color:#000c!important}.bg-black-alpha-90{background-color:#000000e6!important}.hover\\:bg-black-alpha-10:hover{background-color:#0000001a!important}.hover\\:bg-black-alpha-20:hover{background-color:#0003!important}.hover\\:bg-black-alpha-30:hover{background-color:#0000004d!important}.hover\\:bg-black-alpha-40:hover{background-color:#0006!important}.hover\\:bg-black-alpha-50:hover{background-color:#00000080!important}.hover\\:bg-black-alpha-60:hover{background-color:#0009!important}.hover\\:bg-black-alpha-70:hover{background-color:#000000b3!important}.hover\\:bg-black-alpha-80:hover{background-color:#000c!important}.hover\\:bg-black-alpha-90:hover{background-color:#000000e6!important}.focus\\:bg-black-alpha-10:focus{background-color:#0000001a!important}.focus\\:bg-black-alpha-20:focus{background-color:#0003!important}.focus\\:bg-black-alpha-30:focus{background-color:#0000004d!important}.focus\\:bg-black-alpha-40:focus{background-color:#0006!important}.focus\\:bg-black-alpha-50:focus{background-color:#00000080!important}.focus\\:bg-black-alpha-60:focus{background-color:#0009!important}.focus\\:bg-black-alpha-70:focus{background-color:#000000b3!important}.focus\\:bg-black-alpha-80:focus{background-color:#000c!important}.focus\\:bg-black-alpha-90:focus{background-color:#000000e6!important}.active\\:bg-black-alpha-10:active{background-color:#0000001a!important}.active\\:bg-black-alpha-20:active{background-color:#0003!important}.active\\:bg-black-alpha-30:active{background-color:#0000004d!important}.active\\:bg-black-alpha-40:active{background-color:#0006!important}.active\\:bg-black-alpha-50:active{background-color:#00000080!important}.active\\:bg-black-alpha-60:active{background-color:#0009!important}.active\\:bg-black-alpha-70:active{background-color:#000000b3!important}.active\\:bg-black-alpha-80:active{background-color:#000c!important}.active\\:bg-black-alpha-90:active{background-color:#000000e6!important}.border-white-alpha-10{border-color:#ffffff1a!important}.border-white-alpha-20{border-color:#fff3!important}.border-white-alpha-30{border-color:#ffffff4d!important}.border-white-alpha-40{border-color:#fff6!important}.border-white-alpha-50{border-color:#ffffff80!important}.border-white-alpha-60{border-color:#fff9!important}.border-white-alpha-70{border-color:#ffffffb3!important}.border-white-alpha-80{border-color:#fffc!important}.border-white-alpha-90{border-color:#ffffffe6!important}.hover\\:border-white-alpha-10:hover{border-color:#ffffff1a!important}.hover\\:border-white-alpha-20:hover{border-color:#fff3!important}.hover\\:border-white-alpha-30:hover{border-color:#ffffff4d!important}.hover\\:border-white-alpha-40:hover{border-color:#fff6!important}.hover\\:border-white-alpha-50:hover{border-color:#ffffff80!important}.hover\\:border-white-alpha-60:hover{border-color:#fff9!important}.hover\\:border-white-alpha-70:hover{border-color:#ffffffb3!important}.hover\\:border-white-alpha-80:hover{border-color:#fffc!important}.hover\\:border-white-alpha-90:hover{border-color:#ffffffe6!important}.focus\\:border-white-alpha-10:focus{border-color:#ffffff1a!important}.focus\\:border-white-alpha-20:focus{border-color:#fff3!important}.focus\\:border-white-alpha-30:focus{border-color:#ffffff4d!important}.focus\\:border-white-alpha-40:focus{border-color:#fff6!important}.focus\\:border-white-alpha-50:focus{border-color:#ffffff80!important}.focus\\:border-white-alpha-60:focus{border-color:#fff9!important}.focus\\:border-white-alpha-70:focus{border-color:#ffffffb3!important}.focus\\:border-white-alpha-80:focus{border-color:#fffc!important}.focus\\:border-white-alpha-90:focus{border-color:#ffffffe6!important}.active\\:border-white-alpha-10:active{border-color:#ffffff1a!important}.active\\:border-white-alpha-20:active{border-color:#fff3!important}.active\\:border-white-alpha-30:active{border-color:#ffffff4d!important}.active\\:border-white-alpha-40:active{border-color:#fff6!important}.active\\:border-white-alpha-50:active{border-color:#ffffff80!important}.active\\:border-white-alpha-60:active{border-color:#fff9!important}.active\\:border-white-alpha-70:active{border-color:#ffffffb3!important}.active\\:border-white-alpha-80:active{border-color:#fffc!important}.active\\:border-white-alpha-90:active{border-color:#ffffffe6!important}.border-black-alpha-10{border-color:#0000001a!important}.border-black-alpha-20{border-color:#0003!important}.border-black-alpha-30{border-color:#0000004d!important}.border-black-alpha-40{border-color:#0006!important}.border-black-alpha-50{border-color:#00000080!important}.border-black-alpha-60{border-color:#0009!important}.border-black-alpha-70{border-color:#000000b3!important}.border-black-alpha-80{border-color:#000c!important}.border-black-alpha-90{border-color:#000000e6!important}.hover\\:border-black-alpha-10:hover{border-color:#0000001a!important}.hover\\:border-black-alpha-20:hover{border-color:#0003!important}.hover\\:border-black-alpha-30:hover{border-color:#0000004d!important}.hover\\:border-black-alpha-40:hover{border-color:#0006!important}.hover\\:border-black-alpha-50:hover{border-color:#00000080!important}.hover\\:border-black-alpha-60:hover{border-color:#0009!important}.hover\\:border-black-alpha-70:hover{border-color:#000000b3!important}.hover\\:border-black-alpha-80:hover{border-color:#000c!important}.hover\\:border-black-alpha-90:hover{border-color:#000000e6!important}.focus\\:border-black-alpha-10:focus{border-color:#0000001a!important}.focus\\:border-black-alpha-20:focus{border-color:#0003!important}.focus\\:border-black-alpha-30:focus{border-color:#0000004d!important}.focus\\:border-black-alpha-40:focus{border-color:#0006!important}.focus\\:border-black-alpha-50:focus{border-color:#00000080!important}.focus\\:border-black-alpha-60:focus{border-color:#0009!important}.focus\\:border-black-alpha-70:focus{border-color:#000000b3!important}.focus\\:border-black-alpha-80:focus{border-color:#000c!important}.focus\\:border-black-alpha-90:focus{border-color:#000000e6!important}.active\\:border-black-alpha-10:active{border-color:#0000001a!important}.active\\:border-black-alpha-20:active{border-color:#0003!important}.active\\:border-black-alpha-30:active{border-color:#0000004d!important}.active\\:border-black-alpha-40:active{border-color:#0006!important}.active\\:border-black-alpha-50:active{border-color:#00000080!important}.active\\:border-black-alpha-60:active{border-color:#0009!important}.active\\:border-black-alpha-70:active{border-color:#000000b3!important}.active\\:border-black-alpha-80:active{border-color:#000c!important}.active\\:border-black-alpha-90:active{border-color:#000000e6!important}.text-white-alpha-10{color:#ffffff1a!important}.text-white-alpha-20{color:#fff3!important}.text-white-alpha-30{color:#ffffff4d!important}.text-white-alpha-40{color:#fff6!important}.text-white-alpha-50{color:#ffffff80!important}.text-white-alpha-60{color:#fff9!important}.text-white-alpha-70{color:#ffffffb3!important}.text-white-alpha-80{color:#fffc!important}.text-white-alpha-90{color:#ffffffe6!important}.hover\\:text-white-alpha-10:hover{color:#ffffff1a!important}.hover\\:text-white-alpha-20:hover{color:#fff3!important}.hover\\:text-white-alpha-30:hover{color:#ffffff4d!important}.hover\\:text-white-alpha-40:hover{color:#fff6!important}.hover\\:text-white-alpha-50:hover{color:#ffffff80!important}.hover\\:text-white-alpha-60:hover{color:#fff9!important}.hover\\:text-white-alpha-70:hover{color:#ffffffb3!important}.hover\\:text-white-alpha-80:hover{color:#fffc!important}.hover\\:text-white-alpha-90:hover{color:#ffffffe6!important}.focus\\:text-white-alpha-10:focus{color:#ffffff1a!important}.focus\\:text-white-alpha-20:focus{color:#fff3!important}.focus\\:text-white-alpha-30:focus{color:#ffffff4d!important}.focus\\:text-white-alpha-40:focus{color:#fff6!important}.focus\\:text-white-alpha-50:focus{color:#ffffff80!important}.focus\\:text-white-alpha-60:focus{color:#fff9!important}.focus\\:text-white-alpha-70:focus{color:#ffffffb3!important}.focus\\:text-white-alpha-80:focus{color:#fffc!important}.focus\\:text-white-alpha-90:focus{color:#ffffffe6!important}.active\\:text-white-alpha-10:active{color:#ffffff1a!important}.active\\:text-white-alpha-20:active{color:#fff3!important}.active\\:text-white-alpha-30:active{color:#ffffff4d!important}.active\\:text-white-alpha-40:active{color:#fff6!important}.active\\:text-white-alpha-50:active{color:#ffffff80!important}.active\\:text-white-alpha-60:active{color:#fff9!important}.active\\:text-white-alpha-70:active{color:#ffffffb3!important}.active\\:text-white-alpha-80:active{color:#fffc!important}.active\\:text-white-alpha-90:active{color:#ffffffe6!important}.text-black-alpha-10{color:#0000001a!important}.text-black-alpha-20{color:#0003!important}.text-black-alpha-30{color:#0000004d!important}.text-black-alpha-40{color:#0006!important}.text-black-alpha-50{color:#00000080!important}.text-black-alpha-60{color:#0009!important}.text-black-alpha-70{color:#000000b3!important}.text-black-alpha-80{color:#000c!important}.text-black-alpha-90{color:#000000e6!important}.hover\\:text-black-alpha-10:hover{color:#0000001a!important}.hover\\:text-black-alpha-20:hover{color:#0003!important}.hover\\:text-black-alpha-30:hover{color:#0000004d!important}.hover\\:text-black-alpha-40:hover{color:#0006!important}.hover\\:text-black-alpha-50:hover{color:#00000080!important}.hover\\:text-black-alpha-60:hover{color:#0009!important}.hover\\:text-black-alpha-70:hover{color:#000000b3!important}.hover\\:text-black-alpha-80:hover{color:#000c!important}.hover\\:text-black-alpha-90:hover{color:#000000e6!important}.focus\\:text-black-alpha-10:focus{color:#0000001a!important}.focus\\:text-black-alpha-20:focus{color:#0003!important}.focus\\:text-black-alpha-30:focus{color:#0000004d!important}.focus\\:text-black-alpha-40:focus{color:#0006!important}.focus\\:text-black-alpha-50:focus{color:#00000080!important}.focus\\:text-black-alpha-60:focus{color:#0009!important}.focus\\:text-black-alpha-70:focus{color:#000000b3!important}.focus\\:text-black-alpha-80:focus{color:#000c!important}.focus\\:text-black-alpha-90:focus{color:#000000e6!important}.active\\:text-black-alpha-10:active{color:#0000001a!important}.active\\:text-black-alpha-20:active{color:#0003!important}.active\\:text-black-alpha-30:active{color:#0000004d!important}.active\\:text-black-alpha-40:active{color:#0006!important}.active\\:text-black-alpha-50:active{color:#00000080!important}.active\\:text-black-alpha-60:active{color:#0009!important}.active\\:text-black-alpha-70:active{color:#000000b3!important}.active\\:text-black-alpha-80:active{color:#000c!important}.active\\:text-black-alpha-90:active{color:#000000e6!important}.text-primary{color:var(--primary-color)!important}.bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.bg-white{background-color:#fff!important}.border-primary{border-color:var(--primary-color)!important}.text-white{color:#fff!important}.border-white{border-color:#fff!important}.text-color{color:var(--text-color)!important}.text-color-secondary{color:var(--text-color-secondary)!important}.surface-ground{background-color:var(--surface-ground)!important}.surface-section{background-color:var(--surface-section)!important}.surface-card{background-color:var(--surface-card)!important}.surface-overlay{background-color:var(--surface-overlay)!important}.surface-hover{background-color:var(--surface-hover)!important}.surface-border{border-color:var(--surface-border)!important}.focus\\:text-primary:focus{color:var(--primary-color)!important}.hover\\:text-primary:hover,.active\\:text-primary:active{color:var(--primary-color)!important}.focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.hover\\:bg-primary:hover,.active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.hover\\:bg-primary-reverse:hover,.active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.focus\\:bg-white:focus{background-color:#fff!important}.hover\\:bg-white:hover,.active\\:bg-white:active{background-color:#fff!important}.focus\\:border-primary:focus{border-color:var(--primary-color)!important}.hover\\:border-primary:hover,.active\\:border-primary:active{border-color:var(--primary-color)!important}.focus\\:text-white:focus{color:#fff!important}.hover\\:text-white:hover,.active\\:text-white:active{color:#fff!important}.focus\\:border-white:focus{border-color:#fff!important}.hover\\:border-white:hover,.active\\:border-white:active{border-color:#fff!important}.focus\\:text-color:focus{color:var(--text-color)!important}.hover\\:text-color:hover,.active\\:text-color:active{color:var(--text-color)!important}.focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.hover\\:text-color-secondary:hover,.active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.hover\\:surface-ground:hover,.active\\:surface-ground:active{background-color:var(--surface-ground)!important}.focus\\:surface-section:focus{background-color:var(--surface-section)!important}.hover\\:surface-section:hover,.active\\:surface-section:active{background-color:var(--surface-section)!important}.focus\\:surface-card:focus{background-color:var(--surface-card)!important}.hover\\:surface-card:hover,.active\\:surface-card:active{background-color:var(--surface-card)!important}.focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.hover\\:surface-overlay:hover,.active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.hover\\:surface-hover:hover,.active\\:surface-hover:active{background-color:var(--surface-hover)!important}.focus\\:surface-border:focus{border-color:var(--surface-border)!important}.hover\\:surface-border:hover,.active\\:surface-border:active{border-color:var(--surface-border)!important}@media screen and (min-width: 576px){.sm\\:text-primary{color:var(--primary-color)!important}.sm\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:bg-white{background-color:#fff!important}.sm\\:border-primary{border-color:var(--primary-color)!important}.sm\\:text-white{color:#fff!important}.sm\\:border-white{border-color:#fff!important}.sm\\:text-color{color:var(--text-color)!important}.sm\\:text-color-secondary{color:var(--text-color-secondary)!important}.sm\\:surface-ground{background-color:var(--surface-ground)!important}.sm\\:surface-section{background-color:var(--surface-section)!important}.sm\\:surface-card{background-color:var(--surface-card)!important}.sm\\:surface-overlay{background-color:var(--surface-overlay)!important}.sm\\:surface-hover{background-color:var(--surface-hover)!important}.sm\\:surface-border{border-color:var(--surface-border)!important}.sm\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.sm\\:hover\\:text-primary:hover,.sm\\:active\\:text-primary:active{color:var(--primary-color)!important}.sm\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:hover\\:bg-primary:hover,.sm\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:hover\\:bg-primary-reverse:hover,.sm\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:focus\\:bg-white:focus{background-color:#fff!important}.sm\\:hover\\:bg-white:hover,.sm\\:active\\:bg-white:active{background-color:#fff!important}.sm\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.sm\\:hover\\:border-primary:hover,.sm\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.sm\\:focus\\:text-white:focus{color:#fff!important}.sm\\:hover\\:text-white:hover,.sm\\:active\\:text-white:active{color:#fff!important}.sm\\:focus\\:border-white:focus{border-color:#fff!important}.sm\\:hover\\:border-white:hover,.sm\\:active\\:border-white:active{border-color:#fff!important}.sm\\:focus\\:text-color:focus{color:var(--text-color)!important}.sm\\:hover\\:text-color:hover,.sm\\:active\\:text-color:active{color:var(--text-color)!important}.sm\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.sm\\:hover\\:text-color-secondary:hover,.sm\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.sm\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.sm\\:hover\\:surface-ground:hover,.sm\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.sm\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.sm\\:hover\\:surface-section:hover,.sm\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.sm\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.sm\\:hover\\:surface-card:hover,.sm\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.sm\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.sm\\:hover\\:surface-overlay:hover,.sm\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.sm\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.sm\\:hover\\:surface-hover:hover,.sm\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.sm\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.sm\\:hover\\:surface-border:hover,.sm\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 768px){.md\\:text-primary{color:var(--primary-color)!important}.md\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:bg-white{background-color:#fff!important}.md\\:border-primary{border-color:var(--primary-color)!important}.md\\:text-white{color:#fff!important}.md\\:border-white{border-color:#fff!important}.md\\:text-color{color:var(--text-color)!important}.md\\:text-color-secondary{color:var(--text-color-secondary)!important}.md\\:surface-ground{background-color:var(--surface-ground)!important}.md\\:surface-section{background-color:var(--surface-section)!important}.md\\:surface-card{background-color:var(--surface-card)!important}.md\\:surface-overlay{background-color:var(--surface-overlay)!important}.md\\:surface-hover{background-color:var(--surface-hover)!important}.md\\:surface-border{border-color:var(--surface-border)!important}.md\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.md\\:hover\\:text-primary:hover,.md\\:active\\:text-primary:active{color:var(--primary-color)!important}.md\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:hover\\:bg-primary:hover,.md\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:hover\\:bg-primary-reverse:hover,.md\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:focus\\:bg-white:focus{background-color:#fff!important}.md\\:hover\\:bg-white:hover,.md\\:active\\:bg-white:active{background-color:#fff!important}.md\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.md\\:hover\\:border-primary:hover,.md\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.md\\:focus\\:text-white:focus{color:#fff!important}.md\\:hover\\:text-white:hover,.md\\:active\\:text-white:active{color:#fff!important}.md\\:focus\\:border-white:focus{border-color:#fff!important}.md\\:hover\\:border-white:hover,.md\\:active\\:border-white:active{border-color:#fff!important}.md\\:focus\\:text-color:focus{color:var(--text-color)!important}.md\\:hover\\:text-color:hover,.md\\:active\\:text-color:active{color:var(--text-color)!important}.md\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.md\\:hover\\:text-color-secondary:hover,.md\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.md\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.md\\:hover\\:surface-ground:hover,.md\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.md\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.md\\:hover\\:surface-section:hover,.md\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.md\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.md\\:hover\\:surface-card:hover,.md\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.md\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.md\\:hover\\:surface-overlay:hover,.md\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.md\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.md\\:hover\\:surface-hover:hover,.md\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.md\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.md\\:hover\\:surface-border:hover,.md\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 992px){.lg\\:text-primary{color:var(--primary-color)!important}.lg\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:bg-white{background-color:#fff!important}.lg\\:border-primary{border-color:var(--primary-color)!important}.lg\\:text-white{color:#fff!important}.lg\\:border-white{border-color:#fff!important}.lg\\:text-color{color:var(--text-color)!important}.lg\\:text-color-secondary{color:var(--text-color-secondary)!important}.lg\\:surface-ground{background-color:var(--surface-ground)!important}.lg\\:surface-section{background-color:var(--surface-section)!important}.lg\\:surface-card{background-color:var(--surface-card)!important}.lg\\:surface-overlay{background-color:var(--surface-overlay)!important}.lg\\:surface-hover{background-color:var(--surface-hover)!important}.lg\\:surface-border{border-color:var(--surface-border)!important}.lg\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.lg\\:hover\\:text-primary:hover,.lg\\:active\\:text-primary:active{color:var(--primary-color)!important}.lg\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:hover\\:bg-primary:hover,.lg\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:hover\\:bg-primary-reverse:hover,.lg\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:focus\\:bg-white:focus{background-color:#fff!important}.lg\\:hover\\:bg-white:hover,.lg\\:active\\:bg-white:active{background-color:#fff!important}.lg\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.lg\\:hover\\:border-primary:hover,.lg\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.lg\\:focus\\:text-white:focus{color:#fff!important}.lg\\:hover\\:text-white:hover,.lg\\:active\\:text-white:active{color:#fff!important}.lg\\:focus\\:border-white:focus{border-color:#fff!important}.lg\\:hover\\:border-white:hover,.lg\\:active\\:border-white:active{border-color:#fff!important}.lg\\:focus\\:text-color:focus{color:var(--text-color)!important}.lg\\:hover\\:text-color:hover,.lg\\:active\\:text-color:active{color:var(--text-color)!important}.lg\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.lg\\:hover\\:text-color-secondary:hover,.lg\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.lg\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.lg\\:hover\\:surface-ground:hover,.lg\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.lg\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.lg\\:hover\\:surface-section:hover,.lg\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.lg\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.lg\\:hover\\:surface-card:hover,.lg\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.lg\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.lg\\:hover\\:surface-overlay:hover,.lg\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.lg\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.lg\\:hover\\:surface-hover:hover,.lg\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.lg\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.lg\\:hover\\:surface-border:hover,.lg\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 1200px){.xl\\:text-primary{color:var(--primary-color)!important}.xl\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:bg-white{background-color:#fff!important}.xl\\:border-primary{border-color:var(--primary-color)!important}.xl\\:text-white{color:#fff!important}.xl\\:border-white{border-color:#fff!important}.xl\\:text-color{color:var(--text-color)!important}.xl\\:text-color-secondary{color:var(--text-color-secondary)!important}.xl\\:surface-ground{background-color:var(--surface-ground)!important}.xl\\:surface-section{background-color:var(--surface-section)!important}.xl\\:surface-card{background-color:var(--surface-card)!important}.xl\\:surface-overlay{background-color:var(--surface-overlay)!important}.xl\\:surface-hover{background-color:var(--surface-hover)!important}.xl\\:surface-border{border-color:var(--surface-border)!important}.xl\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.xl\\:hover\\:text-primary:hover,.xl\\:active\\:text-primary:active{color:var(--primary-color)!important}.xl\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:hover\\:bg-primary:hover,.xl\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:hover\\:bg-primary-reverse:hover,.xl\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:focus\\:bg-white:focus{background-color:#fff!important}.xl\\:hover\\:bg-white:hover,.xl\\:active\\:bg-white:active{background-color:#fff!important}.xl\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.xl\\:hover\\:border-primary:hover,.xl\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.xl\\:focus\\:text-white:focus{color:#fff!important}.xl\\:hover\\:text-white:hover,.xl\\:active\\:text-white:active{color:#fff!important}.xl\\:focus\\:border-white:focus{border-color:#fff!important}.xl\\:hover\\:border-white:hover,.xl\\:active\\:border-white:active{border-color:#fff!important}.xl\\:focus\\:text-color:focus{color:var(--text-color)!important}.xl\\:hover\\:text-color:hover,.xl\\:active\\:text-color:active{color:var(--text-color)!important}.xl\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.xl\\:hover\\:text-color-secondary:hover,.xl\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.xl\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.xl\\:hover\\:surface-ground:hover,.xl\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.xl\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.xl\\:hover\\:surface-section:hover,.xl\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.xl\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.xl\\:hover\\:surface-card:hover,.xl\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.xl\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.xl\\:hover\\:surface-overlay:hover,.xl\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.xl\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.xl\\:hover\\:surface-hover:hover,.xl\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.xl\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.xl\\:hover\\:surface-border:hover,.xl\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}.field{margin-bottom:1rem}.field>label{display:inline-block;margin-bottom:.5rem}.field.grid>label{display:flex;align-items:center}.field>small{margin-top:.25rem}.field.grid,.formgrid.grid{margin-top:0}.field.grid .col-fixed,.formgrid.grid .col-fixed,.field.grid .col,.formgrid.grid .col,.field.grid .col-1,.formgrid.grid .col-1,.field.grid .col-2,.formgrid.grid .col-2,.field.grid .col-3,.formgrid.grid .col-3,.field.grid .col-4,.formgrid.grid .col-4,.field.grid .col-5,.formgrid.grid .col-5,.field.grid .col-6,.formgrid.grid .col-6,.field.grid .col-7,.formgrid.grid .col-7,.field.grid .col-8,.formgrid.grid .col-8,.field.grid .col-9,.formgrid.grid .col-9,.field.grid .col-10,.formgrid.grid .col-10,.field.grid .col-11,.formgrid.grid .col-11,.field.grid .col-12,.formgrid.grid .col-12{padding-top:0;padding-bottom:0}.formgroup-inline{display:flex;flex-wrap:wrap;align-items:flex-start}.formgroup-inline .field,.formgroup-inline .field-checkbox,.formgroup-inline .field-radiobutton{margin-right:1rem}.formgroup-inline .field>label,.formgroup-inline .field-checkbox>label,.formgroup-inline .field-radiobutton>label{margin-right:.5rem;margin-bottom:0}.field-checkbox,.field-radiobutton{margin-bottom:1rem;display:flex;align-items:center}.field-checkbox>label,.field-radiobutton>label{margin-left:.5rem;line-height:1}.hidden{display:none!important}.block{display:block!important}.inline{display:inline!important}.inline-block{display:inline-block!important}.flex{display:flex!important}.inline-flex{display:inline-flex!important}@media screen and (min-width: 576px){.sm\\:hidden{display:none!important}.sm\\:block{display:block!important}.sm\\:inline{display:inline!important}.sm\\:inline-block{display:inline-block!important}.sm\\:flex{display:flex!important}.sm\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 768px){.md\\:hidden{display:none!important}.md\\:block{display:block!important}.md\\:inline{display:inline!important}.md\\:inline-block{display:inline-block!important}.md\\:flex{display:flex!important}.md\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 992px){.lg\\:hidden{display:none!important}.lg\\:block{display:block!important}.lg\\:inline{display:inline!important}.lg\\:inline-block{display:inline-block!important}.lg\\:flex{display:flex!important}.lg\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 1200px){.xl\\:hidden{display:none!important}.xl\\:block{display:block!important}.xl\\:inline{display:inline!important}.xl\\:inline-block{display:inline-block!important}.xl\\:flex{display:flex!important}.xl\\:inline-flex{display:inline-flex!important}}.text-center{text-align:center!important}.text-justify{text-align:justify!important}.text-left{text-align:left!important}.text-right{text-align:right!important}@media screen and (min-width: 576px){.sm\\:text-center{text-align:center!important}.sm\\:text-justify{text-align:justify!important}.sm\\:text-left{text-align:left!important}.sm\\:text-right{text-align:right!important}}@media screen and (min-width: 768px){.md\\:text-center{text-align:center!important}.md\\:text-justify{text-align:justify!important}.md\\:text-left{text-align:left!important}.md\\:text-right{text-align:right!important}}@media screen and (min-width: 992px){.lg\\:text-center{text-align:center!important}.lg\\:text-justify{text-align:justify!important}.lg\\:text-left{text-align:left!important}.lg\\:text-right{text-align:right!important}}@media screen and (min-width: 1200px){.xl\\:text-center{text-align:center!important}.xl\\:text-justify{text-align:justify!important}.xl\\:text-left{text-align:left!important}.xl\\:text-right{text-align:right!important}}.underline{text-decoration:underline!important}.line-through{text-decoration:line-through!important}.no-underline{text-decoration:none!important}.focus\\:underline:focus{text-decoration:underline!important}.hover\\:underline:hover,.active\\:underline:active{text-decoration:underline!important}.focus\\:line-through:focus{text-decoration:line-through!important}.hover\\:line-through:hover,.active\\:line-through:active{text-decoration:line-through!important}.focus\\:no-underline:focus{text-decoration:none!important}.hover\\:no-underline:hover,.active\\:no-underline:active{text-decoration:none!important}.lowercase{text-transform:lowercase!important}.uppercase{text-transform:uppercase!important}.capitalize{text-transform:capitalize!important}.text-overflow-clip{text-overflow:clip!important}.text-overflow-ellipsis{text-overflow:ellipsis!important}@media screen and (min-width: 576px){.sm\\:text-overflow-clip{text-overflow:clip!important}.sm\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 768px){.md\\:text-overflow-clip{text-overflow:clip!important}.md\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 992px){.lg\\:text-overflow-clip{text-overflow:clip!important}.lg\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 1200px){.xl\\:text-overflow-clip{text-overflow:clip!important}.xl\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}.font-light{font-weight:300!important}.font-normal{font-weight:400!important}.font-medium{font-weight:500!important}.font-semibold{font-weight:600!important}.font-bold{font-weight:700!important}@media screen and (min-width: 576px){.sm\\:font-light{font-weight:300!important}.sm\\:font-normal{font-weight:400!important}.sm\\:font-medium{font-weight:500!important}.sm\\:font-semibold{font-weight:600!important}.sm\\:font-bold{font-weight:700!important}}@media screen and (min-width: 768px){.md\\:font-light{font-weight:300!important}.md\\:font-normal{font-weight:400!important}.md\\:font-medium{font-weight:500!important}.md\\:font-semibold{font-weight:600!important}.md\\:font-bold{font-weight:700!important}}@media screen and (min-width: 992px){.lg\\:font-light{font-weight:300!important}.lg\\:font-normal{font-weight:400!important}.lg\\:font-medium{font-weight:500!important}.lg\\:font-semibold{font-weight:600!important}.lg\\:font-bold{font-weight:700!important}}@media screen and (min-width: 1200px){.xl\\:font-light{font-weight:300!important}.xl\\:font-normal{font-weight:400!important}.xl\\:font-medium{font-weight:500!important}.xl\\:font-semibold{font-weight:600!important}.xl\\:font-bold{font-weight:700!important}}.font-italic{font-style:italic!important}.text-xs{font-size:.75rem!important}.text-sm{font-size:.875rem!important}.text-base{font-size:1rem!important}.text-lg{font-size:1.125rem!important}.text-xl{font-size:1.25rem!important}.text-2xl{font-size:1.5rem!important}.text-3xl{font-size:1.75rem!important}.text-4xl{font-size:2rem!important}.text-5xl{font-size:2.5rem!important}.text-6xl{font-size:3rem!important}.text-7xl{font-size:4rem!important}.text-8xl{font-size:6rem!important}@media screen and (min-width: 576px){.sm\\:text-xs{font-size:.75rem!important}.sm\\:text-sm{font-size:.875rem!important}.sm\\:text-base{font-size:1rem!important}.sm\\:text-lg{font-size:1.125rem!important}.sm\\:text-xl{font-size:1.25rem!important}.sm\\:text-2xl{font-size:1.5rem!important}.sm\\:text-3xl{font-size:1.75rem!important}.sm\\:text-4xl{font-size:2rem!important}.sm\\:text-5xl{font-size:2.5rem!important}.sm\\:text-6xl{font-size:3rem!important}.sm\\:text-7xl{font-size:4rem!important}.sm\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 768px){.md\\:text-xs{font-size:.75rem!important}.md\\:text-sm{font-size:.875rem!important}.md\\:text-base{font-size:1rem!important}.md\\:text-lg{font-size:1.125rem!important}.md\\:text-xl{font-size:1.25rem!important}.md\\:text-2xl{font-size:1.5rem!important}.md\\:text-3xl{font-size:1.75rem!important}.md\\:text-4xl{font-size:2rem!important}.md\\:text-5xl{font-size:2.5rem!important}.md\\:text-6xl{font-size:3rem!important}.md\\:text-7xl{font-size:4rem!important}.md\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 992px){.lg\\:text-xs{font-size:.75rem!important}.lg\\:text-sm{font-size:.875rem!important}.lg\\:text-base{font-size:1rem!important}.lg\\:text-lg{font-size:1.125rem!important}.lg\\:text-xl{font-size:1.25rem!important}.lg\\:text-2xl{font-size:1.5rem!important}.lg\\:text-3xl{font-size:1.75rem!important}.lg\\:text-4xl{font-size:2rem!important}.lg\\:text-5xl{font-size:2.5rem!important}.lg\\:text-6xl{font-size:3rem!important}.lg\\:text-7xl{font-size:4rem!important}.lg\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 1200px){.xl\\:text-xs{font-size:.75rem!important}.xl\\:text-sm{font-size:.875rem!important}.xl\\:text-base{font-size:1rem!important}.xl\\:text-lg{font-size:1.125rem!important}.xl\\:text-xl{font-size:1.25rem!important}.xl\\:text-2xl{font-size:1.5rem!important}.xl\\:text-3xl{font-size:1.75rem!important}.xl\\:text-4xl{font-size:2rem!important}.xl\\:text-5xl{font-size:2.5rem!important}.xl\\:text-6xl{font-size:3rem!important}.xl\\:text-7xl{font-size:4rem!important}.xl\\:text-8xl{font-size:6rem!important}}.line-height-1{line-height:1!important}.line-height-2{line-height:1.25!important}.line-height-3{line-height:1.5!important}.line-height-4{line-height:2!important}.white-space-normal{white-space:normal!important}.white-space-nowrap{white-space:nowrap!important}.vertical-align-baseline{vertical-align:baseline!important}.vertical-align-top{vertical-align:top!important}.vertical-align-middle{vertical-align:middle!important}.vertical-align-bottom{vertical-align:bottom!important}.vertical-align-text-top{vertical-align:text-top!important}.vertical-align-text-bottom{vertical-align:text-bottom!important}.vertical-align-sub{vertical-align:sub!important}.vertical-align-super{vertical-align:super!important}@media screen and (min-width: 576px){.sm\\:vertical-align-baseline{vertical-align:baseline!important}.sm\\:vertical-align-top{vertical-align:top!important}.sm\\:vertical-align-middle{vertical-align:middle!important}.sm\\:vertical-align-bottom{vertical-align:bottom!important}.sm\\:vertical-align-text-top{vertical-align:text-top!important}.sm\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.sm\\:vertical-align-sub{vertical-align:sub!important}.sm\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 768px){.md\\:vertical-align-baseline{vertical-align:baseline!important}.md\\:vertical-align-top{vertical-align:top!important}.md\\:vertical-align-middle{vertical-align:middle!important}.md\\:vertical-align-bottom{vertical-align:bottom!important}.md\\:vertical-align-text-top{vertical-align:text-top!important}.md\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.md\\:vertical-align-sub{vertical-align:sub!important}.md\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 992px){.lg\\:vertical-align-baseline{vertical-align:baseline!important}.lg\\:vertical-align-top{vertical-align:top!important}.lg\\:vertical-align-middle{vertical-align:middle!important}.lg\\:vertical-align-bottom{vertical-align:bottom!important}.lg\\:vertical-align-text-top{vertical-align:text-top!important}.lg\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.lg\\:vertical-align-sub{vertical-align:sub!important}.lg\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 1200px){.xl\\:vertical-align-baseline{vertical-align:baseline!important}.xl\\:vertical-align-top{vertical-align:top!important}.xl\\:vertical-align-middle{vertical-align:middle!important}.xl\\:vertical-align-bottom{vertical-align:bottom!important}.xl\\:vertical-align-text-top{vertical-align:text-top!important}.xl\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.xl\\:vertical-align-sub{vertical-align:sub!important}.xl\\:vertical-align-super{vertical-align:super!important}}.flex-row{flex-direction:row!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column{flex-direction:column!important}.flex-column-reverse{flex-direction:column-reverse!important}@media screen and (min-width: 576px){.sm\\:flex-row{flex-direction:row!important}.sm\\:flex-row-reverse{flex-direction:row-reverse!important}.sm\\:flex-column{flex-direction:column!important}.sm\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 768px){.md\\:flex-row{flex-direction:row!important}.md\\:flex-row-reverse{flex-direction:row-reverse!important}.md\\:flex-column{flex-direction:column!important}.md\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 992px){.lg\\:flex-row{flex-direction:row!important}.lg\\:flex-row-reverse{flex-direction:row-reverse!important}.lg\\:flex-column{flex-direction:column!important}.lg\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 1200px){.xl\\:flex-row{flex-direction:row!important}.xl\\:flex-row-reverse{flex-direction:row-reverse!important}.xl\\:flex-column{flex-direction:column!important}.xl\\:flex-column-reverse{flex-direction:column-reverse!important}}.flex-wrap{flex-wrap:wrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-nowrap{flex-wrap:nowrap!important}@media screen and (min-width: 576px){.sm\\:flex-wrap{flex-wrap:wrap!important}.sm\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.sm\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 768px){.md\\:flex-wrap{flex-wrap:wrap!important}.md\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.md\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 992px){.lg\\:flex-wrap{flex-wrap:wrap!important}.lg\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.lg\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 1200px){.xl\\:flex-wrap{flex-wrap:wrap!important}.xl\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.xl\\:flex-nowrap{flex-wrap:nowrap!important}}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}@media screen and (min-width: 576px){.sm\\:justify-content-start{justify-content:flex-start!important}.sm\\:justify-content-end{justify-content:flex-end!important}.sm\\:justify-content-center{justify-content:center!important}.sm\\:justify-content-between{justify-content:space-between!important}.sm\\:justify-content-around{justify-content:space-around!important}.sm\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 768px){.md\\:justify-content-start{justify-content:flex-start!important}.md\\:justify-content-end{justify-content:flex-end!important}.md\\:justify-content-center{justify-content:center!important}.md\\:justify-content-between{justify-content:space-between!important}.md\\:justify-content-around{justify-content:space-around!important}.md\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 992px){.lg\\:justify-content-start{justify-content:flex-start!important}.lg\\:justify-content-end{justify-content:flex-end!important}.lg\\:justify-content-center{justify-content:center!important}.lg\\:justify-content-between{justify-content:space-between!important}.lg\\:justify-content-around{justify-content:space-around!important}.lg\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 1200px){.xl\\:justify-content-start{justify-content:flex-start!important}.xl\\:justify-content-end{justify-content:flex-end!important}.xl\\:justify-content-center{justify-content:center!important}.xl\\:justify-content-between{justify-content:space-between!important}.xl\\:justify-content-around{justify-content:space-around!important}.xl\\:justify-content-evenly{justify-content:space-evenly!important}}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-evenly{align-content:space-evenly!important}@media screen and (min-width: 576px){.sm\\:align-content-start{align-content:flex-start!important}.sm\\:align-content-end{align-content:flex-end!important}.sm\\:align-content-center{align-content:center!important}.sm\\:align-content-between{align-content:space-between!important}.sm\\:align-content-around{align-content:space-around!important}.sm\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 768px){.md\\:align-content-start{align-content:flex-start!important}.md\\:align-content-end{align-content:flex-end!important}.md\\:align-content-center{align-content:center!important}.md\\:align-content-between{align-content:space-between!important}.md\\:align-content-around{align-content:space-around!important}.md\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 992px){.lg\\:align-content-start{align-content:flex-start!important}.lg\\:align-content-end{align-content:flex-end!important}.lg\\:align-content-center{align-content:center!important}.lg\\:align-content-between{align-content:space-between!important}.lg\\:align-content-around{align-content:space-around!important}.lg\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 1200px){.xl\\:align-content-start{align-content:flex-start!important}.xl\\:align-content-end{align-content:flex-end!important}.xl\\:align-content-center{align-content:center!important}.xl\\:align-content-between{align-content:space-between!important}.xl\\:align-content-around{align-content:space-around!important}.xl\\:align-content-evenly{align-content:space-evenly!important}}.align-items-stretch{align-items:stretch!important}.align-items-start{align-items:flex-start!important}.align-items-center{align-items:center!important}.align-items-end{align-items:flex-end!important}.align-items-baseline{align-items:baseline!important}@media screen and (min-width: 576px){.sm\\:align-items-stretch{align-items:stretch!important}.sm\\:align-items-start{align-items:flex-start!important}.sm\\:align-items-center{align-items:center!important}.sm\\:align-items-end{align-items:flex-end!important}.sm\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 768px){.md\\:align-items-stretch{align-items:stretch!important}.md\\:align-items-start{align-items:flex-start!important}.md\\:align-items-center{align-items:center!important}.md\\:align-items-end{align-items:flex-end!important}.md\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 992px){.lg\\:align-items-stretch{align-items:stretch!important}.lg\\:align-items-start{align-items:flex-start!important}.lg\\:align-items-center{align-items:center!important}.lg\\:align-items-end{align-items:flex-end!important}.lg\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 1200px){.xl\\:align-items-stretch{align-items:stretch!important}.xl\\:align-items-start{align-items:flex-start!important}.xl\\:align-items-center{align-items:center!important}.xl\\:align-items-end{align-items:flex-end!important}.xl\\:align-items-baseline{align-items:baseline!important}}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-stretch{align-self:stretch!important}.align-self-baseline{align-self:baseline!important}@media screen and (min-width: 576px){.sm\\:align-self-auto{align-self:auto!important}.sm\\:align-self-start{align-self:flex-start!important}.sm\\:align-self-end{align-self:flex-end!important}.sm\\:align-self-center{align-self:center!important}.sm\\:align-self-stretch{align-self:stretch!important}.sm\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 768px){.md\\:align-self-auto{align-self:auto!important}.md\\:align-self-start{align-self:flex-start!important}.md\\:align-self-end{align-self:flex-end!important}.md\\:align-self-center{align-self:center!important}.md\\:align-self-stretch{align-self:stretch!important}.md\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 992px){.lg\\:align-self-auto{align-self:auto!important}.lg\\:align-self-start{align-self:flex-start!important}.lg\\:align-self-end{align-self:flex-end!important}.lg\\:align-self-center{align-self:center!important}.lg\\:align-self-stretch{align-self:stretch!important}.lg\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 1200px){.xl\\:align-self-auto{align-self:auto!important}.xl\\:align-self-start{align-self:flex-start!important}.xl\\:align-self-end{align-self:flex-end!important}.xl\\:align-self-center{align-self:center!important}.xl\\:align-self-stretch{align-self:stretch!important}.xl\\:align-self-baseline{align-self:baseline!important}}.flex-order-0{order:0!important}.flex-order-1{order:1!important}.flex-order-2{order:2!important}.flex-order-3{order:3!important}.flex-order-4{order:4!important}.flex-order-5{order:5!important}.flex-order-6{order:6!important}@media screen and (min-width: 576px){.sm\\:flex-order-0{order:0!important}.sm\\:flex-order-1{order:1!important}.sm\\:flex-order-2{order:2!important}.sm\\:flex-order-3{order:3!important}.sm\\:flex-order-4{order:4!important}.sm\\:flex-order-5{order:5!important}.sm\\:flex-order-6{order:6!important}}@media screen and (min-width: 768px){.md\\:flex-order-0{order:0!important}.md\\:flex-order-1{order:1!important}.md\\:flex-order-2{order:2!important}.md\\:flex-order-3{order:3!important}.md\\:flex-order-4{order:4!important}.md\\:flex-order-5{order:5!important}.md\\:flex-order-6{order:6!important}}@media screen and (min-width: 992px){.lg\\:flex-order-0{order:0!important}.lg\\:flex-order-1{order:1!important}.lg\\:flex-order-2{order:2!important}.lg\\:flex-order-3{order:3!important}.lg\\:flex-order-4{order:4!important}.lg\\:flex-order-5{order:5!important}.lg\\:flex-order-6{order:6!important}}@media screen and (min-width: 1200px){.xl\\:flex-order-0{order:0!important}.xl\\:flex-order-1{order:1!important}.xl\\:flex-order-2{order:2!important}.xl\\:flex-order-3{order:3!important}.xl\\:flex-order-4{order:4!important}.xl\\:flex-order-5{order:5!important}.xl\\:flex-order-6{order:6!important}}.flex-1{flex:1 1 0%!important}.flex-auto{flex:1 1 auto!important}.flex-initial{flex:0 1 auto!important}.flex-none{flex:none!important}@media screen and (min-width: 576px){.sm\\:flex-1{flex:1 1 0%!important}.sm\\:flex-auto{flex:1 1 auto!important}.sm\\:flex-initial{flex:0 1 auto!important}.sm\\:flex-none{flex:none!important}}@media screen and (min-width: 768px){.md\\:flex-1{flex:1 1 0%!important}.md\\:flex-auto{flex:1 1 auto!important}.md\\:flex-initial{flex:0 1 auto!important}.md\\:flex-none{flex:none!important}}@media screen and (min-width: 992px){.lg\\:flex-1{flex:1 1 0%!important}.lg\\:flex-auto{flex:1 1 auto!important}.lg\\:flex-initial{flex:0 1 auto!important}.lg\\:flex-none{flex:none!important}}@media screen and (min-width: 1200px){.xl\\:flex-1{flex:1 1 0%!important}.xl\\:flex-auto{flex:1 1 auto!important}.xl\\:flex-initial{flex:0 1 auto!important}.xl\\:flex-none{flex:none!important}}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}@media screen and (min-width: 576px){.sm\\:flex-grow-0{flex-grow:0!important}.sm\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 768px){.md\\:flex-grow-0{flex-grow:0!important}.md\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 992px){.lg\\:flex-grow-0{flex-grow:0!important}.lg\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 1200px){.xl\\:flex-grow-0{flex-grow:0!important}.xl\\:flex-grow-1{flex-grow:1!important}}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}@media screen and (min-width: 576px){.sm\\:flex-shrink-0{flex-shrink:0!important}.sm\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 768px){.md\\:flex-shrink-0{flex-shrink:0!important}.md\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 992px){.lg\\:flex-shrink-0{flex-shrink:0!important}.lg\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 1200px){.xl\\:flex-shrink-0{flex-shrink:0!important}.xl\\:flex-shrink-1{flex-shrink:1!important}}.gap-0{gap:0rem!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:2rem!important}.gap-6{gap:3rem!important}.gap-7{gap:4rem!important}.gap-8{gap:5rem!important}.row-gap-0{row-gap:0rem!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:2rem!important}.row-gap-6{row-gap:3rem!important}.row-gap-7{row-gap:4rem!important}.row-gap-8{row-gap:5rem!important}.column-gap-0{column-gap:0rem!important}.column-gap-1{column-gap:.25rem!important}.column-gap-2{column-gap:.5rem!important}.column-gap-3{column-gap:1rem!important}.column-gap-4{column-gap:1.5rem!important}.column-gap-5{column-gap:2rem!important}.column-gap-6{column-gap:3rem!important}.column-gap-7{column-gap:4rem!important}.column-gap-8{column-gap:5rem!important}@media screen and (min-width: 576px){.sm\\:gap-0{gap:0rem!important}.sm\\:gap-1{gap:.25rem!important}.sm\\:gap-2{gap:.5rem!important}.sm\\:gap-3{gap:1rem!important}.sm\\:gap-4{gap:1.5rem!important}.sm\\:gap-5{gap:2rem!important}.sm\\:gap-6{gap:3rem!important}.sm\\:gap-7{gap:4rem!important}.sm\\:gap-8{gap:5rem!important}.sm\\:row-gap-0{row-gap:0rem!important}.sm\\:row-gap-1{row-gap:.25rem!important}.sm\\:row-gap-2{row-gap:.5rem!important}.sm\\:row-gap-3{row-gap:1rem!important}.sm\\:row-gap-4{row-gap:1.5rem!important}.sm\\:row-gap-5{row-gap:2rem!important}.sm\\:row-gap-6{row-gap:3rem!important}.sm\\:row-gap-7{row-gap:4rem!important}.sm\\:row-gap-8{row-gap:5rem!important}.sm\\:column-gap-0{column-gap:0rem!important}.sm\\:column-gap-1{column-gap:.25rem!important}.sm\\:column-gap-2{column-gap:.5rem!important}.sm\\:column-gap-3{column-gap:1rem!important}.sm\\:column-gap-4{column-gap:1.5rem!important}.sm\\:column-gap-5{column-gap:2rem!important}.sm\\:column-gap-6{column-gap:3rem!important}.sm\\:column-gap-7{column-gap:4rem!important}.sm\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 768px){.md\\:gap-0{gap:0rem!important}.md\\:gap-1{gap:.25rem!important}.md\\:gap-2{gap:.5rem!important}.md\\:gap-3{gap:1rem!important}.md\\:gap-4{gap:1.5rem!important}.md\\:gap-5{gap:2rem!important}.md\\:gap-6{gap:3rem!important}.md\\:gap-7{gap:4rem!important}.md\\:gap-8{gap:5rem!important}.md\\:row-gap-0{row-gap:0rem!important}.md\\:row-gap-1{row-gap:.25rem!important}.md\\:row-gap-2{row-gap:.5rem!important}.md\\:row-gap-3{row-gap:1rem!important}.md\\:row-gap-4{row-gap:1.5rem!important}.md\\:row-gap-5{row-gap:2rem!important}.md\\:row-gap-6{row-gap:3rem!important}.md\\:row-gap-7{row-gap:4rem!important}.md\\:row-gap-8{row-gap:5rem!important}.md\\:column-gap-0{column-gap:0rem!important}.md\\:column-gap-1{column-gap:.25rem!important}.md\\:column-gap-2{column-gap:.5rem!important}.md\\:column-gap-3{column-gap:1rem!important}.md\\:column-gap-4{column-gap:1.5rem!important}.md\\:column-gap-5{column-gap:2rem!important}.md\\:column-gap-6{column-gap:3rem!important}.md\\:column-gap-7{column-gap:4rem!important}.md\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 992px){.lg\\:gap-0{gap:0rem!important}.lg\\:gap-1{gap:.25rem!important}.lg\\:gap-2{gap:.5rem!important}.lg\\:gap-3{gap:1rem!important}.lg\\:gap-4{gap:1.5rem!important}.lg\\:gap-5{gap:2rem!important}.lg\\:gap-6{gap:3rem!important}.lg\\:gap-7{gap:4rem!important}.lg\\:gap-8{gap:5rem!important}.lg\\:row-gap-0{row-gap:0rem!important}.lg\\:row-gap-1{row-gap:.25rem!important}.lg\\:row-gap-2{row-gap:.5rem!important}.lg\\:row-gap-3{row-gap:1rem!important}.lg\\:row-gap-4{row-gap:1.5rem!important}.lg\\:row-gap-5{row-gap:2rem!important}.lg\\:row-gap-6{row-gap:3rem!important}.lg\\:row-gap-7{row-gap:4rem!important}.lg\\:row-gap-8{row-gap:5rem!important}.lg\\:column-gap-0{column-gap:0rem!important}.lg\\:column-gap-1{column-gap:.25rem!important}.lg\\:column-gap-2{column-gap:.5rem!important}.lg\\:column-gap-3{column-gap:1rem!important}.lg\\:column-gap-4{column-gap:1.5rem!important}.lg\\:column-gap-5{column-gap:2rem!important}.lg\\:column-gap-6{column-gap:3rem!important}.lg\\:column-gap-7{column-gap:4rem!important}.lg\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 1200px){.xl\\:gap-0{gap:0rem!important}.xl\\:gap-1{gap:.25rem!important}.xl\\:gap-2{gap:.5rem!important}.xl\\:gap-3{gap:1rem!important}.xl\\:gap-4{gap:1.5rem!important}.xl\\:gap-5{gap:2rem!important}.xl\\:gap-6{gap:3rem!important}.xl\\:gap-7{gap:4rem!important}.xl\\:gap-8{gap:5rem!important}.xl\\:row-gap-0{row-gap:0rem!important}.xl\\:row-gap-1{row-gap:.25rem!important}.xl\\:row-gap-2{row-gap:.5rem!important}.xl\\:row-gap-3{row-gap:1rem!important}.xl\\:row-gap-4{row-gap:1.5rem!important}.xl\\:row-gap-5{row-gap:2rem!important}.xl\\:row-gap-6{row-gap:3rem!important}.xl\\:row-gap-7{row-gap:4rem!important}.xl\\:row-gap-8{row-gap:5rem!important}.xl\\:column-gap-0{column-gap:0rem!important}.xl\\:column-gap-1{column-gap:.25rem!important}.xl\\:column-gap-2{column-gap:.5rem!important}.xl\\:column-gap-3{column-gap:1rem!important}.xl\\:column-gap-4{column-gap:1.5rem!important}.xl\\:column-gap-5{column-gap:2rem!important}.xl\\:column-gap-6{column-gap:3rem!important}.xl\\:column-gap-7{column-gap:4rem!important}.xl\\:column-gap-8{column-gap:5rem!important}}.p-0{padding:0rem!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:2rem!important}.p-6{padding:3rem!important}.p-7{padding:4rem!important}.p-8{padding:5rem!important}.pt-0{padding-top:0rem!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:2rem!important}.pt-6{padding-top:3rem!important}.pt-7{padding-top:4rem!important}.pt-8{padding-top:5rem!important}.pr-0{padding-right:0rem!important}.pr-1{padding-right:.25rem!important}.pr-2{padding-right:.5rem!important}.pr-3{padding-right:1rem!important}.pr-4{padding-right:1.5rem!important}.pr-5{padding-right:2rem!important}.pr-6{padding-right:3rem!important}.pr-7{padding-right:4rem!important}.pr-8{padding-right:5rem!important}.pl-0{padding-left:0rem!important}.pl-1{padding-left:.25rem!important}.pl-2{padding-left:.5rem!important}.pl-3{padding-left:1rem!important}.pl-4{padding-left:1.5rem!important}.pl-5{padding-left:2rem!important}.pl-6{padding-left:3rem!important}.pl-7{padding-left:4rem!important}.pl-8{padding-left:5rem!important}.pb-0{padding-bottom:0rem!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:2rem!important}.pb-6{padding-bottom:3rem!important}.pb-7{padding-bottom:4rem!important}.pb-8{padding-bottom:5rem!important}.px-0{padding-left:0rem!important;padding-right:0rem!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:2rem!important;padding-right:2rem!important}.px-6{padding-left:3rem!important;padding-right:3rem!important}.px-7{padding-left:4rem!important;padding-right:4rem!important}.px-8{padding-left:5rem!important;padding-right:5rem!important}.py-0{padding-top:0rem!important;padding-bottom:0rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:2rem!important;padding-bottom:2rem!important}.py-6{padding-top:3rem!important;padding-bottom:3rem!important}.py-7{padding-top:4rem!important;padding-bottom:4rem!important}.py-8{padding-top:5rem!important;padding-bottom:5rem!important}@media screen and (min-width: 576px){.sm\\:p-0{padding:0rem!important}.sm\\:p-1{padding:.25rem!important}.sm\\:p-2{padding:.5rem!important}.sm\\:p-3{padding:1rem!important}.sm\\:p-4{padding:1.5rem!important}.sm\\:p-5{padding:2rem!important}.sm\\:p-6{padding:3rem!important}.sm\\:p-7{padding:4rem!important}.sm\\:p-8{padding:5rem!important}.sm\\:pt-0{padding-top:0rem!important}.sm\\:pt-1{padding-top:.25rem!important}.sm\\:pt-2{padding-top:.5rem!important}.sm\\:pt-3{padding-top:1rem!important}.sm\\:pt-4{padding-top:1.5rem!important}.sm\\:pt-5{padding-top:2rem!important}.sm\\:pt-6{padding-top:3rem!important}.sm\\:pt-7{padding-top:4rem!important}.sm\\:pt-8{padding-top:5rem!important}.sm\\:pr-0{padding-right:0rem!important}.sm\\:pr-1{padding-right:.25rem!important}.sm\\:pr-2{padding-right:.5rem!important}.sm\\:pr-3{padding-right:1rem!important}.sm\\:pr-4{padding-right:1.5rem!important}.sm\\:pr-5{padding-right:2rem!important}.sm\\:pr-6{padding-right:3rem!important}.sm\\:pr-7{padding-right:4rem!important}.sm\\:pr-8{padding-right:5rem!important}.sm\\:pl-0{padding-left:0rem!important}.sm\\:pl-1{padding-left:.25rem!important}.sm\\:pl-2{padding-left:.5rem!important}.sm\\:pl-3{padding-left:1rem!important}.sm\\:pl-4{padding-left:1.5rem!important}.sm\\:pl-5{padding-left:2rem!important}.sm\\:pl-6{padding-left:3rem!important}.sm\\:pl-7{padding-left:4rem!important}.sm\\:pl-8{padding-left:5rem!important}.sm\\:pb-0{padding-bottom:0rem!important}.sm\\:pb-1{padding-bottom:.25rem!important}.sm\\:pb-2{padding-bottom:.5rem!important}.sm\\:pb-3{padding-bottom:1rem!important}.sm\\:pb-4{padding-bottom:1.5rem!important}.sm\\:pb-5{padding-bottom:2rem!important}.sm\\:pb-6{padding-bottom:3rem!important}.sm\\:pb-7{padding-bottom:4rem!important}.sm\\:pb-8{padding-bottom:5rem!important}.sm\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.sm\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.sm\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.sm\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.sm\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.sm\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.sm\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.sm\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.sm\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.sm\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.sm\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.sm\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.sm\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.sm\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.sm\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.sm\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.sm\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.sm\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 768px){.md\\:p-0{padding:0rem!important}.md\\:p-1{padding:.25rem!important}.md\\:p-2{padding:.5rem!important}.md\\:p-3{padding:1rem!important}.md\\:p-4{padding:1.5rem!important}.md\\:p-5{padding:2rem!important}.md\\:p-6{padding:3rem!important}.md\\:p-7{padding:4rem!important}.md\\:p-8{padding:5rem!important}.md\\:pt-0{padding-top:0rem!important}.md\\:pt-1{padding-top:.25rem!important}.md\\:pt-2{padding-top:.5rem!important}.md\\:pt-3{padding-top:1rem!important}.md\\:pt-4{padding-top:1.5rem!important}.md\\:pt-5{padding-top:2rem!important}.md\\:pt-6{padding-top:3rem!important}.md\\:pt-7{padding-top:4rem!important}.md\\:pt-8{padding-top:5rem!important}.md\\:pr-0{padding-right:0rem!important}.md\\:pr-1{padding-right:.25rem!important}.md\\:pr-2{padding-right:.5rem!important}.md\\:pr-3{padding-right:1rem!important}.md\\:pr-4{padding-right:1.5rem!important}.md\\:pr-5{padding-right:2rem!important}.md\\:pr-6{padding-right:3rem!important}.md\\:pr-7{padding-right:4rem!important}.md\\:pr-8{padding-right:5rem!important}.md\\:pl-0{padding-left:0rem!important}.md\\:pl-1{padding-left:.25rem!important}.md\\:pl-2{padding-left:.5rem!important}.md\\:pl-3{padding-left:1rem!important}.md\\:pl-4{padding-left:1.5rem!important}.md\\:pl-5{padding-left:2rem!important}.md\\:pl-6{padding-left:3rem!important}.md\\:pl-7{padding-left:4rem!important}.md\\:pl-8{padding-left:5rem!important}.md\\:pb-0{padding-bottom:0rem!important}.md\\:pb-1{padding-bottom:.25rem!important}.md\\:pb-2{padding-bottom:.5rem!important}.md\\:pb-3{padding-bottom:1rem!important}.md\\:pb-4{padding-bottom:1.5rem!important}.md\\:pb-5{padding-bottom:2rem!important}.md\\:pb-6{padding-bottom:3rem!important}.md\\:pb-7{padding-bottom:4rem!important}.md\\:pb-8{padding-bottom:5rem!important}.md\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.md\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.md\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.md\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.md\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.md\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.md\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.md\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.md\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.md\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.md\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.md\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.md\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.md\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.md\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.md\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.md\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.md\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 992px){.lg\\:p-0{padding:0rem!important}.lg\\:p-1{padding:.25rem!important}.lg\\:p-2{padding:.5rem!important}.lg\\:p-3{padding:1rem!important}.lg\\:p-4{padding:1.5rem!important}.lg\\:p-5{padding:2rem!important}.lg\\:p-6{padding:3rem!important}.lg\\:p-7{padding:4rem!important}.lg\\:p-8{padding:5rem!important}.lg\\:pt-0{padding-top:0rem!important}.lg\\:pt-1{padding-top:.25rem!important}.lg\\:pt-2{padding-top:.5rem!important}.lg\\:pt-3{padding-top:1rem!important}.lg\\:pt-4{padding-top:1.5rem!important}.lg\\:pt-5{padding-top:2rem!important}.lg\\:pt-6{padding-top:3rem!important}.lg\\:pt-7{padding-top:4rem!important}.lg\\:pt-8{padding-top:5rem!important}.lg\\:pr-0{padding-right:0rem!important}.lg\\:pr-1{padding-right:.25rem!important}.lg\\:pr-2{padding-right:.5rem!important}.lg\\:pr-3{padding-right:1rem!important}.lg\\:pr-4{padding-right:1.5rem!important}.lg\\:pr-5{padding-right:2rem!important}.lg\\:pr-6{padding-right:3rem!important}.lg\\:pr-7{padding-right:4rem!important}.lg\\:pr-8{padding-right:5rem!important}.lg\\:pl-0{padding-left:0rem!important}.lg\\:pl-1{padding-left:.25rem!important}.lg\\:pl-2{padding-left:.5rem!important}.lg\\:pl-3{padding-left:1rem!important}.lg\\:pl-4{padding-left:1.5rem!important}.lg\\:pl-5{padding-left:2rem!important}.lg\\:pl-6{padding-left:3rem!important}.lg\\:pl-7{padding-left:4rem!important}.lg\\:pl-8{padding-left:5rem!important}.lg\\:pb-0{padding-bottom:0rem!important}.lg\\:pb-1{padding-bottom:.25rem!important}.lg\\:pb-2{padding-bottom:.5rem!important}.lg\\:pb-3{padding-bottom:1rem!important}.lg\\:pb-4{padding-bottom:1.5rem!important}.lg\\:pb-5{padding-bottom:2rem!important}.lg\\:pb-6{padding-bottom:3rem!important}.lg\\:pb-7{padding-bottom:4rem!important}.lg\\:pb-8{padding-bottom:5rem!important}.lg\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.lg\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.lg\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.lg\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.lg\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.lg\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.lg\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.lg\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.lg\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.lg\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.lg\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.lg\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.lg\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.lg\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.lg\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.lg\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.lg\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.lg\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 1200px){.xl\\:p-0{padding:0rem!important}.xl\\:p-1{padding:.25rem!important}.xl\\:p-2{padding:.5rem!important}.xl\\:p-3{padding:1rem!important}.xl\\:p-4{padding:1.5rem!important}.xl\\:p-5{padding:2rem!important}.xl\\:p-6{padding:3rem!important}.xl\\:p-7{padding:4rem!important}.xl\\:p-8{padding:5rem!important}.xl\\:pt-0{padding-top:0rem!important}.xl\\:pt-1{padding-top:.25rem!important}.xl\\:pt-2{padding-top:.5rem!important}.xl\\:pt-3{padding-top:1rem!important}.xl\\:pt-4{padding-top:1.5rem!important}.xl\\:pt-5{padding-top:2rem!important}.xl\\:pt-6{padding-top:3rem!important}.xl\\:pt-7{padding-top:4rem!important}.xl\\:pt-8{padding-top:5rem!important}.xl\\:pr-0{padding-right:0rem!important}.xl\\:pr-1{padding-right:.25rem!important}.xl\\:pr-2{padding-right:.5rem!important}.xl\\:pr-3{padding-right:1rem!important}.xl\\:pr-4{padding-right:1.5rem!important}.xl\\:pr-5{padding-right:2rem!important}.xl\\:pr-6{padding-right:3rem!important}.xl\\:pr-7{padding-right:4rem!important}.xl\\:pr-8{padding-right:5rem!important}.xl\\:pl-0{padding-left:0rem!important}.xl\\:pl-1{padding-left:.25rem!important}.xl\\:pl-2{padding-left:.5rem!important}.xl\\:pl-3{padding-left:1rem!important}.xl\\:pl-4{padding-left:1.5rem!important}.xl\\:pl-5{padding-left:2rem!important}.xl\\:pl-6{padding-left:3rem!important}.xl\\:pl-7{padding-left:4rem!important}.xl\\:pl-8{padding-left:5rem!important}.xl\\:pb-0{padding-bottom:0rem!important}.xl\\:pb-1{padding-bottom:.25rem!important}.xl\\:pb-2{padding-bottom:.5rem!important}.xl\\:pb-3{padding-bottom:1rem!important}.xl\\:pb-4{padding-bottom:1.5rem!important}.xl\\:pb-5{padding-bottom:2rem!important}.xl\\:pb-6{padding-bottom:3rem!important}.xl\\:pb-7{padding-bottom:4rem!important}.xl\\:pb-8{padding-bottom:5rem!important}.xl\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.xl\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.xl\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.xl\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.xl\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.xl\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.xl\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.xl\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.xl\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.xl\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.xl\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.xl\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.xl\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.xl\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.xl\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.xl\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.xl\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.xl\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}.m-0{margin:0rem!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:2rem!important}.m-6{margin:3rem!important}.m-7{margin:4rem!important}.m-8{margin:5rem!important}.-m-1{margin:-.25rem!important}.-m-2{margin:-.5rem!important}.-m-3{margin:-1rem!important}.-m-4{margin:-1.5rem!important}.-m-5{margin:-2rem!important}.-m-6{margin:-3rem!important}.-m-7{margin:-4rem!important}.-m-8{margin:-5rem!important}.m-auto{margin:auto!important}.mt-0{margin-top:0rem!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:2rem!important}.mt-6{margin-top:3rem!important}.mt-7{margin-top:4rem!important}.mt-8{margin-top:5rem!important}.-mt-1{margin-top:-.25rem!important}.-mt-2{margin-top:-.5rem!important}.-mt-3{margin-top:-1rem!important}.-mt-4{margin-top:-1.5rem!important}.-mt-5{margin-top:-2rem!important}.-mt-6{margin-top:-3rem!important}.-mt-7{margin-top:-4rem!important}.-mt-8{margin-top:-5rem!important}.mt-auto{margin-top:auto!important}.mr-0{margin-right:0rem!important}.mr-1{margin-right:.25rem!important}.mr-2{margin-right:.5rem!important}.mr-3{margin-right:1rem!important}.mr-4{margin-right:1.5rem!important}.mr-5{margin-right:2rem!important}.mr-6{margin-right:3rem!important}.mr-7{margin-right:4rem!important}.mr-8{margin-right:5rem!important}.-mr-1{margin-right:-.25rem!important}.-mr-2{margin-right:-.5rem!important}.-mr-3{margin-right:-1rem!important}.-mr-4{margin-right:-1.5rem!important}.-mr-5{margin-right:-2rem!important}.-mr-6{margin-right:-3rem!important}.-mr-7{margin-right:-4rem!important}.-mr-8{margin-right:-5rem!important}.mr-auto{margin-right:auto!important}.ml-0{margin-left:0rem!important}.ml-1{margin-left:.25rem!important}.ml-2{margin-left:.5rem!important}.ml-3{margin-left:1rem!important}.ml-4{margin-left:1.5rem!important}.ml-5{margin-left:2rem!important}.ml-6{margin-left:3rem!important}.ml-7{margin-left:4rem!important}.ml-8{margin-left:5rem!important}.-ml-1{margin-left:-.25rem!important}.-ml-2{margin-left:-.5rem!important}.-ml-3{margin-left:-1rem!important}.-ml-4{margin-left:-1.5rem!important}.-ml-5{margin-left:-2rem!important}.-ml-6{margin-left:-3rem!important}.-ml-7{margin-left:-4rem!important}.-ml-8{margin-left:-5rem!important}.ml-auto{margin-left:auto!important}.mb-0{margin-bottom:0rem!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:2rem!important}.mb-6{margin-bottom:3rem!important}.mb-7{margin-bottom:4rem!important}.mb-8{margin-bottom:5rem!important}.-mb-1{margin-bottom:-.25rem!important}.-mb-2{margin-bottom:-.5rem!important}.-mb-3{margin-bottom:-1rem!important}.-mb-4{margin-bottom:-1.5rem!important}.-mb-5{margin-bottom:-2rem!important}.-mb-6{margin-bottom:-3rem!important}.-mb-7{margin-bottom:-4rem!important}.-mb-8{margin-bottom:-5rem!important}.mb-auto{margin-bottom:auto!important}.mx-0{margin-left:0rem!important;margin-right:0rem!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:2rem!important;margin-right:2rem!important}.mx-6{margin-left:3rem!important;margin-right:3rem!important}.mx-7{margin-left:4rem!important;margin-right:4rem!important}.mx-8{margin-left:5rem!important;margin-right:5rem!important}.-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0rem!important;margin-bottom:0rem!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:2rem!important;margin-bottom:2rem!important}.my-6{margin-top:3rem!important;margin-bottom:3rem!important}.my-7{margin-top:4rem!important;margin-bottom:4rem!important}.my-8{margin-top:5rem!important;margin-bottom:5rem!important}.-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}@media screen and (min-width: 576px){.sm\\:m-0{margin:0rem!important}.sm\\:m-1{margin:.25rem!important}.sm\\:m-2{margin:.5rem!important}.sm\\:m-3{margin:1rem!important}.sm\\:m-4{margin:1.5rem!important}.sm\\:m-5{margin:2rem!important}.sm\\:m-6{margin:3rem!important}.sm\\:m-7{margin:4rem!important}.sm\\:m-8{margin:5rem!important}.sm\\:-m-1{margin:-.25rem!important}.sm\\:-m-2{margin:-.5rem!important}.sm\\:-m-3{margin:-1rem!important}.sm\\:-m-4{margin:-1.5rem!important}.sm\\:-m-5{margin:-2rem!important}.sm\\:-m-6{margin:-3rem!important}.sm\\:-m-7{margin:-4rem!important}.sm\\:-m-8{margin:-5rem!important}.sm\\:m-auto{margin:auto!important}.sm\\:mt-0{margin-top:0rem!important}.sm\\:mt-1{margin-top:.25rem!important}.sm\\:mt-2{margin-top:.5rem!important}.sm\\:mt-3{margin-top:1rem!important}.sm\\:mt-4{margin-top:1.5rem!important}.sm\\:mt-5{margin-top:2rem!important}.sm\\:mt-6{margin-top:3rem!important}.sm\\:mt-7{margin-top:4rem!important}.sm\\:mt-8{margin-top:5rem!important}.sm\\:-mt-1{margin-top:-.25rem!important}.sm\\:-mt-2{margin-top:-.5rem!important}.sm\\:-mt-3{margin-top:-1rem!important}.sm\\:-mt-4{margin-top:-1.5rem!important}.sm\\:-mt-5{margin-top:-2rem!important}.sm\\:-mt-6{margin-top:-3rem!important}.sm\\:-mt-7{margin-top:-4rem!important}.sm\\:-mt-8{margin-top:-5rem!important}.sm\\:mt-auto{margin-top:auto!important}.sm\\:mr-0{margin-right:0rem!important}.sm\\:mr-1{margin-right:.25rem!important}.sm\\:mr-2{margin-right:.5rem!important}.sm\\:mr-3{margin-right:1rem!important}.sm\\:mr-4{margin-right:1.5rem!important}.sm\\:mr-5{margin-right:2rem!important}.sm\\:mr-6{margin-right:3rem!important}.sm\\:mr-7{margin-right:4rem!important}.sm\\:mr-8{margin-right:5rem!important}.sm\\:-mr-1{margin-right:-.25rem!important}.sm\\:-mr-2{margin-right:-.5rem!important}.sm\\:-mr-3{margin-right:-1rem!important}.sm\\:-mr-4{margin-right:-1.5rem!important}.sm\\:-mr-5{margin-right:-2rem!important}.sm\\:-mr-6{margin-right:-3rem!important}.sm\\:-mr-7{margin-right:-4rem!important}.sm\\:-mr-8{margin-right:-5rem!important}.sm\\:mr-auto{margin-right:auto!important}.sm\\:ml-0{margin-left:0rem!important}.sm\\:ml-1{margin-left:.25rem!important}.sm\\:ml-2{margin-left:.5rem!important}.sm\\:ml-3{margin-left:1rem!important}.sm\\:ml-4{margin-left:1.5rem!important}.sm\\:ml-5{margin-left:2rem!important}.sm\\:ml-6{margin-left:3rem!important}.sm\\:ml-7{margin-left:4rem!important}.sm\\:ml-8{margin-left:5rem!important}.sm\\:-ml-1{margin-left:-.25rem!important}.sm\\:-ml-2{margin-left:-.5rem!important}.sm\\:-ml-3{margin-left:-1rem!important}.sm\\:-ml-4{margin-left:-1.5rem!important}.sm\\:-ml-5{margin-left:-2rem!important}.sm\\:-ml-6{margin-left:-3rem!important}.sm\\:-ml-7{margin-left:-4rem!important}.sm\\:-ml-8{margin-left:-5rem!important}.sm\\:ml-auto{margin-left:auto!important}.sm\\:mb-0{margin-bottom:0rem!important}.sm\\:mb-1{margin-bottom:.25rem!important}.sm\\:mb-2{margin-bottom:.5rem!important}.sm\\:mb-3{margin-bottom:1rem!important}.sm\\:mb-4{margin-bottom:1.5rem!important}.sm\\:mb-5{margin-bottom:2rem!important}.sm\\:mb-6{margin-bottom:3rem!important}.sm\\:mb-7{margin-bottom:4rem!important}.sm\\:mb-8{margin-bottom:5rem!important}.sm\\:-mb-1{margin-bottom:-.25rem!important}.sm\\:-mb-2{margin-bottom:-.5rem!important}.sm\\:-mb-3{margin-bottom:-1rem!important}.sm\\:-mb-4{margin-bottom:-1.5rem!important}.sm\\:-mb-5{margin-bottom:-2rem!important}.sm\\:-mb-6{margin-bottom:-3rem!important}.sm\\:-mb-7{margin-bottom:-4rem!important}.sm\\:-mb-8{margin-bottom:-5rem!important}.sm\\:mb-auto{margin-bottom:auto!important}.sm\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.sm\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.sm\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.sm\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.sm\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.sm\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.sm\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.sm\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.sm\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.sm\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.sm\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.sm\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.sm\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.sm\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.sm\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.sm\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.sm\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.sm\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.sm\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.sm\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.sm\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.sm\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.sm\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.sm\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.sm\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.sm\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.sm\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.sm\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.sm\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.sm\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.sm\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.sm\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.sm\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.sm\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.sm\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.sm\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 768px){.md\\:m-0{margin:0rem!important}.md\\:m-1{margin:.25rem!important}.md\\:m-2{margin:.5rem!important}.md\\:m-3{margin:1rem!important}.md\\:m-4{margin:1.5rem!important}.md\\:m-5{margin:2rem!important}.md\\:m-6{margin:3rem!important}.md\\:m-7{margin:4rem!important}.md\\:m-8{margin:5rem!important}.md\\:-m-1{margin:-.25rem!important}.md\\:-m-2{margin:-.5rem!important}.md\\:-m-3{margin:-1rem!important}.md\\:-m-4{margin:-1.5rem!important}.md\\:-m-5{margin:-2rem!important}.md\\:-m-6{margin:-3rem!important}.md\\:-m-7{margin:-4rem!important}.md\\:-m-8{margin:-5rem!important}.md\\:m-auto{margin:auto!important}.md\\:mt-0{margin-top:0rem!important}.md\\:mt-1{margin-top:.25rem!important}.md\\:mt-2{margin-top:.5rem!important}.md\\:mt-3{margin-top:1rem!important}.md\\:mt-4{margin-top:1.5rem!important}.md\\:mt-5{margin-top:2rem!important}.md\\:mt-6{margin-top:3rem!important}.md\\:mt-7{margin-top:4rem!important}.md\\:mt-8{margin-top:5rem!important}.md\\:-mt-1{margin-top:-.25rem!important}.md\\:-mt-2{margin-top:-.5rem!important}.md\\:-mt-3{margin-top:-1rem!important}.md\\:-mt-4{margin-top:-1.5rem!important}.md\\:-mt-5{margin-top:-2rem!important}.md\\:-mt-6{margin-top:-3rem!important}.md\\:-mt-7{margin-top:-4rem!important}.md\\:-mt-8{margin-top:-5rem!important}.md\\:mt-auto{margin-top:auto!important}.md\\:mr-0{margin-right:0rem!important}.md\\:mr-1{margin-right:.25rem!important}.md\\:mr-2{margin-right:.5rem!important}.md\\:mr-3{margin-right:1rem!important}.md\\:mr-4{margin-right:1.5rem!important}.md\\:mr-5{margin-right:2rem!important}.md\\:mr-6{margin-right:3rem!important}.md\\:mr-7{margin-right:4rem!important}.md\\:mr-8{margin-right:5rem!important}.md\\:-mr-1{margin-right:-.25rem!important}.md\\:-mr-2{margin-right:-.5rem!important}.md\\:-mr-3{margin-right:-1rem!important}.md\\:-mr-4{margin-right:-1.5rem!important}.md\\:-mr-5{margin-right:-2rem!important}.md\\:-mr-6{margin-right:-3rem!important}.md\\:-mr-7{margin-right:-4rem!important}.md\\:-mr-8{margin-right:-5rem!important}.md\\:mr-auto{margin-right:auto!important}.md\\:ml-0{margin-left:0rem!important}.md\\:ml-1{margin-left:.25rem!important}.md\\:ml-2{margin-left:.5rem!important}.md\\:ml-3{margin-left:1rem!important}.md\\:ml-4{margin-left:1.5rem!important}.md\\:ml-5{margin-left:2rem!important}.md\\:ml-6{margin-left:3rem!important}.md\\:ml-7{margin-left:4rem!important}.md\\:ml-8{margin-left:5rem!important}.md\\:-ml-1{margin-left:-.25rem!important}.md\\:-ml-2{margin-left:-.5rem!important}.md\\:-ml-3{margin-left:-1rem!important}.md\\:-ml-4{margin-left:-1.5rem!important}.md\\:-ml-5{margin-left:-2rem!important}.md\\:-ml-6{margin-left:-3rem!important}.md\\:-ml-7{margin-left:-4rem!important}.md\\:-ml-8{margin-left:-5rem!important}.md\\:ml-auto{margin-left:auto!important}.md\\:mb-0{margin-bottom:0rem!important}.md\\:mb-1{margin-bottom:.25rem!important}.md\\:mb-2{margin-bottom:.5rem!important}.md\\:mb-3{margin-bottom:1rem!important}.md\\:mb-4{margin-bottom:1.5rem!important}.md\\:mb-5{margin-bottom:2rem!important}.md\\:mb-6{margin-bottom:3rem!important}.md\\:mb-7{margin-bottom:4rem!important}.md\\:mb-8{margin-bottom:5rem!important}.md\\:-mb-1{margin-bottom:-.25rem!important}.md\\:-mb-2{margin-bottom:-.5rem!important}.md\\:-mb-3{margin-bottom:-1rem!important}.md\\:-mb-4{margin-bottom:-1.5rem!important}.md\\:-mb-5{margin-bottom:-2rem!important}.md\\:-mb-6{margin-bottom:-3rem!important}.md\\:-mb-7{margin-bottom:-4rem!important}.md\\:-mb-8{margin-bottom:-5rem!important}.md\\:mb-auto{margin-bottom:auto!important}.md\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.md\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.md\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.md\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.md\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.md\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.md\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.md\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.md\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.md\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.md\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.md\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.md\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.md\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.md\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.md\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.md\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.md\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.md\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.md\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.md\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.md\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.md\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.md\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.md\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.md\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.md\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.md\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.md\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.md\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.md\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.md\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.md\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.md\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.md\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.md\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 992px){.lg\\:m-0{margin:0rem!important}.lg\\:m-1{margin:.25rem!important}.lg\\:m-2{margin:.5rem!important}.lg\\:m-3{margin:1rem!important}.lg\\:m-4{margin:1.5rem!important}.lg\\:m-5{margin:2rem!important}.lg\\:m-6{margin:3rem!important}.lg\\:m-7{margin:4rem!important}.lg\\:m-8{margin:5rem!important}.lg\\:-m-1{margin:-.25rem!important}.lg\\:-m-2{margin:-.5rem!important}.lg\\:-m-3{margin:-1rem!important}.lg\\:-m-4{margin:-1.5rem!important}.lg\\:-m-5{margin:-2rem!important}.lg\\:-m-6{margin:-3rem!important}.lg\\:-m-7{margin:-4rem!important}.lg\\:-m-8{margin:-5rem!important}.lg\\:m-auto{margin:auto!important}.lg\\:mt-0{margin-top:0rem!important}.lg\\:mt-1{margin-top:.25rem!important}.lg\\:mt-2{margin-top:.5rem!important}.lg\\:mt-3{margin-top:1rem!important}.lg\\:mt-4{margin-top:1.5rem!important}.lg\\:mt-5{margin-top:2rem!important}.lg\\:mt-6{margin-top:3rem!important}.lg\\:mt-7{margin-top:4rem!important}.lg\\:mt-8{margin-top:5rem!important}.lg\\:-mt-1{margin-top:-.25rem!important}.lg\\:-mt-2{margin-top:-.5rem!important}.lg\\:-mt-3{margin-top:-1rem!important}.lg\\:-mt-4{margin-top:-1.5rem!important}.lg\\:-mt-5{margin-top:-2rem!important}.lg\\:-mt-6{margin-top:-3rem!important}.lg\\:-mt-7{margin-top:-4rem!important}.lg\\:-mt-8{margin-top:-5rem!important}.lg\\:mt-auto{margin-top:auto!important}.lg\\:mr-0{margin-right:0rem!important}.lg\\:mr-1{margin-right:.25rem!important}.lg\\:mr-2{margin-right:.5rem!important}.lg\\:mr-3{margin-right:1rem!important}.lg\\:mr-4{margin-right:1.5rem!important}.lg\\:mr-5{margin-right:2rem!important}.lg\\:mr-6{margin-right:3rem!important}.lg\\:mr-7{margin-right:4rem!important}.lg\\:mr-8{margin-right:5rem!important}.lg\\:-mr-1{margin-right:-.25rem!important}.lg\\:-mr-2{margin-right:-.5rem!important}.lg\\:-mr-3{margin-right:-1rem!important}.lg\\:-mr-4{margin-right:-1.5rem!important}.lg\\:-mr-5{margin-right:-2rem!important}.lg\\:-mr-6{margin-right:-3rem!important}.lg\\:-mr-7{margin-right:-4rem!important}.lg\\:-mr-8{margin-right:-5rem!important}.lg\\:mr-auto{margin-right:auto!important}.lg\\:ml-0{margin-left:0rem!important}.lg\\:ml-1{margin-left:.25rem!important}.lg\\:ml-2{margin-left:.5rem!important}.lg\\:ml-3{margin-left:1rem!important}.lg\\:ml-4{margin-left:1.5rem!important}.lg\\:ml-5{margin-left:2rem!important}.lg\\:ml-6{margin-left:3rem!important}.lg\\:ml-7{margin-left:4rem!important}.lg\\:ml-8{margin-left:5rem!important}.lg\\:-ml-1{margin-left:-.25rem!important}.lg\\:-ml-2{margin-left:-.5rem!important}.lg\\:-ml-3{margin-left:-1rem!important}.lg\\:-ml-4{margin-left:-1.5rem!important}.lg\\:-ml-5{margin-left:-2rem!important}.lg\\:-ml-6{margin-left:-3rem!important}.lg\\:-ml-7{margin-left:-4rem!important}.lg\\:-ml-8{margin-left:-5rem!important}.lg\\:ml-auto{margin-left:auto!important}.lg\\:mb-0{margin-bottom:0rem!important}.lg\\:mb-1{margin-bottom:.25rem!important}.lg\\:mb-2{margin-bottom:.5rem!important}.lg\\:mb-3{margin-bottom:1rem!important}.lg\\:mb-4{margin-bottom:1.5rem!important}.lg\\:mb-5{margin-bottom:2rem!important}.lg\\:mb-6{margin-bottom:3rem!important}.lg\\:mb-7{margin-bottom:4rem!important}.lg\\:mb-8{margin-bottom:5rem!important}.lg\\:-mb-1{margin-bottom:-.25rem!important}.lg\\:-mb-2{margin-bottom:-.5rem!important}.lg\\:-mb-3{margin-bottom:-1rem!important}.lg\\:-mb-4{margin-bottom:-1.5rem!important}.lg\\:-mb-5{margin-bottom:-2rem!important}.lg\\:-mb-6{margin-bottom:-3rem!important}.lg\\:-mb-7{margin-bottom:-4rem!important}.lg\\:-mb-8{margin-bottom:-5rem!important}.lg\\:mb-auto{margin-bottom:auto!important}.lg\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.lg\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.lg\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.lg\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.lg\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.lg\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.lg\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.lg\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.lg\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.lg\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.lg\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.lg\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.lg\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.lg\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.lg\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.lg\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.lg\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.lg\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.lg\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.lg\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.lg\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.lg\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.lg\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.lg\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.lg\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.lg\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.lg\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.lg\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.lg\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.lg\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.lg\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.lg\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.lg\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.lg\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.lg\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.lg\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 1200px){.xl\\:m-0{margin:0rem!important}.xl\\:m-1{margin:.25rem!important}.xl\\:m-2{margin:.5rem!important}.xl\\:m-3{margin:1rem!important}.xl\\:m-4{margin:1.5rem!important}.xl\\:m-5{margin:2rem!important}.xl\\:m-6{margin:3rem!important}.xl\\:m-7{margin:4rem!important}.xl\\:m-8{margin:5rem!important}.xl\\:-m-1{margin:-.25rem!important}.xl\\:-m-2{margin:-.5rem!important}.xl\\:-m-3{margin:-1rem!important}.xl\\:-m-4{margin:-1.5rem!important}.xl\\:-m-5{margin:-2rem!important}.xl\\:-m-6{margin:-3rem!important}.xl\\:-m-7{margin:-4rem!important}.xl\\:-m-8{margin:-5rem!important}.xl\\:m-auto{margin:auto!important}.xl\\:mt-0{margin-top:0rem!important}.xl\\:mt-1{margin-top:.25rem!important}.xl\\:mt-2{margin-top:.5rem!important}.xl\\:mt-3{margin-top:1rem!important}.xl\\:mt-4{margin-top:1.5rem!important}.xl\\:mt-5{margin-top:2rem!important}.xl\\:mt-6{margin-top:3rem!important}.xl\\:mt-7{margin-top:4rem!important}.xl\\:mt-8{margin-top:5rem!important}.xl\\:-mt-1{margin-top:-.25rem!important}.xl\\:-mt-2{margin-top:-.5rem!important}.xl\\:-mt-3{margin-top:-1rem!important}.xl\\:-mt-4{margin-top:-1.5rem!important}.xl\\:-mt-5{margin-top:-2rem!important}.xl\\:-mt-6{margin-top:-3rem!important}.xl\\:-mt-7{margin-top:-4rem!important}.xl\\:-mt-8{margin-top:-5rem!important}.xl\\:mt-auto{margin-top:auto!important}.xl\\:mr-0{margin-right:0rem!important}.xl\\:mr-1{margin-right:.25rem!important}.xl\\:mr-2{margin-right:.5rem!important}.xl\\:mr-3{margin-right:1rem!important}.xl\\:mr-4{margin-right:1.5rem!important}.xl\\:mr-5{margin-right:2rem!important}.xl\\:mr-6{margin-right:3rem!important}.xl\\:mr-7{margin-right:4rem!important}.xl\\:mr-8{margin-right:5rem!important}.xl\\:-mr-1{margin-right:-.25rem!important}.xl\\:-mr-2{margin-right:-.5rem!important}.xl\\:-mr-3{margin-right:-1rem!important}.xl\\:-mr-4{margin-right:-1.5rem!important}.xl\\:-mr-5{margin-right:-2rem!important}.xl\\:-mr-6{margin-right:-3rem!important}.xl\\:-mr-7{margin-right:-4rem!important}.xl\\:-mr-8{margin-right:-5rem!important}.xl\\:mr-auto{margin-right:auto!important}.xl\\:ml-0{margin-left:0rem!important}.xl\\:ml-1{margin-left:.25rem!important}.xl\\:ml-2{margin-left:.5rem!important}.xl\\:ml-3{margin-left:1rem!important}.xl\\:ml-4{margin-left:1.5rem!important}.xl\\:ml-5{margin-left:2rem!important}.xl\\:ml-6{margin-left:3rem!important}.xl\\:ml-7{margin-left:4rem!important}.xl\\:ml-8{margin-left:5rem!important}.xl\\:-ml-1{margin-left:-.25rem!important}.xl\\:-ml-2{margin-left:-.5rem!important}.xl\\:-ml-3{margin-left:-1rem!important}.xl\\:-ml-4{margin-left:-1.5rem!important}.xl\\:-ml-5{margin-left:-2rem!important}.xl\\:-ml-6{margin-left:-3rem!important}.xl\\:-ml-7{margin-left:-4rem!important}.xl\\:-ml-8{margin-left:-5rem!important}.xl\\:ml-auto{margin-left:auto!important}.xl\\:mb-0{margin-bottom:0rem!important}.xl\\:mb-1{margin-bottom:.25rem!important}.xl\\:mb-2{margin-bottom:.5rem!important}.xl\\:mb-3{margin-bottom:1rem!important}.xl\\:mb-4{margin-bottom:1.5rem!important}.xl\\:mb-5{margin-bottom:2rem!important}.xl\\:mb-6{margin-bottom:3rem!important}.xl\\:mb-7{margin-bottom:4rem!important}.xl\\:mb-8{margin-bottom:5rem!important}.xl\\:-mb-1{margin-bottom:-.25rem!important}.xl\\:-mb-2{margin-bottom:-.5rem!important}.xl\\:-mb-3{margin-bottom:-1rem!important}.xl\\:-mb-4{margin-bottom:-1.5rem!important}.xl\\:-mb-5{margin-bottom:-2rem!important}.xl\\:-mb-6{margin-bottom:-3rem!important}.xl\\:-mb-7{margin-bottom:-4rem!important}.xl\\:-mb-8{margin-bottom:-5rem!important}.xl\\:mb-auto{margin-bottom:auto!important}.xl\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.xl\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.xl\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.xl\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.xl\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.xl\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.xl\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.xl\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.xl\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.xl\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.xl\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.xl\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.xl\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.xl\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.xl\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.xl\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.xl\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.xl\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.xl\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.xl\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.xl\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.xl\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.xl\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.xl\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.xl\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.xl\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.xl\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.xl\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.xl\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.xl\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.xl\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.xl\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.xl\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.xl\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.xl\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.xl\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}.shadow-none{box-shadow:none!important}.shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.focus\\:shadow-none:focus{box-shadow:none!important}.hover\\:shadow-none:hover,.active\\:shadow-none:active{box-shadow:none!important}.focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.hover\\:shadow-1:hover,.active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.hover\\:shadow-2:hover,.active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.hover\\:shadow-3:hover,.active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.hover\\:shadow-4:hover,.active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.hover\\:shadow-5:hover,.active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.hover\\:shadow-6:hover,.active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.hover\\:shadow-7:hover,.active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.hover\\:shadow-8:hover,.active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}@media screen and (min-width: 576px){.sm\\:shadow-none{box-shadow:none!important}.sm\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.sm\\:focus\\:shadow-none:focus{box-shadow:none!important}.sm\\:hover\\:shadow-none:hover,.sm\\:active\\:shadow-none:active{box-shadow:none!important}.sm\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:hover\\:shadow-1:hover,.sm\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:hover\\:shadow-2:hover,.sm\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:hover\\:shadow-3:hover,.sm\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:hover\\:shadow-4:hover,.sm\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:hover\\:shadow-5:hover,.sm\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:hover\\:shadow-6:hover,.sm\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:hover\\:shadow-7:hover,.sm\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.sm\\:hover\\:shadow-8:hover,.sm\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 768px){.md\\:shadow-none{box-shadow:none!important}.md\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.md\\:focus\\:shadow-none:focus{box-shadow:none!important}.md\\:hover\\:shadow-none:hover,.md\\:active\\:shadow-none:active{box-shadow:none!important}.md\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:hover\\:shadow-1:hover,.md\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:hover\\:shadow-2:hover,.md\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:hover\\:shadow-3:hover,.md\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:hover\\:shadow-4:hover,.md\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:hover\\:shadow-5:hover,.md\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:hover\\:shadow-6:hover,.md\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:hover\\:shadow-7:hover,.md\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.md\\:hover\\:shadow-8:hover,.md\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 992px){.lg\\:shadow-none{box-shadow:none!important}.lg\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.lg\\:focus\\:shadow-none:focus{box-shadow:none!important}.lg\\:hover\\:shadow-none:hover,.lg\\:active\\:shadow-none:active{box-shadow:none!important}.lg\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:hover\\:shadow-1:hover,.lg\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:hover\\:shadow-2:hover,.lg\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:hover\\:shadow-3:hover,.lg\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:hover\\:shadow-4:hover,.lg\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:hover\\:shadow-5:hover,.lg\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:hover\\:shadow-6:hover,.lg\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:hover\\:shadow-7:hover,.lg\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.lg\\:hover\\:shadow-8:hover,.lg\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 1200px){.xl\\:shadow-none{box-shadow:none!important}.xl\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.xl\\:focus\\:shadow-none:focus{box-shadow:none!important}.xl\\:hover\\:shadow-none:hover,.xl\\:active\\:shadow-none:active{box-shadow:none!important}.xl\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:hover\\:shadow-1:hover,.xl\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:hover\\:shadow-2:hover,.xl\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:hover\\:shadow-3:hover,.xl\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:hover\\:shadow-4:hover,.xl\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:hover\\:shadow-5:hover,.xl\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:hover\\:shadow-6:hover,.xl\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:hover\\:shadow-7:hover,.xl\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.xl\\:hover\\:shadow-8:hover,.xl\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}.border-none{border-width:0px!important;border-style:none}.border-1{border-width:1px!important;border-style:solid}.border-2{border-width:2px!important;border-style:solid}.border-3{border-width:3px!important;border-style:solid}.border-top-none{border-top-width:0px!important;border-top-style:none}.border-top-1{border-top-width:1px!important;border-top-style:solid}.border-top-2{border-top-width:2px!important;border-top-style:solid}.border-top-3{border-top-width:3px!important;border-top-style:solid}.border-right-none{border-right-width:0px!important;border-right-style:none}.border-right-1{border-right-width:1px!important;border-right-style:solid}.border-right-2{border-right-width:2px!important;border-right-style:solid}.border-right-3{border-right-width:3px!important;border-right-style:solid}.border-left-none{border-left-width:0px!important;border-left-style:none}.border-left-1{border-left-width:1px!important;border-left-style:solid}.border-left-2{border-left-width:2px!important;border-left-style:solid}.border-left-3{border-left-width:3px!important;border-left-style:solid}.border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}@media screen and (min-width: 576px){.sm\\:border-none{border-width:0px!important;border-style:none}.sm\\:border-1{border-width:1px!important;border-style:solid}.sm\\:border-2{border-width:2px!important;border-style:solid}.sm\\:border-3{border-width:3px!important;border-style:solid}.sm\\:border-top-none{border-top-width:0px!important;border-top-style:none}.sm\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.sm\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.sm\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.sm\\:border-right-none{border-right-width:0px!important;border-right-style:none}.sm\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.sm\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.sm\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.sm\\:border-left-none{border-left-width:0px!important;border-left-style:none}.sm\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.sm\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.sm\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.sm\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.sm\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.sm\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.sm\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.sm\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.sm\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.sm\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.sm\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.sm\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.sm\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.sm\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.sm\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 768px){.md\\:border-none{border-width:0px!important;border-style:none}.md\\:border-1{border-width:1px!important;border-style:solid}.md\\:border-2{border-width:2px!important;border-style:solid}.md\\:border-3{border-width:3px!important;border-style:solid}.md\\:border-top-none{border-top-width:0px!important;border-top-style:none}.md\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.md\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.md\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.md\\:border-right-none{border-right-width:0px!important;border-right-style:none}.md\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.md\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.md\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.md\\:border-left-none{border-left-width:0px!important;border-left-style:none}.md\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.md\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.md\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.md\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.md\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.md\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.md\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.md\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.md\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.md\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.md\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.md\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.md\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.md\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.md\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 992px){.lg\\:border-none{border-width:0px!important;border-style:none}.lg\\:border-1{border-width:1px!important;border-style:solid}.lg\\:border-2{border-width:2px!important;border-style:solid}.lg\\:border-3{border-width:3px!important;border-style:solid}.lg\\:border-top-none{border-top-width:0px!important;border-top-style:none}.lg\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.lg\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.lg\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.lg\\:border-right-none{border-right-width:0px!important;border-right-style:none}.lg\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.lg\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.lg\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.lg\\:border-left-none{border-left-width:0px!important;border-left-style:none}.lg\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.lg\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.lg\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.lg\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.lg\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.lg\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.lg\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.lg\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.lg\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.lg\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.lg\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.lg\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.lg\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.lg\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.lg\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 1200px){.xl\\:border-none{border-width:0px!important;border-style:none}.xl\\:border-1{border-width:1px!important;border-style:solid}.xl\\:border-2{border-width:2px!important;border-style:solid}.xl\\:border-3{border-width:3px!important;border-style:solid}.xl\\:border-top-none{border-top-width:0px!important;border-top-style:none}.xl\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.xl\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.xl\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.xl\\:border-right-none{border-right-width:0px!important;border-right-style:none}.xl\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.xl\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.xl\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.xl\\:border-left-none{border-left-width:0px!important;border-left-style:none}.xl\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.xl\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.xl\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.xl\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.xl\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.xl\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.xl\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.xl\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.xl\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.xl\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.xl\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.xl\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.xl\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.xl\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.xl\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}.border-solid{border-style:solid!important}.border-dashed{border-style:dashed!important}.border-dotted{border-style:dotted!important}.border-double{border-style:double!important}@media screen and (min-width: 576px){.sm\\:border-solid{border-style:solid!important}.sm\\:border-dashed{border-style:dashed!important}.sm\\:border-dotted{border-style:dotted!important}.sm\\:border-double{border-style:double!important}}@media screen and (min-width: 768px){.md\\:border-solid{border-style:solid!important}.md\\:border-dashed{border-style:dashed!important}.md\\:border-dotted{border-style:dotted!important}.md\\:border-double{border-style:double!important}}@media screen and (min-width: 992px){.lg\\:border-solid{border-style:solid!important}.lg\\:border-dashed{border-style:dashed!important}.lg\\:border-dotted{border-style:dotted!important}.lg\\:border-double{border-style:double!important}}@media screen and (min-width: 1200px){.xl\\:border-solid{border-style:solid!important}.xl\\:border-dashed{border-style:dashed!important}.xl\\:border-dotted{border-style:dotted!important}.xl\\:border-double{border-style:double!important}}.border-noround{border-radius:0!important}.border-round{border-radius:var(--border-radius)!important}.border-round-xs{border-radius:.125rem!important}.border-round-sm{border-radius:.25rem!important}.border-round-md{border-radius:.375rem!important}.border-round-lg{border-radius:.5rem!important}.border-round-xl{border-radius:.75rem!important}.border-round-2xl{border-radius:1rem!important}.border-round-3xl{border-radius:1.5rem!important}.border-circle{border-radius:50%!important}@media screen and (min-width: 576px){.sm\\:border-noround{border-radius:0!important}.sm\\:border-round{border-radius:var(--border-radius)!important}.sm\\:border-round-xs{border-radius:.125rem!important}.sm\\:border-round-sm{border-radius:.25rem!important}.sm\\:border-round-md{border-radius:.375rem!important}.sm\\:border-round-lg{border-radius:.5rem!important}.sm\\:border-round-xl{border-radius:.75rem!important}.sm\\:border-round-2xl{border-radius:1rem!important}.sm\\:border-round-3xl{border-radius:1.5rem!important}.sm\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 768px){.md\\:border-noround{border-radius:0!important}.md\\:border-round{border-radius:var(--border-radius)!important}.md\\:border-round-xs{border-radius:.125rem!important}.md\\:border-round-sm{border-radius:.25rem!important}.md\\:border-round-md{border-radius:.375rem!important}.md\\:border-round-lg{border-radius:.5rem!important}.md\\:border-round-xl{border-radius:.75rem!important}.md\\:border-round-2xl{border-radius:1rem!important}.md\\:border-round-3xl{border-radius:1.5rem!important}.md\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 992px){.lg\\:border-noround{border-radius:0!important}.lg\\:border-round{border-radius:var(--border-radius)!important}.lg\\:border-round-xs{border-radius:.125rem!important}.lg\\:border-round-sm{border-radius:.25rem!important}.lg\\:border-round-md{border-radius:.375rem!important}.lg\\:border-round-lg{border-radius:.5rem!important}.lg\\:border-round-xl{border-radius:.75rem!important}.lg\\:border-round-2xl{border-radius:1rem!important}.lg\\:border-round-3xl{border-radius:1.5rem!important}.lg\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 1200px){.xl\\:border-noround{border-radius:0!important}.xl\\:border-round{border-radius:var(--border-radius)!important}.xl\\:border-round-xs{border-radius:.125rem!important}.xl\\:border-round-sm{border-radius:.25rem!important}.xl\\:border-round-md{border-radius:.375rem!important}.xl\\:border-round-lg{border-radius:.5rem!important}.xl\\:border-round-xl{border-radius:.75rem!important}.xl\\:border-round-2xl{border-radius:1rem!important}.xl\\:border-round-3xl{border-radius:1.5rem!important}.xl\\:border-circle{border-radius:50%!important}}.border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}@media screen and (min-width: 576px){.sm\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.sm\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.sm\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.sm\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.sm\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.sm\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.sm\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.sm\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.sm\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.sm\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.sm\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.sm\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.sm\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.sm\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.sm\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.sm\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.sm\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.sm\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.sm\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.sm\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.sm\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.sm\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.sm\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.sm\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.sm\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.sm\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.sm\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.sm\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.sm\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.sm\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.sm\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.sm\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.sm\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.sm\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.sm\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.sm\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.sm\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.sm\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.sm\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.sm\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 768px){.md\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.md\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.md\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.md\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.md\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.md\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.md\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.md\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.md\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.md\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.md\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.md\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.md\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.md\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.md\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.md\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.md\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.md\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.md\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.md\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.md\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.md\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.md\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.md\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.md\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.md\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.md\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.md\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.md\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.md\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.md\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.md\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.md\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.md\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.md\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.md\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.md\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.md\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.md\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.md\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 992px){.lg\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.lg\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.lg\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.lg\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.lg\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.lg\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.lg\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.lg\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.lg\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.lg\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.lg\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.lg\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.lg\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.lg\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.lg\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.lg\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.lg\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.lg\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.lg\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.lg\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.lg\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.lg\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.lg\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.lg\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.lg\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.lg\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.lg\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.lg\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.lg\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.lg\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.lg\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.lg\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.lg\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.lg\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.lg\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.lg\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.lg\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.lg\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.lg\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.lg\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 1200px){.xl\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.xl\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.xl\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.xl\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.xl\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.xl\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.xl\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.xl\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.xl\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.xl\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.xl\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.xl\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.xl\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.xl\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.xl\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.xl\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.xl\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.xl\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.xl\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.xl\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.xl\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.xl\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.xl\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.xl\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.xl\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.xl\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.xl\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.xl\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.xl\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.xl\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.xl\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.xl\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.xl\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.xl\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.xl\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.xl\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.xl\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.xl\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.xl\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.xl\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}.w-full{width:100%!important}.w-screen{width:100vw!important}.w-auto{width:auto!important}.w-1{width:8.3333%!important}.w-2{width:16.6667%!important}.w-3{width:25%!important}.w-4{width:33.3333%!important}.w-5{width:41.6667%!important}.w-6{width:50%!important}.w-7{width:58.3333%!important}.w-8{width:66.6667%!important}.w-9{width:75%!important}.w-10{width:83.3333%!important}.w-11{width:91.6667%!important}.w-12{width:100%!important}.w-min{width:min-content!important}.w-max{width:max-content!important}.w-fit{width:-moz-fit-content!important;width:fit-content!important}.w-1rem{width:1rem!important}.w-2rem{width:2rem!important}.w-3rem{width:3rem!important}.w-4rem{width:4rem!important}.w-5rem{width:5rem!important}.w-6rem{width:6rem!important}.w-7rem{width:7rem!important}.w-8rem{width:8rem!important}.w-9rem{width:9rem!important}.w-10rem{width:10rem!important}.w-11rem{width:11rem!important}.w-12rem{width:12rem!important}.w-13rem{width:13rem!important}.w-14rem{width:14rem!important}.w-15rem{width:15rem!important}.w-16rem{width:16rem!important}.w-17rem{width:17rem!important}.w-18rem{width:18rem!important}.w-19rem{width:19rem!important}.w-20rem{width:20rem!important}.w-21rem{width:21rem!important}.w-22rem{width:22rem!important}.w-23rem{width:23rem!important}.w-24rem{width:24rem!important}.w-25rem{width:25rem!important}.w-26rem{width:26rem!important}.w-27rem{width:27rem!important}.w-28rem{width:28rem!important}.w-29rem{width:29rem!important}.w-30rem{width:30rem!important}@media screen and (min-width: 576px){.sm\\:w-full{width:100%!important}.sm\\:w-screen{width:100vw!important}.sm\\:w-auto{width:auto!important}.sm\\:w-1{width:8.3333%!important}.sm\\:w-2{width:16.6667%!important}.sm\\:w-3{width:25%!important}.sm\\:w-4{width:33.3333%!important}.sm\\:w-5{width:41.6667%!important}.sm\\:w-6{width:50%!important}.sm\\:w-7{width:58.3333%!important}.sm\\:w-8{width:66.6667%!important}.sm\\:w-9{width:75%!important}.sm\\:w-10{width:83.3333%!important}.sm\\:w-11{width:91.6667%!important}.sm\\:w-12{width:100%!important}.sm\\:w-min{width:min-content!important}.sm\\:w-max{width:max-content!important}.sm\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.sm\\:w-1rem{width:1rem!important}.sm\\:w-2rem{width:2rem!important}.sm\\:w-3rem{width:3rem!important}.sm\\:w-4rem{width:4rem!important}.sm\\:w-5rem{width:5rem!important}.sm\\:w-6rem{width:6rem!important}.sm\\:w-7rem{width:7rem!important}.sm\\:w-8rem{width:8rem!important}.sm\\:w-9rem{width:9rem!important}.sm\\:w-10rem{width:10rem!important}.sm\\:w-11rem{width:11rem!important}.sm\\:w-12rem{width:12rem!important}.sm\\:w-13rem{width:13rem!important}.sm\\:w-14rem{width:14rem!important}.sm\\:w-15rem{width:15rem!important}.sm\\:w-16rem{width:16rem!important}.sm\\:w-17rem{width:17rem!important}.sm\\:w-18rem{width:18rem!important}.sm\\:w-19rem{width:19rem!important}.sm\\:w-20rem{width:20rem!important}.sm\\:w-21rem{width:21rem!important}.sm\\:w-22rem{width:22rem!important}.sm\\:w-23rem{width:23rem!important}.sm\\:w-24rem{width:24rem!important}.sm\\:w-25rem{width:25rem!important}.sm\\:w-26rem{width:26rem!important}.sm\\:w-27rem{width:27rem!important}.sm\\:w-28rem{width:28rem!important}.sm\\:w-29rem{width:29rem!important}.sm\\:w-30rem{width:30rem!important}}@media screen and (min-width: 768px){.md\\:w-full{width:100%!important}.md\\:w-screen{width:100vw!important}.md\\:w-auto{width:auto!important}.md\\:w-1{width:8.3333%!important}.md\\:w-2{width:16.6667%!important}.md\\:w-3{width:25%!important}.md\\:w-4{width:33.3333%!important}.md\\:w-5{width:41.6667%!important}.md\\:w-6{width:50%!important}.md\\:w-7{width:58.3333%!important}.md\\:w-8{width:66.6667%!important}.md\\:w-9{width:75%!important}.md\\:w-10{width:83.3333%!important}.md\\:w-11{width:91.6667%!important}.md\\:w-12{width:100%!important}.md\\:w-min{width:min-content!important}.md\\:w-max{width:max-content!important}.md\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.md\\:w-1rem{width:1rem!important}.md\\:w-2rem{width:2rem!important}.md\\:w-3rem{width:3rem!important}.md\\:w-4rem{width:4rem!important}.md\\:w-5rem{width:5rem!important}.md\\:w-6rem{width:6rem!important}.md\\:w-7rem{width:7rem!important}.md\\:w-8rem{width:8rem!important}.md\\:w-9rem{width:9rem!important}.md\\:w-10rem{width:10rem!important}.md\\:w-11rem{width:11rem!important}.md\\:w-12rem{width:12rem!important}.md\\:w-13rem{width:13rem!important}.md\\:w-14rem{width:14rem!important}.md\\:w-15rem{width:15rem!important}.md\\:w-16rem{width:16rem!important}.md\\:w-17rem{width:17rem!important}.md\\:w-18rem{width:18rem!important}.md\\:w-19rem{width:19rem!important}.md\\:w-20rem{width:20rem!important}.md\\:w-21rem{width:21rem!important}.md\\:w-22rem{width:22rem!important}.md\\:w-23rem{width:23rem!important}.md\\:w-24rem{width:24rem!important}.md\\:w-25rem{width:25rem!important}.md\\:w-26rem{width:26rem!important}.md\\:w-27rem{width:27rem!important}.md\\:w-28rem{width:28rem!important}.md\\:w-29rem{width:29rem!important}.md\\:w-30rem{width:30rem!important}}@media screen and (min-width: 992px){.lg\\:w-full{width:100%!important}.lg\\:w-screen{width:100vw!important}.lg\\:w-auto{width:auto!important}.lg\\:w-1{width:8.3333%!important}.lg\\:w-2{width:16.6667%!important}.lg\\:w-3{width:25%!important}.lg\\:w-4{width:33.3333%!important}.lg\\:w-5{width:41.6667%!important}.lg\\:w-6{width:50%!important}.lg\\:w-7{width:58.3333%!important}.lg\\:w-8{width:66.6667%!important}.lg\\:w-9{width:75%!important}.lg\\:w-10{width:83.3333%!important}.lg\\:w-11{width:91.6667%!important}.lg\\:w-12{width:100%!important}.lg\\:w-min{width:min-content!important}.lg\\:w-max{width:max-content!important}.lg\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.lg\\:w-1rem{width:1rem!important}.lg\\:w-2rem{width:2rem!important}.lg\\:w-3rem{width:3rem!important}.lg\\:w-4rem{width:4rem!important}.lg\\:w-5rem{width:5rem!important}.lg\\:w-6rem{width:6rem!important}.lg\\:w-7rem{width:7rem!important}.lg\\:w-8rem{width:8rem!important}.lg\\:w-9rem{width:9rem!important}.lg\\:w-10rem{width:10rem!important}.lg\\:w-11rem{width:11rem!important}.lg\\:w-12rem{width:12rem!important}.lg\\:w-13rem{width:13rem!important}.lg\\:w-14rem{width:14rem!important}.lg\\:w-15rem{width:15rem!important}.lg\\:w-16rem{width:16rem!important}.lg\\:w-17rem{width:17rem!important}.lg\\:w-18rem{width:18rem!important}.lg\\:w-19rem{width:19rem!important}.lg\\:w-20rem{width:20rem!important}.lg\\:w-21rem{width:21rem!important}.lg\\:w-22rem{width:22rem!important}.lg\\:w-23rem{width:23rem!important}.lg\\:w-24rem{width:24rem!important}.lg\\:w-25rem{width:25rem!important}.lg\\:w-26rem{width:26rem!important}.lg\\:w-27rem{width:27rem!important}.lg\\:w-28rem{width:28rem!important}.lg\\:w-29rem{width:29rem!important}.lg\\:w-30rem{width:30rem!important}}@media screen and (min-width: 1200px){.xl\\:w-full{width:100%!important}.xl\\:w-screen{width:100vw!important}.xl\\:w-auto{width:auto!important}.xl\\:w-1{width:8.3333%!important}.xl\\:w-2{width:16.6667%!important}.xl\\:w-3{width:25%!important}.xl\\:w-4{width:33.3333%!important}.xl\\:w-5{width:41.6667%!important}.xl\\:w-6{width:50%!important}.xl\\:w-7{width:58.3333%!important}.xl\\:w-8{width:66.6667%!important}.xl\\:w-9{width:75%!important}.xl\\:w-10{width:83.3333%!important}.xl\\:w-11{width:91.6667%!important}.xl\\:w-12{width:100%!important}.xl\\:w-min{width:min-content!important}.xl\\:w-max{width:max-content!important}.xl\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.xl\\:w-1rem{width:1rem!important}.xl\\:w-2rem{width:2rem!important}.xl\\:w-3rem{width:3rem!important}.xl\\:w-4rem{width:4rem!important}.xl\\:w-5rem{width:5rem!important}.xl\\:w-6rem{width:6rem!important}.xl\\:w-7rem{width:7rem!important}.xl\\:w-8rem{width:8rem!important}.xl\\:w-9rem{width:9rem!important}.xl\\:w-10rem{width:10rem!important}.xl\\:w-11rem{width:11rem!important}.xl\\:w-12rem{width:12rem!important}.xl\\:w-13rem{width:13rem!important}.xl\\:w-14rem{width:14rem!important}.xl\\:w-15rem{width:15rem!important}.xl\\:w-16rem{width:16rem!important}.xl\\:w-17rem{width:17rem!important}.xl\\:w-18rem{width:18rem!important}.xl\\:w-19rem{width:19rem!important}.xl\\:w-20rem{width:20rem!important}.xl\\:w-21rem{width:21rem!important}.xl\\:w-22rem{width:22rem!important}.xl\\:w-23rem{width:23rem!important}.xl\\:w-24rem{width:24rem!important}.xl\\:w-25rem{width:25rem!important}.xl\\:w-26rem{width:26rem!important}.xl\\:w-27rem{width:27rem!important}.xl\\:w-28rem{width:28rem!important}.xl\\:w-29rem{width:29rem!important}.xl\\:w-30rem{width:30rem!important}}.h-full{height:100%!important}.h-screen{height:100vh!important}.h-auto{height:auto!important}.h-min{height:min-content!important}.h-max{height:max-content!important}.h-fit{height:-moz-fit-content!important;height:fit-content!important}.h-1rem{height:1rem!important}.h-2rem{height:2rem!important}.h-3rem{height:3rem!important}.h-4rem{height:4rem!important}.h-5rem{height:5rem!important}.h-6rem{height:6rem!important}.h-7rem{height:7rem!important}.h-8rem{height:8rem!important}.h-9rem{height:9rem!important}.h-10rem{height:10rem!important}.h-11rem{height:11rem!important}.h-12rem{height:12rem!important}.h-13rem{height:13rem!important}.h-14rem{height:14rem!important}.h-15rem{height:15rem!important}.h-16rem{height:16rem!important}.h-17rem{height:17rem!important}.h-18rem{height:18rem!important}.h-19rem{height:19rem!important}.h-20rem{height:20rem!important}.h-21rem{height:21rem!important}.h-22rem{height:22rem!important}.h-23rem{height:23rem!important}.h-24rem{height:24rem!important}.h-25rem{height:25rem!important}.h-26rem{height:26rem!important}.h-27rem{height:27rem!important}.h-28rem{height:28rem!important}.h-29rem{height:29rem!important}.h-30rem{height:30rem!important}@media screen and (min-width: 576px){.sm\\:h-full{height:100%!important}.sm\\:h-screen{height:100vh!important}.sm\\:h-auto{height:auto!important}.sm\\:h-min{height:min-content!important}.sm\\:h-max{height:max-content!important}.sm\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.sm\\:h-1rem{height:1rem!important}.sm\\:h-2rem{height:2rem!important}.sm\\:h-3rem{height:3rem!important}.sm\\:h-4rem{height:4rem!important}.sm\\:h-5rem{height:5rem!important}.sm\\:h-6rem{height:6rem!important}.sm\\:h-7rem{height:7rem!important}.sm\\:h-8rem{height:8rem!important}.sm\\:h-9rem{height:9rem!important}.sm\\:h-10rem{height:10rem!important}.sm\\:h-11rem{height:11rem!important}.sm\\:h-12rem{height:12rem!important}.sm\\:h-13rem{height:13rem!important}.sm\\:h-14rem{height:14rem!important}.sm\\:h-15rem{height:15rem!important}.sm\\:h-16rem{height:16rem!important}.sm\\:h-17rem{height:17rem!important}.sm\\:h-18rem{height:18rem!important}.sm\\:h-19rem{height:19rem!important}.sm\\:h-20rem{height:20rem!important}.sm\\:h-21rem{height:21rem!important}.sm\\:h-22rem{height:22rem!important}.sm\\:h-23rem{height:23rem!important}.sm\\:h-24rem{height:24rem!important}.sm\\:h-25rem{height:25rem!important}.sm\\:h-26rem{height:26rem!important}.sm\\:h-27rem{height:27rem!important}.sm\\:h-28rem{height:28rem!important}.sm\\:h-29rem{height:29rem!important}.sm\\:h-30rem{height:30rem!important}}@media screen and (min-width: 768px){.md\\:h-full{height:100%!important}.md\\:h-screen{height:100vh!important}.md\\:h-auto{height:auto!important}.md\\:h-min{height:min-content!important}.md\\:h-max{height:max-content!important}.md\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.md\\:h-1rem{height:1rem!important}.md\\:h-2rem{height:2rem!important}.md\\:h-3rem{height:3rem!important}.md\\:h-4rem{height:4rem!important}.md\\:h-5rem{height:5rem!important}.md\\:h-6rem{height:6rem!important}.md\\:h-7rem{height:7rem!important}.md\\:h-8rem{height:8rem!important}.md\\:h-9rem{height:9rem!important}.md\\:h-10rem{height:10rem!important}.md\\:h-11rem{height:11rem!important}.md\\:h-12rem{height:12rem!important}.md\\:h-13rem{height:13rem!important}.md\\:h-14rem{height:14rem!important}.md\\:h-15rem{height:15rem!important}.md\\:h-16rem{height:16rem!important}.md\\:h-17rem{height:17rem!important}.md\\:h-18rem{height:18rem!important}.md\\:h-19rem{height:19rem!important}.md\\:h-20rem{height:20rem!important}.md\\:h-21rem{height:21rem!important}.md\\:h-22rem{height:22rem!important}.md\\:h-23rem{height:23rem!important}.md\\:h-24rem{height:24rem!important}.md\\:h-25rem{height:25rem!important}.md\\:h-26rem{height:26rem!important}.md\\:h-27rem{height:27rem!important}.md\\:h-28rem{height:28rem!important}.md\\:h-29rem{height:29rem!important}.md\\:h-30rem{height:30rem!important}}@media screen and (min-width: 992px){.lg\\:h-full{height:100%!important}.lg\\:h-screen{height:100vh!important}.lg\\:h-auto{height:auto!important}.lg\\:h-min{height:min-content!important}.lg\\:h-max{height:max-content!important}.lg\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.lg\\:h-1rem{height:1rem!important}.lg\\:h-2rem{height:2rem!important}.lg\\:h-3rem{height:3rem!important}.lg\\:h-4rem{height:4rem!important}.lg\\:h-5rem{height:5rem!important}.lg\\:h-6rem{height:6rem!important}.lg\\:h-7rem{height:7rem!important}.lg\\:h-8rem{height:8rem!important}.lg\\:h-9rem{height:9rem!important}.lg\\:h-10rem{height:10rem!important}.lg\\:h-11rem{height:11rem!important}.lg\\:h-12rem{height:12rem!important}.lg\\:h-13rem{height:13rem!important}.lg\\:h-14rem{height:14rem!important}.lg\\:h-15rem{height:15rem!important}.lg\\:h-16rem{height:16rem!important}.lg\\:h-17rem{height:17rem!important}.lg\\:h-18rem{height:18rem!important}.lg\\:h-19rem{height:19rem!important}.lg\\:h-20rem{height:20rem!important}.lg\\:h-21rem{height:21rem!important}.lg\\:h-22rem{height:22rem!important}.lg\\:h-23rem{height:23rem!important}.lg\\:h-24rem{height:24rem!important}.lg\\:h-25rem{height:25rem!important}.lg\\:h-26rem{height:26rem!important}.lg\\:h-27rem{height:27rem!important}.lg\\:h-28rem{height:28rem!important}.lg\\:h-29rem{height:29rem!important}.lg\\:h-30rem{height:30rem!important}}@media screen and (min-width: 1200px){.xl\\:h-full{height:100%!important}.xl\\:h-screen{height:100vh!important}.xl\\:h-auto{height:auto!important}.xl\\:h-min{height:min-content!important}.xl\\:h-max{height:max-content!important}.xl\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.xl\\:h-1rem{height:1rem!important}.xl\\:h-2rem{height:2rem!important}.xl\\:h-3rem{height:3rem!important}.xl\\:h-4rem{height:4rem!important}.xl\\:h-5rem{height:5rem!important}.xl\\:h-6rem{height:6rem!important}.xl\\:h-7rem{height:7rem!important}.xl\\:h-8rem{height:8rem!important}.xl\\:h-9rem{height:9rem!important}.xl\\:h-10rem{height:10rem!important}.xl\\:h-11rem{height:11rem!important}.xl\\:h-12rem{height:12rem!important}.xl\\:h-13rem{height:13rem!important}.xl\\:h-14rem{height:14rem!important}.xl\\:h-15rem{height:15rem!important}.xl\\:h-16rem{height:16rem!important}.xl\\:h-17rem{height:17rem!important}.xl\\:h-18rem{height:18rem!important}.xl\\:h-19rem{height:19rem!important}.xl\\:h-20rem{height:20rem!important}.xl\\:h-21rem{height:21rem!important}.xl\\:h-22rem{height:22rem!important}.xl\\:h-23rem{height:23rem!important}.xl\\:h-24rem{height:24rem!important}.xl\\:h-25rem{height:25rem!important}.xl\\:h-26rem{height:26rem!important}.xl\\:h-27rem{height:27rem!important}.xl\\:h-28rem{height:28rem!important}.xl\\:h-29rem{height:29rem!important}.xl\\:h-30rem{height:30rem!important}}.min-w-0{min-width:0px!important}.min-w-full{min-width:100%!important}.min-w-screen{min-width:100vw!important}.min-w-min{min-width:min-content!important}.min-w-max{min-width:max-content!important}@media screen and (min-width: 576px){.sm\\:min-w-0{min-width:0px!important}.sm\\:min-w-full{min-width:100%!important}.sm\\:min-w-screen{min-width:100vw!important}.sm\\:min-w-min{min-width:min-content!important}.sm\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 768px){.md\\:min-w-0{min-width:0px!important}.md\\:min-w-full{min-width:100%!important}.md\\:min-w-screen{min-width:100vw!important}.md\\:min-w-min{min-width:min-content!important}.md\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 992px){.lg\\:min-w-0{min-width:0px!important}.lg\\:min-w-full{min-width:100%!important}.lg\\:min-w-screen{min-width:100vw!important}.lg\\:min-w-min{min-width:min-content!important}.lg\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 1200px){.xl\\:min-w-0{min-width:0px!important}.xl\\:min-w-full{min-width:100%!important}.xl\\:min-w-screen{min-width:100vw!important}.xl\\:min-w-min{min-width:min-content!important}.xl\\:min-w-max{min-width:max-content!important}}.max-w-0{max-width:0px!important}.max-w-full{max-width:100%!important}.max-w-screen{max-width:100vw!important}.max-w-min{max-width:min-content!important}.max-w-max{max-width:max-content!important}.max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.max-w-1rem{max-width:1rem!important}.max-w-2rem{max-width:2rem!important}.max-w-3rem{max-width:3rem!important}.max-w-4rem{max-width:4rem!important}.max-w-5rem{max-width:5rem!important}.max-w-6rem{max-width:6rem!important}.max-w-7rem{max-width:7rem!important}.max-w-8rem{max-width:8rem!important}.max-w-9rem{max-width:9rem!important}.max-w-10rem{max-width:10rem!important}.max-w-11rem{max-width:11rem!important}.max-w-12rem{max-width:12rem!important}.max-w-13rem{max-width:13rem!important}.max-w-14rem{max-width:14rem!important}.max-w-15rem{max-width:15rem!important}.max-w-16rem{max-width:16rem!important}.max-w-17rem{max-width:17rem!important}.max-w-18rem{max-width:18rem!important}.max-w-19rem{max-width:19rem!important}.max-w-20rem{max-width:20rem!important}.max-w-21rem{max-width:21rem!important}.max-w-22rem{max-width:22rem!important}.max-w-23rem{max-width:23rem!important}.max-w-24rem{max-width:24rem!important}.max-w-25rem{max-width:25rem!important}.max-w-26rem{max-width:26rem!important}.max-w-27rem{max-width:27rem!important}.max-w-28rem{max-width:28rem!important}.max-w-29rem{max-width:29rem!important}.max-w-30rem{max-width:30rem!important}@media screen and (min-width: 576px){.sm\\:max-w-0{max-width:0px!important}.sm\\:max-w-full{max-width:100%!important}.sm\\:max-w-screen{max-width:100vw!important}.sm\\:max-w-min{max-width:min-content!important}.sm\\:max-w-max{max-width:max-content!important}.sm\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.sm\\:max-w-1rem{max-width:1rem!important}.sm\\:max-w-2rem{max-width:2rem!important}.sm\\:max-w-3rem{max-width:3rem!important}.sm\\:max-w-4rem{max-width:4rem!important}.sm\\:max-w-5rem{max-width:5rem!important}.sm\\:max-w-6rem{max-width:6rem!important}.sm\\:max-w-7rem{max-width:7rem!important}.sm\\:max-w-8rem{max-width:8rem!important}.sm\\:max-w-9rem{max-width:9rem!important}.sm\\:max-w-10rem{max-width:10rem!important}.sm\\:max-w-11rem{max-width:11rem!important}.sm\\:max-w-12rem{max-width:12rem!important}.sm\\:max-w-13rem{max-width:13rem!important}.sm\\:max-w-14rem{max-width:14rem!important}.sm\\:max-w-15rem{max-width:15rem!important}.sm\\:max-w-16rem{max-width:16rem!important}.sm\\:max-w-17rem{max-width:17rem!important}.sm\\:max-w-18rem{max-width:18rem!important}.sm\\:max-w-19rem{max-width:19rem!important}.sm\\:max-w-20rem{max-width:20rem!important}.sm\\:max-w-21rem{max-width:21rem!important}.sm\\:max-w-22rem{max-width:22rem!important}.sm\\:max-w-23rem{max-width:23rem!important}.sm\\:max-w-24rem{max-width:24rem!important}.sm\\:max-w-25rem{max-width:25rem!important}.sm\\:max-w-26rem{max-width:26rem!important}.sm\\:max-w-27rem{max-width:27rem!important}.sm\\:max-w-28rem{max-width:28rem!important}.sm\\:max-w-29rem{max-width:29rem!important}.sm\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 768px){.md\\:max-w-0{max-width:0px!important}.md\\:max-w-full{max-width:100%!important}.md\\:max-w-screen{max-width:100vw!important}.md\\:max-w-min{max-width:min-content!important}.md\\:max-w-max{max-width:max-content!important}.md\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.md\\:max-w-1rem{max-width:1rem!important}.md\\:max-w-2rem{max-width:2rem!important}.md\\:max-w-3rem{max-width:3rem!important}.md\\:max-w-4rem{max-width:4rem!important}.md\\:max-w-5rem{max-width:5rem!important}.md\\:max-w-6rem{max-width:6rem!important}.md\\:max-w-7rem{max-width:7rem!important}.md\\:max-w-8rem{max-width:8rem!important}.md\\:max-w-9rem{max-width:9rem!important}.md\\:max-w-10rem{max-width:10rem!important}.md\\:max-w-11rem{max-width:11rem!important}.md\\:max-w-12rem{max-width:12rem!important}.md\\:max-w-13rem{max-width:13rem!important}.md\\:max-w-14rem{max-width:14rem!important}.md\\:max-w-15rem{max-width:15rem!important}.md\\:max-w-16rem{max-width:16rem!important}.md\\:max-w-17rem{max-width:17rem!important}.md\\:max-w-18rem{max-width:18rem!important}.md\\:max-w-19rem{max-width:19rem!important}.md\\:max-w-20rem{max-width:20rem!important}.md\\:max-w-21rem{max-width:21rem!important}.md\\:max-w-22rem{max-width:22rem!important}.md\\:max-w-23rem{max-width:23rem!important}.md\\:max-w-24rem{max-width:24rem!important}.md\\:max-w-25rem{max-width:25rem!important}.md\\:max-w-26rem{max-width:26rem!important}.md\\:max-w-27rem{max-width:27rem!important}.md\\:max-w-28rem{max-width:28rem!important}.md\\:max-w-29rem{max-width:29rem!important}.md\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 992px){.lg\\:max-w-0{max-width:0px!important}.lg\\:max-w-full{max-width:100%!important}.lg\\:max-w-screen{max-width:100vw!important}.lg\\:max-w-min{max-width:min-content!important}.lg\\:max-w-max{max-width:max-content!important}.lg\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.lg\\:max-w-1rem{max-width:1rem!important}.lg\\:max-w-2rem{max-width:2rem!important}.lg\\:max-w-3rem{max-width:3rem!important}.lg\\:max-w-4rem{max-width:4rem!important}.lg\\:max-w-5rem{max-width:5rem!important}.lg\\:max-w-6rem{max-width:6rem!important}.lg\\:max-w-7rem{max-width:7rem!important}.lg\\:max-w-8rem{max-width:8rem!important}.lg\\:max-w-9rem{max-width:9rem!important}.lg\\:max-w-10rem{max-width:10rem!important}.lg\\:max-w-11rem{max-width:11rem!important}.lg\\:max-w-12rem{max-width:12rem!important}.lg\\:max-w-13rem{max-width:13rem!important}.lg\\:max-w-14rem{max-width:14rem!important}.lg\\:max-w-15rem{max-width:15rem!important}.lg\\:max-w-16rem{max-width:16rem!important}.lg\\:max-w-17rem{max-width:17rem!important}.lg\\:max-w-18rem{max-width:18rem!important}.lg\\:max-w-19rem{max-width:19rem!important}.lg\\:max-w-20rem{max-width:20rem!important}.lg\\:max-w-21rem{max-width:21rem!important}.lg\\:max-w-22rem{max-width:22rem!important}.lg\\:max-w-23rem{max-width:23rem!important}.lg\\:max-w-24rem{max-width:24rem!important}.lg\\:max-w-25rem{max-width:25rem!important}.lg\\:max-w-26rem{max-width:26rem!important}.lg\\:max-w-27rem{max-width:27rem!important}.lg\\:max-w-28rem{max-width:28rem!important}.lg\\:max-w-29rem{max-width:29rem!important}.lg\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 1200px){.xl\\:max-w-0{max-width:0px!important}.xl\\:max-w-full{max-width:100%!important}.xl\\:max-w-screen{max-width:100vw!important}.xl\\:max-w-min{max-width:min-content!important}.xl\\:max-w-max{max-width:max-content!important}.xl\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.xl\\:max-w-1rem{max-width:1rem!important}.xl\\:max-w-2rem{max-width:2rem!important}.xl\\:max-w-3rem{max-width:3rem!important}.xl\\:max-w-4rem{max-width:4rem!important}.xl\\:max-w-5rem{max-width:5rem!important}.xl\\:max-w-6rem{max-width:6rem!important}.xl\\:max-w-7rem{max-width:7rem!important}.xl\\:max-w-8rem{max-width:8rem!important}.xl\\:max-w-9rem{max-width:9rem!important}.xl\\:max-w-10rem{max-width:10rem!important}.xl\\:max-w-11rem{max-width:11rem!important}.xl\\:max-w-12rem{max-width:12rem!important}.xl\\:max-w-13rem{max-width:13rem!important}.xl\\:max-w-14rem{max-width:14rem!important}.xl\\:max-w-15rem{max-width:15rem!important}.xl\\:max-w-16rem{max-width:16rem!important}.xl\\:max-w-17rem{max-width:17rem!important}.xl\\:max-w-18rem{max-width:18rem!important}.xl\\:max-w-19rem{max-width:19rem!important}.xl\\:max-w-20rem{max-width:20rem!important}.xl\\:max-w-21rem{max-width:21rem!important}.xl\\:max-w-22rem{max-width:22rem!important}.xl\\:max-w-23rem{max-width:23rem!important}.xl\\:max-w-24rem{max-width:24rem!important}.xl\\:max-w-25rem{max-width:25rem!important}.xl\\:max-w-26rem{max-width:26rem!important}.xl\\:max-w-27rem{max-width:27rem!important}.xl\\:max-w-28rem{max-width:28rem!important}.xl\\:max-w-29rem{max-width:29rem!important}.xl\\:max-w-30rem{max-width:30rem!important}}.min-h-0{min-height:0px!important}.min-h-full{min-height:100%!important}.min-h-screen{min-height:100vh!important}@media screen and (min-width: 576px){.sm\\:min-h-0{min-height:0px!important}.sm\\:min-h-full{min-height:100%!important}.sm\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 768px){.md\\:min-h-0{min-height:0px!important}.md\\:min-h-full{min-height:100%!important}.md\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 992px){.lg\\:min-h-0{min-height:0px!important}.lg\\:min-h-full{min-height:100%!important}.lg\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 1200px){.xl\\:min-h-0{min-height:0px!important}.xl\\:min-h-full{min-height:100%!important}.xl\\:min-h-screen{min-height:100vh!important}}.max-h-0{max-height:0px!important}.max-h-full{max-height:100%!important}.max-h-screen{max-height:100vh!important}.max-h-min{max-height:min-content!important}.max-h-max{max-height:max-content!important}.max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.max-h-1rem{max-height:1rem!important}.max-h-2rem{max-height:2rem!important}.max-h-3rem{max-height:3rem!important}.max-h-4rem{max-height:4rem!important}.max-h-5rem{max-height:5rem!important}.max-h-6rem{max-height:6rem!important}.max-h-7rem{max-height:7rem!important}.max-h-8rem{max-height:8rem!important}.max-h-9rem{max-height:9rem!important}.max-h-10rem{max-height:10rem!important}.max-h-11rem{max-height:11rem!important}.max-h-12rem{max-height:12rem!important}.max-h-13rem{max-height:13rem!important}.max-h-14rem{max-height:14rem!important}.max-h-15rem{max-height:15rem!important}.max-h-16rem{max-height:16rem!important}.max-h-17rem{max-height:17rem!important}.max-h-18rem{max-height:18rem!important}.max-h-19rem{max-height:19rem!important}.max-h-20rem{max-height:20rem!important}.max-h-21rem{max-height:21rem!important}.max-h-22rem{max-height:22rem!important}.max-h-23rem{max-height:23rem!important}.max-h-24rem{max-height:24rem!important}.max-h-25rem{max-height:25rem!important}.max-h-26rem{max-height:26rem!important}.max-h-27rem{max-height:27rem!important}.max-h-28rem{max-height:28rem!important}.max-h-29rem{max-height:29rem!important}.max-h-30rem{max-height:30rem!important}@media screen and (min-width: 576px){.sm\\:max-h-0{max-height:0px!important}.sm\\:max-h-full{max-height:100%!important}.sm\\:max-h-screen{max-height:100vh!important}.sm\\:max-h-min{max-height:min-content!important}.sm\\:max-h-max{max-height:max-content!important}.sm\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.sm\\:max-h-1rem{max-height:1rem!important}.sm\\:max-h-2rem{max-height:2rem!important}.sm\\:max-h-3rem{max-height:3rem!important}.sm\\:max-h-4rem{max-height:4rem!important}.sm\\:max-h-5rem{max-height:5rem!important}.sm\\:max-h-6rem{max-height:6rem!important}.sm\\:max-h-7rem{max-height:7rem!important}.sm\\:max-h-8rem{max-height:8rem!important}.sm\\:max-h-9rem{max-height:9rem!important}.sm\\:max-h-10rem{max-height:10rem!important}.sm\\:max-h-11rem{max-height:11rem!important}.sm\\:max-h-12rem{max-height:12rem!important}.sm\\:max-h-13rem{max-height:13rem!important}.sm\\:max-h-14rem{max-height:14rem!important}.sm\\:max-h-15rem{max-height:15rem!important}.sm\\:max-h-16rem{max-height:16rem!important}.sm\\:max-h-17rem{max-height:17rem!important}.sm\\:max-h-18rem{max-height:18rem!important}.sm\\:max-h-19rem{max-height:19rem!important}.sm\\:max-h-20rem{max-height:20rem!important}.sm\\:max-h-21rem{max-height:21rem!important}.sm\\:max-h-22rem{max-height:22rem!important}.sm\\:max-h-23rem{max-height:23rem!important}.sm\\:max-h-24rem{max-height:24rem!important}.sm\\:max-h-25rem{max-height:25rem!important}.sm\\:max-h-26rem{max-height:26rem!important}.sm\\:max-h-27rem{max-height:27rem!important}.sm\\:max-h-28rem{max-height:28rem!important}.sm\\:max-h-29rem{max-height:29rem!important}.sm\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 768px){.md\\:max-h-0{max-height:0px!important}.md\\:max-h-full{max-height:100%!important}.md\\:max-h-screen{max-height:100vh!important}.md\\:max-h-min{max-height:min-content!important}.md\\:max-h-max{max-height:max-content!important}.md\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.md\\:max-h-1rem{max-height:1rem!important}.md\\:max-h-2rem{max-height:2rem!important}.md\\:max-h-3rem{max-height:3rem!important}.md\\:max-h-4rem{max-height:4rem!important}.md\\:max-h-5rem{max-height:5rem!important}.md\\:max-h-6rem{max-height:6rem!important}.md\\:max-h-7rem{max-height:7rem!important}.md\\:max-h-8rem{max-height:8rem!important}.md\\:max-h-9rem{max-height:9rem!important}.md\\:max-h-10rem{max-height:10rem!important}.md\\:max-h-11rem{max-height:11rem!important}.md\\:max-h-12rem{max-height:12rem!important}.md\\:max-h-13rem{max-height:13rem!important}.md\\:max-h-14rem{max-height:14rem!important}.md\\:max-h-15rem{max-height:15rem!important}.md\\:max-h-16rem{max-height:16rem!important}.md\\:max-h-17rem{max-height:17rem!important}.md\\:max-h-18rem{max-height:18rem!important}.md\\:max-h-19rem{max-height:19rem!important}.md\\:max-h-20rem{max-height:20rem!important}.md\\:max-h-21rem{max-height:21rem!important}.md\\:max-h-22rem{max-height:22rem!important}.md\\:max-h-23rem{max-height:23rem!important}.md\\:max-h-24rem{max-height:24rem!important}.md\\:max-h-25rem{max-height:25rem!important}.md\\:max-h-26rem{max-height:26rem!important}.md\\:max-h-27rem{max-height:27rem!important}.md\\:max-h-28rem{max-height:28rem!important}.md\\:max-h-29rem{max-height:29rem!important}.md\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 992px){.lg\\:max-h-0{max-height:0px!important}.lg\\:max-h-full{max-height:100%!important}.lg\\:max-h-screen{max-height:100vh!important}.lg\\:max-h-min{max-height:min-content!important}.lg\\:max-h-max{max-height:max-content!important}.lg\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.lg\\:max-h-1rem{max-height:1rem!important}.lg\\:max-h-2rem{max-height:2rem!important}.lg\\:max-h-3rem{max-height:3rem!important}.lg\\:max-h-4rem{max-height:4rem!important}.lg\\:max-h-5rem{max-height:5rem!important}.lg\\:max-h-6rem{max-height:6rem!important}.lg\\:max-h-7rem{max-height:7rem!important}.lg\\:max-h-8rem{max-height:8rem!important}.lg\\:max-h-9rem{max-height:9rem!important}.lg\\:max-h-10rem{max-height:10rem!important}.lg\\:max-h-11rem{max-height:11rem!important}.lg\\:max-h-12rem{max-height:12rem!important}.lg\\:max-h-13rem{max-height:13rem!important}.lg\\:max-h-14rem{max-height:14rem!important}.lg\\:max-h-15rem{max-height:15rem!important}.lg\\:max-h-16rem{max-height:16rem!important}.lg\\:max-h-17rem{max-height:17rem!important}.lg\\:max-h-18rem{max-height:18rem!important}.lg\\:max-h-19rem{max-height:19rem!important}.lg\\:max-h-20rem{max-height:20rem!important}.lg\\:max-h-21rem{max-height:21rem!important}.lg\\:max-h-22rem{max-height:22rem!important}.lg\\:max-h-23rem{max-height:23rem!important}.lg\\:max-h-24rem{max-height:24rem!important}.lg\\:max-h-25rem{max-height:25rem!important}.lg\\:max-h-26rem{max-height:26rem!important}.lg\\:max-h-27rem{max-height:27rem!important}.lg\\:max-h-28rem{max-height:28rem!important}.lg\\:max-h-29rem{max-height:29rem!important}.lg\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 1200px){.xl\\:max-h-0{max-height:0px!important}.xl\\:max-h-full{max-height:100%!important}.xl\\:max-h-screen{max-height:100vh!important}.xl\\:max-h-min{max-height:min-content!important}.xl\\:max-h-max{max-height:max-content!important}.xl\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.xl\\:max-h-1rem{max-height:1rem!important}.xl\\:max-h-2rem{max-height:2rem!important}.xl\\:max-h-3rem{max-height:3rem!important}.xl\\:max-h-4rem{max-height:4rem!important}.xl\\:max-h-5rem{max-height:5rem!important}.xl\\:max-h-6rem{max-height:6rem!important}.xl\\:max-h-7rem{max-height:7rem!important}.xl\\:max-h-8rem{max-height:8rem!important}.xl\\:max-h-9rem{max-height:9rem!important}.xl\\:max-h-10rem{max-height:10rem!important}.xl\\:max-h-11rem{max-height:11rem!important}.xl\\:max-h-12rem{max-height:12rem!important}.xl\\:max-h-13rem{max-height:13rem!important}.xl\\:max-h-14rem{max-height:14rem!important}.xl\\:max-h-15rem{max-height:15rem!important}.xl\\:max-h-16rem{max-height:16rem!important}.xl\\:max-h-17rem{max-height:17rem!important}.xl\\:max-h-18rem{max-height:18rem!important}.xl\\:max-h-19rem{max-height:19rem!important}.xl\\:max-h-20rem{max-height:20rem!important}.xl\\:max-h-21rem{max-height:21rem!important}.xl\\:max-h-22rem{max-height:22rem!important}.xl\\:max-h-23rem{max-height:23rem!important}.xl\\:max-h-24rem{max-height:24rem!important}.xl\\:max-h-25rem{max-height:25rem!important}.xl\\:max-h-26rem{max-height:26rem!important}.xl\\:max-h-27rem{max-height:27rem!important}.xl\\:max-h-28rem{max-height:28rem!important}.xl\\:max-h-29rem{max-height:29rem!important}.xl\\:max-h-30rem{max-height:30rem!important}}.static{position:static!important}.fixed{position:fixed!important}.absolute{position:absolute!important}.relative{position:relative!important}.sticky{position:sticky!important}@media screen and (min-width: 576px){.sm\\:static{position:static!important}.sm\\:fixed{position:fixed!important}.sm\\:absolute{position:absolute!important}.sm\\:relative{position:relative!important}.sm\\:sticky{position:sticky!important}}@media screen and (min-width: 768px){.md\\:static{position:static!important}.md\\:fixed{position:fixed!important}.md\\:absolute{position:absolute!important}.md\\:relative{position:relative!important}.md\\:sticky{position:sticky!important}}@media screen and (min-width: 992px){.lg\\:static{position:static!important}.lg\\:fixed{position:fixed!important}.lg\\:absolute{position:absolute!important}.lg\\:relative{position:relative!important}.lg\\:sticky{position:sticky!important}}@media screen and (min-width: 1200px){.xl\\:static{position:static!important}.xl\\:fixed{position:fixed!important}.xl\\:absolute{position:absolute!important}.xl\\:relative{position:relative!important}.xl\\:sticky{position:sticky!important}}.top-auto{top:auto!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}@media screen and (min-width: 576px){.sm\\:top-auto{top:auto!important}.sm\\:top-0{top:0!important}.sm\\:top-50{top:50%!important}.sm\\:top-100{top:100%!important}}@media screen and (min-width: 768px){.md\\:top-auto{top:auto!important}.md\\:top-0{top:0!important}.md\\:top-50{top:50%!important}.md\\:top-100{top:100%!important}}@media screen and (min-width: 992px){.lg\\:top-auto{top:auto!important}.lg\\:top-0{top:0!important}.lg\\:top-50{top:50%!important}.lg\\:top-100{top:100%!important}}@media screen and (min-width: 1200px){.xl\\:top-auto{top:auto!important}.xl\\:top-0{top:0!important}.xl\\:top-50{top:50%!important}.xl\\:top-100{top:100%!important}}.left-auto{left:auto!important}.left-0{left:0!important}.left-50{left:50%!important}.left-100{left:100%!important}@media screen and (min-width: 576px){.sm\\:left-auto{left:auto!important}.sm\\:left-0{left:0!important}.sm\\:left-50{left:50%!important}.sm\\:left-100{left:100%!important}}@media screen and (min-width: 768px){.md\\:left-auto{left:auto!important}.md\\:left-0{left:0!important}.md\\:left-50{left:50%!important}.md\\:left-100{left:100%!important}}@media screen and (min-width: 992px){.lg\\:left-auto{left:auto!important}.lg\\:left-0{left:0!important}.lg\\:left-50{left:50%!important}.lg\\:left-100{left:100%!important}}@media screen and (min-width: 1200px){.xl\\:left-auto{left:auto!important}.xl\\:left-0{left:0!important}.xl\\:left-50{left:50%!important}.xl\\:left-100{left:100%!important}}.right-auto{right:auto!important}.right-0{right:0!important}.right-50{right:50%!important}.right-100{right:100%!important}@media screen and (min-width: 576px){.sm\\:right-auto{right:auto!important}.sm\\:right-0{right:0!important}.sm\\:right-50{right:50%!important}.sm\\:right-100{right:100%!important}}@media screen and (min-width: 768px){.md\\:right-auto{right:auto!important}.md\\:right-0{right:0!important}.md\\:right-50{right:50%!important}.md\\:right-100{right:100%!important}}@media screen and (min-width: 992px){.lg\\:right-auto{right:auto!important}.lg\\:right-0{right:0!important}.lg\\:right-50{right:50%!important}.lg\\:right-100{right:100%!important}}@media screen and (min-width: 1200px){.xl\\:right-auto{right:auto!important}.xl\\:right-0{right:0!important}.xl\\:right-50{right:50%!important}.xl\\:right-100{right:100%!important}}.bottom-auto{bottom:auto!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}@media screen and (min-width: 576px){.sm\\:bottom-auto{bottom:auto!important}.sm\\:bottom-0{bottom:0!important}.sm\\:bottom-50{bottom:50%!important}.sm\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 768px){.md\\:bottom-auto{bottom:auto!important}.md\\:bottom-0{bottom:0!important}.md\\:bottom-50{bottom:50%!important}.md\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 992px){.lg\\:bottom-auto{bottom:auto!important}.lg\\:bottom-0{bottom:0!important}.lg\\:bottom-50{bottom:50%!important}.lg\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 1200px){.xl\\:bottom-auto{bottom:auto!important}.xl\\:bottom-0{bottom:0!important}.xl\\:bottom-50{bottom:50%!important}.xl\\:bottom-100{bottom:100%!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-auto{overflow:auto!important}.sm\\:overflow-hidden{overflow:hidden!important}.sm\\:overflow-visible{overflow:visible!important}.sm\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-auto{overflow:auto!important}.md\\:overflow-hidden{overflow:hidden!important}.md\\:overflow-visible{overflow:visible!important}.md\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-auto{overflow:auto!important}.lg\\:overflow-hidden{overflow:hidden!important}.lg\\:overflow-visible{overflow:visible!important}.lg\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-auto{overflow:auto!important}.xl\\:overflow-hidden{overflow:hidden!important}.xl\\:overflow-visible{overflow:visible!important}.xl\\:overflow-scroll{overflow:scroll!important}}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-x-auto{overflow-x:auto!important}.sm\\:overflow-x-hidden{overflow-x:hidden!important}.sm\\:overflow-x-visible{overflow-x:visible!important}.sm\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-x-auto{overflow-x:auto!important}.md\\:overflow-x-hidden{overflow-x:hidden!important}.md\\:overflow-x-visible{overflow-x:visible!important}.md\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-x-auto{overflow-x:auto!important}.lg\\:overflow-x-hidden{overflow-x:hidden!important}.lg\\:overflow-x-visible{overflow-x:visible!important}.lg\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-x-auto{overflow-x:auto!important}.xl\\:overflow-x-hidden{overflow-x:hidden!important}.xl\\:overflow-x-visible{overflow-x:visible!important}.xl\\:overflow-x-scroll{overflow-x:scroll!important}}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-y-auto{overflow-y:auto!important}.sm\\:overflow-y-hidden{overflow-y:hidden!important}.sm\\:overflow-y-visible{overflow-y:visible!important}.sm\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-y-auto{overflow-y:auto!important}.md\\:overflow-y-hidden{overflow-y:hidden!important}.md\\:overflow-y-visible{overflow-y:visible!important}.md\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-y-auto{overflow-y:auto!important}.lg\\:overflow-y-hidden{overflow-y:hidden!important}.lg\\:overflow-y-visible{overflow-y:visible!important}.lg\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-y-auto{overflow-y:auto!important}.xl\\:overflow-y-hidden{overflow-y:hidden!important}.xl\\:overflow-y-visible{overflow-y:visible!important}.xl\\:overflow-y-scroll{overflow-y:scroll!important}}.z-auto{z-index:auto!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}.z-4{z-index:4!important}.z-5{z-index:5!important}@media screen and (min-width: 576px){.sm\\:z-auto{z-index:auto!important}.sm\\:z-0{z-index:0!important}.sm\\:z-1{z-index:1!important}.sm\\:z-2{z-index:2!important}.sm\\:z-3{z-index:3!important}.sm\\:z-4{z-index:4!important}.sm\\:z-5{z-index:5!important}}@media screen and (min-width: 768px){.md\\:z-auto{z-index:auto!important}.md\\:z-0{z-index:0!important}.md\\:z-1{z-index:1!important}.md\\:z-2{z-index:2!important}.md\\:z-3{z-index:3!important}.md\\:z-4{z-index:4!important}.md\\:z-5{z-index:5!important}}@media screen and (min-width: 992px){.lg\\:z-auto{z-index:auto!important}.lg\\:z-0{z-index:0!important}.lg\\:z-1{z-index:1!important}.lg\\:z-2{z-index:2!important}.lg\\:z-3{z-index:3!important}.lg\\:z-4{z-index:4!important}.lg\\:z-5{z-index:5!important}}@media screen and (min-width: 1200px){.xl\\:z-auto{z-index:auto!important}.xl\\:z-0{z-index:0!important}.xl\\:z-1{z-index:1!important}.xl\\:z-2{z-index:2!important}.xl\\:z-3{z-index:3!important}.xl\\:z-4{z-index:4!important}.xl\\:z-5{z-index:5!important}}.bg-repeat{background-repeat:repeat!important}.bg-no-repeat{background-repeat:no-repeat!important}.bg-repeat-x{background-repeat:repeat-x!important}.bg-repeat-y{background-repeat:repeat-y!important}.bg-repeat-round{background-repeat:round!important}.bg-repeat-space{background-repeat:space!important}@media screen and (min-width: 576px){.sm\\:bg-repeat{background-repeat:repeat!important}.sm\\:bg-no-repeat{background-repeat:no-repeat!important}.sm\\:bg-repeat-x{background-repeat:repeat-x!important}.sm\\:bg-repeat-y{background-repeat:repeat-y!important}.sm\\:bg-repeat-round{background-repeat:round!important}.sm\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 768px){.md\\:bg-repeat{background-repeat:repeat!important}.md\\:bg-no-repeat{background-repeat:no-repeat!important}.md\\:bg-repeat-x{background-repeat:repeat-x!important}.md\\:bg-repeat-y{background-repeat:repeat-y!important}.md\\:bg-repeat-round{background-repeat:round!important}.md\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 992px){.lg\\:bg-repeat{background-repeat:repeat!important}.lg\\:bg-no-repeat{background-repeat:no-repeat!important}.lg\\:bg-repeat-x{background-repeat:repeat-x!important}.lg\\:bg-repeat-y{background-repeat:repeat-y!important}.lg\\:bg-repeat-round{background-repeat:round!important}.lg\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 1200px){.xl\\:bg-repeat{background-repeat:repeat!important}.xl\\:bg-no-repeat{background-repeat:no-repeat!important}.xl\\:bg-repeat-x{background-repeat:repeat-x!important}.xl\\:bg-repeat-y{background-repeat:repeat-y!important}.xl\\:bg-repeat-round{background-repeat:round!important}.xl\\:bg-repeat-space{background-repeat:space!important}}.bg-auto{background-size:auto!important}.bg-cover{background-size:cover!important}.bg-contain{background-size:contain!important}@media screen and (min-width: 576px){.sm\\:bg-auto{background-size:auto!important}.sm\\:bg-cover{background-size:cover!important}.sm\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 768px){.md\\:bg-auto{background-size:auto!important}.md\\:bg-cover{background-size:cover!important}.md\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 992px){.lg\\:bg-auto{background-size:auto!important}.lg\\:bg-cover{background-size:cover!important}.lg\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 1200px){.xl\\:bg-auto{background-size:auto!important}.xl\\:bg-cover{background-size:cover!important}.xl\\:bg-contain{background-size:contain!important}}.bg-bottom{background-position:bottom!important}.bg-center{background-position:center!important}.bg-left{background-position:left!important}.bg-left-bottom{background-position:left bottom!important}.bg-left-top{background-position:left top!important}.bg-right{background-position:right!important}.bg-right-bottom{background-position:right bottom!important}.bg-right-top{background-position:right top!important}.bg-top{background-position:top!important}@media screen and (min-width: 576px){.sm\\:bg-bottom{background-position:bottom!important}.sm\\:bg-center{background-position:center!important}.sm\\:bg-left{background-position:left!important}.sm\\:bg-left-bottom{background-position:left bottom!important}.sm\\:bg-left-top{background-position:left top!important}.sm\\:bg-right{background-position:right!important}.sm\\:bg-right-bottom{background-position:right bottom!important}.sm\\:bg-right-top{background-position:right top!important}.sm\\:bg-top{background-position:top!important}}@media screen and (min-width: 768px){.md\\:bg-bottom{background-position:bottom!important}.md\\:bg-center{background-position:center!important}.md\\:bg-left{background-position:left!important}.md\\:bg-left-bottom{background-position:left bottom!important}.md\\:bg-left-top{background-position:left top!important}.md\\:bg-right{background-position:right!important}.md\\:bg-right-bottom{background-position:right bottom!important}.md\\:bg-right-top{background-position:right top!important}.md\\:bg-top{background-position:top!important}}@media screen and (min-width: 992px){.lg\\:bg-bottom{background-position:bottom!important}.lg\\:bg-center{background-position:center!important}.lg\\:bg-left{background-position:left!important}.lg\\:bg-left-bottom{background-position:left bottom!important}.lg\\:bg-left-top{background-position:left top!important}.lg\\:bg-right{background-position:right!important}.lg\\:bg-right-bottom{background-position:right bottom!important}.lg\\:bg-right-top{background-position:right top!important}.lg\\:bg-top{background-position:top!important}}@media screen and (min-width: 1200px){.xl\\:bg-bottom{background-position:bottom!important}.xl\\:bg-center{background-position:center!important}.xl\\:bg-left{background-position:left!important}.xl\\:bg-left-bottom{background-position:left bottom!important}.xl\\:bg-left-top{background-position:left top!important}.xl\\:bg-right{background-position:right!important}.xl\\:bg-right-bottom{background-position:right bottom!important}.xl\\:bg-right-top{background-position:right top!important}.xl\\:bg-top{background-position:top!important}}.list-none{list-style:none!important}.list-disc{list-style:disc!important}.list-decimal{list-style:decimal!important}.appearance-none{-webkit-appearance:none!important;appearance:none!important}.outline-none{outline:none!important}.pointer-events-none{pointer-events:none!important}.pointer-events-auto{pointer-events:auto!important}.cursor-auto{cursor:auto!important}.cursor-pointer{cursor:pointer!important}.cursor-wait{cursor:wait!important}.cursor-move{cursor:move!important}.select-none{-webkit-user-select:none!important;user-select:none!important}.select-text{-webkit-user-select:text!important;user-select:text!important}.select-all{-webkit-user-select:all!important;user-select:all!important}.select-auto{-webkit-user-select:auto!important;user-select:auto!important}.opacity-0{opacity:0!important}.opacity-10{opacity:.1!important}.opacity-20{opacity:.2!important}.opacity-30{opacity:.3!important}.opacity-40{opacity:.4!important}.opacity-50{opacity:.5!important}.opacity-60{opacity:.6!important}.opacity-70{opacity:.7!important}.opacity-80{opacity:.8!important}.opacity-90{opacity:.9!important}.opacity-100{opacity:1!important}.reset{all:unset}.transition-none{transition-property:none!important}.transition-all{transition-property:all!important}.transition-colors{transition-property:background-color,border-color,color!important}.transition-transform{transition-property:transform!important}.transition-duration-100{transition-duration:.1s!important}.transition-duration-150{transition-duration:.15s!important}.transition-duration-200{transition-duration:.2s!important}.transition-duration-300{transition-duration:.3s!important}.transition-duration-400{transition-duration:.4s!important}.transition-duration-500{transition-duration:.5s!important}.transition-duration-1000{transition-duration:1s!important}.transition-duration-2000{transition-duration:2s!important}.transition-duration-3000{transition-duration:3s!important}.transition-linear{transition-timing-function:linear!important}.transition-ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)!important}.transition-ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.transition-ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.transition-delay-100{transition-delay:.1s!important}.transition-delay-150{transition-delay:.15s!important}.transition-delay-200{transition-delay:.2s!important}.transition-delay-300{transition-delay:.3s!important}.transition-delay-400{transition-delay:.4s!important}.transition-delay-500{transition-delay:.5s!important}.transition-delay-1000{transition-delay:1s!important}.translate-x-0{transform:translate(0)!important}.translate-x-100{transform:translate(100%)!important}.-translate-x-100{transform:translate(-100%)!important}.translate-y-0{transform:translateY(0)!important}.translate-y-100{transform:translateY(100%)!important}.-translate-y-100{transform:translateY(-100%)!important}@media screen and (min-width: 576px){.sm\\:translate-x-0{transform:translate(0)!important}.sm\\:translate-x-100{transform:translate(100%)!important}.sm\\:-translate-x-100{transform:translate(-100%)!important}.sm\\:translate-y-0{transform:translateY(0)!important}.sm\\:translate-y-100{transform:translateY(100%)!important}.sm\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 768px){.md\\:translate-x-0{transform:translate(0)!important}.md\\:translate-x-100{transform:translate(100%)!important}.md\\:-translate-x-100{transform:translate(-100%)!important}.md\\:translate-y-0{transform:translateY(0)!important}.md\\:translate-y-100{transform:translateY(100%)!important}.md\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 992px){.lg\\:translate-x-0{transform:translate(0)!important}.lg\\:translate-x-100{transform:translate(100%)!important}.lg\\:-translate-x-100{transform:translate(-100%)!important}.lg\\:translate-y-0{transform:translateY(0)!important}.lg\\:translate-y-100{transform:translateY(100%)!important}.lg\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 1200px){.xl\\:translate-x-0{transform:translate(0)!important}.xl\\:translate-x-100{transform:translate(100%)!important}.xl\\:-translate-x-100{transform:translate(-100%)!important}.xl\\:translate-y-0{transform:translateY(0)!important}.xl\\:translate-y-100{transform:translateY(100%)!important}.xl\\:-translate-y-100{transform:translateY(-100%)!important}}.rotate-45{transform:rotate(45deg)!important}.-rotate-45{transform:rotate(-45deg)!important}.rotate-90{transform:rotate(90deg)!important}.-rotate-90{transform:rotate(-90deg)!important}.rotate-180{transform:rotate(180deg)!important}.-rotate-180{transform:rotate(-180deg)!important}@media screen and (min-width: 576px){.sm\\:rotate-45{transform:rotate(45deg)!important}.sm\\:-rotate-45{transform:rotate(-45deg)!important}.sm\\:rotate-90{transform:rotate(90deg)!important}.sm\\:-rotate-90{transform:rotate(-90deg)!important}.sm\\:rotate-180{transform:rotate(180deg)!important}.sm\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 768px){.md\\:rotate-45{transform:rotate(45deg)!important}.md\\:-rotate-45{transform:rotate(-45deg)!important}.md\\:rotate-90{transform:rotate(90deg)!important}.md\\:-rotate-90{transform:rotate(-90deg)!important}.md\\:rotate-180{transform:rotate(180deg)!important}.md\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 992px){.lg\\:rotate-45{transform:rotate(45deg)!important}.lg\\:-rotate-45{transform:rotate(-45deg)!important}.lg\\:rotate-90{transform:rotate(90deg)!important}.lg\\:-rotate-90{transform:rotate(-90deg)!important}.lg\\:rotate-180{transform:rotate(180deg)!important}.lg\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 1200px){.xl\\:rotate-45{transform:rotate(45deg)!important}.xl\\:-rotate-45{transform:rotate(-45deg)!important}.xl\\:rotate-90{transform:rotate(90deg)!important}.xl\\:-rotate-90{transform:rotate(-90deg)!important}.xl\\:rotate-180{transform:rotate(180deg)!important}.xl\\:-rotate-180{transform:rotate(-180deg)!important}}.origin-center{transform-origin:center!important}.origin-top{transform-origin:top!important}.origin-top-right{transform-origin:top right!important}.origin-right{transform-origin:right!important}.origin-bottom-right{transform-origin:bottom right!important}.origin-bottom{transform-origin:bottom!important}.origin-bottom-left{transform-origin:bottom left!important}.origin-left{transform-origin:left!important}.origin-top-left{transform-origin:top-left!important}@media screen and (min-width: 576px){.sm\\:origin-center{transform-origin:center!important}.sm\\:origin-top{transform-origin:top!important}.sm\\:origin-top-right{transform-origin:top right!important}.sm\\:origin-right{transform-origin:right!important}.sm\\:origin-bottom-right{transform-origin:bottom right!important}.sm\\:origin-bottom{transform-origin:bottom!important}.sm\\:origin-bottom-left{transform-origin:bottom left!important}.sm\\:origin-left{transform-origin:left!important}.sm\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 768px){.md\\:origin-center{transform-origin:center!important}.md\\:origin-top{transform-origin:top!important}.md\\:origin-top-right{transform-origin:top right!important}.md\\:origin-right{transform-origin:right!important}.md\\:origin-bottom-right{transform-origin:bottom right!important}.md\\:origin-bottom{transform-origin:bottom!important}.md\\:origin-bottom-left{transform-origin:bottom left!important}.md\\:origin-left{transform-origin:left!important}.md\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 992px){.lg\\:origin-center{transform-origin:center!important}.lg\\:origin-top{transform-origin:top!important}.lg\\:origin-top-right{transform-origin:top right!important}.lg\\:origin-right{transform-origin:right!important}.lg\\:origin-bottom-right{transform-origin:bottom right!important}.lg\\:origin-bottom{transform-origin:bottom!important}.lg\\:origin-bottom-left{transform-origin:bottom left!important}.lg\\:origin-left{transform-origin:left!important}.lg\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 1200px){.xl\\:origin-center{transform-origin:center!important}.xl\\:origin-top{transform-origin:top!important}.xl\\:origin-top-right{transform-origin:top right!important}.xl\\:origin-right{transform-origin:right!important}.xl\\:origin-bottom-right{transform-origin:bottom right!important}.xl\\:origin-bottom{transform-origin:bottom!important}.xl\\:origin-bottom-left{transform-origin:bottom left!important}.xl\\:origin-left{transform-origin:left!important}.xl\\:origin-top-left{transform-origin:top-left!important}}@keyframes fadein{0%{opacity:0}to{opacity:1}}@keyframes fadeout{0%{opacity:1}to{opacity:0}}@keyframes scalein{0%{opacity:0;transform:scaleY(.8);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:scaleY(1)}}@keyframes slidedown{0%{max-height:0}to{max-height:auto}}@keyframes slideup{0%{max-height:1000px}to{max-height:0}}@keyframes fadeinleft{0%{opacity:0;transform:translate(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutleft{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(-100%)}}@keyframes fadeinright{0%{opacity:0;transform:translate(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutright{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(100%)}}@keyframes fadeinup{0%{opacity:0;transform:translateY(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutup{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(-100%)}}@keyframes fadeindown{0%{opacity:0;transform:translateY(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutdown{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(100%)}}@keyframes animate-width{0%{width:0}to{width:100%}}@keyframes flip{0%{transform:perspective(2000px) rotateX(-100deg)}to{transform:perspective(2000px) rotateX(0)}}@keyframes flipleft{0%{transform:perspective(2000px) rotateY(-100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipright{0%{transform:perspective(2000px) rotateY(100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipup{0%{transform:perspective(2000px) rotateX(-100deg);opacity:0}to{transform:perspective(2000px) rotateX(0);opacity:1}}@keyframes zoomin{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomindown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}}@keyframes zoominleft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0)}}@keyframes zoominright{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0)}}@keyframes zoominup{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}}.fadein{animation:fadein .15s linear}.fadeout{animation:fadeout .15s linear}.slidedown{animation:slidedown .45s ease-in-out}.slideup{animation:slideup .45s cubic-bezier(0,1,0,1)}.scalein{animation:scalein .15s linear}.fadeinleft{animation:fadeinleft .15s linear}.fadeoutleft{animation:fadeoutleft .15s linear}.fadeinright{animation:fadeinright .15s linear}.fadeoutright{animation:fadeoutright .15s linear}.fadeinup{animation:fadeinup .15s linear}.fadeoutup{animation:fadeoutup .15s linear}.fadeindown{animation:fadeindown .15s linear}.fadeoutdown{animation:fadeoutdown .15s linear}.animate-width{animation:animate-width 1s linear}.flip{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flip .15s linear}.flipup{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipup .15s linear}.flipleft{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipleft .15s linear}.flipright{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipright .15s linear}.zoomin{animation:zoomin .15s linear}.zoomindown{animation:zoomindown .15s linear}.zoominleft{animation:zoominleft .15s linear}.zoominright{animation:zoominright .15s linear}.zoominup{animation:zoominup .15s linear}.animation-duration-100{animation-duration:.1s!important}.animation-duration-150{animation-duration:.15s!important}.animation-duration-200{animation-duration:.2s!important}.animation-duration-300{animation-duration:.3s!important}.animation-duration-400{animation-duration:.4s!important}.animation-duration-500{animation-duration:.5s!important}.animation-duration-1000{animation-duration:1s!important}.animation-duration-2000{animation-duration:2s!important}.animation-duration-3000{animation-duration:3s!important}.animation-delay-100{animation-delay:.1s!important}.animation-delay-150{animation-delay:.15s!important}.animation-delay-200{animation-delay:.2s!important}.animation-delay-300{animation-delay:.3s!important}.animation-delay-400{animation-delay:.4s!important}.animation-delay-500{animation-delay:.5s!important}.animation-delay-1000{animation-delay:1s!important}.animation-iteration-1{animation-iteration-count:1!important}.animation-iteration-2{animation-iteration-count:2!important}.animation-iteration-infinite{animation-iteration-count:infinite!important}.animation-linear{animation-timing-function:linear!important}.animation-ease-in{animation-timing-function:cubic-bezier(.4,0,1,1)!important}.animation-ease-out{animation-timing-function:cubic-bezier(0,0,.2,1)!important}.animation-ease-in-out{animation-timing-function:cubic-bezier(.4,0,.2,1)!important}.animation-fill-none{animation-fill-mode:none!important}.animation-fill-forwards{animation-fill-mode:forwards!important}.animation-fill-backwards{animation-fill-mode:backwards!important}.animation-fill-both{animation-fill-mode:both!important}:host ::ng-deep w-image-file-uploader,:host ::ng-deep .w-image-file-uploader,:host ::ng-deep .w-image-file-button .p-fileupload,:host ::ng-deep .p-fileupload,:host ::ng-deep .w-image-file-uploader-gallery,:host ::ng-deep p-galleriacontent{display:block;height:100%}::ng-deep .p-fileupload-content{display:flex;flex-direction:column;height:100%}::ng-deep .p-galleria.p-component{max-width:100%;height:100%}::ng-deep .p-galleria-content{display:flex;flex-direction:column;height:100%}::ng-deep p-galleriaitem{height:100%}::ng-deep .p-galleria-item-wrapper{display:flex;flex-direction:column;position:relative;height:100%}::ng-deep .p-galleria-item-container{position:relative;display:flex;height:100%}::ng-deep .p-galleria-item{display:flex;justify-content:center;align-items:center;height:100%;width:100%}.wapp-file-upload-button-remove{top:-10px;right:-10px;display:none}.wapp-file-upload-button{visibility:hidden}.w-image-file-uploader-delete-button{position:absolute;top:0%;left:0%}.w-image-file-uploader-hide-move-button{visibility:hidden}::ng-deep .w-image-file-uploader-gallery p-galleriacontent .p-galleria .p-galleria-content p-galleriaitem .p-galleria-item-wrapper .p-galleria-item-container .p-galleria-item-prev.p-disabled{visibility:hidden}::ng-deep .w-image-file-uploader-gallery p-galleriacontent .p-galleria .p-galleria-content p-galleriaitem .p-galleria-item-wrapper .p-galleria-item-container .p-galleria-item-next.p-disabled{visibility:hidden}:host ::ng-deep .w-image-file-button .p-fileupload .p-fileupload-buttonbar{display:none}:host ::ng-deep .w-image-file-button .p-fileupload .p-fileupload-content{border:none!important;padding:0}:host ::ng-deep .w-image-file-uploader-delete-button-icon.w-button-text-small.p-button.p-button-icon-only .p-button-icon{font-size:16px}.w-image-file-uploader-move-buttons{position:absolute;bottom:0%;left:0%}:host ::ng-deep .w-button-text-small.p-button.p-button-icon-only .p-button-icon{color:#fff;filter:drop-shadow(1px 1px 16.9px rgba(0,0,0,.2)) drop-shadow(1px 1px 1px rgba(0,0,0,.6))}::ng-deep .p-galleria-item-prev-icon,::ng-deep .p-galleria-item-next-icon{filter:drop-shadow(1px 1px 16.9px rgba(0,0,0,.2)) drop-shadow(1px 1px 1px rgba(0,0,0,.6))}::ng-deep .p-galleria-item{border-radius:2px;background-color:#f8f9fa}.w-image-file-uploader-space-container{padding:24px 8px}.w-image-file-uploader-field-container-height{height:398px!important}.w-image-file-uploader-container-height{height:100%!important}.w-image-file-uploader-multi-action-button{align-items:center;justify-content:center;align-content:center;width:24px!important;height:24px!important;display:flex;flex-direction:row;border-radius:16px;cursor:pointer}.w-image-file-uploader-arrow{filter:drop-shadow(1px 1px 16.9px rgba(0,0,0,.2)) drop-shadow(1px 1px 1px rgba(0,0,0,.6))}.w-image-file-uploader-multi-images-index{text-shadow:1px 1px 16.9px rgba(0,0,0,.2),1px 1px 1px rgba(0,0,0,.6)}:host ::ng-deep .w-image-file-uploader-field .p-fileupload{border:1px solid #e8ebee;height:auto}:host ::ng-deep .w-image-file-uploader-field-no-image .p-fileupload{border:1px solid #e8ebee;height:398px}.w-image-file-uploader-field-img-container{width:280px;height:280px}.w-image-file-uploader-gallery-field{height:280px;display:block}\n"] }]
399
+ args: [{ selector: 'w-image-file-uploader', providers: [ConfirmationService], template: "\r\n<w-input-label *ngIf=\"activeFieldVersion == true\" [label]=\"label\" [tooltip]=\"tooltip\" [required]=\"required\"></w-input-label>\r\n<div *ngIf=\"activeFieldVersion == true && (label != undefined && label.length > 0)\" class=\"input-label-gap-divider\"></div>\r\n<p-fileUpload *ngIf=\"allowMultipleImages == false; else withCarousel\" #fileUploadOnlyImage class=\"w-image-file-button\" \r\n [ngClass]=\"{'w-image-file-uploader' : activeFieldVersion == false, \r\n 'w-image-file-uploader-field' : activeFieldVersion == true, \r\n 'w-image-file-uploader-field-no-image' : activeFieldVersion == true && (onlyCroppedImageSelected == null || undefined ) && (imageSingleMode == null || undefined)}\"\r\n mode=\"advanced\" \r\n [accept]=\"imageUploadConfig.acceptImageTypes\" \r\n [multiple]=\"false\" \r\n [invalidFileSizeMessageSummary]=\"imageUploadConfig.invalidFileSizeMessageSummary + ':'\" \r\n [invalidFileSizeMessageDetail]=\"imageUploadConfig.invalidFileSizeMessageDetail + ' {0} bytes.'\" \r\n [invalidFileTypeMessageSummary]=\"imageUploadConfig.invalidFileTypeMessageSummary + ':'\" \r\n [invalidFileTypeMessageDetail]=\"imageUploadConfig.invalidFileTypeMessageDetail + ': {0}.'\"\r\n (onSelect)=\"onCustomUploadSingleMode($event)\" \r\n [uploadLabel]=\"onlyCroppedImageSelected ? (onlyCroppedImageSelected.name.length>6)? (onlyCroppedImageSelected.name | slice:0:6)+'...':(onlyCroppedImageSelected.name) : ''\" \r\n [customUpload]=\"true\" \r\n (uploadHandler)=\"onCustomizeUploadFunctionSingleMode($event)\" \r\n [maxFileSize]=\"imageUploadConfig.maxImageSize\">\r\n <ng-template let-file let-i=\"index\" pTemplate='file'>\r\n <div *ngIf=\"activeImageUpload\"></div>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <p-progressBar *ngIf=\"false\"></p-progressBar>\r\n <div *ngIf=\"(onlyCroppedImageSelected != null || undefined) || (imageSingleMode != null || undefined)\" style=\"flex-grow: 1;\">\r\n <p-galleria \r\n [ngClass]=\"getGalleryClass()\" \r\n [value]=\"(onlyCroppedImageSelected !== null) ? [onlyCroppedImageSelected.fileBase64] : (imageUploadConfig.singleModeImageDefault ? [imageUploadConfig.singleModeImageDefault] : (imageSingleMode ? [imageSingleMode] : ['https://wappingstoragedev.blob.core.windows.net/wapping/appresources/ic_image_blue.png']))\" \r\n [responsiveOptions]=\"carouselImagesResponsiveOptions\" \r\n [containerStyle]=\"{ 'max-width': '100%', 'max-height':'100%'}\" \r\n [numVisible]=\"2\" \r\n [showItemNavigators]=\"false\"\r\n [showThumbnails]=\"false\" [showIndicators]=\"false\">\r\n <ng-template pTemplate=\"item\" let-image>\r\n <div *ngIf=\"(viewSingleMode == false && (imageSingleMode != null || undefined)) || \r\n (viewSingleMode == false && onlyCroppedImageSelected != null)\" class=\"w-image-file-uploader-delete-button flex align-content-center justify-content-center\" style=\"width: 100%;\">\r\n <w-button buttonClass=\"w-image-file-uploader-delete-button-icon\" icon=\"pi pi-trash\" type=\"text\" (click)=\"removeImageSingleMode($event, onlyImageSelected)\"></w-button>\r\n </div>\r\n <div class=\"flex flex-wrap align-content-center justify-content-center\" [ngClass]=\"{'w-image-file-uploader-field-img-container': activeFieldVersion}\" style=\"object-fit: contain; /* width: 300px; height: 300px; */\">\r\n <img [src]=\"image\" style=\"max-width:100%;\r\n max-height:100%;\r\n height: auto;\r\n width:auto;\" />\r\n </div>\r\n </ng-template>\r\n </p-galleria>\r\n </div>\r\n <div *ngIf=\"viewSingleMode == false; else viewSingleModeMessage\" (click)=\"openSingleImageFileSelector()\" \r\n class=\"w-image-file-uploader-space-container flex flex-column justify-content-center align-items-center\" style=\"cursor: pointer;\"\r\n [ngClass]=\"{'w-image-file-uploader-container-height' : (onlyCroppedImageSelected == null || undefined ) && (imageSingleMode == null || undefined) && activeFieldVersion == false, 'w-image-file-uploader-field-container-height' : activeFieldVersion == true && (onlyCroppedImageSelected == null || undefined ) && (imageSingleMode == null || undefined)}\">\r\n <span class=\"pi pi-upload subtitle1 textMainColor\"></span>\r\n <span class=\"subtitle1 textMainColor m-2\">\r\n {{imageUploadConfig.contentHeaderLabel}}\r\n </span>\r\n <span class=\"textSoftColor text-center\">\r\n {{imageUploadConfig.contentSubheaderLabel}}\r\n </span>\r\n </div>\r\n <ng-template #viewSingleModeMessage>\r\n <div *ngIf=\"imageSingleMode == null || undefined\" class=\"textSoftColor flex justify-content-center align-items-center w-image-file-uploader-container-height\">\r\n {{imageUploadConfig.viewModecontentLabel}}\r\n </div>\r\n </ng-template>\r\n </ng-template>\r\n</p-fileUpload>\r\n<ng-template #withCarousel>\r\n <p-fileUpload *ngIf=\"imageUploadConfig\" #fileUpload class=\"w-image-file-button\" \r\n [ngClass]=\"{'w-image-file-uploader' : activeFieldVersion == false, \r\n 'w-image-file-uploader-field' : activeFieldVersion == true, \r\n 'w-image-file-uploader-field-no-image' : activeFieldVersion == true && (imagesAlreadyUploaded.length == 0 || undefined ) || (imagesAlreadyUploaded == null || undefined)}\"\r\n name=\"mediaImages[]\" \r\n [accept]=\"imageUploadConfig.acceptImageTypes\" \r\n mode=\"advanced\" \r\n [customUpload]=\"true\" \r\n (onSelect)=\"onCustomUploadMultiMode($event)\" \r\n (uploadHandler)=\"onCustomizeUploadFunctionMultiMode($event)\" \r\n [uploadLabel]=\"imageUploadConfig.uploadButtonLabel ?? ''\" \r\n [chooseLabel]=\"imageUploadConfig.chooseButtonLabel ?? ''\" \r\n [cancelLabel]=\"imageUploadConfig.cancelButtonLabel ?? ''\" \r\n [showUploadButton]=\"activeImageUpload\"\r\n [showCancelButton]=\"activeImageUpload\"\r\n [auto]=\"imageUploadConfig.allowAuto\" \r\n [multiple]=\"true\" \r\n [maxFileSize]=\"imageUploadConfig.maxImageSize\" \r\n [invalidFileSizeMessageSummary]=\"imageUploadConfig.invalidFileSizeMessageSummary + ':'\" \r\n [invalidFileSizeMessageDetail]=\"imageUploadConfig.invalidFileSizeMessageDetail + ' {0} bytes.'\" \r\n [invalidFileTypeMessageSummary]=\"imageUploadConfig.invalidFileTypeMessageSummary + ':'\" \r\n [invalidFileTypeMessageDetail]=\"imageUploadConfig.invalidFileTypeMessageDetail + ': {0}.'\"\r\n [chooseStyleClass]=\"'p-button-icon p-button-icon-right'\">\r\n <ng-template let-file let-i=\"index\" pTemplate='file'>\r\n <div *ngIf=\"activeImageUpload && cropperImages.length > 0\" class=\"p-fileupload-row\">\r\n <div><img [src]=\"cropperImages[i]?.fileBase64\" width=\"50\"/></div>\r\n <div class=\"p-fileupload-filename\">{{file.name}}</div>\r\n <div> <w-button icon=\"pi pi-times\" (onClick)=\"onDeleteFileMultiMode($event, file, fileUpload)\"></w-button> </div>\r\n </div>\r\n </ng-template>\r\n <ng-template pTemplate=\"content\">\r\n <p-progressBar *ngIf=\"isUploadingMultiMode\" class=\"p-element ng-star-inserted\" [mode]=\"'indeterminate'\">\r\n <div role=\"progressbar\" aria-valuemin=\"0\" aria-valuenow=\"0\" aria-valuemax=\"100\" data-pc-name=\"progressbar\" data-pc-section=\"root\" class=\"p-progressbar p-component p-progressbar-determinate\">\r\n <div class=\"p-progressbar-value p-progressbar-value-animate ng-star-inserted\" style=\"display: flex; width: 0%;\" data-pc-section=\"value\"></div>\r\n </div>\r\n </p-progressBar>\r\n <div *ngIf=\"imagesAlreadyUploaded.length > 0\" style=\"flex-grow: 1;\">\r\n <p-galleria \r\n [ngClass]=\"getGalleryClass()\" \r\n [value]=\"imagesAlreadyUploaded\" \r\n [activeIndex]=\"activeIndexGallery\" \r\n [responsiveOptions]=\"carouselImagesResponsiveOptions\" \r\n [containerStyle]=\"{ 'max-width': '100%', 'max-height':'100%'}\" \r\n [numVisible]=\"3\" \r\n [showItemNavigators]=\"true\"\r\n [showThumbnails]=\"false\">\r\n <ng-template pTemplate=\"item\" let-image>\r\n <div *ngIf=\"viewMultiMode == false\" class=\"w-image-file-uploader-delete-button flex align-content-center justify-content-center\" style=\"width: 100%;\">\r\n <w-button buttonClass=\"w-image-file-uploader-delete-button-icon\" icon=\"pi pi-trash\" type=\"text\" (onClick)=\"confirmDeleteImageMultiMode($event, image)\" [loading]=\"isDeletingMultiMode\"></w-button>\r\n </div>\r\n <div class=\"flex flex-wrap align-content-center justify-content-center\" [ngClass]=\"{'w-image-file-uploader-field-img-container': activeFieldVersion}\" style=\"object-fit: contain;\">\r\n <img [src]=\"readProperty(image, imageUploadConfig.imagePropertyNames[0]) ?? image.fileBase64\" style=\"max-width:100%;\r\n max-height:100%;\r\n height: auto;\r\n width:auto;\" />\r\n </div>\r\n <div class=\"w-image-file-uploader-move-buttons flex align-content-center justify-content-center\" style=\"width: 100%;\">\r\n <div *ngIf=\"viewMultiMode == false && activePositionProperty == true\" class=\"w-image-file-uploader-multi-action-button\" [ngClass]=\"{'w-image-file-uploader-hide-move-button' : findIndex(image) == 0 || disableMoveButtons}\" (click)=\"moveImageToLeft(image)\">\r\n <w-icons name=\"doubleArrowLeft\" class=\"w-image-file-uploader-arrow\" [height]=\"10\" [width]=\"10\" [color]=\"'white'\"></w-icons>\r\n </div>\r\n\r\n <div *ngIf=\"isDeletingMultiMode == false; else indexLoading\" class=\"w-image-file-uploader-multi-images-index flex align-items-center justify-content-center\">\r\n {{ findIndex(image) + 1 }} / {{ imagesAlreadyUploaded.length }}\r\n </div>\r\n <ng-template #indexLoading>\r\n <div class=\"w-image-file-uploader-multi-images-index flex align-items-center justify-content-center\"> - / - </div>\r\n </ng-template>\r\n \r\n <div *ngIf=\"viewMultiMode == false && activePositionProperty == true\" class=\"w-image-file-uploader-multi-action-button\" [ngClass]=\"{'w-image-file-uploader-hide-move-button' : (findIndex(image) == imagesAlreadyUploaded.length-1) || disableMoveButtons}\" (click)=\"moveImageToRight(image)\">\r\n <w-icons name=\"doubleArrowRight\" class=\"w-image-file-uploader-arrow\" [height]=\"10\" [width]=\"10\" [color]=\"'white'\"></w-icons>\r\n </div>\r\n </div>\r\n </ng-template>\r\n </p-galleria>\r\n </div>\r\n <div *ngIf=\"viewMultiMode == false; else viewMultiModeMessage\" (click)=\"openImageFileSelector()\" \r\n class=\"w-image-file-uploader-space-container flex flex-column justify-content-center align-items-center\" \r\n style=\"cursor: pointer;\" \r\n [ngClass]=\"{'w-image-file-uploader-container-height' : (imagesAlreadyUploaded.length == 0 || undefined ) || (imagesAlreadyUploaded == null || undefined) && activeFieldVersion == false, 'w-image-file-uploader-field-container-height' : activeFieldVersion == true && (imagesAlreadyUploaded.length == 0 || undefined ) || (imagesAlreadyUploaded == null || undefined)}\">\r\n <span class=\"pi pi-upload subtitle1 textMainColor\"></span>\r\n <span class=\"subtitle1 textMainColor m-2\">\r\n {{imageUploadConfig.contentHeaderLabel}}\r\n </span>\r\n <span class=\"textSoftColor text-center\">\r\n {{imageUploadConfig.contentSubheaderLabel}}\r\n </span>\r\n </div>\r\n <ng-template #viewMultiModeMessage>\r\n <div *ngIf=\"imagesAlreadyUploaded.length==0\" class=\"textSoftColor flex justify-content-center align-items-center w-image-file-uploader-container-height\">\r\n {{imageUploadConfig.viewModecontentLabel}}\r\n </div>\r\n </ng-template>\r\n </ng-template>\r\n </p-fileUpload>\r\n</ng-template>\r\n\r\n<p-confirmPopup></p-confirmPopup>\r\n", styles: [".heading1{font-size:2.6666666667rem;line-height:3rem;font-weight:700}.heading2{font-size:2.3333333333rem;line-height:2.6666666667rem;font-weight:700}.heading3{font-size:2rem;line-height:2.3333333333rem;font-weight:700}.heading4{font-size:1.6666666667rem;line-height:2rem;font-weight:700}.heading5,.w-sidebar-title-text{font-size:1.5rem;line-height:1.8333333333rem;font-weight:700}.heading6{font-size:1.3333333333rem;line-height:1.6666666667rem;font-weight:700}.subtitle1,.w-tab-text,.w-panel-title-text{font-size:1.1666666667rem;line-height:1.3333333333rem;font-weight:700}.subtitle2,.w-table-th-text,.w-panel-subtitle-text,.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled,.w-view-small-label-text-typography,.w-view-small-label-text,.w-button-small-text-label-text-typography,.w-button-small-text-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:600}.body,.w-image-file-uploader-navigators-text,.w-image-file-uploader-multi-images-index,.w-table-td-text,.w-chip-text,.w-panel-content,.w-input-small-select-options-text,.w-input-small-placeholder-text-typography,.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text,.w-view-small-value-text-typography,.w-view-small-value-text,.w-button-small-label-text-typography,.w-button-small-tertiary-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:400}.caption,.w-input-error-alert-text,.w-input-warning-alert-text,.w-input-success-alert-text{font-size:.6666666667rem;line-height:1rem;font-weight:400}.light,.w-input-small-placeholder-text-only-color{font-size:.9166666667rem;line-height:1.0833333333rem;font-weight:300}.small,.w-button-small-label-text-typography-sm{font-size:.8333333333rem;line-height:1rem;font-weight:400}.textMainColor{color:#1f2224}.textSoftColor{color:#5f6468}.textSofterColor{color:#9aa0a7}.textSoftestColor{color:#e8ebee}.textInverseColor{color:#fff}.spacingXXS{padding:4px}.spacingXSM{padding:6px}.spacingXSMDivider{height:6px}.spacingXS{padding:8px}.spacingS{padding:12px}.spacingM{padding:16px}.spacingL{padding:20px}.spacingXL{padding:24px}.spacingXXL{padding:28px}.spacingXXXL{padding:32px}.panel-title-gap-divider{height:20px}.panel-section-gap-divider{height:32px}.input-vertical-gap-divider{height:24px}.input-label-gap-divider{height:6px}.focusedInput{border:1px solid rgba(0,157,253,.25);box-shadow:0 0 10px #00b3eb40}.focus{box-shadow:0 0 8px #00a6e980}.hover{border-radius:8px;border:1px solid #00b3eb}.hoveredInput{border-radius:8px;border:1px solid rgba(0,179,235,.5)}.input-generic-valid{border-radius:8px;border:1px solid #B3FFD3}.input-generic-valid-focus{border-radius:8px;border:1px solid #B3FFD3!important;box-shadow:0 0 8px #46ff9b80!important;padding-left:16px}.input-generic-warning{border-radius:8px;border:1px solid #FFECB8!important}.input-generic-warning-focus{border-radius:8px;border:1px solid #FFECB8!important;box-shadow:0 0 8px #ffcd4680!important;padding-left:16px}.input-generic-error-focus{border-radius:8px;border:1px solid #FFBDBD!important;box-shadow:0 0 8px #ff555580!important;padding-left:16px}.input-generic-error{border-radius:8px;border:1px solid #FFBDBD}.toggle-small-typography{font-size:12px;line-height:16px;font-weight:600}.w-button-small-label-text-typography,.w-button-small-tertiary-label-text,.w-button-small-label-text-typography-sm{font-weight:600}.w-button-small-tertiary-label-text{color:#5f6468}.w-button-small-text-label-text{color:#1f2224}.w-button-small-icon-text{font-size:12px;font-weight:600}.w-table-button-small-icon-text{font-size:12px;color:#9aa0a7}.w-control-button-small-label-text{font-size:12px;font-weight:600;line-height:16px}.w-control-button-x-small-icon-text{font-size:10px;font-weight:700}.w-control-button-small-icon-text{font-size:8px;font-weight:700}.w-button-medium-label-text-typography,.w-button-medium-tertiary-label-text{font-size:16px;font-weight:600;line-height:16px}.w-button-medium-tertiary-label-text{color:#1f2224}.w-button-medium-icon-text{font-size:16px}.w-control-button-medium-label-text{font-size:14px;font-weight:600;line-height:16px}.w-control-button-medium-icon-text{font-size:12px;font-weight:700}.w-button-large-label-text-typography,.w-button-large-tertiary-label-text{font-size:20px;font-weight:600;line-height:24px}.w-button-large-tertiary-label-text{color:#1f2224}.w-button-x-small-label-text{font-size:10px;font-weight:600;line-height:10px}.w-button-small-only-label-text{font-size:12px;font-weight:600;line-height:16px}.w-button-large-icon-text{font-size:24px}.w-view-small-label-text{color:#1f2224}.w-view-small-value-text{color:#5f6468}.w-input-no-label-height{height:14px}.w-input-disabled{background-color:#f1f3f4;border-color:#e8ebee;opacity:1}.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled{height:-moz-fit-content;height:fit-content}.w-input-small-label-text,.w-input-small-label-disabled{color:#1f2224}.w-input-small-label-disabled{color:#9aa0a7}.w-input-small-label-text-content{padding:12px 8px 8px 0;margin:0}.w-input-small-label-text-content-no-top{padding-top:0}.w-input-small-placeholder-text{color:#1f2224}.w-input-small-placeholder-text-only-color{color:#9aa0a7;line-height:1.3333333333rem}.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text-disabled-only-color{color:#5f6468}.w-input-small-text-icon,.w-input-small-select-options-text{color:#1f2224}.w-input-medium-label-text-typography,.w-input-medium-label-text,.w-input-medium-label-disabled{font-size:14px;font-weight:600;line-height:16px}.w-input-medium-label-text,.w-input-medium-label-disabled{color:#1f2224}.w-input-medium-label-disabled{color:#9aa0a7}.w-input-medium-placeholder-text-typography,.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text{font-size:16px;font-weight:400;line-height:24px}.w-input-medium-placeholder-text,.w-input-medium-placeholder-text-only-color{color:#1f2224}.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text-disabled-only-color{color:#5f6468}.w-input-medium-text-icon{color:#1f2224}.w-input-medium-select-options-text{font-size:16px;font-weight:400;line-height:24px;color:#1f2224}.w-input-success-alert-text{color:#00db5d;padding:8px 8px 0;margin-top:0}.w-input-warning-alert-text{color:#eeae00;padding:8px 8px 0;margin-top:0}.w-input-error-alert-text{color:#e50000;padding:8px 8px 0;margin-top:0}.w-input-alert-message-height{height:32px}.w-sidebar-title-text,.w-panel-title-text,.w-panel-subtitle-text{color:#1f2224}.w-panel-content{color:#5f6468}.w-tab-text,.w-chip-text{color:#1f2224}.w-badge-text{font-size:10px;font-weight:700;line-height:8px}.w-table-th-text{color:#1f2224}.w-table-td-text{color:#5f6468}.w-table-height{padding:6px 8px 5px}.w-table-no-buttons-height{padding:16px 8px 15px!important}.w-tree-table-height{padding:8px 8px 7px}.w-image-file-uploader-navigators-text,.w-image-file-uploader-multi-images-index{font-size:12px;color:#fff}.grid{margin:0}::ng-deep .p-tooltip,.p-tooltip{filter:0px 0px 1px 0px rgba(0,0,0,.1) inset,1px 1px 5px rgba(0,0,0,.06),1px 1px 1px rgba(0,0,0,.08)}::ng-deep .p-tooltip .p-tooltip-text,.p-tooltip .p-tooltip-text{background:#ffffff!important;color:#1f2224;padding:12px 16px;max-width:192px;width:max-content;margin-left:3px}::ng-deep .p-tooltip.p-tooltip-right,.p-tooltip.p-tooltip-right{margin-left:6px;width:max-content;transform:translateY(-1px)}::ng-deep .p-tooltip.p-tooltip-right .p-tooltip-arrow,.p-tooltip.p-tooltip-right .p-tooltip-arrow{border-right-color:#fff!important;top:50%;left:0;margin-top:-4px;border-width:4px 6px 4px 0!important}::ng-deep .p-tooltip.p-tooltip-bottom .p-tooltip-arrow,.p-tooltip.p-tooltip-bottom .p-tooltip-arrow{border-bottom-color:#fff!important;border-width:0 4px 6px 4px!important;margin-top:-3px}.grid{display:flex;flex-wrap:wrap;margin-right:-.5rem;margin-left:-.5rem;margin-top:-.5rem}.grid>.col,.grid>[class*=col]{box-sizing:border-box}.grid-nogutter{margin-right:0;margin-left:0;margin-top:0}.grid-nogutter>.col,.grid-nogutter>[class*=col-]{padding:0}.col{flex-grow:1;flex-basis:0;padding:.5rem}.col-fixed{flex:0 0 auto;padding:.5rem}.col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.col-3{flex:0 0 auto;padding:.5rem;width:25%}.col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.col-6{flex:0 0 auto;padding:.5rem;width:50%}.col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.col-9{flex:0 0 auto;padding:.5rem;width:75%}.col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.col-12{flex:0 0 auto;padding:.5rem;width:100%}@media screen and (min-width: 576px){.sm\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.sm\\:col-fixed{flex:0 0 auto;padding:.5rem}.sm\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.sm\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.sm\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.sm\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.sm\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.sm\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.sm\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.sm\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.sm\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.sm\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.sm\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.sm\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 768px){.md\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.md\\:col-fixed{flex:0 0 auto;padding:.5rem}.md\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.md\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.md\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.md\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.md\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.md\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.md\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.md\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.md\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.md\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.md\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.md\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 992px){.lg\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.lg\\:col-fixed{flex:0 0 auto;padding:.5rem}.lg\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.lg\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.lg\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.lg\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.lg\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.lg\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.lg\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.lg\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.lg\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.lg\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.lg\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.lg\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 1200px){.xl\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.xl\\:col-fixed{flex:0 0 auto;padding:.5rem}.xl\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.xl\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.xl\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.xl\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.xl\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.xl\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.xl\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.xl\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.xl\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.xl\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.xl\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.xl\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}.col-offset-0{margin-left:0!important}.col-offset-1{margin-left:8.3333%!important}.col-offset-2{margin-left:16.6667%!important}.col-offset-3{margin-left:25%!important}.col-offset-4{margin-left:33.3333%!important}.col-offset-5{margin-left:41.6667%!important}.col-offset-6{margin-left:50%!important}.col-offset-7{margin-left:58.3333%!important}.col-offset-8{margin-left:66.6667%!important}.col-offset-9{margin-left:75%!important}.col-offset-10{margin-left:83.3333%!important}.col-offset-11{margin-left:91.6667%!important}.col-offset-12{margin-left:100%!important}@media screen and (min-width: 576px){.sm\\:col-offset-0{margin-left:0!important}.sm\\:col-offset-1{margin-left:8.3333%!important}.sm\\:col-offset-2{margin-left:16.6667%!important}.sm\\:col-offset-3{margin-left:25%!important}.sm\\:col-offset-4{margin-left:33.3333%!important}.sm\\:col-offset-5{margin-left:41.6667%!important}.sm\\:col-offset-6{margin-left:50%!important}.sm\\:col-offset-7{margin-left:58.3333%!important}.sm\\:col-offset-8{margin-left:66.6667%!important}.sm\\:col-offset-9{margin-left:75%!important}.sm\\:col-offset-10{margin-left:83.3333%!important}.sm\\:col-offset-11{margin-left:91.6667%!important}.sm\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 768px){.md\\:col-offset-0{margin-left:0!important}.md\\:col-offset-1{margin-left:8.3333%!important}.md\\:col-offset-2{margin-left:16.6667%!important}.md\\:col-offset-3{margin-left:25%!important}.md\\:col-offset-4{margin-left:33.3333%!important}.md\\:col-offset-5{margin-left:41.6667%!important}.md\\:col-offset-6{margin-left:50%!important}.md\\:col-offset-7{margin-left:58.3333%!important}.md\\:col-offset-8{margin-left:66.6667%!important}.md\\:col-offset-9{margin-left:75%!important}.md\\:col-offset-10{margin-left:83.3333%!important}.md\\:col-offset-11{margin-left:91.6667%!important}.md\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 992px){.lg\\:col-offset-0{margin-left:0!important}.lg\\:col-offset-1{margin-left:8.3333%!important}.lg\\:col-offset-2{margin-left:16.6667%!important}.lg\\:col-offset-3{margin-left:25%!important}.lg\\:col-offset-4{margin-left:33.3333%!important}.lg\\:col-offset-5{margin-left:41.6667%!important}.lg\\:col-offset-6{margin-left:50%!important}.lg\\:col-offset-7{margin-left:58.3333%!important}.lg\\:col-offset-8{margin-left:66.6667%!important}.lg\\:col-offset-9{margin-left:75%!important}.lg\\:col-offset-10{margin-left:83.3333%!important}.lg\\:col-offset-11{margin-left:91.6667%!important}.lg\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 1200px){.xl\\:col-offset-0{margin-left:0!important}.xl\\:col-offset-1{margin-left:8.3333%!important}.xl\\:col-offset-2{margin-left:16.6667%!important}.xl\\:col-offset-3{margin-left:25%!important}.xl\\:col-offset-4{margin-left:33.3333%!important}.xl\\:col-offset-5{margin-left:41.6667%!important}.xl\\:col-offset-6{margin-left:50%!important}.xl\\:col-offset-7{margin-left:58.3333%!important}.xl\\:col-offset-8{margin-left:66.6667%!important}.xl\\:col-offset-9{margin-left:75%!important}.xl\\:col-offset-10{margin-left:83.3333%!important}.xl\\:col-offset-11{margin-left:91.6667%!important}.xl\\:col-offset-12{margin-left:100%!important}}.text-0{color:var(--surface-0)!important}.text-50{color:var(--surface-50)!important}.text-100{color:var(--surface-100)!important}.text-200{color:var(--surface-200)!important}.text-300{color:var(--surface-300)!important}.text-400{color:var(--surface-400)!important}.text-500{color:var(--surface-500)!important}.text-600{color:var(--surface-600)!important}.text-700{color:var(--surface-700)!important}.text-800{color:var(--surface-800)!important}.text-900{color:var(--surface-900)!important}.focus\\:text-0:focus{color:var(--surface-0)!important}.hover\\:text-0:hover,.active\\:text-0:active{color:var(--surface-0)!important}.focus\\:text-50:focus{color:var(--surface-50)!important}.hover\\:text-50:hover,.active\\:text-50:active{color:var(--surface-50)!important}.focus\\:text-100:focus{color:var(--surface-100)!important}.hover\\:text-100:hover,.active\\:text-100:active{color:var(--surface-100)!important}.focus\\:text-200:focus{color:var(--surface-200)!important}.hover\\:text-200:hover,.active\\:text-200:active{color:var(--surface-200)!important}.focus\\:text-300:focus{color:var(--surface-300)!important}.hover\\:text-300:hover,.active\\:text-300:active{color:var(--surface-300)!important}.focus\\:text-400:focus{color:var(--surface-400)!important}.hover\\:text-400:hover,.active\\:text-400:active{color:var(--surface-400)!important}.focus\\:text-500:focus{color:var(--surface-500)!important}.hover\\:text-500:hover,.active\\:text-500:active{color:var(--surface-500)!important}.focus\\:text-600:focus{color:var(--surface-600)!important}.hover\\:text-600:hover,.active\\:text-600:active{color:var(--surface-600)!important}.focus\\:text-700:focus{color:var(--surface-700)!important}.hover\\:text-700:hover,.active\\:text-700:active{color:var(--surface-700)!important}.focus\\:text-800:focus{color:var(--surface-800)!important}.hover\\:text-800:hover,.active\\:text-800:active{color:var(--surface-800)!important}.focus\\:text-900:focus{color:var(--surface-900)!important}.hover\\:text-900:hover,.active\\:text-900:active{color:var(--surface-900)!important}.surface-0{background-color:var(--surface-0)!important}.surface-50{background-color:var(--surface-50)!important}.surface-100{background-color:var(--surface-100)!important}.surface-200{background-color:var(--surface-200)!important}.surface-300{background-color:var(--surface-300)!important}.surface-400{background-color:var(--surface-400)!important}.surface-500{background-color:var(--surface-500)!important}.surface-600{background-color:var(--surface-600)!important}.surface-700{background-color:var(--surface-700)!important}.surface-800{background-color:var(--surface-800)!important}.surface-900{background-color:var(--surface-900)!important}.focus\\:surface-0:focus{background-color:var(--surface-0)!important}.hover\\:surface-0:hover,.active\\:surface-0:active{background-color:var(--surface-0)!important}.focus\\:surface-50:focus{background-color:var(--surface-50)!important}.hover\\:surface-50:hover,.active\\:surface-50:active{background-color:var(--surface-50)!important}.focus\\:surface-100:focus{background-color:var(--surface-100)!important}.hover\\:surface-100:hover,.active\\:surface-100:active{background-color:var(--surface-100)!important}.focus\\:surface-200:focus{background-color:var(--surface-200)!important}.hover\\:surface-200:hover,.active\\:surface-200:active{background-color:var(--surface-200)!important}.focus\\:surface-300:focus{background-color:var(--surface-300)!important}.hover\\:surface-300:hover,.active\\:surface-300:active{background-color:var(--surface-300)!important}.focus\\:surface-400:focus{background-color:var(--surface-400)!important}.hover\\:surface-400:hover,.active\\:surface-400:active{background-color:var(--surface-400)!important}.focus\\:surface-500:focus{background-color:var(--surface-500)!important}.hover\\:surface-500:hover,.active\\:surface-500:active{background-color:var(--surface-500)!important}.focus\\:surface-600:focus{background-color:var(--surface-600)!important}.hover\\:surface-600:hover,.active\\:surface-600:active{background-color:var(--surface-600)!important}.focus\\:surface-700:focus{background-color:var(--surface-700)!important}.hover\\:surface-700:hover,.active\\:surface-700:active{background-color:var(--surface-700)!important}.focus\\:surface-800:focus{background-color:var(--surface-800)!important}.hover\\:surface-800:hover,.active\\:surface-800:active{background-color:var(--surface-800)!important}.focus\\:surface-900:focus{background-color:var(--surface-900)!important}.hover\\:surface-900:hover,.active\\:surface-900:active{background-color:var(--surface-900)!important}.border-0{border-color:var(--surface-0)!important}.border-50{border-color:var(--surface-50)!important}.border-100{border-color:var(--surface-100)!important}.border-200{border-color:var(--surface-200)!important}.border-300{border-color:var(--surface-300)!important}.border-400{border-color:var(--surface-400)!important}.border-500{border-color:var(--surface-500)!important}.border-600{border-color:var(--surface-600)!important}.border-700{border-color:var(--surface-700)!important}.border-800{border-color:var(--surface-800)!important}.border-900{border-color:var(--surface-900)!important}.focus\\:border-0:focus{border-color:var(--surface-0)!important}.hover\\:border-0:hover,.active\\:border-0:active{border-color:var(--surface-0)!important}.focus\\:border-50:focus{border-color:var(--surface-50)!important}.hover\\:border-50:hover,.active\\:border-50:active{border-color:var(--surface-50)!important}.focus\\:border-100:focus{border-color:var(--surface-100)!important}.hover\\:border-100:hover,.active\\:border-100:active{border-color:var(--surface-100)!important}.focus\\:border-200:focus{border-color:var(--surface-200)!important}.hover\\:border-200:hover,.active\\:border-200:active{border-color:var(--surface-200)!important}.focus\\:border-300:focus{border-color:var(--surface-300)!important}.hover\\:border-300:hover,.active\\:border-300:active{border-color:var(--surface-300)!important}.focus\\:border-400:focus{border-color:var(--surface-400)!important}.hover\\:border-400:hover,.active\\:border-400:active{border-color:var(--surface-400)!important}.focus\\:border-500:focus{border-color:var(--surface-500)!important}.hover\\:border-500:hover,.active\\:border-500:active{border-color:var(--surface-500)!important}.focus\\:border-600:focus{border-color:var(--surface-600)!important}.hover\\:border-600:hover,.active\\:border-600:active{border-color:var(--surface-600)!important}.focus\\:border-700:focus{border-color:var(--surface-700)!important}.hover\\:border-700:hover,.active\\:border-700:active{border-color:var(--surface-700)!important}.focus\\:border-800:focus{border-color:var(--surface-800)!important}.hover\\:border-800:hover,.active\\:border-800:active{border-color:var(--surface-800)!important}.focus\\:border-900:focus{border-color:var(--surface-900)!important}.hover\\:border-900:hover,.active\\:border-900:active{border-color:var(--surface-900)!important}.bg-transparent{background-color:transparent!important}@media screen and (min-width: 576px){.sm\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 768px){.md\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 992px){.lg\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 1200px){.xl\\:bg-transparent{background-color:transparent!important}}.border-transparent{border-color:transparent!important}@media screen and (min-width: 576px){.sm\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 768px){.md\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 992px){.lg\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 1200px){.xl\\:border-transparent{border-color:transparent!important}}.text-blue-50{color:var(--blue-50)!important}.text-blue-100{color:var(--blue-100)!important}.text-blue-200{color:var(--blue-200)!important}.text-blue-300{color:var(--blue-300)!important}.text-blue-400{color:var(--blue-400)!important}.text-blue-500{color:var(--blue-500)!important}.text-blue-600{color:var(--blue-600)!important}.text-blue-700{color:var(--blue-700)!important}.text-blue-800{color:var(--blue-800)!important}.text-blue-900{color:var(--blue-900)!important}.focus\\:text-blue-50:focus{color:var(--blue-50)!important}.focus\\:text-blue-100:focus{color:var(--blue-100)!important}.focus\\:text-blue-200:focus{color:var(--blue-200)!important}.focus\\:text-blue-300:focus{color:var(--blue-300)!important}.focus\\:text-blue-400:focus{color:var(--blue-400)!important}.focus\\:text-blue-500:focus{color:var(--blue-500)!important}.focus\\:text-blue-600:focus{color:var(--blue-600)!important}.focus\\:text-blue-700:focus{color:var(--blue-700)!important}.focus\\:text-blue-800:focus{color:var(--blue-800)!important}.focus\\:text-blue-900:focus{color:var(--blue-900)!important}.hover\\:text-blue-50:hover{color:var(--blue-50)!important}.hover\\:text-blue-100:hover{color:var(--blue-100)!important}.hover\\:text-blue-200:hover{color:var(--blue-200)!important}.hover\\:text-blue-300:hover{color:var(--blue-300)!important}.hover\\:text-blue-400:hover{color:var(--blue-400)!important}.hover\\:text-blue-500:hover{color:var(--blue-500)!important}.hover\\:text-blue-600:hover{color:var(--blue-600)!important}.hover\\:text-blue-700:hover{color:var(--blue-700)!important}.hover\\:text-blue-800:hover{color:var(--blue-800)!important}.hover\\:text-blue-900:hover{color:var(--blue-900)!important}.active\\:text-blue-50:active{color:var(--blue-50)!important}.active\\:text-blue-100:active{color:var(--blue-100)!important}.active\\:text-blue-200:active{color:var(--blue-200)!important}.active\\:text-blue-300:active{color:var(--blue-300)!important}.active\\:text-blue-400:active{color:var(--blue-400)!important}.active\\:text-blue-500:active{color:var(--blue-500)!important}.active\\:text-blue-600:active{color:var(--blue-600)!important}.active\\:text-blue-700:active{color:var(--blue-700)!important}.active\\:text-blue-800:active{color:var(--blue-800)!important}.active\\:text-blue-900:active{color:var(--blue-900)!important}.text-green-50{color:var(--green-50)!important}.text-green-100{color:var(--green-100)!important}.text-green-200{color:var(--green-200)!important}.text-green-300{color:var(--green-300)!important}.text-green-400{color:var(--green-400)!important}.text-green-500{color:var(--green-500)!important}.text-green-600{color:var(--green-600)!important}.text-green-700{color:var(--green-700)!important}.text-green-800{color:var(--green-800)!important}.text-green-900{color:var(--green-900)!important}.focus\\:text-green-50:focus{color:var(--green-50)!important}.focus\\:text-green-100:focus{color:var(--green-100)!important}.focus\\:text-green-200:focus{color:var(--green-200)!important}.focus\\:text-green-300:focus{color:var(--green-300)!important}.focus\\:text-green-400:focus{color:var(--green-400)!important}.focus\\:text-green-500:focus{color:var(--green-500)!important}.focus\\:text-green-600:focus{color:var(--green-600)!important}.focus\\:text-green-700:focus{color:var(--green-700)!important}.focus\\:text-green-800:focus{color:var(--green-800)!important}.focus\\:text-green-900:focus{color:var(--green-900)!important}.hover\\:text-green-50:hover{color:var(--green-50)!important}.hover\\:text-green-100:hover{color:var(--green-100)!important}.hover\\:text-green-200:hover{color:var(--green-200)!important}.hover\\:text-green-300:hover{color:var(--green-300)!important}.hover\\:text-green-400:hover{color:var(--green-400)!important}.hover\\:text-green-500:hover{color:var(--green-500)!important}.hover\\:text-green-600:hover{color:var(--green-600)!important}.hover\\:text-green-700:hover{color:var(--green-700)!important}.hover\\:text-green-800:hover{color:var(--green-800)!important}.hover\\:text-green-900:hover{color:var(--green-900)!important}.active\\:text-green-50:active{color:var(--green-50)!important}.active\\:text-green-100:active{color:var(--green-100)!important}.active\\:text-green-200:active{color:var(--green-200)!important}.active\\:text-green-300:active{color:var(--green-300)!important}.active\\:text-green-400:active{color:var(--green-400)!important}.active\\:text-green-500:active{color:var(--green-500)!important}.active\\:text-green-600:active{color:var(--green-600)!important}.active\\:text-green-700:active{color:var(--green-700)!important}.active\\:text-green-800:active{color:var(--green-800)!important}.active\\:text-green-900:active{color:var(--green-900)!important}.text-yellow-50{color:var(--yellow-50)!important}.text-yellow-100{color:var(--yellow-100)!important}.text-yellow-200{color:var(--yellow-200)!important}.text-yellow-300{color:var(--yellow-300)!important}.text-yellow-400{color:var(--yellow-400)!important}.text-yellow-500{color:var(--yellow-500)!important}.text-yellow-600{color:var(--yellow-600)!important}.text-yellow-700{color:var(--yellow-700)!important}.text-yellow-800{color:var(--yellow-800)!important}.text-yellow-900{color:var(--yellow-900)!important}.focus\\:text-yellow-50:focus{color:var(--yellow-50)!important}.focus\\:text-yellow-100:focus{color:var(--yellow-100)!important}.focus\\:text-yellow-200:focus{color:var(--yellow-200)!important}.focus\\:text-yellow-300:focus{color:var(--yellow-300)!important}.focus\\:text-yellow-400:focus{color:var(--yellow-400)!important}.focus\\:text-yellow-500:focus{color:var(--yellow-500)!important}.focus\\:text-yellow-600:focus{color:var(--yellow-600)!important}.focus\\:text-yellow-700:focus{color:var(--yellow-700)!important}.focus\\:text-yellow-800:focus{color:var(--yellow-800)!important}.focus\\:text-yellow-900:focus{color:var(--yellow-900)!important}.hover\\:text-yellow-50:hover{color:var(--yellow-50)!important}.hover\\:text-yellow-100:hover{color:var(--yellow-100)!important}.hover\\:text-yellow-200:hover{color:var(--yellow-200)!important}.hover\\:text-yellow-300:hover{color:var(--yellow-300)!important}.hover\\:text-yellow-400:hover{color:var(--yellow-400)!important}.hover\\:text-yellow-500:hover{color:var(--yellow-500)!important}.hover\\:text-yellow-600:hover{color:var(--yellow-600)!important}.hover\\:text-yellow-700:hover{color:var(--yellow-700)!important}.hover\\:text-yellow-800:hover{color:var(--yellow-800)!important}.hover\\:text-yellow-900:hover{color:var(--yellow-900)!important}.active\\:text-yellow-50:active{color:var(--yellow-50)!important}.active\\:text-yellow-100:active{color:var(--yellow-100)!important}.active\\:text-yellow-200:active{color:var(--yellow-200)!important}.active\\:text-yellow-300:active{color:var(--yellow-300)!important}.active\\:text-yellow-400:active{color:var(--yellow-400)!important}.active\\:text-yellow-500:active{color:var(--yellow-500)!important}.active\\:text-yellow-600:active{color:var(--yellow-600)!important}.active\\:text-yellow-700:active{color:var(--yellow-700)!important}.active\\:text-yellow-800:active{color:var(--yellow-800)!important}.active\\:text-yellow-900:active{color:var(--yellow-900)!important}.text-cyan-50{color:var(--cyan-50)!important}.text-cyan-100{color:var(--cyan-100)!important}.text-cyan-200{color:var(--cyan-200)!important}.text-cyan-300{color:var(--cyan-300)!important}.text-cyan-400{color:var(--cyan-400)!important}.text-cyan-500{color:var(--cyan-500)!important}.text-cyan-600{color:var(--cyan-600)!important}.text-cyan-700{color:var(--cyan-700)!important}.text-cyan-800{color:var(--cyan-800)!important}.text-cyan-900{color:var(--cyan-900)!important}.focus\\:text-cyan-50:focus{color:var(--cyan-50)!important}.focus\\:text-cyan-100:focus{color:var(--cyan-100)!important}.focus\\:text-cyan-200:focus{color:var(--cyan-200)!important}.focus\\:text-cyan-300:focus{color:var(--cyan-300)!important}.focus\\:text-cyan-400:focus{color:var(--cyan-400)!important}.focus\\:text-cyan-500:focus{color:var(--cyan-500)!important}.focus\\:text-cyan-600:focus{color:var(--cyan-600)!important}.focus\\:text-cyan-700:focus{color:var(--cyan-700)!important}.focus\\:text-cyan-800:focus{color:var(--cyan-800)!important}.focus\\:text-cyan-900:focus{color:var(--cyan-900)!important}.hover\\:text-cyan-50:hover{color:var(--cyan-50)!important}.hover\\:text-cyan-100:hover{color:var(--cyan-100)!important}.hover\\:text-cyan-200:hover{color:var(--cyan-200)!important}.hover\\:text-cyan-300:hover{color:var(--cyan-300)!important}.hover\\:text-cyan-400:hover{color:var(--cyan-400)!important}.hover\\:text-cyan-500:hover{color:var(--cyan-500)!important}.hover\\:text-cyan-600:hover{color:var(--cyan-600)!important}.hover\\:text-cyan-700:hover{color:var(--cyan-700)!important}.hover\\:text-cyan-800:hover{color:var(--cyan-800)!important}.hover\\:text-cyan-900:hover{color:var(--cyan-900)!important}.active\\:text-cyan-50:active{color:var(--cyan-50)!important}.active\\:text-cyan-100:active{color:var(--cyan-100)!important}.active\\:text-cyan-200:active{color:var(--cyan-200)!important}.active\\:text-cyan-300:active{color:var(--cyan-300)!important}.active\\:text-cyan-400:active{color:var(--cyan-400)!important}.active\\:text-cyan-500:active{color:var(--cyan-500)!important}.active\\:text-cyan-600:active{color:var(--cyan-600)!important}.active\\:text-cyan-700:active{color:var(--cyan-700)!important}.active\\:text-cyan-800:active{color:var(--cyan-800)!important}.active\\:text-cyan-900:active{color:var(--cyan-900)!important}.text-pink-50{color:var(--pink-50)!important}.text-pink-100{color:var(--pink-100)!important}.text-pink-200{color:var(--pink-200)!important}.text-pink-300{color:var(--pink-300)!important}.text-pink-400{color:var(--pink-400)!important}.text-pink-500{color:var(--pink-500)!important}.text-pink-600{color:var(--pink-600)!important}.text-pink-700{color:var(--pink-700)!important}.text-pink-800{color:var(--pink-800)!important}.text-pink-900{color:var(--pink-900)!important}.focus\\:text-pink-50:focus{color:var(--pink-50)!important}.focus\\:text-pink-100:focus{color:var(--pink-100)!important}.focus\\:text-pink-200:focus{color:var(--pink-200)!important}.focus\\:text-pink-300:focus{color:var(--pink-300)!important}.focus\\:text-pink-400:focus{color:var(--pink-400)!important}.focus\\:text-pink-500:focus{color:var(--pink-500)!important}.focus\\:text-pink-600:focus{color:var(--pink-600)!important}.focus\\:text-pink-700:focus{color:var(--pink-700)!important}.focus\\:text-pink-800:focus{color:var(--pink-800)!important}.focus\\:text-pink-900:focus{color:var(--pink-900)!important}.hover\\:text-pink-50:hover{color:var(--pink-50)!important}.hover\\:text-pink-100:hover{color:var(--pink-100)!important}.hover\\:text-pink-200:hover{color:var(--pink-200)!important}.hover\\:text-pink-300:hover{color:var(--pink-300)!important}.hover\\:text-pink-400:hover{color:var(--pink-400)!important}.hover\\:text-pink-500:hover{color:var(--pink-500)!important}.hover\\:text-pink-600:hover{color:var(--pink-600)!important}.hover\\:text-pink-700:hover{color:var(--pink-700)!important}.hover\\:text-pink-800:hover{color:var(--pink-800)!important}.hover\\:text-pink-900:hover{color:var(--pink-900)!important}.active\\:text-pink-50:active{color:var(--pink-50)!important}.active\\:text-pink-100:active{color:var(--pink-100)!important}.active\\:text-pink-200:active{color:var(--pink-200)!important}.active\\:text-pink-300:active{color:var(--pink-300)!important}.active\\:text-pink-400:active{color:var(--pink-400)!important}.active\\:text-pink-500:active{color:var(--pink-500)!important}.active\\:text-pink-600:active{color:var(--pink-600)!important}.active\\:text-pink-700:active{color:var(--pink-700)!important}.active\\:text-pink-800:active{color:var(--pink-800)!important}.active\\:text-pink-900:active{color:var(--pink-900)!important}.text-indigo-50{color:var(--indigo-50)!important}.text-indigo-100{color:var(--indigo-100)!important}.text-indigo-200{color:var(--indigo-200)!important}.text-indigo-300{color:var(--indigo-300)!important}.text-indigo-400{color:var(--indigo-400)!important}.text-indigo-500{color:var(--indigo-500)!important}.text-indigo-600{color:var(--indigo-600)!important}.text-indigo-700{color:var(--indigo-700)!important}.text-indigo-800{color:var(--indigo-800)!important}.text-indigo-900{color:var(--indigo-900)!important}.focus\\:text-indigo-50:focus{color:var(--indigo-50)!important}.focus\\:text-indigo-100:focus{color:var(--indigo-100)!important}.focus\\:text-indigo-200:focus{color:var(--indigo-200)!important}.focus\\:text-indigo-300:focus{color:var(--indigo-300)!important}.focus\\:text-indigo-400:focus{color:var(--indigo-400)!important}.focus\\:text-indigo-500:focus{color:var(--indigo-500)!important}.focus\\:text-indigo-600:focus{color:var(--indigo-600)!important}.focus\\:text-indigo-700:focus{color:var(--indigo-700)!important}.focus\\:text-indigo-800:focus{color:var(--indigo-800)!important}.focus\\:text-indigo-900:focus{color:var(--indigo-900)!important}.hover\\:text-indigo-50:hover{color:var(--indigo-50)!important}.hover\\:text-indigo-100:hover{color:var(--indigo-100)!important}.hover\\:text-indigo-200:hover{color:var(--indigo-200)!important}.hover\\:text-indigo-300:hover{color:var(--indigo-300)!important}.hover\\:text-indigo-400:hover{color:var(--indigo-400)!important}.hover\\:text-indigo-500:hover{color:var(--indigo-500)!important}.hover\\:text-indigo-600:hover{color:var(--indigo-600)!important}.hover\\:text-indigo-700:hover{color:var(--indigo-700)!important}.hover\\:text-indigo-800:hover{color:var(--indigo-800)!important}.hover\\:text-indigo-900:hover{color:var(--indigo-900)!important}.active\\:text-indigo-50:active{color:var(--indigo-50)!important}.active\\:text-indigo-100:active{color:var(--indigo-100)!important}.active\\:text-indigo-200:active{color:var(--indigo-200)!important}.active\\:text-indigo-300:active{color:var(--indigo-300)!important}.active\\:text-indigo-400:active{color:var(--indigo-400)!important}.active\\:text-indigo-500:active{color:var(--indigo-500)!important}.active\\:text-indigo-600:active{color:var(--indigo-600)!important}.active\\:text-indigo-700:active{color:var(--indigo-700)!important}.active\\:text-indigo-800:active{color:var(--indigo-800)!important}.active\\:text-indigo-900:active{color:var(--indigo-900)!important}.text-teal-50{color:var(--teal-50)!important}.text-teal-100{color:var(--teal-100)!important}.text-teal-200{color:var(--teal-200)!important}.text-teal-300{color:var(--teal-300)!important}.text-teal-400{color:var(--teal-400)!important}.text-teal-500{color:var(--teal-500)!important}.text-teal-600{color:var(--teal-600)!important}.text-teal-700{color:var(--teal-700)!important}.text-teal-800{color:var(--teal-800)!important}.text-teal-900{color:var(--teal-900)!important}.focus\\:text-teal-50:focus{color:var(--teal-50)!important}.focus\\:text-teal-100:focus{color:var(--teal-100)!important}.focus\\:text-teal-200:focus{color:var(--teal-200)!important}.focus\\:text-teal-300:focus{color:var(--teal-300)!important}.focus\\:text-teal-400:focus{color:var(--teal-400)!important}.focus\\:text-teal-500:focus{color:var(--teal-500)!important}.focus\\:text-teal-600:focus{color:var(--teal-600)!important}.focus\\:text-teal-700:focus{color:var(--teal-700)!important}.focus\\:text-teal-800:focus{color:var(--teal-800)!important}.focus\\:text-teal-900:focus{color:var(--teal-900)!important}.hover\\:text-teal-50:hover{color:var(--teal-50)!important}.hover\\:text-teal-100:hover{color:var(--teal-100)!important}.hover\\:text-teal-200:hover{color:var(--teal-200)!important}.hover\\:text-teal-300:hover{color:var(--teal-300)!important}.hover\\:text-teal-400:hover{color:var(--teal-400)!important}.hover\\:text-teal-500:hover{color:var(--teal-500)!important}.hover\\:text-teal-600:hover{color:var(--teal-600)!important}.hover\\:text-teal-700:hover{color:var(--teal-700)!important}.hover\\:text-teal-800:hover{color:var(--teal-800)!important}.hover\\:text-teal-900:hover{color:var(--teal-900)!important}.active\\:text-teal-50:active{color:var(--teal-50)!important}.active\\:text-teal-100:active{color:var(--teal-100)!important}.active\\:text-teal-200:active{color:var(--teal-200)!important}.active\\:text-teal-300:active{color:var(--teal-300)!important}.active\\:text-teal-400:active{color:var(--teal-400)!important}.active\\:text-teal-500:active{color:var(--teal-500)!important}.active\\:text-teal-600:active{color:var(--teal-600)!important}.active\\:text-teal-700:active{color:var(--teal-700)!important}.active\\:text-teal-800:active{color:var(--teal-800)!important}.active\\:text-teal-900:active{color:var(--teal-900)!important}.text-orange-50{color:var(--orange-50)!important}.text-orange-100{color:var(--orange-100)!important}.text-orange-200{color:var(--orange-200)!important}.text-orange-300{color:var(--orange-300)!important}.text-orange-400{color:var(--orange-400)!important}.text-orange-500{color:var(--orange-500)!important}.text-orange-600{color:var(--orange-600)!important}.text-orange-700{color:var(--orange-700)!important}.text-orange-800{color:var(--orange-800)!important}.text-orange-900{color:var(--orange-900)!important}.focus\\:text-orange-50:focus{color:var(--orange-50)!important}.focus\\:text-orange-100:focus{color:var(--orange-100)!important}.focus\\:text-orange-200:focus{color:var(--orange-200)!important}.focus\\:text-orange-300:focus{color:var(--orange-300)!important}.focus\\:text-orange-400:focus{color:var(--orange-400)!important}.focus\\:text-orange-500:focus{color:var(--orange-500)!important}.focus\\:text-orange-600:focus{color:var(--orange-600)!important}.focus\\:text-orange-700:focus{color:var(--orange-700)!important}.focus\\:text-orange-800:focus{color:var(--orange-800)!important}.focus\\:text-orange-900:focus{color:var(--orange-900)!important}.hover\\:text-orange-50:hover{color:var(--orange-50)!important}.hover\\:text-orange-100:hover{color:var(--orange-100)!important}.hover\\:text-orange-200:hover{color:var(--orange-200)!important}.hover\\:text-orange-300:hover{color:var(--orange-300)!important}.hover\\:text-orange-400:hover{color:var(--orange-400)!important}.hover\\:text-orange-500:hover{color:var(--orange-500)!important}.hover\\:text-orange-600:hover{color:var(--orange-600)!important}.hover\\:text-orange-700:hover{color:var(--orange-700)!important}.hover\\:text-orange-800:hover{color:var(--orange-800)!important}.hover\\:text-orange-900:hover{color:var(--orange-900)!important}.active\\:text-orange-50:active{color:var(--orange-50)!important}.active\\:text-orange-100:active{color:var(--orange-100)!important}.active\\:text-orange-200:active{color:var(--orange-200)!important}.active\\:text-orange-300:active{color:var(--orange-300)!important}.active\\:text-orange-400:active{color:var(--orange-400)!important}.active\\:text-orange-500:active{color:var(--orange-500)!important}.active\\:text-orange-600:active{color:var(--orange-600)!important}.active\\:text-orange-700:active{color:var(--orange-700)!important}.active\\:text-orange-800:active{color:var(--orange-800)!important}.active\\:text-orange-900:active{color:var(--orange-900)!important}.text-bluegray-50{color:var(--bluegray-50)!important}.text-bluegray-100{color:var(--bluegray-100)!important}.text-bluegray-200{color:var(--bluegray-200)!important}.text-bluegray-300{color:var(--bluegray-300)!important}.text-bluegray-400{color:var(--bluegray-400)!important}.text-bluegray-500{color:var(--bluegray-500)!important}.text-bluegray-600{color:var(--bluegray-600)!important}.text-bluegray-700{color:var(--bluegray-700)!important}.text-bluegray-800{color:var(--bluegray-800)!important}.text-bluegray-900{color:var(--bluegray-900)!important}.focus\\:text-bluegray-50:focus{color:var(--bluegray-50)!important}.focus\\:text-bluegray-100:focus{color:var(--bluegray-100)!important}.focus\\:text-bluegray-200:focus{color:var(--bluegray-200)!important}.focus\\:text-bluegray-300:focus{color:var(--bluegray-300)!important}.focus\\:text-bluegray-400:focus{color:var(--bluegray-400)!important}.focus\\:text-bluegray-500:focus{color:var(--bluegray-500)!important}.focus\\:text-bluegray-600:focus{color:var(--bluegray-600)!important}.focus\\:text-bluegray-700:focus{color:var(--bluegray-700)!important}.focus\\:text-bluegray-800:focus{color:var(--bluegray-800)!important}.focus\\:text-bluegray-900:focus{color:var(--bluegray-900)!important}.hover\\:text-bluegray-50:hover{color:var(--bluegray-50)!important}.hover\\:text-bluegray-100:hover{color:var(--bluegray-100)!important}.hover\\:text-bluegray-200:hover{color:var(--bluegray-200)!important}.hover\\:text-bluegray-300:hover{color:var(--bluegray-300)!important}.hover\\:text-bluegray-400:hover{color:var(--bluegray-400)!important}.hover\\:text-bluegray-500:hover{color:var(--bluegray-500)!important}.hover\\:text-bluegray-600:hover{color:var(--bluegray-600)!important}.hover\\:text-bluegray-700:hover{color:var(--bluegray-700)!important}.hover\\:text-bluegray-800:hover{color:var(--bluegray-800)!important}.hover\\:text-bluegray-900:hover{color:var(--bluegray-900)!important}.active\\:text-bluegray-50:active{color:var(--bluegray-50)!important}.active\\:text-bluegray-100:active{color:var(--bluegray-100)!important}.active\\:text-bluegray-200:active{color:var(--bluegray-200)!important}.active\\:text-bluegray-300:active{color:var(--bluegray-300)!important}.active\\:text-bluegray-400:active{color:var(--bluegray-400)!important}.active\\:text-bluegray-500:active{color:var(--bluegray-500)!important}.active\\:text-bluegray-600:active{color:var(--bluegray-600)!important}.active\\:text-bluegray-700:active{color:var(--bluegray-700)!important}.active\\:text-bluegray-800:active{color:var(--bluegray-800)!important}.active\\:text-bluegray-900:active{color:var(--bluegray-900)!important}.text-purple-50{color:var(--purple-50)!important}.text-purple-100{color:var(--purple-100)!important}.text-purple-200{color:var(--purple-200)!important}.text-purple-300{color:var(--purple-300)!important}.text-purple-400{color:var(--purple-400)!important}.text-purple-500{color:var(--purple-500)!important}.text-purple-600{color:var(--purple-600)!important}.text-purple-700{color:var(--purple-700)!important}.text-purple-800{color:var(--purple-800)!important}.text-purple-900{color:var(--purple-900)!important}.focus\\:text-purple-50:focus{color:var(--purple-50)!important}.focus\\:text-purple-100:focus{color:var(--purple-100)!important}.focus\\:text-purple-200:focus{color:var(--purple-200)!important}.focus\\:text-purple-300:focus{color:var(--purple-300)!important}.focus\\:text-purple-400:focus{color:var(--purple-400)!important}.focus\\:text-purple-500:focus{color:var(--purple-500)!important}.focus\\:text-purple-600:focus{color:var(--purple-600)!important}.focus\\:text-purple-700:focus{color:var(--purple-700)!important}.focus\\:text-purple-800:focus{color:var(--purple-800)!important}.focus\\:text-purple-900:focus{color:var(--purple-900)!important}.hover\\:text-purple-50:hover{color:var(--purple-50)!important}.hover\\:text-purple-100:hover{color:var(--purple-100)!important}.hover\\:text-purple-200:hover{color:var(--purple-200)!important}.hover\\:text-purple-300:hover{color:var(--purple-300)!important}.hover\\:text-purple-400:hover{color:var(--purple-400)!important}.hover\\:text-purple-500:hover{color:var(--purple-500)!important}.hover\\:text-purple-600:hover{color:var(--purple-600)!important}.hover\\:text-purple-700:hover{color:var(--purple-700)!important}.hover\\:text-purple-800:hover{color:var(--purple-800)!important}.hover\\:text-purple-900:hover{color:var(--purple-900)!important}.active\\:text-purple-50:active{color:var(--purple-50)!important}.active\\:text-purple-100:active{color:var(--purple-100)!important}.active\\:text-purple-200:active{color:var(--purple-200)!important}.active\\:text-purple-300:active{color:var(--purple-300)!important}.active\\:text-purple-400:active{color:var(--purple-400)!important}.active\\:text-purple-500:active{color:var(--purple-500)!important}.active\\:text-purple-600:active{color:var(--purple-600)!important}.active\\:text-purple-700:active{color:var(--purple-700)!important}.active\\:text-purple-800:active{color:var(--purple-800)!important}.active\\:text-purple-900:active{color:var(--purple-900)!important}.text-gray-50{color:var(--gray-50)!important}.text-gray-100{color:var(--gray-100)!important}.text-gray-200{color:var(--gray-200)!important}.text-gray-300{color:var(--gray-300)!important}.text-gray-400{color:var(--gray-400)!important}.text-gray-500{color:var(--gray-500)!important}.text-gray-600{color:var(--gray-600)!important}.text-gray-700{color:var(--gray-700)!important}.text-gray-800{color:var(--gray-800)!important}.text-gray-900{color:var(--gray-900)!important}.focus\\:text-gray-50:focus{color:var(--gray-50)!important}.focus\\:text-gray-100:focus{color:var(--gray-100)!important}.focus\\:text-gray-200:focus{color:var(--gray-200)!important}.focus\\:text-gray-300:focus{color:var(--gray-300)!important}.focus\\:text-gray-400:focus{color:var(--gray-400)!important}.focus\\:text-gray-500:focus{color:var(--gray-500)!important}.focus\\:text-gray-600:focus{color:var(--gray-600)!important}.focus\\:text-gray-700:focus{color:var(--gray-700)!important}.focus\\:text-gray-800:focus{color:var(--gray-800)!important}.focus\\:text-gray-900:focus{color:var(--gray-900)!important}.hover\\:text-gray-50:hover{color:var(--gray-50)!important}.hover\\:text-gray-100:hover{color:var(--gray-100)!important}.hover\\:text-gray-200:hover{color:var(--gray-200)!important}.hover\\:text-gray-300:hover{color:var(--gray-300)!important}.hover\\:text-gray-400:hover{color:var(--gray-400)!important}.hover\\:text-gray-500:hover{color:var(--gray-500)!important}.hover\\:text-gray-600:hover{color:var(--gray-600)!important}.hover\\:text-gray-700:hover{color:var(--gray-700)!important}.hover\\:text-gray-800:hover{color:var(--gray-800)!important}.hover\\:text-gray-900:hover{color:var(--gray-900)!important}.active\\:text-gray-50:active{color:var(--gray-50)!important}.active\\:text-gray-100:active{color:var(--gray-100)!important}.active\\:text-gray-200:active{color:var(--gray-200)!important}.active\\:text-gray-300:active{color:var(--gray-300)!important}.active\\:text-gray-400:active{color:var(--gray-400)!important}.active\\:text-gray-500:active{color:var(--gray-500)!important}.active\\:text-gray-600:active{color:var(--gray-600)!important}.active\\:text-gray-700:active{color:var(--gray-700)!important}.active\\:text-gray-800:active{color:var(--gray-800)!important}.active\\:text-gray-900:active{color:var(--gray-900)!important}.text-red-50{color:var(--red-50)!important}.text-red-100{color:var(--red-100)!important}.text-red-200{color:var(--red-200)!important}.text-red-300{color:var(--red-300)!important}.text-red-400{color:var(--red-400)!important}.text-red-500{color:var(--red-500)!important}.text-red-600{color:var(--red-600)!important}.text-red-700{color:var(--red-700)!important}.text-red-800{color:var(--red-800)!important}.text-red-900{color:var(--red-900)!important}.focus\\:text-red-50:focus{color:var(--red-50)!important}.focus\\:text-red-100:focus{color:var(--red-100)!important}.focus\\:text-red-200:focus{color:var(--red-200)!important}.focus\\:text-red-300:focus{color:var(--red-300)!important}.focus\\:text-red-400:focus{color:var(--red-400)!important}.focus\\:text-red-500:focus{color:var(--red-500)!important}.focus\\:text-red-600:focus{color:var(--red-600)!important}.focus\\:text-red-700:focus{color:var(--red-700)!important}.focus\\:text-red-800:focus{color:var(--red-800)!important}.focus\\:text-red-900:focus{color:var(--red-900)!important}.hover\\:text-red-50:hover{color:var(--red-50)!important}.hover\\:text-red-100:hover{color:var(--red-100)!important}.hover\\:text-red-200:hover{color:var(--red-200)!important}.hover\\:text-red-300:hover{color:var(--red-300)!important}.hover\\:text-red-400:hover{color:var(--red-400)!important}.hover\\:text-red-500:hover{color:var(--red-500)!important}.hover\\:text-red-600:hover{color:var(--red-600)!important}.hover\\:text-red-700:hover{color:var(--red-700)!important}.hover\\:text-red-800:hover{color:var(--red-800)!important}.hover\\:text-red-900:hover{color:var(--red-900)!important}.active\\:text-red-50:active{color:var(--red-50)!important}.active\\:text-red-100:active{color:var(--red-100)!important}.active\\:text-red-200:active{color:var(--red-200)!important}.active\\:text-red-300:active{color:var(--red-300)!important}.active\\:text-red-400:active{color:var(--red-400)!important}.active\\:text-red-500:active{color:var(--red-500)!important}.active\\:text-red-600:active{color:var(--red-600)!important}.active\\:text-red-700:active{color:var(--red-700)!important}.active\\:text-red-800:active{color:var(--red-800)!important}.active\\:text-red-900:active{color:var(--red-900)!important}.text-primary-50{color:var(--primary-50)!important}.text-primary-100{color:var(--primary-100)!important}.text-primary-200{color:var(--primary-200)!important}.text-primary-300{color:var(--primary-300)!important}.text-primary-400{color:var(--primary-400)!important}.text-primary-500{color:var(--primary-500)!important}.text-primary-600{color:var(--primary-600)!important}.text-primary-700{color:var(--primary-700)!important}.text-primary-800{color:var(--primary-800)!important}.text-primary-900{color:var(--primary-900)!important}.focus\\:text-primary-50:focus{color:var(--primary-50)!important}.focus\\:text-primary-100:focus{color:var(--primary-100)!important}.focus\\:text-primary-200:focus{color:var(--primary-200)!important}.focus\\:text-primary-300:focus{color:var(--primary-300)!important}.focus\\:text-primary-400:focus{color:var(--primary-400)!important}.focus\\:text-primary-500:focus{color:var(--primary-500)!important}.focus\\:text-primary-600:focus{color:var(--primary-600)!important}.focus\\:text-primary-700:focus{color:var(--primary-700)!important}.focus\\:text-primary-800:focus{color:var(--primary-800)!important}.focus\\:text-primary-900:focus{color:var(--primary-900)!important}.hover\\:text-primary-50:hover{color:var(--primary-50)!important}.hover\\:text-primary-100:hover{color:var(--primary-100)!important}.hover\\:text-primary-200:hover{color:var(--primary-200)!important}.hover\\:text-primary-300:hover{color:var(--primary-300)!important}.hover\\:text-primary-400:hover{color:var(--primary-400)!important}.hover\\:text-primary-500:hover{color:var(--primary-500)!important}.hover\\:text-primary-600:hover{color:var(--primary-600)!important}.hover\\:text-primary-700:hover{color:var(--primary-700)!important}.hover\\:text-primary-800:hover{color:var(--primary-800)!important}.hover\\:text-primary-900:hover{color:var(--primary-900)!important}.active\\:text-primary-50:active{color:var(--primary-50)!important}.active\\:text-primary-100:active{color:var(--primary-100)!important}.active\\:text-primary-200:active{color:var(--primary-200)!important}.active\\:text-primary-300:active{color:var(--primary-300)!important}.active\\:text-primary-400:active{color:var(--primary-400)!important}.active\\:text-primary-500:active{color:var(--primary-500)!important}.active\\:text-primary-600:active{color:var(--primary-600)!important}.active\\:text-primary-700:active{color:var(--primary-700)!important}.active\\:text-primary-800:active{color:var(--primary-800)!important}.active\\:text-primary-900:active{color:var(--primary-900)!important}.bg-blue-50{background-color:var(--blue-50)!important}.bg-blue-100{background-color:var(--blue-100)!important}.bg-blue-200{background-color:var(--blue-200)!important}.bg-blue-300{background-color:var(--blue-300)!important}.bg-blue-400{background-color:var(--blue-400)!important}.bg-blue-500{background-color:var(--blue-500)!important}.bg-blue-600{background-color:var(--blue-600)!important}.bg-blue-700{background-color:var(--blue-700)!important}.bg-blue-800{background-color:var(--blue-800)!important}.bg-blue-900{background-color:var(--blue-900)!important}.focus\\:bg-blue-50:focus{background-color:var(--blue-50)!important}.focus\\:bg-blue-100:focus{background-color:var(--blue-100)!important}.focus\\:bg-blue-200:focus{background-color:var(--blue-200)!important}.focus\\:bg-blue-300:focus{background-color:var(--blue-300)!important}.focus\\:bg-blue-400:focus{background-color:var(--blue-400)!important}.focus\\:bg-blue-500:focus{background-color:var(--blue-500)!important}.focus\\:bg-blue-600:focus{background-color:var(--blue-600)!important}.focus\\:bg-blue-700:focus{background-color:var(--blue-700)!important}.focus\\:bg-blue-800:focus{background-color:var(--blue-800)!important}.focus\\:bg-blue-900:focus{background-color:var(--blue-900)!important}.hover\\:bg-blue-50:hover{background-color:var(--blue-50)!important}.hover\\:bg-blue-100:hover{background-color:var(--blue-100)!important}.hover\\:bg-blue-200:hover{background-color:var(--blue-200)!important}.hover\\:bg-blue-300:hover{background-color:var(--blue-300)!important}.hover\\:bg-blue-400:hover{background-color:var(--blue-400)!important}.hover\\:bg-blue-500:hover{background-color:var(--blue-500)!important}.hover\\:bg-blue-600:hover{background-color:var(--blue-600)!important}.hover\\:bg-blue-700:hover{background-color:var(--blue-700)!important}.hover\\:bg-blue-800:hover{background-color:var(--blue-800)!important}.hover\\:bg-blue-900:hover{background-color:var(--blue-900)!important}.active\\:bg-blue-50:active{background-color:var(--blue-50)!important}.active\\:bg-blue-100:active{background-color:var(--blue-100)!important}.active\\:bg-blue-200:active{background-color:var(--blue-200)!important}.active\\:bg-blue-300:active{background-color:var(--blue-300)!important}.active\\:bg-blue-400:active{background-color:var(--blue-400)!important}.active\\:bg-blue-500:active{background-color:var(--blue-500)!important}.active\\:bg-blue-600:active{background-color:var(--blue-600)!important}.active\\:bg-blue-700:active{background-color:var(--blue-700)!important}.active\\:bg-blue-800:active{background-color:var(--blue-800)!important}.active\\:bg-blue-900:active{background-color:var(--blue-900)!important}.bg-green-50{background-color:var(--green-50)!important}.bg-green-100{background-color:var(--green-100)!important}.bg-green-200{background-color:var(--green-200)!important}.bg-green-300{background-color:var(--green-300)!important}.bg-green-400{background-color:var(--green-400)!important}.bg-green-500{background-color:var(--green-500)!important}.bg-green-600{background-color:var(--green-600)!important}.bg-green-700{background-color:var(--green-700)!important}.bg-green-800{background-color:var(--green-800)!important}.bg-green-900{background-color:var(--green-900)!important}.focus\\:bg-green-50:focus{background-color:var(--green-50)!important}.focus\\:bg-green-100:focus{background-color:var(--green-100)!important}.focus\\:bg-green-200:focus{background-color:var(--green-200)!important}.focus\\:bg-green-300:focus{background-color:var(--green-300)!important}.focus\\:bg-green-400:focus{background-color:var(--green-400)!important}.focus\\:bg-green-500:focus{background-color:var(--green-500)!important}.focus\\:bg-green-600:focus{background-color:var(--green-600)!important}.focus\\:bg-green-700:focus{background-color:var(--green-700)!important}.focus\\:bg-green-800:focus{background-color:var(--green-800)!important}.focus\\:bg-green-900:focus{background-color:var(--green-900)!important}.hover\\:bg-green-50:hover{background-color:var(--green-50)!important}.hover\\:bg-green-100:hover{background-color:var(--green-100)!important}.hover\\:bg-green-200:hover{background-color:var(--green-200)!important}.hover\\:bg-green-300:hover{background-color:var(--green-300)!important}.hover\\:bg-green-400:hover{background-color:var(--green-400)!important}.hover\\:bg-green-500:hover{background-color:var(--green-500)!important}.hover\\:bg-green-600:hover{background-color:var(--green-600)!important}.hover\\:bg-green-700:hover{background-color:var(--green-700)!important}.hover\\:bg-green-800:hover{background-color:var(--green-800)!important}.hover\\:bg-green-900:hover{background-color:var(--green-900)!important}.active\\:bg-green-50:active{background-color:var(--green-50)!important}.active\\:bg-green-100:active{background-color:var(--green-100)!important}.active\\:bg-green-200:active{background-color:var(--green-200)!important}.active\\:bg-green-300:active{background-color:var(--green-300)!important}.active\\:bg-green-400:active{background-color:var(--green-400)!important}.active\\:bg-green-500:active{background-color:var(--green-500)!important}.active\\:bg-green-600:active{background-color:var(--green-600)!important}.active\\:bg-green-700:active{background-color:var(--green-700)!important}.active\\:bg-green-800:active{background-color:var(--green-800)!important}.active\\:bg-green-900:active{background-color:var(--green-900)!important}.bg-yellow-50{background-color:var(--yellow-50)!important}.bg-yellow-100{background-color:var(--yellow-100)!important}.bg-yellow-200{background-color:var(--yellow-200)!important}.bg-yellow-300{background-color:var(--yellow-300)!important}.bg-yellow-400{background-color:var(--yellow-400)!important}.bg-yellow-500{background-color:var(--yellow-500)!important}.bg-yellow-600{background-color:var(--yellow-600)!important}.bg-yellow-700{background-color:var(--yellow-700)!important}.bg-yellow-800{background-color:var(--yellow-800)!important}.bg-yellow-900{background-color:var(--yellow-900)!important}.focus\\:bg-yellow-50:focus{background-color:var(--yellow-50)!important}.focus\\:bg-yellow-100:focus{background-color:var(--yellow-100)!important}.focus\\:bg-yellow-200:focus{background-color:var(--yellow-200)!important}.focus\\:bg-yellow-300:focus{background-color:var(--yellow-300)!important}.focus\\:bg-yellow-400:focus{background-color:var(--yellow-400)!important}.focus\\:bg-yellow-500:focus{background-color:var(--yellow-500)!important}.focus\\:bg-yellow-600:focus{background-color:var(--yellow-600)!important}.focus\\:bg-yellow-700:focus{background-color:var(--yellow-700)!important}.focus\\:bg-yellow-800:focus{background-color:var(--yellow-800)!important}.focus\\:bg-yellow-900:focus{background-color:var(--yellow-900)!important}.hover\\:bg-yellow-50:hover{background-color:var(--yellow-50)!important}.hover\\:bg-yellow-100:hover{background-color:var(--yellow-100)!important}.hover\\:bg-yellow-200:hover{background-color:var(--yellow-200)!important}.hover\\:bg-yellow-300:hover{background-color:var(--yellow-300)!important}.hover\\:bg-yellow-400:hover{background-color:var(--yellow-400)!important}.hover\\:bg-yellow-500:hover{background-color:var(--yellow-500)!important}.hover\\:bg-yellow-600:hover{background-color:var(--yellow-600)!important}.hover\\:bg-yellow-700:hover{background-color:var(--yellow-700)!important}.hover\\:bg-yellow-800:hover{background-color:var(--yellow-800)!important}.hover\\:bg-yellow-900:hover{background-color:var(--yellow-900)!important}.active\\:bg-yellow-50:active{background-color:var(--yellow-50)!important}.active\\:bg-yellow-100:active{background-color:var(--yellow-100)!important}.active\\:bg-yellow-200:active{background-color:var(--yellow-200)!important}.active\\:bg-yellow-300:active{background-color:var(--yellow-300)!important}.active\\:bg-yellow-400:active{background-color:var(--yellow-400)!important}.active\\:bg-yellow-500:active{background-color:var(--yellow-500)!important}.active\\:bg-yellow-600:active{background-color:var(--yellow-600)!important}.active\\:bg-yellow-700:active{background-color:var(--yellow-700)!important}.active\\:bg-yellow-800:active{background-color:var(--yellow-800)!important}.active\\:bg-yellow-900:active{background-color:var(--yellow-900)!important}.bg-cyan-50{background-color:var(--cyan-50)!important}.bg-cyan-100{background-color:var(--cyan-100)!important}.bg-cyan-200{background-color:var(--cyan-200)!important}.bg-cyan-300{background-color:var(--cyan-300)!important}.bg-cyan-400{background-color:var(--cyan-400)!important}.bg-cyan-500{background-color:var(--cyan-500)!important}.bg-cyan-600{background-color:var(--cyan-600)!important}.bg-cyan-700{background-color:var(--cyan-700)!important}.bg-cyan-800{background-color:var(--cyan-800)!important}.bg-cyan-900{background-color:var(--cyan-900)!important}.focus\\:bg-cyan-50:focus{background-color:var(--cyan-50)!important}.focus\\:bg-cyan-100:focus{background-color:var(--cyan-100)!important}.focus\\:bg-cyan-200:focus{background-color:var(--cyan-200)!important}.focus\\:bg-cyan-300:focus{background-color:var(--cyan-300)!important}.focus\\:bg-cyan-400:focus{background-color:var(--cyan-400)!important}.focus\\:bg-cyan-500:focus{background-color:var(--cyan-500)!important}.focus\\:bg-cyan-600:focus{background-color:var(--cyan-600)!important}.focus\\:bg-cyan-700:focus{background-color:var(--cyan-700)!important}.focus\\:bg-cyan-800:focus{background-color:var(--cyan-800)!important}.focus\\:bg-cyan-900:focus{background-color:var(--cyan-900)!important}.hover\\:bg-cyan-50:hover{background-color:var(--cyan-50)!important}.hover\\:bg-cyan-100:hover{background-color:var(--cyan-100)!important}.hover\\:bg-cyan-200:hover{background-color:var(--cyan-200)!important}.hover\\:bg-cyan-300:hover{background-color:var(--cyan-300)!important}.hover\\:bg-cyan-400:hover{background-color:var(--cyan-400)!important}.hover\\:bg-cyan-500:hover{background-color:var(--cyan-500)!important}.hover\\:bg-cyan-600:hover{background-color:var(--cyan-600)!important}.hover\\:bg-cyan-700:hover{background-color:var(--cyan-700)!important}.hover\\:bg-cyan-800:hover{background-color:var(--cyan-800)!important}.hover\\:bg-cyan-900:hover{background-color:var(--cyan-900)!important}.active\\:bg-cyan-50:active{background-color:var(--cyan-50)!important}.active\\:bg-cyan-100:active{background-color:var(--cyan-100)!important}.active\\:bg-cyan-200:active{background-color:var(--cyan-200)!important}.active\\:bg-cyan-300:active{background-color:var(--cyan-300)!important}.active\\:bg-cyan-400:active{background-color:var(--cyan-400)!important}.active\\:bg-cyan-500:active{background-color:var(--cyan-500)!important}.active\\:bg-cyan-600:active{background-color:var(--cyan-600)!important}.active\\:bg-cyan-700:active{background-color:var(--cyan-700)!important}.active\\:bg-cyan-800:active{background-color:var(--cyan-800)!important}.active\\:bg-cyan-900:active{background-color:var(--cyan-900)!important}.bg-pink-50{background-color:var(--pink-50)!important}.bg-pink-100{background-color:var(--pink-100)!important}.bg-pink-200{background-color:var(--pink-200)!important}.bg-pink-300{background-color:var(--pink-300)!important}.bg-pink-400{background-color:var(--pink-400)!important}.bg-pink-500{background-color:var(--pink-500)!important}.bg-pink-600{background-color:var(--pink-600)!important}.bg-pink-700{background-color:var(--pink-700)!important}.bg-pink-800{background-color:var(--pink-800)!important}.bg-pink-900{background-color:var(--pink-900)!important}.focus\\:bg-pink-50:focus{background-color:var(--pink-50)!important}.focus\\:bg-pink-100:focus{background-color:var(--pink-100)!important}.focus\\:bg-pink-200:focus{background-color:var(--pink-200)!important}.focus\\:bg-pink-300:focus{background-color:var(--pink-300)!important}.focus\\:bg-pink-400:focus{background-color:var(--pink-400)!important}.focus\\:bg-pink-500:focus{background-color:var(--pink-500)!important}.focus\\:bg-pink-600:focus{background-color:var(--pink-600)!important}.focus\\:bg-pink-700:focus{background-color:var(--pink-700)!important}.focus\\:bg-pink-800:focus{background-color:var(--pink-800)!important}.focus\\:bg-pink-900:focus{background-color:var(--pink-900)!important}.hover\\:bg-pink-50:hover{background-color:var(--pink-50)!important}.hover\\:bg-pink-100:hover{background-color:var(--pink-100)!important}.hover\\:bg-pink-200:hover{background-color:var(--pink-200)!important}.hover\\:bg-pink-300:hover{background-color:var(--pink-300)!important}.hover\\:bg-pink-400:hover{background-color:var(--pink-400)!important}.hover\\:bg-pink-500:hover{background-color:var(--pink-500)!important}.hover\\:bg-pink-600:hover{background-color:var(--pink-600)!important}.hover\\:bg-pink-700:hover{background-color:var(--pink-700)!important}.hover\\:bg-pink-800:hover{background-color:var(--pink-800)!important}.hover\\:bg-pink-900:hover{background-color:var(--pink-900)!important}.active\\:bg-pink-50:active{background-color:var(--pink-50)!important}.active\\:bg-pink-100:active{background-color:var(--pink-100)!important}.active\\:bg-pink-200:active{background-color:var(--pink-200)!important}.active\\:bg-pink-300:active{background-color:var(--pink-300)!important}.active\\:bg-pink-400:active{background-color:var(--pink-400)!important}.active\\:bg-pink-500:active{background-color:var(--pink-500)!important}.active\\:bg-pink-600:active{background-color:var(--pink-600)!important}.active\\:bg-pink-700:active{background-color:var(--pink-700)!important}.active\\:bg-pink-800:active{background-color:var(--pink-800)!important}.active\\:bg-pink-900:active{background-color:var(--pink-900)!important}.bg-indigo-50{background-color:var(--indigo-50)!important}.bg-indigo-100{background-color:var(--indigo-100)!important}.bg-indigo-200{background-color:var(--indigo-200)!important}.bg-indigo-300{background-color:var(--indigo-300)!important}.bg-indigo-400{background-color:var(--indigo-400)!important}.bg-indigo-500{background-color:var(--indigo-500)!important}.bg-indigo-600{background-color:var(--indigo-600)!important}.bg-indigo-700{background-color:var(--indigo-700)!important}.bg-indigo-800{background-color:var(--indigo-800)!important}.bg-indigo-900{background-color:var(--indigo-900)!important}.focus\\:bg-indigo-50:focus{background-color:var(--indigo-50)!important}.focus\\:bg-indigo-100:focus{background-color:var(--indigo-100)!important}.focus\\:bg-indigo-200:focus{background-color:var(--indigo-200)!important}.focus\\:bg-indigo-300:focus{background-color:var(--indigo-300)!important}.focus\\:bg-indigo-400:focus{background-color:var(--indigo-400)!important}.focus\\:bg-indigo-500:focus{background-color:var(--indigo-500)!important}.focus\\:bg-indigo-600:focus{background-color:var(--indigo-600)!important}.focus\\:bg-indigo-700:focus{background-color:var(--indigo-700)!important}.focus\\:bg-indigo-800:focus{background-color:var(--indigo-800)!important}.focus\\:bg-indigo-900:focus{background-color:var(--indigo-900)!important}.hover\\:bg-indigo-50:hover{background-color:var(--indigo-50)!important}.hover\\:bg-indigo-100:hover{background-color:var(--indigo-100)!important}.hover\\:bg-indigo-200:hover{background-color:var(--indigo-200)!important}.hover\\:bg-indigo-300:hover{background-color:var(--indigo-300)!important}.hover\\:bg-indigo-400:hover{background-color:var(--indigo-400)!important}.hover\\:bg-indigo-500:hover{background-color:var(--indigo-500)!important}.hover\\:bg-indigo-600:hover{background-color:var(--indigo-600)!important}.hover\\:bg-indigo-700:hover{background-color:var(--indigo-700)!important}.hover\\:bg-indigo-800:hover{background-color:var(--indigo-800)!important}.hover\\:bg-indigo-900:hover{background-color:var(--indigo-900)!important}.active\\:bg-indigo-50:active{background-color:var(--indigo-50)!important}.active\\:bg-indigo-100:active{background-color:var(--indigo-100)!important}.active\\:bg-indigo-200:active{background-color:var(--indigo-200)!important}.active\\:bg-indigo-300:active{background-color:var(--indigo-300)!important}.active\\:bg-indigo-400:active{background-color:var(--indigo-400)!important}.active\\:bg-indigo-500:active{background-color:var(--indigo-500)!important}.active\\:bg-indigo-600:active{background-color:var(--indigo-600)!important}.active\\:bg-indigo-700:active{background-color:var(--indigo-700)!important}.active\\:bg-indigo-800:active{background-color:var(--indigo-800)!important}.active\\:bg-indigo-900:active{background-color:var(--indigo-900)!important}.bg-teal-50{background-color:var(--teal-50)!important}.bg-teal-100{background-color:var(--teal-100)!important}.bg-teal-200{background-color:var(--teal-200)!important}.bg-teal-300{background-color:var(--teal-300)!important}.bg-teal-400{background-color:var(--teal-400)!important}.bg-teal-500{background-color:var(--teal-500)!important}.bg-teal-600{background-color:var(--teal-600)!important}.bg-teal-700{background-color:var(--teal-700)!important}.bg-teal-800{background-color:var(--teal-800)!important}.bg-teal-900{background-color:var(--teal-900)!important}.focus\\:bg-teal-50:focus{background-color:var(--teal-50)!important}.focus\\:bg-teal-100:focus{background-color:var(--teal-100)!important}.focus\\:bg-teal-200:focus{background-color:var(--teal-200)!important}.focus\\:bg-teal-300:focus{background-color:var(--teal-300)!important}.focus\\:bg-teal-400:focus{background-color:var(--teal-400)!important}.focus\\:bg-teal-500:focus{background-color:var(--teal-500)!important}.focus\\:bg-teal-600:focus{background-color:var(--teal-600)!important}.focus\\:bg-teal-700:focus{background-color:var(--teal-700)!important}.focus\\:bg-teal-800:focus{background-color:var(--teal-800)!important}.focus\\:bg-teal-900:focus{background-color:var(--teal-900)!important}.hover\\:bg-teal-50:hover{background-color:var(--teal-50)!important}.hover\\:bg-teal-100:hover{background-color:var(--teal-100)!important}.hover\\:bg-teal-200:hover{background-color:var(--teal-200)!important}.hover\\:bg-teal-300:hover{background-color:var(--teal-300)!important}.hover\\:bg-teal-400:hover{background-color:var(--teal-400)!important}.hover\\:bg-teal-500:hover{background-color:var(--teal-500)!important}.hover\\:bg-teal-600:hover{background-color:var(--teal-600)!important}.hover\\:bg-teal-700:hover{background-color:var(--teal-700)!important}.hover\\:bg-teal-800:hover{background-color:var(--teal-800)!important}.hover\\:bg-teal-900:hover{background-color:var(--teal-900)!important}.active\\:bg-teal-50:active{background-color:var(--teal-50)!important}.active\\:bg-teal-100:active{background-color:var(--teal-100)!important}.active\\:bg-teal-200:active{background-color:var(--teal-200)!important}.active\\:bg-teal-300:active{background-color:var(--teal-300)!important}.active\\:bg-teal-400:active{background-color:var(--teal-400)!important}.active\\:bg-teal-500:active{background-color:var(--teal-500)!important}.active\\:bg-teal-600:active{background-color:var(--teal-600)!important}.active\\:bg-teal-700:active{background-color:var(--teal-700)!important}.active\\:bg-teal-800:active{background-color:var(--teal-800)!important}.active\\:bg-teal-900:active{background-color:var(--teal-900)!important}.bg-orange-50{background-color:var(--orange-50)!important}.bg-orange-100{background-color:var(--orange-100)!important}.bg-orange-200{background-color:var(--orange-200)!important}.bg-orange-300{background-color:var(--orange-300)!important}.bg-orange-400{background-color:var(--orange-400)!important}.bg-orange-500{background-color:var(--orange-500)!important}.bg-orange-600{background-color:var(--orange-600)!important}.bg-orange-700{background-color:var(--orange-700)!important}.bg-orange-800{background-color:var(--orange-800)!important}.bg-orange-900{background-color:var(--orange-900)!important}.focus\\:bg-orange-50:focus{background-color:var(--orange-50)!important}.focus\\:bg-orange-100:focus{background-color:var(--orange-100)!important}.focus\\:bg-orange-200:focus{background-color:var(--orange-200)!important}.focus\\:bg-orange-300:focus{background-color:var(--orange-300)!important}.focus\\:bg-orange-400:focus{background-color:var(--orange-400)!important}.focus\\:bg-orange-500:focus{background-color:var(--orange-500)!important}.focus\\:bg-orange-600:focus{background-color:var(--orange-600)!important}.focus\\:bg-orange-700:focus{background-color:var(--orange-700)!important}.focus\\:bg-orange-800:focus{background-color:var(--orange-800)!important}.focus\\:bg-orange-900:focus{background-color:var(--orange-900)!important}.hover\\:bg-orange-50:hover{background-color:var(--orange-50)!important}.hover\\:bg-orange-100:hover{background-color:var(--orange-100)!important}.hover\\:bg-orange-200:hover{background-color:var(--orange-200)!important}.hover\\:bg-orange-300:hover{background-color:var(--orange-300)!important}.hover\\:bg-orange-400:hover{background-color:var(--orange-400)!important}.hover\\:bg-orange-500:hover{background-color:var(--orange-500)!important}.hover\\:bg-orange-600:hover{background-color:var(--orange-600)!important}.hover\\:bg-orange-700:hover{background-color:var(--orange-700)!important}.hover\\:bg-orange-800:hover{background-color:var(--orange-800)!important}.hover\\:bg-orange-900:hover{background-color:var(--orange-900)!important}.active\\:bg-orange-50:active{background-color:var(--orange-50)!important}.active\\:bg-orange-100:active{background-color:var(--orange-100)!important}.active\\:bg-orange-200:active{background-color:var(--orange-200)!important}.active\\:bg-orange-300:active{background-color:var(--orange-300)!important}.active\\:bg-orange-400:active{background-color:var(--orange-400)!important}.active\\:bg-orange-500:active{background-color:var(--orange-500)!important}.active\\:bg-orange-600:active{background-color:var(--orange-600)!important}.active\\:bg-orange-700:active{background-color:var(--orange-700)!important}.active\\:bg-orange-800:active{background-color:var(--orange-800)!important}.active\\:bg-orange-900:active{background-color:var(--orange-900)!important}.bg-bluegray-50{background-color:var(--bluegray-50)!important}.bg-bluegray-100{background-color:var(--bluegray-100)!important}.bg-bluegray-200{background-color:var(--bluegray-200)!important}.bg-bluegray-300{background-color:var(--bluegray-300)!important}.bg-bluegray-400{background-color:var(--bluegray-400)!important}.bg-bluegray-500{background-color:var(--bluegray-500)!important}.bg-bluegray-600{background-color:var(--bluegray-600)!important}.bg-bluegray-700{background-color:var(--bluegray-700)!important}.bg-bluegray-800{background-color:var(--bluegray-800)!important}.bg-bluegray-900{background-color:var(--bluegray-900)!important}.focus\\:bg-bluegray-50:focus{background-color:var(--bluegray-50)!important}.focus\\:bg-bluegray-100:focus{background-color:var(--bluegray-100)!important}.focus\\:bg-bluegray-200:focus{background-color:var(--bluegray-200)!important}.focus\\:bg-bluegray-300:focus{background-color:var(--bluegray-300)!important}.focus\\:bg-bluegray-400:focus{background-color:var(--bluegray-400)!important}.focus\\:bg-bluegray-500:focus{background-color:var(--bluegray-500)!important}.focus\\:bg-bluegray-600:focus{background-color:var(--bluegray-600)!important}.focus\\:bg-bluegray-700:focus{background-color:var(--bluegray-700)!important}.focus\\:bg-bluegray-800:focus{background-color:var(--bluegray-800)!important}.focus\\:bg-bluegray-900:focus{background-color:var(--bluegray-900)!important}.hover\\:bg-bluegray-50:hover{background-color:var(--bluegray-50)!important}.hover\\:bg-bluegray-100:hover{background-color:var(--bluegray-100)!important}.hover\\:bg-bluegray-200:hover{background-color:var(--bluegray-200)!important}.hover\\:bg-bluegray-300:hover{background-color:var(--bluegray-300)!important}.hover\\:bg-bluegray-400:hover{background-color:var(--bluegray-400)!important}.hover\\:bg-bluegray-500:hover{background-color:var(--bluegray-500)!important}.hover\\:bg-bluegray-600:hover{background-color:var(--bluegray-600)!important}.hover\\:bg-bluegray-700:hover{background-color:var(--bluegray-700)!important}.hover\\:bg-bluegray-800:hover{background-color:var(--bluegray-800)!important}.hover\\:bg-bluegray-900:hover{background-color:var(--bluegray-900)!important}.active\\:bg-bluegray-50:active{background-color:var(--bluegray-50)!important}.active\\:bg-bluegray-100:active{background-color:var(--bluegray-100)!important}.active\\:bg-bluegray-200:active{background-color:var(--bluegray-200)!important}.active\\:bg-bluegray-300:active{background-color:var(--bluegray-300)!important}.active\\:bg-bluegray-400:active{background-color:var(--bluegray-400)!important}.active\\:bg-bluegray-500:active{background-color:var(--bluegray-500)!important}.active\\:bg-bluegray-600:active{background-color:var(--bluegray-600)!important}.active\\:bg-bluegray-700:active{background-color:var(--bluegray-700)!important}.active\\:bg-bluegray-800:active{background-color:var(--bluegray-800)!important}.active\\:bg-bluegray-900:active{background-color:var(--bluegray-900)!important}.bg-purple-50{background-color:var(--purple-50)!important}.bg-purple-100{background-color:var(--purple-100)!important}.bg-purple-200{background-color:var(--purple-200)!important}.bg-purple-300{background-color:var(--purple-300)!important}.bg-purple-400{background-color:var(--purple-400)!important}.bg-purple-500{background-color:var(--purple-500)!important}.bg-purple-600{background-color:var(--purple-600)!important}.bg-purple-700{background-color:var(--purple-700)!important}.bg-purple-800{background-color:var(--purple-800)!important}.bg-purple-900{background-color:var(--purple-900)!important}.focus\\:bg-purple-50:focus{background-color:var(--purple-50)!important}.focus\\:bg-purple-100:focus{background-color:var(--purple-100)!important}.focus\\:bg-purple-200:focus{background-color:var(--purple-200)!important}.focus\\:bg-purple-300:focus{background-color:var(--purple-300)!important}.focus\\:bg-purple-400:focus{background-color:var(--purple-400)!important}.focus\\:bg-purple-500:focus{background-color:var(--purple-500)!important}.focus\\:bg-purple-600:focus{background-color:var(--purple-600)!important}.focus\\:bg-purple-700:focus{background-color:var(--purple-700)!important}.focus\\:bg-purple-800:focus{background-color:var(--purple-800)!important}.focus\\:bg-purple-900:focus{background-color:var(--purple-900)!important}.hover\\:bg-purple-50:hover{background-color:var(--purple-50)!important}.hover\\:bg-purple-100:hover{background-color:var(--purple-100)!important}.hover\\:bg-purple-200:hover{background-color:var(--purple-200)!important}.hover\\:bg-purple-300:hover{background-color:var(--purple-300)!important}.hover\\:bg-purple-400:hover{background-color:var(--purple-400)!important}.hover\\:bg-purple-500:hover{background-color:var(--purple-500)!important}.hover\\:bg-purple-600:hover{background-color:var(--purple-600)!important}.hover\\:bg-purple-700:hover{background-color:var(--purple-700)!important}.hover\\:bg-purple-800:hover{background-color:var(--purple-800)!important}.hover\\:bg-purple-900:hover{background-color:var(--purple-900)!important}.active\\:bg-purple-50:active{background-color:var(--purple-50)!important}.active\\:bg-purple-100:active{background-color:var(--purple-100)!important}.active\\:bg-purple-200:active{background-color:var(--purple-200)!important}.active\\:bg-purple-300:active{background-color:var(--purple-300)!important}.active\\:bg-purple-400:active{background-color:var(--purple-400)!important}.active\\:bg-purple-500:active{background-color:var(--purple-500)!important}.active\\:bg-purple-600:active{background-color:var(--purple-600)!important}.active\\:bg-purple-700:active{background-color:var(--purple-700)!important}.active\\:bg-purple-800:active{background-color:var(--purple-800)!important}.active\\:bg-purple-900:active{background-color:var(--purple-900)!important}.bg-gray-50{background-color:var(--gray-50)!important}.bg-gray-100{background-color:var(--gray-100)!important}.bg-gray-200{background-color:var(--gray-200)!important}.bg-gray-300{background-color:var(--gray-300)!important}.bg-gray-400{background-color:var(--gray-400)!important}.bg-gray-500{background-color:var(--gray-500)!important}.bg-gray-600{background-color:var(--gray-600)!important}.bg-gray-700{background-color:var(--gray-700)!important}.bg-gray-800{background-color:var(--gray-800)!important}.bg-gray-900{background-color:var(--gray-900)!important}.focus\\:bg-gray-50:focus{background-color:var(--gray-50)!important}.focus\\:bg-gray-100:focus{background-color:var(--gray-100)!important}.focus\\:bg-gray-200:focus{background-color:var(--gray-200)!important}.focus\\:bg-gray-300:focus{background-color:var(--gray-300)!important}.focus\\:bg-gray-400:focus{background-color:var(--gray-400)!important}.focus\\:bg-gray-500:focus{background-color:var(--gray-500)!important}.focus\\:bg-gray-600:focus{background-color:var(--gray-600)!important}.focus\\:bg-gray-700:focus{background-color:var(--gray-700)!important}.focus\\:bg-gray-800:focus{background-color:var(--gray-800)!important}.focus\\:bg-gray-900:focus{background-color:var(--gray-900)!important}.hover\\:bg-gray-50:hover{background-color:var(--gray-50)!important}.hover\\:bg-gray-100:hover{background-color:var(--gray-100)!important}.hover\\:bg-gray-200:hover{background-color:var(--gray-200)!important}.hover\\:bg-gray-300:hover{background-color:var(--gray-300)!important}.hover\\:bg-gray-400:hover{background-color:var(--gray-400)!important}.hover\\:bg-gray-500:hover{background-color:var(--gray-500)!important}.hover\\:bg-gray-600:hover{background-color:var(--gray-600)!important}.hover\\:bg-gray-700:hover{background-color:var(--gray-700)!important}.hover\\:bg-gray-800:hover{background-color:var(--gray-800)!important}.hover\\:bg-gray-900:hover{background-color:var(--gray-900)!important}.active\\:bg-gray-50:active{background-color:var(--gray-50)!important}.active\\:bg-gray-100:active{background-color:var(--gray-100)!important}.active\\:bg-gray-200:active{background-color:var(--gray-200)!important}.active\\:bg-gray-300:active{background-color:var(--gray-300)!important}.active\\:bg-gray-400:active{background-color:var(--gray-400)!important}.active\\:bg-gray-500:active{background-color:var(--gray-500)!important}.active\\:bg-gray-600:active{background-color:var(--gray-600)!important}.active\\:bg-gray-700:active{background-color:var(--gray-700)!important}.active\\:bg-gray-800:active{background-color:var(--gray-800)!important}.active\\:bg-gray-900:active{background-color:var(--gray-900)!important}.bg-red-50{background-color:var(--red-50)!important}.bg-red-100{background-color:var(--red-100)!important}.bg-red-200{background-color:var(--red-200)!important}.bg-red-300{background-color:var(--red-300)!important}.bg-red-400{background-color:var(--red-400)!important}.bg-red-500{background-color:var(--red-500)!important}.bg-red-600{background-color:var(--red-600)!important}.bg-red-700{background-color:var(--red-700)!important}.bg-red-800{background-color:var(--red-800)!important}.bg-red-900{background-color:var(--red-900)!important}.focus\\:bg-red-50:focus{background-color:var(--red-50)!important}.focus\\:bg-red-100:focus{background-color:var(--red-100)!important}.focus\\:bg-red-200:focus{background-color:var(--red-200)!important}.focus\\:bg-red-300:focus{background-color:var(--red-300)!important}.focus\\:bg-red-400:focus{background-color:var(--red-400)!important}.focus\\:bg-red-500:focus{background-color:var(--red-500)!important}.focus\\:bg-red-600:focus{background-color:var(--red-600)!important}.focus\\:bg-red-700:focus{background-color:var(--red-700)!important}.focus\\:bg-red-800:focus{background-color:var(--red-800)!important}.focus\\:bg-red-900:focus{background-color:var(--red-900)!important}.hover\\:bg-red-50:hover{background-color:var(--red-50)!important}.hover\\:bg-red-100:hover{background-color:var(--red-100)!important}.hover\\:bg-red-200:hover{background-color:var(--red-200)!important}.hover\\:bg-red-300:hover{background-color:var(--red-300)!important}.hover\\:bg-red-400:hover{background-color:var(--red-400)!important}.hover\\:bg-red-500:hover{background-color:var(--red-500)!important}.hover\\:bg-red-600:hover{background-color:var(--red-600)!important}.hover\\:bg-red-700:hover{background-color:var(--red-700)!important}.hover\\:bg-red-800:hover{background-color:var(--red-800)!important}.hover\\:bg-red-900:hover{background-color:var(--red-900)!important}.active\\:bg-red-50:active{background-color:var(--red-50)!important}.active\\:bg-red-100:active{background-color:var(--red-100)!important}.active\\:bg-red-200:active{background-color:var(--red-200)!important}.active\\:bg-red-300:active{background-color:var(--red-300)!important}.active\\:bg-red-400:active{background-color:var(--red-400)!important}.active\\:bg-red-500:active{background-color:var(--red-500)!important}.active\\:bg-red-600:active{background-color:var(--red-600)!important}.active\\:bg-red-700:active{background-color:var(--red-700)!important}.active\\:bg-red-800:active{background-color:var(--red-800)!important}.active\\:bg-red-900:active{background-color:var(--red-900)!important}.bg-primary-50{background-color:var(--primary-50)!important}.bg-primary-100{background-color:var(--primary-100)!important}.bg-primary-200{background-color:var(--primary-200)!important}.bg-primary-300{background-color:var(--primary-300)!important}.bg-primary-400{background-color:var(--primary-400)!important}.bg-primary-500{background-color:var(--primary-500)!important}.bg-primary-600{background-color:var(--primary-600)!important}.bg-primary-700{background-color:var(--primary-700)!important}.bg-primary-800{background-color:var(--primary-800)!important}.bg-primary-900{background-color:var(--primary-900)!important}.focus\\:bg-primary-50:focus{background-color:var(--primary-50)!important}.focus\\:bg-primary-100:focus{background-color:var(--primary-100)!important}.focus\\:bg-primary-200:focus{background-color:var(--primary-200)!important}.focus\\:bg-primary-300:focus{background-color:var(--primary-300)!important}.focus\\:bg-primary-400:focus{background-color:var(--primary-400)!important}.focus\\:bg-primary-500:focus{background-color:var(--primary-500)!important}.focus\\:bg-primary-600:focus{background-color:var(--primary-600)!important}.focus\\:bg-primary-700:focus{background-color:var(--primary-700)!important}.focus\\:bg-primary-800:focus{background-color:var(--primary-800)!important}.focus\\:bg-primary-900:focus{background-color:var(--primary-900)!important}.hover\\:bg-primary-50:hover{background-color:var(--primary-50)!important}.hover\\:bg-primary-100:hover{background-color:var(--primary-100)!important}.hover\\:bg-primary-200:hover{background-color:var(--primary-200)!important}.hover\\:bg-primary-300:hover{background-color:var(--primary-300)!important}.hover\\:bg-primary-400:hover{background-color:var(--primary-400)!important}.hover\\:bg-primary-500:hover{background-color:var(--primary-500)!important}.hover\\:bg-primary-600:hover{background-color:var(--primary-600)!important}.hover\\:bg-primary-700:hover{background-color:var(--primary-700)!important}.hover\\:bg-primary-800:hover{background-color:var(--primary-800)!important}.hover\\:bg-primary-900:hover{background-color:var(--primary-900)!important}.active\\:bg-primary-50:active{background-color:var(--primary-50)!important}.active\\:bg-primary-100:active{background-color:var(--primary-100)!important}.active\\:bg-primary-200:active{background-color:var(--primary-200)!important}.active\\:bg-primary-300:active{background-color:var(--primary-300)!important}.active\\:bg-primary-400:active{background-color:var(--primary-400)!important}.active\\:bg-primary-500:active{background-color:var(--primary-500)!important}.active\\:bg-primary-600:active{background-color:var(--primary-600)!important}.active\\:bg-primary-700:active{background-color:var(--primary-700)!important}.active\\:bg-primary-800:active{background-color:var(--primary-800)!important}.active\\:bg-primary-900:active{background-color:var(--primary-900)!important}.border-blue-50{border-color:var(--blue-50)!important}.border-blue-100{border-color:var(--blue-100)!important}.border-blue-200{border-color:var(--blue-200)!important}.border-blue-300{border-color:var(--blue-300)!important}.border-blue-400{border-color:var(--blue-400)!important}.border-blue-500{border-color:var(--blue-500)!important}.border-blue-600{border-color:var(--blue-600)!important}.border-blue-700{border-color:var(--blue-700)!important}.border-blue-800{border-color:var(--blue-800)!important}.border-blue-900{border-color:var(--blue-900)!important}.focus\\:border-blue-50:focus{border-color:var(--blue-50)!important}.focus\\:border-blue-100:focus{border-color:var(--blue-100)!important}.focus\\:border-blue-200:focus{border-color:var(--blue-200)!important}.focus\\:border-blue-300:focus{border-color:var(--blue-300)!important}.focus\\:border-blue-400:focus{border-color:var(--blue-400)!important}.focus\\:border-blue-500:focus{border-color:var(--blue-500)!important}.focus\\:border-blue-600:focus{border-color:var(--blue-600)!important}.focus\\:border-blue-700:focus{border-color:var(--blue-700)!important}.focus\\:border-blue-800:focus{border-color:var(--blue-800)!important}.focus\\:border-blue-900:focus{border-color:var(--blue-900)!important}.hover\\:border-blue-50:hover{border-color:var(--blue-50)!important}.hover\\:border-blue-100:hover{border-color:var(--blue-100)!important}.hover\\:border-blue-200:hover{border-color:var(--blue-200)!important}.hover\\:border-blue-300:hover{border-color:var(--blue-300)!important}.hover\\:border-blue-400:hover{border-color:var(--blue-400)!important}.hover\\:border-blue-500:hover{border-color:var(--blue-500)!important}.hover\\:border-blue-600:hover{border-color:var(--blue-600)!important}.hover\\:border-blue-700:hover{border-color:var(--blue-700)!important}.hover\\:border-blue-800:hover{border-color:var(--blue-800)!important}.hover\\:border-blue-900:hover{border-color:var(--blue-900)!important}.active\\:border-blue-50:active{border-color:var(--blue-50)!important}.active\\:border-blue-100:active{border-color:var(--blue-100)!important}.active\\:border-blue-200:active{border-color:var(--blue-200)!important}.active\\:border-blue-300:active{border-color:var(--blue-300)!important}.active\\:border-blue-400:active{border-color:var(--blue-400)!important}.active\\:border-blue-500:active{border-color:var(--blue-500)!important}.active\\:border-blue-600:active{border-color:var(--blue-600)!important}.active\\:border-blue-700:active{border-color:var(--blue-700)!important}.active\\:border-blue-800:active{border-color:var(--blue-800)!important}.active\\:border-blue-900:active{border-color:var(--blue-900)!important}.border-green-50{border-color:var(--green-50)!important}.border-green-100{border-color:var(--green-100)!important}.border-green-200{border-color:var(--green-200)!important}.border-green-300{border-color:var(--green-300)!important}.border-green-400{border-color:var(--green-400)!important}.border-green-500{border-color:var(--green-500)!important}.border-green-600{border-color:var(--green-600)!important}.border-green-700{border-color:var(--green-700)!important}.border-green-800{border-color:var(--green-800)!important}.border-green-900{border-color:var(--green-900)!important}.focus\\:border-green-50:focus{border-color:var(--green-50)!important}.focus\\:border-green-100:focus{border-color:var(--green-100)!important}.focus\\:border-green-200:focus{border-color:var(--green-200)!important}.focus\\:border-green-300:focus{border-color:var(--green-300)!important}.focus\\:border-green-400:focus{border-color:var(--green-400)!important}.focus\\:border-green-500:focus{border-color:var(--green-500)!important}.focus\\:border-green-600:focus{border-color:var(--green-600)!important}.focus\\:border-green-700:focus{border-color:var(--green-700)!important}.focus\\:border-green-800:focus{border-color:var(--green-800)!important}.focus\\:border-green-900:focus{border-color:var(--green-900)!important}.hover\\:border-green-50:hover{border-color:var(--green-50)!important}.hover\\:border-green-100:hover{border-color:var(--green-100)!important}.hover\\:border-green-200:hover{border-color:var(--green-200)!important}.hover\\:border-green-300:hover{border-color:var(--green-300)!important}.hover\\:border-green-400:hover{border-color:var(--green-400)!important}.hover\\:border-green-500:hover{border-color:var(--green-500)!important}.hover\\:border-green-600:hover{border-color:var(--green-600)!important}.hover\\:border-green-700:hover{border-color:var(--green-700)!important}.hover\\:border-green-800:hover{border-color:var(--green-800)!important}.hover\\:border-green-900:hover{border-color:var(--green-900)!important}.active\\:border-green-50:active{border-color:var(--green-50)!important}.active\\:border-green-100:active{border-color:var(--green-100)!important}.active\\:border-green-200:active{border-color:var(--green-200)!important}.active\\:border-green-300:active{border-color:var(--green-300)!important}.active\\:border-green-400:active{border-color:var(--green-400)!important}.active\\:border-green-500:active{border-color:var(--green-500)!important}.active\\:border-green-600:active{border-color:var(--green-600)!important}.active\\:border-green-700:active{border-color:var(--green-700)!important}.active\\:border-green-800:active{border-color:var(--green-800)!important}.active\\:border-green-900:active{border-color:var(--green-900)!important}.border-yellow-50{border-color:var(--yellow-50)!important}.border-yellow-100{border-color:var(--yellow-100)!important}.border-yellow-200{border-color:var(--yellow-200)!important}.border-yellow-300{border-color:var(--yellow-300)!important}.border-yellow-400{border-color:var(--yellow-400)!important}.border-yellow-500{border-color:var(--yellow-500)!important}.border-yellow-600{border-color:var(--yellow-600)!important}.border-yellow-700{border-color:var(--yellow-700)!important}.border-yellow-800{border-color:var(--yellow-800)!important}.border-yellow-900{border-color:var(--yellow-900)!important}.focus\\:border-yellow-50:focus{border-color:var(--yellow-50)!important}.focus\\:border-yellow-100:focus{border-color:var(--yellow-100)!important}.focus\\:border-yellow-200:focus{border-color:var(--yellow-200)!important}.focus\\:border-yellow-300:focus{border-color:var(--yellow-300)!important}.focus\\:border-yellow-400:focus{border-color:var(--yellow-400)!important}.focus\\:border-yellow-500:focus{border-color:var(--yellow-500)!important}.focus\\:border-yellow-600:focus{border-color:var(--yellow-600)!important}.focus\\:border-yellow-700:focus{border-color:var(--yellow-700)!important}.focus\\:border-yellow-800:focus{border-color:var(--yellow-800)!important}.focus\\:border-yellow-900:focus{border-color:var(--yellow-900)!important}.hover\\:border-yellow-50:hover{border-color:var(--yellow-50)!important}.hover\\:border-yellow-100:hover{border-color:var(--yellow-100)!important}.hover\\:border-yellow-200:hover{border-color:var(--yellow-200)!important}.hover\\:border-yellow-300:hover{border-color:var(--yellow-300)!important}.hover\\:border-yellow-400:hover{border-color:var(--yellow-400)!important}.hover\\:border-yellow-500:hover{border-color:var(--yellow-500)!important}.hover\\:border-yellow-600:hover{border-color:var(--yellow-600)!important}.hover\\:border-yellow-700:hover{border-color:var(--yellow-700)!important}.hover\\:border-yellow-800:hover{border-color:var(--yellow-800)!important}.hover\\:border-yellow-900:hover{border-color:var(--yellow-900)!important}.active\\:border-yellow-50:active{border-color:var(--yellow-50)!important}.active\\:border-yellow-100:active{border-color:var(--yellow-100)!important}.active\\:border-yellow-200:active{border-color:var(--yellow-200)!important}.active\\:border-yellow-300:active{border-color:var(--yellow-300)!important}.active\\:border-yellow-400:active{border-color:var(--yellow-400)!important}.active\\:border-yellow-500:active{border-color:var(--yellow-500)!important}.active\\:border-yellow-600:active{border-color:var(--yellow-600)!important}.active\\:border-yellow-700:active{border-color:var(--yellow-700)!important}.active\\:border-yellow-800:active{border-color:var(--yellow-800)!important}.active\\:border-yellow-900:active{border-color:var(--yellow-900)!important}.border-cyan-50{border-color:var(--cyan-50)!important}.border-cyan-100{border-color:var(--cyan-100)!important}.border-cyan-200{border-color:var(--cyan-200)!important}.border-cyan-300{border-color:var(--cyan-300)!important}.border-cyan-400{border-color:var(--cyan-400)!important}.border-cyan-500{border-color:var(--cyan-500)!important}.border-cyan-600{border-color:var(--cyan-600)!important}.border-cyan-700{border-color:var(--cyan-700)!important}.border-cyan-800{border-color:var(--cyan-800)!important}.border-cyan-900{border-color:var(--cyan-900)!important}.focus\\:border-cyan-50:focus{border-color:var(--cyan-50)!important}.focus\\:border-cyan-100:focus{border-color:var(--cyan-100)!important}.focus\\:border-cyan-200:focus{border-color:var(--cyan-200)!important}.focus\\:border-cyan-300:focus{border-color:var(--cyan-300)!important}.focus\\:border-cyan-400:focus{border-color:var(--cyan-400)!important}.focus\\:border-cyan-500:focus{border-color:var(--cyan-500)!important}.focus\\:border-cyan-600:focus{border-color:var(--cyan-600)!important}.focus\\:border-cyan-700:focus{border-color:var(--cyan-700)!important}.focus\\:border-cyan-800:focus{border-color:var(--cyan-800)!important}.focus\\:border-cyan-900:focus{border-color:var(--cyan-900)!important}.hover\\:border-cyan-50:hover{border-color:var(--cyan-50)!important}.hover\\:border-cyan-100:hover{border-color:var(--cyan-100)!important}.hover\\:border-cyan-200:hover{border-color:var(--cyan-200)!important}.hover\\:border-cyan-300:hover{border-color:var(--cyan-300)!important}.hover\\:border-cyan-400:hover{border-color:var(--cyan-400)!important}.hover\\:border-cyan-500:hover{border-color:var(--cyan-500)!important}.hover\\:border-cyan-600:hover{border-color:var(--cyan-600)!important}.hover\\:border-cyan-700:hover{border-color:var(--cyan-700)!important}.hover\\:border-cyan-800:hover{border-color:var(--cyan-800)!important}.hover\\:border-cyan-900:hover{border-color:var(--cyan-900)!important}.active\\:border-cyan-50:active{border-color:var(--cyan-50)!important}.active\\:border-cyan-100:active{border-color:var(--cyan-100)!important}.active\\:border-cyan-200:active{border-color:var(--cyan-200)!important}.active\\:border-cyan-300:active{border-color:var(--cyan-300)!important}.active\\:border-cyan-400:active{border-color:var(--cyan-400)!important}.active\\:border-cyan-500:active{border-color:var(--cyan-500)!important}.active\\:border-cyan-600:active{border-color:var(--cyan-600)!important}.active\\:border-cyan-700:active{border-color:var(--cyan-700)!important}.active\\:border-cyan-800:active{border-color:var(--cyan-800)!important}.active\\:border-cyan-900:active{border-color:var(--cyan-900)!important}.border-pink-50{border-color:var(--pink-50)!important}.border-pink-100{border-color:var(--pink-100)!important}.border-pink-200{border-color:var(--pink-200)!important}.border-pink-300{border-color:var(--pink-300)!important}.border-pink-400{border-color:var(--pink-400)!important}.border-pink-500{border-color:var(--pink-500)!important}.border-pink-600{border-color:var(--pink-600)!important}.border-pink-700{border-color:var(--pink-700)!important}.border-pink-800{border-color:var(--pink-800)!important}.border-pink-900{border-color:var(--pink-900)!important}.focus\\:border-pink-50:focus{border-color:var(--pink-50)!important}.focus\\:border-pink-100:focus{border-color:var(--pink-100)!important}.focus\\:border-pink-200:focus{border-color:var(--pink-200)!important}.focus\\:border-pink-300:focus{border-color:var(--pink-300)!important}.focus\\:border-pink-400:focus{border-color:var(--pink-400)!important}.focus\\:border-pink-500:focus{border-color:var(--pink-500)!important}.focus\\:border-pink-600:focus{border-color:var(--pink-600)!important}.focus\\:border-pink-700:focus{border-color:var(--pink-700)!important}.focus\\:border-pink-800:focus{border-color:var(--pink-800)!important}.focus\\:border-pink-900:focus{border-color:var(--pink-900)!important}.hover\\:border-pink-50:hover{border-color:var(--pink-50)!important}.hover\\:border-pink-100:hover{border-color:var(--pink-100)!important}.hover\\:border-pink-200:hover{border-color:var(--pink-200)!important}.hover\\:border-pink-300:hover{border-color:var(--pink-300)!important}.hover\\:border-pink-400:hover{border-color:var(--pink-400)!important}.hover\\:border-pink-500:hover{border-color:var(--pink-500)!important}.hover\\:border-pink-600:hover{border-color:var(--pink-600)!important}.hover\\:border-pink-700:hover{border-color:var(--pink-700)!important}.hover\\:border-pink-800:hover{border-color:var(--pink-800)!important}.hover\\:border-pink-900:hover{border-color:var(--pink-900)!important}.active\\:border-pink-50:active{border-color:var(--pink-50)!important}.active\\:border-pink-100:active{border-color:var(--pink-100)!important}.active\\:border-pink-200:active{border-color:var(--pink-200)!important}.active\\:border-pink-300:active{border-color:var(--pink-300)!important}.active\\:border-pink-400:active{border-color:var(--pink-400)!important}.active\\:border-pink-500:active{border-color:var(--pink-500)!important}.active\\:border-pink-600:active{border-color:var(--pink-600)!important}.active\\:border-pink-700:active{border-color:var(--pink-700)!important}.active\\:border-pink-800:active{border-color:var(--pink-800)!important}.active\\:border-pink-900:active{border-color:var(--pink-900)!important}.border-indigo-50{border-color:var(--indigo-50)!important}.border-indigo-100{border-color:var(--indigo-100)!important}.border-indigo-200{border-color:var(--indigo-200)!important}.border-indigo-300{border-color:var(--indigo-300)!important}.border-indigo-400{border-color:var(--indigo-400)!important}.border-indigo-500{border-color:var(--indigo-500)!important}.border-indigo-600{border-color:var(--indigo-600)!important}.border-indigo-700{border-color:var(--indigo-700)!important}.border-indigo-800{border-color:var(--indigo-800)!important}.border-indigo-900{border-color:var(--indigo-900)!important}.focus\\:border-indigo-50:focus{border-color:var(--indigo-50)!important}.focus\\:border-indigo-100:focus{border-color:var(--indigo-100)!important}.focus\\:border-indigo-200:focus{border-color:var(--indigo-200)!important}.focus\\:border-indigo-300:focus{border-color:var(--indigo-300)!important}.focus\\:border-indigo-400:focus{border-color:var(--indigo-400)!important}.focus\\:border-indigo-500:focus{border-color:var(--indigo-500)!important}.focus\\:border-indigo-600:focus{border-color:var(--indigo-600)!important}.focus\\:border-indigo-700:focus{border-color:var(--indigo-700)!important}.focus\\:border-indigo-800:focus{border-color:var(--indigo-800)!important}.focus\\:border-indigo-900:focus{border-color:var(--indigo-900)!important}.hover\\:border-indigo-50:hover{border-color:var(--indigo-50)!important}.hover\\:border-indigo-100:hover{border-color:var(--indigo-100)!important}.hover\\:border-indigo-200:hover{border-color:var(--indigo-200)!important}.hover\\:border-indigo-300:hover{border-color:var(--indigo-300)!important}.hover\\:border-indigo-400:hover{border-color:var(--indigo-400)!important}.hover\\:border-indigo-500:hover{border-color:var(--indigo-500)!important}.hover\\:border-indigo-600:hover{border-color:var(--indigo-600)!important}.hover\\:border-indigo-700:hover{border-color:var(--indigo-700)!important}.hover\\:border-indigo-800:hover{border-color:var(--indigo-800)!important}.hover\\:border-indigo-900:hover{border-color:var(--indigo-900)!important}.active\\:border-indigo-50:active{border-color:var(--indigo-50)!important}.active\\:border-indigo-100:active{border-color:var(--indigo-100)!important}.active\\:border-indigo-200:active{border-color:var(--indigo-200)!important}.active\\:border-indigo-300:active{border-color:var(--indigo-300)!important}.active\\:border-indigo-400:active{border-color:var(--indigo-400)!important}.active\\:border-indigo-500:active{border-color:var(--indigo-500)!important}.active\\:border-indigo-600:active{border-color:var(--indigo-600)!important}.active\\:border-indigo-700:active{border-color:var(--indigo-700)!important}.active\\:border-indigo-800:active{border-color:var(--indigo-800)!important}.active\\:border-indigo-900:active{border-color:var(--indigo-900)!important}.border-teal-50{border-color:var(--teal-50)!important}.border-teal-100{border-color:var(--teal-100)!important}.border-teal-200{border-color:var(--teal-200)!important}.border-teal-300{border-color:var(--teal-300)!important}.border-teal-400{border-color:var(--teal-400)!important}.border-teal-500{border-color:var(--teal-500)!important}.border-teal-600{border-color:var(--teal-600)!important}.border-teal-700{border-color:var(--teal-700)!important}.border-teal-800{border-color:var(--teal-800)!important}.border-teal-900{border-color:var(--teal-900)!important}.focus\\:border-teal-50:focus{border-color:var(--teal-50)!important}.focus\\:border-teal-100:focus{border-color:var(--teal-100)!important}.focus\\:border-teal-200:focus{border-color:var(--teal-200)!important}.focus\\:border-teal-300:focus{border-color:var(--teal-300)!important}.focus\\:border-teal-400:focus{border-color:var(--teal-400)!important}.focus\\:border-teal-500:focus{border-color:var(--teal-500)!important}.focus\\:border-teal-600:focus{border-color:var(--teal-600)!important}.focus\\:border-teal-700:focus{border-color:var(--teal-700)!important}.focus\\:border-teal-800:focus{border-color:var(--teal-800)!important}.focus\\:border-teal-900:focus{border-color:var(--teal-900)!important}.hover\\:border-teal-50:hover{border-color:var(--teal-50)!important}.hover\\:border-teal-100:hover{border-color:var(--teal-100)!important}.hover\\:border-teal-200:hover{border-color:var(--teal-200)!important}.hover\\:border-teal-300:hover{border-color:var(--teal-300)!important}.hover\\:border-teal-400:hover{border-color:var(--teal-400)!important}.hover\\:border-teal-500:hover{border-color:var(--teal-500)!important}.hover\\:border-teal-600:hover{border-color:var(--teal-600)!important}.hover\\:border-teal-700:hover{border-color:var(--teal-700)!important}.hover\\:border-teal-800:hover{border-color:var(--teal-800)!important}.hover\\:border-teal-900:hover{border-color:var(--teal-900)!important}.active\\:border-teal-50:active{border-color:var(--teal-50)!important}.active\\:border-teal-100:active{border-color:var(--teal-100)!important}.active\\:border-teal-200:active{border-color:var(--teal-200)!important}.active\\:border-teal-300:active{border-color:var(--teal-300)!important}.active\\:border-teal-400:active{border-color:var(--teal-400)!important}.active\\:border-teal-500:active{border-color:var(--teal-500)!important}.active\\:border-teal-600:active{border-color:var(--teal-600)!important}.active\\:border-teal-700:active{border-color:var(--teal-700)!important}.active\\:border-teal-800:active{border-color:var(--teal-800)!important}.active\\:border-teal-900:active{border-color:var(--teal-900)!important}.border-orange-50{border-color:var(--orange-50)!important}.border-orange-100{border-color:var(--orange-100)!important}.border-orange-200{border-color:var(--orange-200)!important}.border-orange-300{border-color:var(--orange-300)!important}.border-orange-400{border-color:var(--orange-400)!important}.border-orange-500{border-color:var(--orange-500)!important}.border-orange-600{border-color:var(--orange-600)!important}.border-orange-700{border-color:var(--orange-700)!important}.border-orange-800{border-color:var(--orange-800)!important}.border-orange-900{border-color:var(--orange-900)!important}.focus\\:border-orange-50:focus{border-color:var(--orange-50)!important}.focus\\:border-orange-100:focus{border-color:var(--orange-100)!important}.focus\\:border-orange-200:focus{border-color:var(--orange-200)!important}.focus\\:border-orange-300:focus{border-color:var(--orange-300)!important}.focus\\:border-orange-400:focus{border-color:var(--orange-400)!important}.focus\\:border-orange-500:focus{border-color:var(--orange-500)!important}.focus\\:border-orange-600:focus{border-color:var(--orange-600)!important}.focus\\:border-orange-700:focus{border-color:var(--orange-700)!important}.focus\\:border-orange-800:focus{border-color:var(--orange-800)!important}.focus\\:border-orange-900:focus{border-color:var(--orange-900)!important}.hover\\:border-orange-50:hover{border-color:var(--orange-50)!important}.hover\\:border-orange-100:hover{border-color:var(--orange-100)!important}.hover\\:border-orange-200:hover{border-color:var(--orange-200)!important}.hover\\:border-orange-300:hover{border-color:var(--orange-300)!important}.hover\\:border-orange-400:hover{border-color:var(--orange-400)!important}.hover\\:border-orange-500:hover{border-color:var(--orange-500)!important}.hover\\:border-orange-600:hover{border-color:var(--orange-600)!important}.hover\\:border-orange-700:hover{border-color:var(--orange-700)!important}.hover\\:border-orange-800:hover{border-color:var(--orange-800)!important}.hover\\:border-orange-900:hover{border-color:var(--orange-900)!important}.active\\:border-orange-50:active{border-color:var(--orange-50)!important}.active\\:border-orange-100:active{border-color:var(--orange-100)!important}.active\\:border-orange-200:active{border-color:var(--orange-200)!important}.active\\:border-orange-300:active{border-color:var(--orange-300)!important}.active\\:border-orange-400:active{border-color:var(--orange-400)!important}.active\\:border-orange-500:active{border-color:var(--orange-500)!important}.active\\:border-orange-600:active{border-color:var(--orange-600)!important}.active\\:border-orange-700:active{border-color:var(--orange-700)!important}.active\\:border-orange-800:active{border-color:var(--orange-800)!important}.active\\:border-orange-900:active{border-color:var(--orange-900)!important}.border-bluegray-50{border-color:var(--bluegray-50)!important}.border-bluegray-100{border-color:var(--bluegray-100)!important}.border-bluegray-200{border-color:var(--bluegray-200)!important}.border-bluegray-300{border-color:var(--bluegray-300)!important}.border-bluegray-400{border-color:var(--bluegray-400)!important}.border-bluegray-500{border-color:var(--bluegray-500)!important}.border-bluegray-600{border-color:var(--bluegray-600)!important}.border-bluegray-700{border-color:var(--bluegray-700)!important}.border-bluegray-800{border-color:var(--bluegray-800)!important}.border-bluegray-900{border-color:var(--bluegray-900)!important}.focus\\:border-bluegray-50:focus{border-color:var(--bluegray-50)!important}.focus\\:border-bluegray-100:focus{border-color:var(--bluegray-100)!important}.focus\\:border-bluegray-200:focus{border-color:var(--bluegray-200)!important}.focus\\:border-bluegray-300:focus{border-color:var(--bluegray-300)!important}.focus\\:border-bluegray-400:focus{border-color:var(--bluegray-400)!important}.focus\\:border-bluegray-500:focus{border-color:var(--bluegray-500)!important}.focus\\:border-bluegray-600:focus{border-color:var(--bluegray-600)!important}.focus\\:border-bluegray-700:focus{border-color:var(--bluegray-700)!important}.focus\\:border-bluegray-800:focus{border-color:var(--bluegray-800)!important}.focus\\:border-bluegray-900:focus{border-color:var(--bluegray-900)!important}.hover\\:border-bluegray-50:hover{border-color:var(--bluegray-50)!important}.hover\\:border-bluegray-100:hover{border-color:var(--bluegray-100)!important}.hover\\:border-bluegray-200:hover{border-color:var(--bluegray-200)!important}.hover\\:border-bluegray-300:hover{border-color:var(--bluegray-300)!important}.hover\\:border-bluegray-400:hover{border-color:var(--bluegray-400)!important}.hover\\:border-bluegray-500:hover{border-color:var(--bluegray-500)!important}.hover\\:border-bluegray-600:hover{border-color:var(--bluegray-600)!important}.hover\\:border-bluegray-700:hover{border-color:var(--bluegray-700)!important}.hover\\:border-bluegray-800:hover{border-color:var(--bluegray-800)!important}.hover\\:border-bluegray-900:hover{border-color:var(--bluegray-900)!important}.active\\:border-bluegray-50:active{border-color:var(--bluegray-50)!important}.active\\:border-bluegray-100:active{border-color:var(--bluegray-100)!important}.active\\:border-bluegray-200:active{border-color:var(--bluegray-200)!important}.active\\:border-bluegray-300:active{border-color:var(--bluegray-300)!important}.active\\:border-bluegray-400:active{border-color:var(--bluegray-400)!important}.active\\:border-bluegray-500:active{border-color:var(--bluegray-500)!important}.active\\:border-bluegray-600:active{border-color:var(--bluegray-600)!important}.active\\:border-bluegray-700:active{border-color:var(--bluegray-700)!important}.active\\:border-bluegray-800:active{border-color:var(--bluegray-800)!important}.active\\:border-bluegray-900:active{border-color:var(--bluegray-900)!important}.border-purple-50{border-color:var(--purple-50)!important}.border-purple-100{border-color:var(--purple-100)!important}.border-purple-200{border-color:var(--purple-200)!important}.border-purple-300{border-color:var(--purple-300)!important}.border-purple-400{border-color:var(--purple-400)!important}.border-purple-500{border-color:var(--purple-500)!important}.border-purple-600{border-color:var(--purple-600)!important}.border-purple-700{border-color:var(--purple-700)!important}.border-purple-800{border-color:var(--purple-800)!important}.border-purple-900{border-color:var(--purple-900)!important}.focus\\:border-purple-50:focus{border-color:var(--purple-50)!important}.focus\\:border-purple-100:focus{border-color:var(--purple-100)!important}.focus\\:border-purple-200:focus{border-color:var(--purple-200)!important}.focus\\:border-purple-300:focus{border-color:var(--purple-300)!important}.focus\\:border-purple-400:focus{border-color:var(--purple-400)!important}.focus\\:border-purple-500:focus{border-color:var(--purple-500)!important}.focus\\:border-purple-600:focus{border-color:var(--purple-600)!important}.focus\\:border-purple-700:focus{border-color:var(--purple-700)!important}.focus\\:border-purple-800:focus{border-color:var(--purple-800)!important}.focus\\:border-purple-900:focus{border-color:var(--purple-900)!important}.hover\\:border-purple-50:hover{border-color:var(--purple-50)!important}.hover\\:border-purple-100:hover{border-color:var(--purple-100)!important}.hover\\:border-purple-200:hover{border-color:var(--purple-200)!important}.hover\\:border-purple-300:hover{border-color:var(--purple-300)!important}.hover\\:border-purple-400:hover{border-color:var(--purple-400)!important}.hover\\:border-purple-500:hover{border-color:var(--purple-500)!important}.hover\\:border-purple-600:hover{border-color:var(--purple-600)!important}.hover\\:border-purple-700:hover{border-color:var(--purple-700)!important}.hover\\:border-purple-800:hover{border-color:var(--purple-800)!important}.hover\\:border-purple-900:hover{border-color:var(--purple-900)!important}.active\\:border-purple-50:active{border-color:var(--purple-50)!important}.active\\:border-purple-100:active{border-color:var(--purple-100)!important}.active\\:border-purple-200:active{border-color:var(--purple-200)!important}.active\\:border-purple-300:active{border-color:var(--purple-300)!important}.active\\:border-purple-400:active{border-color:var(--purple-400)!important}.active\\:border-purple-500:active{border-color:var(--purple-500)!important}.active\\:border-purple-600:active{border-color:var(--purple-600)!important}.active\\:border-purple-700:active{border-color:var(--purple-700)!important}.active\\:border-purple-800:active{border-color:var(--purple-800)!important}.active\\:border-purple-900:active{border-color:var(--purple-900)!important}.border-gray-50{border-color:var(--gray-50)!important}.border-gray-100{border-color:var(--gray-100)!important}.border-gray-200{border-color:var(--gray-200)!important}.border-gray-300{border-color:var(--gray-300)!important}.border-gray-400{border-color:var(--gray-400)!important}.border-gray-500{border-color:var(--gray-500)!important}.border-gray-600{border-color:var(--gray-600)!important}.border-gray-700{border-color:var(--gray-700)!important}.border-gray-800{border-color:var(--gray-800)!important}.border-gray-900{border-color:var(--gray-900)!important}.focus\\:border-gray-50:focus{border-color:var(--gray-50)!important}.focus\\:border-gray-100:focus{border-color:var(--gray-100)!important}.focus\\:border-gray-200:focus{border-color:var(--gray-200)!important}.focus\\:border-gray-300:focus{border-color:var(--gray-300)!important}.focus\\:border-gray-400:focus{border-color:var(--gray-400)!important}.focus\\:border-gray-500:focus{border-color:var(--gray-500)!important}.focus\\:border-gray-600:focus{border-color:var(--gray-600)!important}.focus\\:border-gray-700:focus{border-color:var(--gray-700)!important}.focus\\:border-gray-800:focus{border-color:var(--gray-800)!important}.focus\\:border-gray-900:focus{border-color:var(--gray-900)!important}.hover\\:border-gray-50:hover{border-color:var(--gray-50)!important}.hover\\:border-gray-100:hover{border-color:var(--gray-100)!important}.hover\\:border-gray-200:hover{border-color:var(--gray-200)!important}.hover\\:border-gray-300:hover{border-color:var(--gray-300)!important}.hover\\:border-gray-400:hover{border-color:var(--gray-400)!important}.hover\\:border-gray-500:hover{border-color:var(--gray-500)!important}.hover\\:border-gray-600:hover{border-color:var(--gray-600)!important}.hover\\:border-gray-700:hover{border-color:var(--gray-700)!important}.hover\\:border-gray-800:hover{border-color:var(--gray-800)!important}.hover\\:border-gray-900:hover{border-color:var(--gray-900)!important}.active\\:border-gray-50:active{border-color:var(--gray-50)!important}.active\\:border-gray-100:active{border-color:var(--gray-100)!important}.active\\:border-gray-200:active{border-color:var(--gray-200)!important}.active\\:border-gray-300:active{border-color:var(--gray-300)!important}.active\\:border-gray-400:active{border-color:var(--gray-400)!important}.active\\:border-gray-500:active{border-color:var(--gray-500)!important}.active\\:border-gray-600:active{border-color:var(--gray-600)!important}.active\\:border-gray-700:active{border-color:var(--gray-700)!important}.active\\:border-gray-800:active{border-color:var(--gray-800)!important}.active\\:border-gray-900:active{border-color:var(--gray-900)!important}.border-red-50{border-color:var(--red-50)!important}.border-red-100{border-color:var(--red-100)!important}.border-red-200{border-color:var(--red-200)!important}.border-red-300{border-color:var(--red-300)!important}.border-red-400{border-color:var(--red-400)!important}.border-red-500{border-color:var(--red-500)!important}.border-red-600{border-color:var(--red-600)!important}.border-red-700{border-color:var(--red-700)!important}.border-red-800{border-color:var(--red-800)!important}.border-red-900{border-color:var(--red-900)!important}.focus\\:border-red-50:focus{border-color:var(--red-50)!important}.focus\\:border-red-100:focus{border-color:var(--red-100)!important}.focus\\:border-red-200:focus{border-color:var(--red-200)!important}.focus\\:border-red-300:focus{border-color:var(--red-300)!important}.focus\\:border-red-400:focus{border-color:var(--red-400)!important}.focus\\:border-red-500:focus{border-color:var(--red-500)!important}.focus\\:border-red-600:focus{border-color:var(--red-600)!important}.focus\\:border-red-700:focus{border-color:var(--red-700)!important}.focus\\:border-red-800:focus{border-color:var(--red-800)!important}.focus\\:border-red-900:focus{border-color:var(--red-900)!important}.hover\\:border-red-50:hover{border-color:var(--red-50)!important}.hover\\:border-red-100:hover{border-color:var(--red-100)!important}.hover\\:border-red-200:hover{border-color:var(--red-200)!important}.hover\\:border-red-300:hover{border-color:var(--red-300)!important}.hover\\:border-red-400:hover{border-color:var(--red-400)!important}.hover\\:border-red-500:hover{border-color:var(--red-500)!important}.hover\\:border-red-600:hover{border-color:var(--red-600)!important}.hover\\:border-red-700:hover{border-color:var(--red-700)!important}.hover\\:border-red-800:hover{border-color:var(--red-800)!important}.hover\\:border-red-900:hover{border-color:var(--red-900)!important}.active\\:border-red-50:active{border-color:var(--red-50)!important}.active\\:border-red-100:active{border-color:var(--red-100)!important}.active\\:border-red-200:active{border-color:var(--red-200)!important}.active\\:border-red-300:active{border-color:var(--red-300)!important}.active\\:border-red-400:active{border-color:var(--red-400)!important}.active\\:border-red-500:active{border-color:var(--red-500)!important}.active\\:border-red-600:active{border-color:var(--red-600)!important}.active\\:border-red-700:active{border-color:var(--red-700)!important}.active\\:border-red-800:active{border-color:var(--red-800)!important}.active\\:border-red-900:active{border-color:var(--red-900)!important}.border-primary-50{border-color:var(--primary-50)!important}.border-primary-100{border-color:var(--primary-100)!important}.border-primary-200{border-color:var(--primary-200)!important}.border-primary-300{border-color:var(--primary-300)!important}.border-primary-400{border-color:var(--primary-400)!important}.border-primary-500{border-color:var(--primary-500)!important}.border-primary-600{border-color:var(--primary-600)!important}.border-primary-700{border-color:var(--primary-700)!important}.border-primary-800{border-color:var(--primary-800)!important}.border-primary-900{border-color:var(--primary-900)!important}.focus\\:border-primary-50:focus{border-color:var(--primary-50)!important}.focus\\:border-primary-100:focus{border-color:var(--primary-100)!important}.focus\\:border-primary-200:focus{border-color:var(--primary-200)!important}.focus\\:border-primary-300:focus{border-color:var(--primary-300)!important}.focus\\:border-primary-400:focus{border-color:var(--primary-400)!important}.focus\\:border-primary-500:focus{border-color:var(--primary-500)!important}.focus\\:border-primary-600:focus{border-color:var(--primary-600)!important}.focus\\:border-primary-700:focus{border-color:var(--primary-700)!important}.focus\\:border-primary-800:focus{border-color:var(--primary-800)!important}.focus\\:border-primary-900:focus{border-color:var(--primary-900)!important}.hover\\:border-primary-50:hover{border-color:var(--primary-50)!important}.hover\\:border-primary-100:hover{border-color:var(--primary-100)!important}.hover\\:border-primary-200:hover{border-color:var(--primary-200)!important}.hover\\:border-primary-300:hover{border-color:var(--primary-300)!important}.hover\\:border-primary-400:hover{border-color:var(--primary-400)!important}.hover\\:border-primary-500:hover{border-color:var(--primary-500)!important}.hover\\:border-primary-600:hover{border-color:var(--primary-600)!important}.hover\\:border-primary-700:hover{border-color:var(--primary-700)!important}.hover\\:border-primary-800:hover{border-color:var(--primary-800)!important}.hover\\:border-primary-900:hover{border-color:var(--primary-900)!important}.active\\:border-primary-50:active{border-color:var(--primary-50)!important}.active\\:border-primary-100:active{border-color:var(--primary-100)!important}.active\\:border-primary-200:active{border-color:var(--primary-200)!important}.active\\:border-primary-300:active{border-color:var(--primary-300)!important}.active\\:border-primary-400:active{border-color:var(--primary-400)!important}.active\\:border-primary-500:active{border-color:var(--primary-500)!important}.active\\:border-primary-600:active{border-color:var(--primary-600)!important}.active\\:border-primary-700:active{border-color:var(--primary-700)!important}.active\\:border-primary-800:active{border-color:var(--primary-800)!important}.active\\:border-primary-900:active{border-color:var(--primary-900)!important}.bg-white-alpha-10{background-color:#ffffff1a!important}.bg-white-alpha-20{background-color:#fff3!important}.bg-white-alpha-30{background-color:#ffffff4d!important}.bg-white-alpha-40{background-color:#fff6!important}.bg-white-alpha-50{background-color:#ffffff80!important}.bg-white-alpha-60{background-color:#fff9!important}.bg-white-alpha-70{background-color:#ffffffb3!important}.bg-white-alpha-80{background-color:#fffc!important}.bg-white-alpha-90{background-color:#ffffffe6!important}.hover\\:bg-white-alpha-10:hover{background-color:#ffffff1a!important}.hover\\:bg-white-alpha-20:hover{background-color:#fff3!important}.hover\\:bg-white-alpha-30:hover{background-color:#ffffff4d!important}.hover\\:bg-white-alpha-40:hover{background-color:#fff6!important}.hover\\:bg-white-alpha-50:hover{background-color:#ffffff80!important}.hover\\:bg-white-alpha-60:hover{background-color:#fff9!important}.hover\\:bg-white-alpha-70:hover{background-color:#ffffffb3!important}.hover\\:bg-white-alpha-80:hover{background-color:#fffc!important}.hover\\:bg-white-alpha-90:hover{background-color:#ffffffe6!important}.focus\\:bg-white-alpha-10:focus{background-color:#ffffff1a!important}.focus\\:bg-white-alpha-20:focus{background-color:#fff3!important}.focus\\:bg-white-alpha-30:focus{background-color:#ffffff4d!important}.focus\\:bg-white-alpha-40:focus{background-color:#fff6!important}.focus\\:bg-white-alpha-50:focus{background-color:#ffffff80!important}.focus\\:bg-white-alpha-60:focus{background-color:#fff9!important}.focus\\:bg-white-alpha-70:focus{background-color:#ffffffb3!important}.focus\\:bg-white-alpha-80:focus{background-color:#fffc!important}.focus\\:bg-white-alpha-90:focus{background-color:#ffffffe6!important}.active\\:bg-white-alpha-10:active{background-color:#ffffff1a!important}.active\\:bg-white-alpha-20:active{background-color:#fff3!important}.active\\:bg-white-alpha-30:active{background-color:#ffffff4d!important}.active\\:bg-white-alpha-40:active{background-color:#fff6!important}.active\\:bg-white-alpha-50:active{background-color:#ffffff80!important}.active\\:bg-white-alpha-60:active{background-color:#fff9!important}.active\\:bg-white-alpha-70:active{background-color:#ffffffb3!important}.active\\:bg-white-alpha-80:active{background-color:#fffc!important}.active\\:bg-white-alpha-90:active{background-color:#ffffffe6!important}.bg-black-alpha-10{background-color:#0000001a!important}.bg-black-alpha-20{background-color:#0003!important}.bg-black-alpha-30{background-color:#0000004d!important}.bg-black-alpha-40{background-color:#0006!important}.bg-black-alpha-50{background-color:#00000080!important}.bg-black-alpha-60{background-color:#0009!important}.bg-black-alpha-70{background-color:#000000b3!important}.bg-black-alpha-80{background-color:#000c!important}.bg-black-alpha-90{background-color:#000000e6!important}.hover\\:bg-black-alpha-10:hover{background-color:#0000001a!important}.hover\\:bg-black-alpha-20:hover{background-color:#0003!important}.hover\\:bg-black-alpha-30:hover{background-color:#0000004d!important}.hover\\:bg-black-alpha-40:hover{background-color:#0006!important}.hover\\:bg-black-alpha-50:hover{background-color:#00000080!important}.hover\\:bg-black-alpha-60:hover{background-color:#0009!important}.hover\\:bg-black-alpha-70:hover{background-color:#000000b3!important}.hover\\:bg-black-alpha-80:hover{background-color:#000c!important}.hover\\:bg-black-alpha-90:hover{background-color:#000000e6!important}.focus\\:bg-black-alpha-10:focus{background-color:#0000001a!important}.focus\\:bg-black-alpha-20:focus{background-color:#0003!important}.focus\\:bg-black-alpha-30:focus{background-color:#0000004d!important}.focus\\:bg-black-alpha-40:focus{background-color:#0006!important}.focus\\:bg-black-alpha-50:focus{background-color:#00000080!important}.focus\\:bg-black-alpha-60:focus{background-color:#0009!important}.focus\\:bg-black-alpha-70:focus{background-color:#000000b3!important}.focus\\:bg-black-alpha-80:focus{background-color:#000c!important}.focus\\:bg-black-alpha-90:focus{background-color:#000000e6!important}.active\\:bg-black-alpha-10:active{background-color:#0000001a!important}.active\\:bg-black-alpha-20:active{background-color:#0003!important}.active\\:bg-black-alpha-30:active{background-color:#0000004d!important}.active\\:bg-black-alpha-40:active{background-color:#0006!important}.active\\:bg-black-alpha-50:active{background-color:#00000080!important}.active\\:bg-black-alpha-60:active{background-color:#0009!important}.active\\:bg-black-alpha-70:active{background-color:#000000b3!important}.active\\:bg-black-alpha-80:active{background-color:#000c!important}.active\\:bg-black-alpha-90:active{background-color:#000000e6!important}.border-white-alpha-10{border-color:#ffffff1a!important}.border-white-alpha-20{border-color:#fff3!important}.border-white-alpha-30{border-color:#ffffff4d!important}.border-white-alpha-40{border-color:#fff6!important}.border-white-alpha-50{border-color:#ffffff80!important}.border-white-alpha-60{border-color:#fff9!important}.border-white-alpha-70{border-color:#ffffffb3!important}.border-white-alpha-80{border-color:#fffc!important}.border-white-alpha-90{border-color:#ffffffe6!important}.hover\\:border-white-alpha-10:hover{border-color:#ffffff1a!important}.hover\\:border-white-alpha-20:hover{border-color:#fff3!important}.hover\\:border-white-alpha-30:hover{border-color:#ffffff4d!important}.hover\\:border-white-alpha-40:hover{border-color:#fff6!important}.hover\\:border-white-alpha-50:hover{border-color:#ffffff80!important}.hover\\:border-white-alpha-60:hover{border-color:#fff9!important}.hover\\:border-white-alpha-70:hover{border-color:#ffffffb3!important}.hover\\:border-white-alpha-80:hover{border-color:#fffc!important}.hover\\:border-white-alpha-90:hover{border-color:#ffffffe6!important}.focus\\:border-white-alpha-10:focus{border-color:#ffffff1a!important}.focus\\:border-white-alpha-20:focus{border-color:#fff3!important}.focus\\:border-white-alpha-30:focus{border-color:#ffffff4d!important}.focus\\:border-white-alpha-40:focus{border-color:#fff6!important}.focus\\:border-white-alpha-50:focus{border-color:#ffffff80!important}.focus\\:border-white-alpha-60:focus{border-color:#fff9!important}.focus\\:border-white-alpha-70:focus{border-color:#ffffffb3!important}.focus\\:border-white-alpha-80:focus{border-color:#fffc!important}.focus\\:border-white-alpha-90:focus{border-color:#ffffffe6!important}.active\\:border-white-alpha-10:active{border-color:#ffffff1a!important}.active\\:border-white-alpha-20:active{border-color:#fff3!important}.active\\:border-white-alpha-30:active{border-color:#ffffff4d!important}.active\\:border-white-alpha-40:active{border-color:#fff6!important}.active\\:border-white-alpha-50:active{border-color:#ffffff80!important}.active\\:border-white-alpha-60:active{border-color:#fff9!important}.active\\:border-white-alpha-70:active{border-color:#ffffffb3!important}.active\\:border-white-alpha-80:active{border-color:#fffc!important}.active\\:border-white-alpha-90:active{border-color:#ffffffe6!important}.border-black-alpha-10{border-color:#0000001a!important}.border-black-alpha-20{border-color:#0003!important}.border-black-alpha-30{border-color:#0000004d!important}.border-black-alpha-40{border-color:#0006!important}.border-black-alpha-50{border-color:#00000080!important}.border-black-alpha-60{border-color:#0009!important}.border-black-alpha-70{border-color:#000000b3!important}.border-black-alpha-80{border-color:#000c!important}.border-black-alpha-90{border-color:#000000e6!important}.hover\\:border-black-alpha-10:hover{border-color:#0000001a!important}.hover\\:border-black-alpha-20:hover{border-color:#0003!important}.hover\\:border-black-alpha-30:hover{border-color:#0000004d!important}.hover\\:border-black-alpha-40:hover{border-color:#0006!important}.hover\\:border-black-alpha-50:hover{border-color:#00000080!important}.hover\\:border-black-alpha-60:hover{border-color:#0009!important}.hover\\:border-black-alpha-70:hover{border-color:#000000b3!important}.hover\\:border-black-alpha-80:hover{border-color:#000c!important}.hover\\:border-black-alpha-90:hover{border-color:#000000e6!important}.focus\\:border-black-alpha-10:focus{border-color:#0000001a!important}.focus\\:border-black-alpha-20:focus{border-color:#0003!important}.focus\\:border-black-alpha-30:focus{border-color:#0000004d!important}.focus\\:border-black-alpha-40:focus{border-color:#0006!important}.focus\\:border-black-alpha-50:focus{border-color:#00000080!important}.focus\\:border-black-alpha-60:focus{border-color:#0009!important}.focus\\:border-black-alpha-70:focus{border-color:#000000b3!important}.focus\\:border-black-alpha-80:focus{border-color:#000c!important}.focus\\:border-black-alpha-90:focus{border-color:#000000e6!important}.active\\:border-black-alpha-10:active{border-color:#0000001a!important}.active\\:border-black-alpha-20:active{border-color:#0003!important}.active\\:border-black-alpha-30:active{border-color:#0000004d!important}.active\\:border-black-alpha-40:active{border-color:#0006!important}.active\\:border-black-alpha-50:active{border-color:#00000080!important}.active\\:border-black-alpha-60:active{border-color:#0009!important}.active\\:border-black-alpha-70:active{border-color:#000000b3!important}.active\\:border-black-alpha-80:active{border-color:#000c!important}.active\\:border-black-alpha-90:active{border-color:#000000e6!important}.text-white-alpha-10{color:#ffffff1a!important}.text-white-alpha-20{color:#fff3!important}.text-white-alpha-30{color:#ffffff4d!important}.text-white-alpha-40{color:#fff6!important}.text-white-alpha-50{color:#ffffff80!important}.text-white-alpha-60{color:#fff9!important}.text-white-alpha-70{color:#ffffffb3!important}.text-white-alpha-80{color:#fffc!important}.text-white-alpha-90{color:#ffffffe6!important}.hover\\:text-white-alpha-10:hover{color:#ffffff1a!important}.hover\\:text-white-alpha-20:hover{color:#fff3!important}.hover\\:text-white-alpha-30:hover{color:#ffffff4d!important}.hover\\:text-white-alpha-40:hover{color:#fff6!important}.hover\\:text-white-alpha-50:hover{color:#ffffff80!important}.hover\\:text-white-alpha-60:hover{color:#fff9!important}.hover\\:text-white-alpha-70:hover{color:#ffffffb3!important}.hover\\:text-white-alpha-80:hover{color:#fffc!important}.hover\\:text-white-alpha-90:hover{color:#ffffffe6!important}.focus\\:text-white-alpha-10:focus{color:#ffffff1a!important}.focus\\:text-white-alpha-20:focus{color:#fff3!important}.focus\\:text-white-alpha-30:focus{color:#ffffff4d!important}.focus\\:text-white-alpha-40:focus{color:#fff6!important}.focus\\:text-white-alpha-50:focus{color:#ffffff80!important}.focus\\:text-white-alpha-60:focus{color:#fff9!important}.focus\\:text-white-alpha-70:focus{color:#ffffffb3!important}.focus\\:text-white-alpha-80:focus{color:#fffc!important}.focus\\:text-white-alpha-90:focus{color:#ffffffe6!important}.active\\:text-white-alpha-10:active{color:#ffffff1a!important}.active\\:text-white-alpha-20:active{color:#fff3!important}.active\\:text-white-alpha-30:active{color:#ffffff4d!important}.active\\:text-white-alpha-40:active{color:#fff6!important}.active\\:text-white-alpha-50:active{color:#ffffff80!important}.active\\:text-white-alpha-60:active{color:#fff9!important}.active\\:text-white-alpha-70:active{color:#ffffffb3!important}.active\\:text-white-alpha-80:active{color:#fffc!important}.active\\:text-white-alpha-90:active{color:#ffffffe6!important}.text-black-alpha-10{color:#0000001a!important}.text-black-alpha-20{color:#0003!important}.text-black-alpha-30{color:#0000004d!important}.text-black-alpha-40{color:#0006!important}.text-black-alpha-50{color:#00000080!important}.text-black-alpha-60{color:#0009!important}.text-black-alpha-70{color:#000000b3!important}.text-black-alpha-80{color:#000c!important}.text-black-alpha-90{color:#000000e6!important}.hover\\:text-black-alpha-10:hover{color:#0000001a!important}.hover\\:text-black-alpha-20:hover{color:#0003!important}.hover\\:text-black-alpha-30:hover{color:#0000004d!important}.hover\\:text-black-alpha-40:hover{color:#0006!important}.hover\\:text-black-alpha-50:hover{color:#00000080!important}.hover\\:text-black-alpha-60:hover{color:#0009!important}.hover\\:text-black-alpha-70:hover{color:#000000b3!important}.hover\\:text-black-alpha-80:hover{color:#000c!important}.hover\\:text-black-alpha-90:hover{color:#000000e6!important}.focus\\:text-black-alpha-10:focus{color:#0000001a!important}.focus\\:text-black-alpha-20:focus{color:#0003!important}.focus\\:text-black-alpha-30:focus{color:#0000004d!important}.focus\\:text-black-alpha-40:focus{color:#0006!important}.focus\\:text-black-alpha-50:focus{color:#00000080!important}.focus\\:text-black-alpha-60:focus{color:#0009!important}.focus\\:text-black-alpha-70:focus{color:#000000b3!important}.focus\\:text-black-alpha-80:focus{color:#000c!important}.focus\\:text-black-alpha-90:focus{color:#000000e6!important}.active\\:text-black-alpha-10:active{color:#0000001a!important}.active\\:text-black-alpha-20:active{color:#0003!important}.active\\:text-black-alpha-30:active{color:#0000004d!important}.active\\:text-black-alpha-40:active{color:#0006!important}.active\\:text-black-alpha-50:active{color:#00000080!important}.active\\:text-black-alpha-60:active{color:#0009!important}.active\\:text-black-alpha-70:active{color:#000000b3!important}.active\\:text-black-alpha-80:active{color:#000c!important}.active\\:text-black-alpha-90:active{color:#000000e6!important}.text-primary{color:var(--primary-color)!important}.bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.bg-white{background-color:#fff!important}.border-primary{border-color:var(--primary-color)!important}.text-white{color:#fff!important}.border-white{border-color:#fff!important}.text-color{color:var(--text-color)!important}.text-color-secondary{color:var(--text-color-secondary)!important}.surface-ground{background-color:var(--surface-ground)!important}.surface-section{background-color:var(--surface-section)!important}.surface-card{background-color:var(--surface-card)!important}.surface-overlay{background-color:var(--surface-overlay)!important}.surface-hover{background-color:var(--surface-hover)!important}.surface-border{border-color:var(--surface-border)!important}.focus\\:text-primary:focus{color:var(--primary-color)!important}.hover\\:text-primary:hover,.active\\:text-primary:active{color:var(--primary-color)!important}.focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.hover\\:bg-primary:hover,.active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.hover\\:bg-primary-reverse:hover,.active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.focus\\:bg-white:focus{background-color:#fff!important}.hover\\:bg-white:hover,.active\\:bg-white:active{background-color:#fff!important}.focus\\:border-primary:focus{border-color:var(--primary-color)!important}.hover\\:border-primary:hover,.active\\:border-primary:active{border-color:var(--primary-color)!important}.focus\\:text-white:focus{color:#fff!important}.hover\\:text-white:hover,.active\\:text-white:active{color:#fff!important}.focus\\:border-white:focus{border-color:#fff!important}.hover\\:border-white:hover,.active\\:border-white:active{border-color:#fff!important}.focus\\:text-color:focus{color:var(--text-color)!important}.hover\\:text-color:hover,.active\\:text-color:active{color:var(--text-color)!important}.focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.hover\\:text-color-secondary:hover,.active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.hover\\:surface-ground:hover,.active\\:surface-ground:active{background-color:var(--surface-ground)!important}.focus\\:surface-section:focus{background-color:var(--surface-section)!important}.hover\\:surface-section:hover,.active\\:surface-section:active{background-color:var(--surface-section)!important}.focus\\:surface-card:focus{background-color:var(--surface-card)!important}.hover\\:surface-card:hover,.active\\:surface-card:active{background-color:var(--surface-card)!important}.focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.hover\\:surface-overlay:hover,.active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.hover\\:surface-hover:hover,.active\\:surface-hover:active{background-color:var(--surface-hover)!important}.focus\\:surface-border:focus{border-color:var(--surface-border)!important}.hover\\:surface-border:hover,.active\\:surface-border:active{border-color:var(--surface-border)!important}@media screen and (min-width: 576px){.sm\\:text-primary{color:var(--primary-color)!important}.sm\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:bg-white{background-color:#fff!important}.sm\\:border-primary{border-color:var(--primary-color)!important}.sm\\:text-white{color:#fff!important}.sm\\:border-white{border-color:#fff!important}.sm\\:text-color{color:var(--text-color)!important}.sm\\:text-color-secondary{color:var(--text-color-secondary)!important}.sm\\:surface-ground{background-color:var(--surface-ground)!important}.sm\\:surface-section{background-color:var(--surface-section)!important}.sm\\:surface-card{background-color:var(--surface-card)!important}.sm\\:surface-overlay{background-color:var(--surface-overlay)!important}.sm\\:surface-hover{background-color:var(--surface-hover)!important}.sm\\:surface-border{border-color:var(--surface-border)!important}.sm\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.sm\\:hover\\:text-primary:hover,.sm\\:active\\:text-primary:active{color:var(--primary-color)!important}.sm\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:hover\\:bg-primary:hover,.sm\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:hover\\:bg-primary-reverse:hover,.sm\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:focus\\:bg-white:focus{background-color:#fff!important}.sm\\:hover\\:bg-white:hover,.sm\\:active\\:bg-white:active{background-color:#fff!important}.sm\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.sm\\:hover\\:border-primary:hover,.sm\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.sm\\:focus\\:text-white:focus{color:#fff!important}.sm\\:hover\\:text-white:hover,.sm\\:active\\:text-white:active{color:#fff!important}.sm\\:focus\\:border-white:focus{border-color:#fff!important}.sm\\:hover\\:border-white:hover,.sm\\:active\\:border-white:active{border-color:#fff!important}.sm\\:focus\\:text-color:focus{color:var(--text-color)!important}.sm\\:hover\\:text-color:hover,.sm\\:active\\:text-color:active{color:var(--text-color)!important}.sm\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.sm\\:hover\\:text-color-secondary:hover,.sm\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.sm\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.sm\\:hover\\:surface-ground:hover,.sm\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.sm\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.sm\\:hover\\:surface-section:hover,.sm\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.sm\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.sm\\:hover\\:surface-card:hover,.sm\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.sm\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.sm\\:hover\\:surface-overlay:hover,.sm\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.sm\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.sm\\:hover\\:surface-hover:hover,.sm\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.sm\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.sm\\:hover\\:surface-border:hover,.sm\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 768px){.md\\:text-primary{color:var(--primary-color)!important}.md\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:bg-white{background-color:#fff!important}.md\\:border-primary{border-color:var(--primary-color)!important}.md\\:text-white{color:#fff!important}.md\\:border-white{border-color:#fff!important}.md\\:text-color{color:var(--text-color)!important}.md\\:text-color-secondary{color:var(--text-color-secondary)!important}.md\\:surface-ground{background-color:var(--surface-ground)!important}.md\\:surface-section{background-color:var(--surface-section)!important}.md\\:surface-card{background-color:var(--surface-card)!important}.md\\:surface-overlay{background-color:var(--surface-overlay)!important}.md\\:surface-hover{background-color:var(--surface-hover)!important}.md\\:surface-border{border-color:var(--surface-border)!important}.md\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.md\\:hover\\:text-primary:hover,.md\\:active\\:text-primary:active{color:var(--primary-color)!important}.md\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:hover\\:bg-primary:hover,.md\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:hover\\:bg-primary-reverse:hover,.md\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:focus\\:bg-white:focus{background-color:#fff!important}.md\\:hover\\:bg-white:hover,.md\\:active\\:bg-white:active{background-color:#fff!important}.md\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.md\\:hover\\:border-primary:hover,.md\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.md\\:focus\\:text-white:focus{color:#fff!important}.md\\:hover\\:text-white:hover,.md\\:active\\:text-white:active{color:#fff!important}.md\\:focus\\:border-white:focus{border-color:#fff!important}.md\\:hover\\:border-white:hover,.md\\:active\\:border-white:active{border-color:#fff!important}.md\\:focus\\:text-color:focus{color:var(--text-color)!important}.md\\:hover\\:text-color:hover,.md\\:active\\:text-color:active{color:var(--text-color)!important}.md\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.md\\:hover\\:text-color-secondary:hover,.md\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.md\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.md\\:hover\\:surface-ground:hover,.md\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.md\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.md\\:hover\\:surface-section:hover,.md\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.md\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.md\\:hover\\:surface-card:hover,.md\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.md\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.md\\:hover\\:surface-overlay:hover,.md\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.md\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.md\\:hover\\:surface-hover:hover,.md\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.md\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.md\\:hover\\:surface-border:hover,.md\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 992px){.lg\\:text-primary{color:var(--primary-color)!important}.lg\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:bg-white{background-color:#fff!important}.lg\\:border-primary{border-color:var(--primary-color)!important}.lg\\:text-white{color:#fff!important}.lg\\:border-white{border-color:#fff!important}.lg\\:text-color{color:var(--text-color)!important}.lg\\:text-color-secondary{color:var(--text-color-secondary)!important}.lg\\:surface-ground{background-color:var(--surface-ground)!important}.lg\\:surface-section{background-color:var(--surface-section)!important}.lg\\:surface-card{background-color:var(--surface-card)!important}.lg\\:surface-overlay{background-color:var(--surface-overlay)!important}.lg\\:surface-hover{background-color:var(--surface-hover)!important}.lg\\:surface-border{border-color:var(--surface-border)!important}.lg\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.lg\\:hover\\:text-primary:hover,.lg\\:active\\:text-primary:active{color:var(--primary-color)!important}.lg\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:hover\\:bg-primary:hover,.lg\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:hover\\:bg-primary-reverse:hover,.lg\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:focus\\:bg-white:focus{background-color:#fff!important}.lg\\:hover\\:bg-white:hover,.lg\\:active\\:bg-white:active{background-color:#fff!important}.lg\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.lg\\:hover\\:border-primary:hover,.lg\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.lg\\:focus\\:text-white:focus{color:#fff!important}.lg\\:hover\\:text-white:hover,.lg\\:active\\:text-white:active{color:#fff!important}.lg\\:focus\\:border-white:focus{border-color:#fff!important}.lg\\:hover\\:border-white:hover,.lg\\:active\\:border-white:active{border-color:#fff!important}.lg\\:focus\\:text-color:focus{color:var(--text-color)!important}.lg\\:hover\\:text-color:hover,.lg\\:active\\:text-color:active{color:var(--text-color)!important}.lg\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.lg\\:hover\\:text-color-secondary:hover,.lg\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.lg\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.lg\\:hover\\:surface-ground:hover,.lg\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.lg\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.lg\\:hover\\:surface-section:hover,.lg\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.lg\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.lg\\:hover\\:surface-card:hover,.lg\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.lg\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.lg\\:hover\\:surface-overlay:hover,.lg\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.lg\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.lg\\:hover\\:surface-hover:hover,.lg\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.lg\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.lg\\:hover\\:surface-border:hover,.lg\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 1200px){.xl\\:text-primary{color:var(--primary-color)!important}.xl\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:bg-white{background-color:#fff!important}.xl\\:border-primary{border-color:var(--primary-color)!important}.xl\\:text-white{color:#fff!important}.xl\\:border-white{border-color:#fff!important}.xl\\:text-color{color:var(--text-color)!important}.xl\\:text-color-secondary{color:var(--text-color-secondary)!important}.xl\\:surface-ground{background-color:var(--surface-ground)!important}.xl\\:surface-section{background-color:var(--surface-section)!important}.xl\\:surface-card{background-color:var(--surface-card)!important}.xl\\:surface-overlay{background-color:var(--surface-overlay)!important}.xl\\:surface-hover{background-color:var(--surface-hover)!important}.xl\\:surface-border{border-color:var(--surface-border)!important}.xl\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.xl\\:hover\\:text-primary:hover,.xl\\:active\\:text-primary:active{color:var(--primary-color)!important}.xl\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:hover\\:bg-primary:hover,.xl\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:hover\\:bg-primary-reverse:hover,.xl\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:focus\\:bg-white:focus{background-color:#fff!important}.xl\\:hover\\:bg-white:hover,.xl\\:active\\:bg-white:active{background-color:#fff!important}.xl\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.xl\\:hover\\:border-primary:hover,.xl\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.xl\\:focus\\:text-white:focus{color:#fff!important}.xl\\:hover\\:text-white:hover,.xl\\:active\\:text-white:active{color:#fff!important}.xl\\:focus\\:border-white:focus{border-color:#fff!important}.xl\\:hover\\:border-white:hover,.xl\\:active\\:border-white:active{border-color:#fff!important}.xl\\:focus\\:text-color:focus{color:var(--text-color)!important}.xl\\:hover\\:text-color:hover,.xl\\:active\\:text-color:active{color:var(--text-color)!important}.xl\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.xl\\:hover\\:text-color-secondary:hover,.xl\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.xl\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.xl\\:hover\\:surface-ground:hover,.xl\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.xl\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.xl\\:hover\\:surface-section:hover,.xl\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.xl\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.xl\\:hover\\:surface-card:hover,.xl\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.xl\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.xl\\:hover\\:surface-overlay:hover,.xl\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.xl\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.xl\\:hover\\:surface-hover:hover,.xl\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.xl\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.xl\\:hover\\:surface-border:hover,.xl\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}.field{margin-bottom:1rem}.field>label{display:inline-block;margin-bottom:.5rem}.field.grid>label{display:flex;align-items:center}.field>small{margin-top:.25rem}.field.grid,.formgrid.grid{margin-top:0}.field.grid .col-fixed,.formgrid.grid .col-fixed,.field.grid .col,.formgrid.grid .col,.field.grid .col-1,.formgrid.grid .col-1,.field.grid .col-2,.formgrid.grid .col-2,.field.grid .col-3,.formgrid.grid .col-3,.field.grid .col-4,.formgrid.grid .col-4,.field.grid .col-5,.formgrid.grid .col-5,.field.grid .col-6,.formgrid.grid .col-6,.field.grid .col-7,.formgrid.grid .col-7,.field.grid .col-8,.formgrid.grid .col-8,.field.grid .col-9,.formgrid.grid .col-9,.field.grid .col-10,.formgrid.grid .col-10,.field.grid .col-11,.formgrid.grid .col-11,.field.grid .col-12,.formgrid.grid .col-12{padding-top:0;padding-bottom:0}.formgroup-inline{display:flex;flex-wrap:wrap;align-items:flex-start}.formgroup-inline .field,.formgroup-inline .field-checkbox,.formgroup-inline .field-radiobutton{margin-right:1rem}.formgroup-inline .field>label,.formgroup-inline .field-checkbox>label,.formgroup-inline .field-radiobutton>label{margin-right:.5rem;margin-bottom:0}.field-checkbox,.field-radiobutton{margin-bottom:1rem;display:flex;align-items:center}.field-checkbox>label,.field-radiobutton>label{margin-left:.5rem;line-height:1}.hidden{display:none!important}.block{display:block!important}.inline{display:inline!important}.inline-block{display:inline-block!important}.flex{display:flex!important}.inline-flex{display:inline-flex!important}@media screen and (min-width: 576px){.sm\\:hidden{display:none!important}.sm\\:block{display:block!important}.sm\\:inline{display:inline!important}.sm\\:inline-block{display:inline-block!important}.sm\\:flex{display:flex!important}.sm\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 768px){.md\\:hidden{display:none!important}.md\\:block{display:block!important}.md\\:inline{display:inline!important}.md\\:inline-block{display:inline-block!important}.md\\:flex{display:flex!important}.md\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 992px){.lg\\:hidden{display:none!important}.lg\\:block{display:block!important}.lg\\:inline{display:inline!important}.lg\\:inline-block{display:inline-block!important}.lg\\:flex{display:flex!important}.lg\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 1200px){.xl\\:hidden{display:none!important}.xl\\:block{display:block!important}.xl\\:inline{display:inline!important}.xl\\:inline-block{display:inline-block!important}.xl\\:flex{display:flex!important}.xl\\:inline-flex{display:inline-flex!important}}.text-center{text-align:center!important}.text-justify{text-align:justify!important}.text-left{text-align:left!important}.text-right{text-align:right!important}@media screen and (min-width: 576px){.sm\\:text-center{text-align:center!important}.sm\\:text-justify{text-align:justify!important}.sm\\:text-left{text-align:left!important}.sm\\:text-right{text-align:right!important}}@media screen and (min-width: 768px){.md\\:text-center{text-align:center!important}.md\\:text-justify{text-align:justify!important}.md\\:text-left{text-align:left!important}.md\\:text-right{text-align:right!important}}@media screen and (min-width: 992px){.lg\\:text-center{text-align:center!important}.lg\\:text-justify{text-align:justify!important}.lg\\:text-left{text-align:left!important}.lg\\:text-right{text-align:right!important}}@media screen and (min-width: 1200px){.xl\\:text-center{text-align:center!important}.xl\\:text-justify{text-align:justify!important}.xl\\:text-left{text-align:left!important}.xl\\:text-right{text-align:right!important}}.underline{text-decoration:underline!important}.line-through{text-decoration:line-through!important}.no-underline{text-decoration:none!important}.focus\\:underline:focus{text-decoration:underline!important}.hover\\:underline:hover,.active\\:underline:active{text-decoration:underline!important}.focus\\:line-through:focus{text-decoration:line-through!important}.hover\\:line-through:hover,.active\\:line-through:active{text-decoration:line-through!important}.focus\\:no-underline:focus{text-decoration:none!important}.hover\\:no-underline:hover,.active\\:no-underline:active{text-decoration:none!important}.lowercase{text-transform:lowercase!important}.uppercase{text-transform:uppercase!important}.capitalize{text-transform:capitalize!important}.text-overflow-clip{text-overflow:clip!important}.text-overflow-ellipsis{text-overflow:ellipsis!important}@media screen and (min-width: 576px){.sm\\:text-overflow-clip{text-overflow:clip!important}.sm\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 768px){.md\\:text-overflow-clip{text-overflow:clip!important}.md\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 992px){.lg\\:text-overflow-clip{text-overflow:clip!important}.lg\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 1200px){.xl\\:text-overflow-clip{text-overflow:clip!important}.xl\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}.font-light{font-weight:300!important}.font-normal{font-weight:400!important}.font-medium{font-weight:500!important}.font-semibold{font-weight:600!important}.font-bold{font-weight:700!important}@media screen and (min-width: 576px){.sm\\:font-light{font-weight:300!important}.sm\\:font-normal{font-weight:400!important}.sm\\:font-medium{font-weight:500!important}.sm\\:font-semibold{font-weight:600!important}.sm\\:font-bold{font-weight:700!important}}@media screen and (min-width: 768px){.md\\:font-light{font-weight:300!important}.md\\:font-normal{font-weight:400!important}.md\\:font-medium{font-weight:500!important}.md\\:font-semibold{font-weight:600!important}.md\\:font-bold{font-weight:700!important}}@media screen and (min-width: 992px){.lg\\:font-light{font-weight:300!important}.lg\\:font-normal{font-weight:400!important}.lg\\:font-medium{font-weight:500!important}.lg\\:font-semibold{font-weight:600!important}.lg\\:font-bold{font-weight:700!important}}@media screen and (min-width: 1200px){.xl\\:font-light{font-weight:300!important}.xl\\:font-normal{font-weight:400!important}.xl\\:font-medium{font-weight:500!important}.xl\\:font-semibold{font-weight:600!important}.xl\\:font-bold{font-weight:700!important}}.font-italic{font-style:italic!important}.text-xs{font-size:.75rem!important}.text-sm{font-size:.875rem!important}.text-base{font-size:1rem!important}.text-lg{font-size:1.125rem!important}.text-xl{font-size:1.25rem!important}.text-2xl{font-size:1.5rem!important}.text-3xl{font-size:1.75rem!important}.text-4xl{font-size:2rem!important}.text-5xl{font-size:2.5rem!important}.text-6xl{font-size:3rem!important}.text-7xl{font-size:4rem!important}.text-8xl{font-size:6rem!important}@media screen and (min-width: 576px){.sm\\:text-xs{font-size:.75rem!important}.sm\\:text-sm{font-size:.875rem!important}.sm\\:text-base{font-size:1rem!important}.sm\\:text-lg{font-size:1.125rem!important}.sm\\:text-xl{font-size:1.25rem!important}.sm\\:text-2xl{font-size:1.5rem!important}.sm\\:text-3xl{font-size:1.75rem!important}.sm\\:text-4xl{font-size:2rem!important}.sm\\:text-5xl{font-size:2.5rem!important}.sm\\:text-6xl{font-size:3rem!important}.sm\\:text-7xl{font-size:4rem!important}.sm\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 768px){.md\\:text-xs{font-size:.75rem!important}.md\\:text-sm{font-size:.875rem!important}.md\\:text-base{font-size:1rem!important}.md\\:text-lg{font-size:1.125rem!important}.md\\:text-xl{font-size:1.25rem!important}.md\\:text-2xl{font-size:1.5rem!important}.md\\:text-3xl{font-size:1.75rem!important}.md\\:text-4xl{font-size:2rem!important}.md\\:text-5xl{font-size:2.5rem!important}.md\\:text-6xl{font-size:3rem!important}.md\\:text-7xl{font-size:4rem!important}.md\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 992px){.lg\\:text-xs{font-size:.75rem!important}.lg\\:text-sm{font-size:.875rem!important}.lg\\:text-base{font-size:1rem!important}.lg\\:text-lg{font-size:1.125rem!important}.lg\\:text-xl{font-size:1.25rem!important}.lg\\:text-2xl{font-size:1.5rem!important}.lg\\:text-3xl{font-size:1.75rem!important}.lg\\:text-4xl{font-size:2rem!important}.lg\\:text-5xl{font-size:2.5rem!important}.lg\\:text-6xl{font-size:3rem!important}.lg\\:text-7xl{font-size:4rem!important}.lg\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 1200px){.xl\\:text-xs{font-size:.75rem!important}.xl\\:text-sm{font-size:.875rem!important}.xl\\:text-base{font-size:1rem!important}.xl\\:text-lg{font-size:1.125rem!important}.xl\\:text-xl{font-size:1.25rem!important}.xl\\:text-2xl{font-size:1.5rem!important}.xl\\:text-3xl{font-size:1.75rem!important}.xl\\:text-4xl{font-size:2rem!important}.xl\\:text-5xl{font-size:2.5rem!important}.xl\\:text-6xl{font-size:3rem!important}.xl\\:text-7xl{font-size:4rem!important}.xl\\:text-8xl{font-size:6rem!important}}.line-height-1{line-height:1!important}.line-height-2{line-height:1.25!important}.line-height-3{line-height:1.5!important}.line-height-4{line-height:2!important}.white-space-normal{white-space:normal!important}.white-space-nowrap{white-space:nowrap!important}.vertical-align-baseline{vertical-align:baseline!important}.vertical-align-top{vertical-align:top!important}.vertical-align-middle{vertical-align:middle!important}.vertical-align-bottom{vertical-align:bottom!important}.vertical-align-text-top{vertical-align:text-top!important}.vertical-align-text-bottom{vertical-align:text-bottom!important}.vertical-align-sub{vertical-align:sub!important}.vertical-align-super{vertical-align:super!important}@media screen and (min-width: 576px){.sm\\:vertical-align-baseline{vertical-align:baseline!important}.sm\\:vertical-align-top{vertical-align:top!important}.sm\\:vertical-align-middle{vertical-align:middle!important}.sm\\:vertical-align-bottom{vertical-align:bottom!important}.sm\\:vertical-align-text-top{vertical-align:text-top!important}.sm\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.sm\\:vertical-align-sub{vertical-align:sub!important}.sm\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 768px){.md\\:vertical-align-baseline{vertical-align:baseline!important}.md\\:vertical-align-top{vertical-align:top!important}.md\\:vertical-align-middle{vertical-align:middle!important}.md\\:vertical-align-bottom{vertical-align:bottom!important}.md\\:vertical-align-text-top{vertical-align:text-top!important}.md\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.md\\:vertical-align-sub{vertical-align:sub!important}.md\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 992px){.lg\\:vertical-align-baseline{vertical-align:baseline!important}.lg\\:vertical-align-top{vertical-align:top!important}.lg\\:vertical-align-middle{vertical-align:middle!important}.lg\\:vertical-align-bottom{vertical-align:bottom!important}.lg\\:vertical-align-text-top{vertical-align:text-top!important}.lg\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.lg\\:vertical-align-sub{vertical-align:sub!important}.lg\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 1200px){.xl\\:vertical-align-baseline{vertical-align:baseline!important}.xl\\:vertical-align-top{vertical-align:top!important}.xl\\:vertical-align-middle{vertical-align:middle!important}.xl\\:vertical-align-bottom{vertical-align:bottom!important}.xl\\:vertical-align-text-top{vertical-align:text-top!important}.xl\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.xl\\:vertical-align-sub{vertical-align:sub!important}.xl\\:vertical-align-super{vertical-align:super!important}}.flex-row{flex-direction:row!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column{flex-direction:column!important}.flex-column-reverse{flex-direction:column-reverse!important}@media screen and (min-width: 576px){.sm\\:flex-row{flex-direction:row!important}.sm\\:flex-row-reverse{flex-direction:row-reverse!important}.sm\\:flex-column{flex-direction:column!important}.sm\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 768px){.md\\:flex-row{flex-direction:row!important}.md\\:flex-row-reverse{flex-direction:row-reverse!important}.md\\:flex-column{flex-direction:column!important}.md\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 992px){.lg\\:flex-row{flex-direction:row!important}.lg\\:flex-row-reverse{flex-direction:row-reverse!important}.lg\\:flex-column{flex-direction:column!important}.lg\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 1200px){.xl\\:flex-row{flex-direction:row!important}.xl\\:flex-row-reverse{flex-direction:row-reverse!important}.xl\\:flex-column{flex-direction:column!important}.xl\\:flex-column-reverse{flex-direction:column-reverse!important}}.flex-wrap{flex-wrap:wrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-nowrap{flex-wrap:nowrap!important}@media screen and (min-width: 576px){.sm\\:flex-wrap{flex-wrap:wrap!important}.sm\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.sm\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 768px){.md\\:flex-wrap{flex-wrap:wrap!important}.md\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.md\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 992px){.lg\\:flex-wrap{flex-wrap:wrap!important}.lg\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.lg\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 1200px){.xl\\:flex-wrap{flex-wrap:wrap!important}.xl\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.xl\\:flex-nowrap{flex-wrap:nowrap!important}}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}@media screen and (min-width: 576px){.sm\\:justify-content-start{justify-content:flex-start!important}.sm\\:justify-content-end{justify-content:flex-end!important}.sm\\:justify-content-center{justify-content:center!important}.sm\\:justify-content-between{justify-content:space-between!important}.sm\\:justify-content-around{justify-content:space-around!important}.sm\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 768px){.md\\:justify-content-start{justify-content:flex-start!important}.md\\:justify-content-end{justify-content:flex-end!important}.md\\:justify-content-center{justify-content:center!important}.md\\:justify-content-between{justify-content:space-between!important}.md\\:justify-content-around{justify-content:space-around!important}.md\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 992px){.lg\\:justify-content-start{justify-content:flex-start!important}.lg\\:justify-content-end{justify-content:flex-end!important}.lg\\:justify-content-center{justify-content:center!important}.lg\\:justify-content-between{justify-content:space-between!important}.lg\\:justify-content-around{justify-content:space-around!important}.lg\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 1200px){.xl\\:justify-content-start{justify-content:flex-start!important}.xl\\:justify-content-end{justify-content:flex-end!important}.xl\\:justify-content-center{justify-content:center!important}.xl\\:justify-content-between{justify-content:space-between!important}.xl\\:justify-content-around{justify-content:space-around!important}.xl\\:justify-content-evenly{justify-content:space-evenly!important}}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-evenly{align-content:space-evenly!important}@media screen and (min-width: 576px){.sm\\:align-content-start{align-content:flex-start!important}.sm\\:align-content-end{align-content:flex-end!important}.sm\\:align-content-center{align-content:center!important}.sm\\:align-content-between{align-content:space-between!important}.sm\\:align-content-around{align-content:space-around!important}.sm\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 768px){.md\\:align-content-start{align-content:flex-start!important}.md\\:align-content-end{align-content:flex-end!important}.md\\:align-content-center{align-content:center!important}.md\\:align-content-between{align-content:space-between!important}.md\\:align-content-around{align-content:space-around!important}.md\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 992px){.lg\\:align-content-start{align-content:flex-start!important}.lg\\:align-content-end{align-content:flex-end!important}.lg\\:align-content-center{align-content:center!important}.lg\\:align-content-between{align-content:space-between!important}.lg\\:align-content-around{align-content:space-around!important}.lg\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 1200px){.xl\\:align-content-start{align-content:flex-start!important}.xl\\:align-content-end{align-content:flex-end!important}.xl\\:align-content-center{align-content:center!important}.xl\\:align-content-between{align-content:space-between!important}.xl\\:align-content-around{align-content:space-around!important}.xl\\:align-content-evenly{align-content:space-evenly!important}}.align-items-stretch{align-items:stretch!important}.align-items-start{align-items:flex-start!important}.align-items-center{align-items:center!important}.align-items-end{align-items:flex-end!important}.align-items-baseline{align-items:baseline!important}@media screen and (min-width: 576px){.sm\\:align-items-stretch{align-items:stretch!important}.sm\\:align-items-start{align-items:flex-start!important}.sm\\:align-items-center{align-items:center!important}.sm\\:align-items-end{align-items:flex-end!important}.sm\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 768px){.md\\:align-items-stretch{align-items:stretch!important}.md\\:align-items-start{align-items:flex-start!important}.md\\:align-items-center{align-items:center!important}.md\\:align-items-end{align-items:flex-end!important}.md\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 992px){.lg\\:align-items-stretch{align-items:stretch!important}.lg\\:align-items-start{align-items:flex-start!important}.lg\\:align-items-center{align-items:center!important}.lg\\:align-items-end{align-items:flex-end!important}.lg\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 1200px){.xl\\:align-items-stretch{align-items:stretch!important}.xl\\:align-items-start{align-items:flex-start!important}.xl\\:align-items-center{align-items:center!important}.xl\\:align-items-end{align-items:flex-end!important}.xl\\:align-items-baseline{align-items:baseline!important}}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-stretch{align-self:stretch!important}.align-self-baseline{align-self:baseline!important}@media screen and (min-width: 576px){.sm\\:align-self-auto{align-self:auto!important}.sm\\:align-self-start{align-self:flex-start!important}.sm\\:align-self-end{align-self:flex-end!important}.sm\\:align-self-center{align-self:center!important}.sm\\:align-self-stretch{align-self:stretch!important}.sm\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 768px){.md\\:align-self-auto{align-self:auto!important}.md\\:align-self-start{align-self:flex-start!important}.md\\:align-self-end{align-self:flex-end!important}.md\\:align-self-center{align-self:center!important}.md\\:align-self-stretch{align-self:stretch!important}.md\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 992px){.lg\\:align-self-auto{align-self:auto!important}.lg\\:align-self-start{align-self:flex-start!important}.lg\\:align-self-end{align-self:flex-end!important}.lg\\:align-self-center{align-self:center!important}.lg\\:align-self-stretch{align-self:stretch!important}.lg\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 1200px){.xl\\:align-self-auto{align-self:auto!important}.xl\\:align-self-start{align-self:flex-start!important}.xl\\:align-self-end{align-self:flex-end!important}.xl\\:align-self-center{align-self:center!important}.xl\\:align-self-stretch{align-self:stretch!important}.xl\\:align-self-baseline{align-self:baseline!important}}.flex-order-0{order:0!important}.flex-order-1{order:1!important}.flex-order-2{order:2!important}.flex-order-3{order:3!important}.flex-order-4{order:4!important}.flex-order-5{order:5!important}.flex-order-6{order:6!important}@media screen and (min-width: 576px){.sm\\:flex-order-0{order:0!important}.sm\\:flex-order-1{order:1!important}.sm\\:flex-order-2{order:2!important}.sm\\:flex-order-3{order:3!important}.sm\\:flex-order-4{order:4!important}.sm\\:flex-order-5{order:5!important}.sm\\:flex-order-6{order:6!important}}@media screen and (min-width: 768px){.md\\:flex-order-0{order:0!important}.md\\:flex-order-1{order:1!important}.md\\:flex-order-2{order:2!important}.md\\:flex-order-3{order:3!important}.md\\:flex-order-4{order:4!important}.md\\:flex-order-5{order:5!important}.md\\:flex-order-6{order:6!important}}@media screen and (min-width: 992px){.lg\\:flex-order-0{order:0!important}.lg\\:flex-order-1{order:1!important}.lg\\:flex-order-2{order:2!important}.lg\\:flex-order-3{order:3!important}.lg\\:flex-order-4{order:4!important}.lg\\:flex-order-5{order:5!important}.lg\\:flex-order-6{order:6!important}}@media screen and (min-width: 1200px){.xl\\:flex-order-0{order:0!important}.xl\\:flex-order-1{order:1!important}.xl\\:flex-order-2{order:2!important}.xl\\:flex-order-3{order:3!important}.xl\\:flex-order-4{order:4!important}.xl\\:flex-order-5{order:5!important}.xl\\:flex-order-6{order:6!important}}.flex-1{flex:1 1 0%!important}.flex-auto{flex:1 1 auto!important}.flex-initial{flex:0 1 auto!important}.flex-none{flex:none!important}@media screen and (min-width: 576px){.sm\\:flex-1{flex:1 1 0%!important}.sm\\:flex-auto{flex:1 1 auto!important}.sm\\:flex-initial{flex:0 1 auto!important}.sm\\:flex-none{flex:none!important}}@media screen and (min-width: 768px){.md\\:flex-1{flex:1 1 0%!important}.md\\:flex-auto{flex:1 1 auto!important}.md\\:flex-initial{flex:0 1 auto!important}.md\\:flex-none{flex:none!important}}@media screen and (min-width: 992px){.lg\\:flex-1{flex:1 1 0%!important}.lg\\:flex-auto{flex:1 1 auto!important}.lg\\:flex-initial{flex:0 1 auto!important}.lg\\:flex-none{flex:none!important}}@media screen and (min-width: 1200px){.xl\\:flex-1{flex:1 1 0%!important}.xl\\:flex-auto{flex:1 1 auto!important}.xl\\:flex-initial{flex:0 1 auto!important}.xl\\:flex-none{flex:none!important}}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}@media screen and (min-width: 576px){.sm\\:flex-grow-0{flex-grow:0!important}.sm\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 768px){.md\\:flex-grow-0{flex-grow:0!important}.md\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 992px){.lg\\:flex-grow-0{flex-grow:0!important}.lg\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 1200px){.xl\\:flex-grow-0{flex-grow:0!important}.xl\\:flex-grow-1{flex-grow:1!important}}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}@media screen and (min-width: 576px){.sm\\:flex-shrink-0{flex-shrink:0!important}.sm\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 768px){.md\\:flex-shrink-0{flex-shrink:0!important}.md\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 992px){.lg\\:flex-shrink-0{flex-shrink:0!important}.lg\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 1200px){.xl\\:flex-shrink-0{flex-shrink:0!important}.xl\\:flex-shrink-1{flex-shrink:1!important}}.gap-0{gap:0rem!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:2rem!important}.gap-6{gap:3rem!important}.gap-7{gap:4rem!important}.gap-8{gap:5rem!important}.row-gap-0{row-gap:0rem!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:2rem!important}.row-gap-6{row-gap:3rem!important}.row-gap-7{row-gap:4rem!important}.row-gap-8{row-gap:5rem!important}.column-gap-0{column-gap:0rem!important}.column-gap-1{column-gap:.25rem!important}.column-gap-2{column-gap:.5rem!important}.column-gap-3{column-gap:1rem!important}.column-gap-4{column-gap:1.5rem!important}.column-gap-5{column-gap:2rem!important}.column-gap-6{column-gap:3rem!important}.column-gap-7{column-gap:4rem!important}.column-gap-8{column-gap:5rem!important}@media screen and (min-width: 576px){.sm\\:gap-0{gap:0rem!important}.sm\\:gap-1{gap:.25rem!important}.sm\\:gap-2{gap:.5rem!important}.sm\\:gap-3{gap:1rem!important}.sm\\:gap-4{gap:1.5rem!important}.sm\\:gap-5{gap:2rem!important}.sm\\:gap-6{gap:3rem!important}.sm\\:gap-7{gap:4rem!important}.sm\\:gap-8{gap:5rem!important}.sm\\:row-gap-0{row-gap:0rem!important}.sm\\:row-gap-1{row-gap:.25rem!important}.sm\\:row-gap-2{row-gap:.5rem!important}.sm\\:row-gap-3{row-gap:1rem!important}.sm\\:row-gap-4{row-gap:1.5rem!important}.sm\\:row-gap-5{row-gap:2rem!important}.sm\\:row-gap-6{row-gap:3rem!important}.sm\\:row-gap-7{row-gap:4rem!important}.sm\\:row-gap-8{row-gap:5rem!important}.sm\\:column-gap-0{column-gap:0rem!important}.sm\\:column-gap-1{column-gap:.25rem!important}.sm\\:column-gap-2{column-gap:.5rem!important}.sm\\:column-gap-3{column-gap:1rem!important}.sm\\:column-gap-4{column-gap:1.5rem!important}.sm\\:column-gap-5{column-gap:2rem!important}.sm\\:column-gap-6{column-gap:3rem!important}.sm\\:column-gap-7{column-gap:4rem!important}.sm\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 768px){.md\\:gap-0{gap:0rem!important}.md\\:gap-1{gap:.25rem!important}.md\\:gap-2{gap:.5rem!important}.md\\:gap-3{gap:1rem!important}.md\\:gap-4{gap:1.5rem!important}.md\\:gap-5{gap:2rem!important}.md\\:gap-6{gap:3rem!important}.md\\:gap-7{gap:4rem!important}.md\\:gap-8{gap:5rem!important}.md\\:row-gap-0{row-gap:0rem!important}.md\\:row-gap-1{row-gap:.25rem!important}.md\\:row-gap-2{row-gap:.5rem!important}.md\\:row-gap-3{row-gap:1rem!important}.md\\:row-gap-4{row-gap:1.5rem!important}.md\\:row-gap-5{row-gap:2rem!important}.md\\:row-gap-6{row-gap:3rem!important}.md\\:row-gap-7{row-gap:4rem!important}.md\\:row-gap-8{row-gap:5rem!important}.md\\:column-gap-0{column-gap:0rem!important}.md\\:column-gap-1{column-gap:.25rem!important}.md\\:column-gap-2{column-gap:.5rem!important}.md\\:column-gap-3{column-gap:1rem!important}.md\\:column-gap-4{column-gap:1.5rem!important}.md\\:column-gap-5{column-gap:2rem!important}.md\\:column-gap-6{column-gap:3rem!important}.md\\:column-gap-7{column-gap:4rem!important}.md\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 992px){.lg\\:gap-0{gap:0rem!important}.lg\\:gap-1{gap:.25rem!important}.lg\\:gap-2{gap:.5rem!important}.lg\\:gap-3{gap:1rem!important}.lg\\:gap-4{gap:1.5rem!important}.lg\\:gap-5{gap:2rem!important}.lg\\:gap-6{gap:3rem!important}.lg\\:gap-7{gap:4rem!important}.lg\\:gap-8{gap:5rem!important}.lg\\:row-gap-0{row-gap:0rem!important}.lg\\:row-gap-1{row-gap:.25rem!important}.lg\\:row-gap-2{row-gap:.5rem!important}.lg\\:row-gap-3{row-gap:1rem!important}.lg\\:row-gap-4{row-gap:1.5rem!important}.lg\\:row-gap-5{row-gap:2rem!important}.lg\\:row-gap-6{row-gap:3rem!important}.lg\\:row-gap-7{row-gap:4rem!important}.lg\\:row-gap-8{row-gap:5rem!important}.lg\\:column-gap-0{column-gap:0rem!important}.lg\\:column-gap-1{column-gap:.25rem!important}.lg\\:column-gap-2{column-gap:.5rem!important}.lg\\:column-gap-3{column-gap:1rem!important}.lg\\:column-gap-4{column-gap:1.5rem!important}.lg\\:column-gap-5{column-gap:2rem!important}.lg\\:column-gap-6{column-gap:3rem!important}.lg\\:column-gap-7{column-gap:4rem!important}.lg\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 1200px){.xl\\:gap-0{gap:0rem!important}.xl\\:gap-1{gap:.25rem!important}.xl\\:gap-2{gap:.5rem!important}.xl\\:gap-3{gap:1rem!important}.xl\\:gap-4{gap:1.5rem!important}.xl\\:gap-5{gap:2rem!important}.xl\\:gap-6{gap:3rem!important}.xl\\:gap-7{gap:4rem!important}.xl\\:gap-8{gap:5rem!important}.xl\\:row-gap-0{row-gap:0rem!important}.xl\\:row-gap-1{row-gap:.25rem!important}.xl\\:row-gap-2{row-gap:.5rem!important}.xl\\:row-gap-3{row-gap:1rem!important}.xl\\:row-gap-4{row-gap:1.5rem!important}.xl\\:row-gap-5{row-gap:2rem!important}.xl\\:row-gap-6{row-gap:3rem!important}.xl\\:row-gap-7{row-gap:4rem!important}.xl\\:row-gap-8{row-gap:5rem!important}.xl\\:column-gap-0{column-gap:0rem!important}.xl\\:column-gap-1{column-gap:.25rem!important}.xl\\:column-gap-2{column-gap:.5rem!important}.xl\\:column-gap-3{column-gap:1rem!important}.xl\\:column-gap-4{column-gap:1.5rem!important}.xl\\:column-gap-5{column-gap:2rem!important}.xl\\:column-gap-6{column-gap:3rem!important}.xl\\:column-gap-7{column-gap:4rem!important}.xl\\:column-gap-8{column-gap:5rem!important}}.p-0{padding:0rem!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:2rem!important}.p-6{padding:3rem!important}.p-7{padding:4rem!important}.p-8{padding:5rem!important}.pt-0{padding-top:0rem!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:2rem!important}.pt-6{padding-top:3rem!important}.pt-7{padding-top:4rem!important}.pt-8{padding-top:5rem!important}.pr-0{padding-right:0rem!important}.pr-1{padding-right:.25rem!important}.pr-2{padding-right:.5rem!important}.pr-3{padding-right:1rem!important}.pr-4{padding-right:1.5rem!important}.pr-5{padding-right:2rem!important}.pr-6{padding-right:3rem!important}.pr-7{padding-right:4rem!important}.pr-8{padding-right:5rem!important}.pl-0{padding-left:0rem!important}.pl-1{padding-left:.25rem!important}.pl-2{padding-left:.5rem!important}.pl-3{padding-left:1rem!important}.pl-4{padding-left:1.5rem!important}.pl-5{padding-left:2rem!important}.pl-6{padding-left:3rem!important}.pl-7{padding-left:4rem!important}.pl-8{padding-left:5rem!important}.pb-0{padding-bottom:0rem!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:2rem!important}.pb-6{padding-bottom:3rem!important}.pb-7{padding-bottom:4rem!important}.pb-8{padding-bottom:5rem!important}.px-0{padding-left:0rem!important;padding-right:0rem!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:2rem!important;padding-right:2rem!important}.px-6{padding-left:3rem!important;padding-right:3rem!important}.px-7{padding-left:4rem!important;padding-right:4rem!important}.px-8{padding-left:5rem!important;padding-right:5rem!important}.py-0{padding-top:0rem!important;padding-bottom:0rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:2rem!important;padding-bottom:2rem!important}.py-6{padding-top:3rem!important;padding-bottom:3rem!important}.py-7{padding-top:4rem!important;padding-bottom:4rem!important}.py-8{padding-top:5rem!important;padding-bottom:5rem!important}@media screen and (min-width: 576px){.sm\\:p-0{padding:0rem!important}.sm\\:p-1{padding:.25rem!important}.sm\\:p-2{padding:.5rem!important}.sm\\:p-3{padding:1rem!important}.sm\\:p-4{padding:1.5rem!important}.sm\\:p-5{padding:2rem!important}.sm\\:p-6{padding:3rem!important}.sm\\:p-7{padding:4rem!important}.sm\\:p-8{padding:5rem!important}.sm\\:pt-0{padding-top:0rem!important}.sm\\:pt-1{padding-top:.25rem!important}.sm\\:pt-2{padding-top:.5rem!important}.sm\\:pt-3{padding-top:1rem!important}.sm\\:pt-4{padding-top:1.5rem!important}.sm\\:pt-5{padding-top:2rem!important}.sm\\:pt-6{padding-top:3rem!important}.sm\\:pt-7{padding-top:4rem!important}.sm\\:pt-8{padding-top:5rem!important}.sm\\:pr-0{padding-right:0rem!important}.sm\\:pr-1{padding-right:.25rem!important}.sm\\:pr-2{padding-right:.5rem!important}.sm\\:pr-3{padding-right:1rem!important}.sm\\:pr-4{padding-right:1.5rem!important}.sm\\:pr-5{padding-right:2rem!important}.sm\\:pr-6{padding-right:3rem!important}.sm\\:pr-7{padding-right:4rem!important}.sm\\:pr-8{padding-right:5rem!important}.sm\\:pl-0{padding-left:0rem!important}.sm\\:pl-1{padding-left:.25rem!important}.sm\\:pl-2{padding-left:.5rem!important}.sm\\:pl-3{padding-left:1rem!important}.sm\\:pl-4{padding-left:1.5rem!important}.sm\\:pl-5{padding-left:2rem!important}.sm\\:pl-6{padding-left:3rem!important}.sm\\:pl-7{padding-left:4rem!important}.sm\\:pl-8{padding-left:5rem!important}.sm\\:pb-0{padding-bottom:0rem!important}.sm\\:pb-1{padding-bottom:.25rem!important}.sm\\:pb-2{padding-bottom:.5rem!important}.sm\\:pb-3{padding-bottom:1rem!important}.sm\\:pb-4{padding-bottom:1.5rem!important}.sm\\:pb-5{padding-bottom:2rem!important}.sm\\:pb-6{padding-bottom:3rem!important}.sm\\:pb-7{padding-bottom:4rem!important}.sm\\:pb-8{padding-bottom:5rem!important}.sm\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.sm\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.sm\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.sm\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.sm\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.sm\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.sm\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.sm\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.sm\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.sm\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.sm\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.sm\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.sm\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.sm\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.sm\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.sm\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.sm\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.sm\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 768px){.md\\:p-0{padding:0rem!important}.md\\:p-1{padding:.25rem!important}.md\\:p-2{padding:.5rem!important}.md\\:p-3{padding:1rem!important}.md\\:p-4{padding:1.5rem!important}.md\\:p-5{padding:2rem!important}.md\\:p-6{padding:3rem!important}.md\\:p-7{padding:4rem!important}.md\\:p-8{padding:5rem!important}.md\\:pt-0{padding-top:0rem!important}.md\\:pt-1{padding-top:.25rem!important}.md\\:pt-2{padding-top:.5rem!important}.md\\:pt-3{padding-top:1rem!important}.md\\:pt-4{padding-top:1.5rem!important}.md\\:pt-5{padding-top:2rem!important}.md\\:pt-6{padding-top:3rem!important}.md\\:pt-7{padding-top:4rem!important}.md\\:pt-8{padding-top:5rem!important}.md\\:pr-0{padding-right:0rem!important}.md\\:pr-1{padding-right:.25rem!important}.md\\:pr-2{padding-right:.5rem!important}.md\\:pr-3{padding-right:1rem!important}.md\\:pr-4{padding-right:1.5rem!important}.md\\:pr-5{padding-right:2rem!important}.md\\:pr-6{padding-right:3rem!important}.md\\:pr-7{padding-right:4rem!important}.md\\:pr-8{padding-right:5rem!important}.md\\:pl-0{padding-left:0rem!important}.md\\:pl-1{padding-left:.25rem!important}.md\\:pl-2{padding-left:.5rem!important}.md\\:pl-3{padding-left:1rem!important}.md\\:pl-4{padding-left:1.5rem!important}.md\\:pl-5{padding-left:2rem!important}.md\\:pl-6{padding-left:3rem!important}.md\\:pl-7{padding-left:4rem!important}.md\\:pl-8{padding-left:5rem!important}.md\\:pb-0{padding-bottom:0rem!important}.md\\:pb-1{padding-bottom:.25rem!important}.md\\:pb-2{padding-bottom:.5rem!important}.md\\:pb-3{padding-bottom:1rem!important}.md\\:pb-4{padding-bottom:1.5rem!important}.md\\:pb-5{padding-bottom:2rem!important}.md\\:pb-6{padding-bottom:3rem!important}.md\\:pb-7{padding-bottom:4rem!important}.md\\:pb-8{padding-bottom:5rem!important}.md\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.md\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.md\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.md\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.md\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.md\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.md\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.md\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.md\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.md\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.md\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.md\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.md\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.md\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.md\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.md\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.md\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.md\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 992px){.lg\\:p-0{padding:0rem!important}.lg\\:p-1{padding:.25rem!important}.lg\\:p-2{padding:.5rem!important}.lg\\:p-3{padding:1rem!important}.lg\\:p-4{padding:1.5rem!important}.lg\\:p-5{padding:2rem!important}.lg\\:p-6{padding:3rem!important}.lg\\:p-7{padding:4rem!important}.lg\\:p-8{padding:5rem!important}.lg\\:pt-0{padding-top:0rem!important}.lg\\:pt-1{padding-top:.25rem!important}.lg\\:pt-2{padding-top:.5rem!important}.lg\\:pt-3{padding-top:1rem!important}.lg\\:pt-4{padding-top:1.5rem!important}.lg\\:pt-5{padding-top:2rem!important}.lg\\:pt-6{padding-top:3rem!important}.lg\\:pt-7{padding-top:4rem!important}.lg\\:pt-8{padding-top:5rem!important}.lg\\:pr-0{padding-right:0rem!important}.lg\\:pr-1{padding-right:.25rem!important}.lg\\:pr-2{padding-right:.5rem!important}.lg\\:pr-3{padding-right:1rem!important}.lg\\:pr-4{padding-right:1.5rem!important}.lg\\:pr-5{padding-right:2rem!important}.lg\\:pr-6{padding-right:3rem!important}.lg\\:pr-7{padding-right:4rem!important}.lg\\:pr-8{padding-right:5rem!important}.lg\\:pl-0{padding-left:0rem!important}.lg\\:pl-1{padding-left:.25rem!important}.lg\\:pl-2{padding-left:.5rem!important}.lg\\:pl-3{padding-left:1rem!important}.lg\\:pl-4{padding-left:1.5rem!important}.lg\\:pl-5{padding-left:2rem!important}.lg\\:pl-6{padding-left:3rem!important}.lg\\:pl-7{padding-left:4rem!important}.lg\\:pl-8{padding-left:5rem!important}.lg\\:pb-0{padding-bottom:0rem!important}.lg\\:pb-1{padding-bottom:.25rem!important}.lg\\:pb-2{padding-bottom:.5rem!important}.lg\\:pb-3{padding-bottom:1rem!important}.lg\\:pb-4{padding-bottom:1.5rem!important}.lg\\:pb-5{padding-bottom:2rem!important}.lg\\:pb-6{padding-bottom:3rem!important}.lg\\:pb-7{padding-bottom:4rem!important}.lg\\:pb-8{padding-bottom:5rem!important}.lg\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.lg\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.lg\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.lg\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.lg\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.lg\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.lg\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.lg\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.lg\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.lg\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.lg\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.lg\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.lg\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.lg\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.lg\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.lg\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.lg\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.lg\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 1200px){.xl\\:p-0{padding:0rem!important}.xl\\:p-1{padding:.25rem!important}.xl\\:p-2{padding:.5rem!important}.xl\\:p-3{padding:1rem!important}.xl\\:p-4{padding:1.5rem!important}.xl\\:p-5{padding:2rem!important}.xl\\:p-6{padding:3rem!important}.xl\\:p-7{padding:4rem!important}.xl\\:p-8{padding:5rem!important}.xl\\:pt-0{padding-top:0rem!important}.xl\\:pt-1{padding-top:.25rem!important}.xl\\:pt-2{padding-top:.5rem!important}.xl\\:pt-3{padding-top:1rem!important}.xl\\:pt-4{padding-top:1.5rem!important}.xl\\:pt-5{padding-top:2rem!important}.xl\\:pt-6{padding-top:3rem!important}.xl\\:pt-7{padding-top:4rem!important}.xl\\:pt-8{padding-top:5rem!important}.xl\\:pr-0{padding-right:0rem!important}.xl\\:pr-1{padding-right:.25rem!important}.xl\\:pr-2{padding-right:.5rem!important}.xl\\:pr-3{padding-right:1rem!important}.xl\\:pr-4{padding-right:1.5rem!important}.xl\\:pr-5{padding-right:2rem!important}.xl\\:pr-6{padding-right:3rem!important}.xl\\:pr-7{padding-right:4rem!important}.xl\\:pr-8{padding-right:5rem!important}.xl\\:pl-0{padding-left:0rem!important}.xl\\:pl-1{padding-left:.25rem!important}.xl\\:pl-2{padding-left:.5rem!important}.xl\\:pl-3{padding-left:1rem!important}.xl\\:pl-4{padding-left:1.5rem!important}.xl\\:pl-5{padding-left:2rem!important}.xl\\:pl-6{padding-left:3rem!important}.xl\\:pl-7{padding-left:4rem!important}.xl\\:pl-8{padding-left:5rem!important}.xl\\:pb-0{padding-bottom:0rem!important}.xl\\:pb-1{padding-bottom:.25rem!important}.xl\\:pb-2{padding-bottom:.5rem!important}.xl\\:pb-3{padding-bottom:1rem!important}.xl\\:pb-4{padding-bottom:1.5rem!important}.xl\\:pb-5{padding-bottom:2rem!important}.xl\\:pb-6{padding-bottom:3rem!important}.xl\\:pb-7{padding-bottom:4rem!important}.xl\\:pb-8{padding-bottom:5rem!important}.xl\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.xl\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.xl\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.xl\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.xl\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.xl\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.xl\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.xl\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.xl\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.xl\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.xl\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.xl\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.xl\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.xl\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.xl\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.xl\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.xl\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.xl\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}.m-0{margin:0rem!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:2rem!important}.m-6{margin:3rem!important}.m-7{margin:4rem!important}.m-8{margin:5rem!important}.-m-1{margin:-.25rem!important}.-m-2{margin:-.5rem!important}.-m-3{margin:-1rem!important}.-m-4{margin:-1.5rem!important}.-m-5{margin:-2rem!important}.-m-6{margin:-3rem!important}.-m-7{margin:-4rem!important}.-m-8{margin:-5rem!important}.m-auto{margin:auto!important}.mt-0{margin-top:0rem!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:2rem!important}.mt-6{margin-top:3rem!important}.mt-7{margin-top:4rem!important}.mt-8{margin-top:5rem!important}.-mt-1{margin-top:-.25rem!important}.-mt-2{margin-top:-.5rem!important}.-mt-3{margin-top:-1rem!important}.-mt-4{margin-top:-1.5rem!important}.-mt-5{margin-top:-2rem!important}.-mt-6{margin-top:-3rem!important}.-mt-7{margin-top:-4rem!important}.-mt-8{margin-top:-5rem!important}.mt-auto{margin-top:auto!important}.mr-0{margin-right:0rem!important}.mr-1{margin-right:.25rem!important}.mr-2{margin-right:.5rem!important}.mr-3{margin-right:1rem!important}.mr-4{margin-right:1.5rem!important}.mr-5{margin-right:2rem!important}.mr-6{margin-right:3rem!important}.mr-7{margin-right:4rem!important}.mr-8{margin-right:5rem!important}.-mr-1{margin-right:-.25rem!important}.-mr-2{margin-right:-.5rem!important}.-mr-3{margin-right:-1rem!important}.-mr-4{margin-right:-1.5rem!important}.-mr-5{margin-right:-2rem!important}.-mr-6{margin-right:-3rem!important}.-mr-7{margin-right:-4rem!important}.-mr-8{margin-right:-5rem!important}.mr-auto{margin-right:auto!important}.ml-0{margin-left:0rem!important}.ml-1{margin-left:.25rem!important}.ml-2{margin-left:.5rem!important}.ml-3{margin-left:1rem!important}.ml-4{margin-left:1.5rem!important}.ml-5{margin-left:2rem!important}.ml-6{margin-left:3rem!important}.ml-7{margin-left:4rem!important}.ml-8{margin-left:5rem!important}.-ml-1{margin-left:-.25rem!important}.-ml-2{margin-left:-.5rem!important}.-ml-3{margin-left:-1rem!important}.-ml-4{margin-left:-1.5rem!important}.-ml-5{margin-left:-2rem!important}.-ml-6{margin-left:-3rem!important}.-ml-7{margin-left:-4rem!important}.-ml-8{margin-left:-5rem!important}.ml-auto{margin-left:auto!important}.mb-0{margin-bottom:0rem!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:2rem!important}.mb-6{margin-bottom:3rem!important}.mb-7{margin-bottom:4rem!important}.mb-8{margin-bottom:5rem!important}.-mb-1{margin-bottom:-.25rem!important}.-mb-2{margin-bottom:-.5rem!important}.-mb-3{margin-bottom:-1rem!important}.-mb-4{margin-bottom:-1.5rem!important}.-mb-5{margin-bottom:-2rem!important}.-mb-6{margin-bottom:-3rem!important}.-mb-7{margin-bottom:-4rem!important}.-mb-8{margin-bottom:-5rem!important}.mb-auto{margin-bottom:auto!important}.mx-0{margin-left:0rem!important;margin-right:0rem!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:2rem!important;margin-right:2rem!important}.mx-6{margin-left:3rem!important;margin-right:3rem!important}.mx-7{margin-left:4rem!important;margin-right:4rem!important}.mx-8{margin-left:5rem!important;margin-right:5rem!important}.-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0rem!important;margin-bottom:0rem!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:2rem!important;margin-bottom:2rem!important}.my-6{margin-top:3rem!important;margin-bottom:3rem!important}.my-7{margin-top:4rem!important;margin-bottom:4rem!important}.my-8{margin-top:5rem!important;margin-bottom:5rem!important}.-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}@media screen and (min-width: 576px){.sm\\:m-0{margin:0rem!important}.sm\\:m-1{margin:.25rem!important}.sm\\:m-2{margin:.5rem!important}.sm\\:m-3{margin:1rem!important}.sm\\:m-4{margin:1.5rem!important}.sm\\:m-5{margin:2rem!important}.sm\\:m-6{margin:3rem!important}.sm\\:m-7{margin:4rem!important}.sm\\:m-8{margin:5rem!important}.sm\\:-m-1{margin:-.25rem!important}.sm\\:-m-2{margin:-.5rem!important}.sm\\:-m-3{margin:-1rem!important}.sm\\:-m-4{margin:-1.5rem!important}.sm\\:-m-5{margin:-2rem!important}.sm\\:-m-6{margin:-3rem!important}.sm\\:-m-7{margin:-4rem!important}.sm\\:-m-8{margin:-5rem!important}.sm\\:m-auto{margin:auto!important}.sm\\:mt-0{margin-top:0rem!important}.sm\\:mt-1{margin-top:.25rem!important}.sm\\:mt-2{margin-top:.5rem!important}.sm\\:mt-3{margin-top:1rem!important}.sm\\:mt-4{margin-top:1.5rem!important}.sm\\:mt-5{margin-top:2rem!important}.sm\\:mt-6{margin-top:3rem!important}.sm\\:mt-7{margin-top:4rem!important}.sm\\:mt-8{margin-top:5rem!important}.sm\\:-mt-1{margin-top:-.25rem!important}.sm\\:-mt-2{margin-top:-.5rem!important}.sm\\:-mt-3{margin-top:-1rem!important}.sm\\:-mt-4{margin-top:-1.5rem!important}.sm\\:-mt-5{margin-top:-2rem!important}.sm\\:-mt-6{margin-top:-3rem!important}.sm\\:-mt-7{margin-top:-4rem!important}.sm\\:-mt-8{margin-top:-5rem!important}.sm\\:mt-auto{margin-top:auto!important}.sm\\:mr-0{margin-right:0rem!important}.sm\\:mr-1{margin-right:.25rem!important}.sm\\:mr-2{margin-right:.5rem!important}.sm\\:mr-3{margin-right:1rem!important}.sm\\:mr-4{margin-right:1.5rem!important}.sm\\:mr-5{margin-right:2rem!important}.sm\\:mr-6{margin-right:3rem!important}.sm\\:mr-7{margin-right:4rem!important}.sm\\:mr-8{margin-right:5rem!important}.sm\\:-mr-1{margin-right:-.25rem!important}.sm\\:-mr-2{margin-right:-.5rem!important}.sm\\:-mr-3{margin-right:-1rem!important}.sm\\:-mr-4{margin-right:-1.5rem!important}.sm\\:-mr-5{margin-right:-2rem!important}.sm\\:-mr-6{margin-right:-3rem!important}.sm\\:-mr-7{margin-right:-4rem!important}.sm\\:-mr-8{margin-right:-5rem!important}.sm\\:mr-auto{margin-right:auto!important}.sm\\:ml-0{margin-left:0rem!important}.sm\\:ml-1{margin-left:.25rem!important}.sm\\:ml-2{margin-left:.5rem!important}.sm\\:ml-3{margin-left:1rem!important}.sm\\:ml-4{margin-left:1.5rem!important}.sm\\:ml-5{margin-left:2rem!important}.sm\\:ml-6{margin-left:3rem!important}.sm\\:ml-7{margin-left:4rem!important}.sm\\:ml-8{margin-left:5rem!important}.sm\\:-ml-1{margin-left:-.25rem!important}.sm\\:-ml-2{margin-left:-.5rem!important}.sm\\:-ml-3{margin-left:-1rem!important}.sm\\:-ml-4{margin-left:-1.5rem!important}.sm\\:-ml-5{margin-left:-2rem!important}.sm\\:-ml-6{margin-left:-3rem!important}.sm\\:-ml-7{margin-left:-4rem!important}.sm\\:-ml-8{margin-left:-5rem!important}.sm\\:ml-auto{margin-left:auto!important}.sm\\:mb-0{margin-bottom:0rem!important}.sm\\:mb-1{margin-bottom:.25rem!important}.sm\\:mb-2{margin-bottom:.5rem!important}.sm\\:mb-3{margin-bottom:1rem!important}.sm\\:mb-4{margin-bottom:1.5rem!important}.sm\\:mb-5{margin-bottom:2rem!important}.sm\\:mb-6{margin-bottom:3rem!important}.sm\\:mb-7{margin-bottom:4rem!important}.sm\\:mb-8{margin-bottom:5rem!important}.sm\\:-mb-1{margin-bottom:-.25rem!important}.sm\\:-mb-2{margin-bottom:-.5rem!important}.sm\\:-mb-3{margin-bottom:-1rem!important}.sm\\:-mb-4{margin-bottom:-1.5rem!important}.sm\\:-mb-5{margin-bottom:-2rem!important}.sm\\:-mb-6{margin-bottom:-3rem!important}.sm\\:-mb-7{margin-bottom:-4rem!important}.sm\\:-mb-8{margin-bottom:-5rem!important}.sm\\:mb-auto{margin-bottom:auto!important}.sm\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.sm\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.sm\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.sm\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.sm\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.sm\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.sm\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.sm\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.sm\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.sm\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.sm\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.sm\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.sm\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.sm\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.sm\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.sm\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.sm\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.sm\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.sm\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.sm\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.sm\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.sm\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.sm\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.sm\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.sm\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.sm\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.sm\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.sm\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.sm\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.sm\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.sm\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.sm\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.sm\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.sm\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.sm\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.sm\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 768px){.md\\:m-0{margin:0rem!important}.md\\:m-1{margin:.25rem!important}.md\\:m-2{margin:.5rem!important}.md\\:m-3{margin:1rem!important}.md\\:m-4{margin:1.5rem!important}.md\\:m-5{margin:2rem!important}.md\\:m-6{margin:3rem!important}.md\\:m-7{margin:4rem!important}.md\\:m-8{margin:5rem!important}.md\\:-m-1{margin:-.25rem!important}.md\\:-m-2{margin:-.5rem!important}.md\\:-m-3{margin:-1rem!important}.md\\:-m-4{margin:-1.5rem!important}.md\\:-m-5{margin:-2rem!important}.md\\:-m-6{margin:-3rem!important}.md\\:-m-7{margin:-4rem!important}.md\\:-m-8{margin:-5rem!important}.md\\:m-auto{margin:auto!important}.md\\:mt-0{margin-top:0rem!important}.md\\:mt-1{margin-top:.25rem!important}.md\\:mt-2{margin-top:.5rem!important}.md\\:mt-3{margin-top:1rem!important}.md\\:mt-4{margin-top:1.5rem!important}.md\\:mt-5{margin-top:2rem!important}.md\\:mt-6{margin-top:3rem!important}.md\\:mt-7{margin-top:4rem!important}.md\\:mt-8{margin-top:5rem!important}.md\\:-mt-1{margin-top:-.25rem!important}.md\\:-mt-2{margin-top:-.5rem!important}.md\\:-mt-3{margin-top:-1rem!important}.md\\:-mt-4{margin-top:-1.5rem!important}.md\\:-mt-5{margin-top:-2rem!important}.md\\:-mt-6{margin-top:-3rem!important}.md\\:-mt-7{margin-top:-4rem!important}.md\\:-mt-8{margin-top:-5rem!important}.md\\:mt-auto{margin-top:auto!important}.md\\:mr-0{margin-right:0rem!important}.md\\:mr-1{margin-right:.25rem!important}.md\\:mr-2{margin-right:.5rem!important}.md\\:mr-3{margin-right:1rem!important}.md\\:mr-4{margin-right:1.5rem!important}.md\\:mr-5{margin-right:2rem!important}.md\\:mr-6{margin-right:3rem!important}.md\\:mr-7{margin-right:4rem!important}.md\\:mr-8{margin-right:5rem!important}.md\\:-mr-1{margin-right:-.25rem!important}.md\\:-mr-2{margin-right:-.5rem!important}.md\\:-mr-3{margin-right:-1rem!important}.md\\:-mr-4{margin-right:-1.5rem!important}.md\\:-mr-5{margin-right:-2rem!important}.md\\:-mr-6{margin-right:-3rem!important}.md\\:-mr-7{margin-right:-4rem!important}.md\\:-mr-8{margin-right:-5rem!important}.md\\:mr-auto{margin-right:auto!important}.md\\:ml-0{margin-left:0rem!important}.md\\:ml-1{margin-left:.25rem!important}.md\\:ml-2{margin-left:.5rem!important}.md\\:ml-3{margin-left:1rem!important}.md\\:ml-4{margin-left:1.5rem!important}.md\\:ml-5{margin-left:2rem!important}.md\\:ml-6{margin-left:3rem!important}.md\\:ml-7{margin-left:4rem!important}.md\\:ml-8{margin-left:5rem!important}.md\\:-ml-1{margin-left:-.25rem!important}.md\\:-ml-2{margin-left:-.5rem!important}.md\\:-ml-3{margin-left:-1rem!important}.md\\:-ml-4{margin-left:-1.5rem!important}.md\\:-ml-5{margin-left:-2rem!important}.md\\:-ml-6{margin-left:-3rem!important}.md\\:-ml-7{margin-left:-4rem!important}.md\\:-ml-8{margin-left:-5rem!important}.md\\:ml-auto{margin-left:auto!important}.md\\:mb-0{margin-bottom:0rem!important}.md\\:mb-1{margin-bottom:.25rem!important}.md\\:mb-2{margin-bottom:.5rem!important}.md\\:mb-3{margin-bottom:1rem!important}.md\\:mb-4{margin-bottom:1.5rem!important}.md\\:mb-5{margin-bottom:2rem!important}.md\\:mb-6{margin-bottom:3rem!important}.md\\:mb-7{margin-bottom:4rem!important}.md\\:mb-8{margin-bottom:5rem!important}.md\\:-mb-1{margin-bottom:-.25rem!important}.md\\:-mb-2{margin-bottom:-.5rem!important}.md\\:-mb-3{margin-bottom:-1rem!important}.md\\:-mb-4{margin-bottom:-1.5rem!important}.md\\:-mb-5{margin-bottom:-2rem!important}.md\\:-mb-6{margin-bottom:-3rem!important}.md\\:-mb-7{margin-bottom:-4rem!important}.md\\:-mb-8{margin-bottom:-5rem!important}.md\\:mb-auto{margin-bottom:auto!important}.md\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.md\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.md\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.md\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.md\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.md\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.md\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.md\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.md\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.md\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.md\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.md\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.md\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.md\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.md\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.md\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.md\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.md\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.md\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.md\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.md\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.md\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.md\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.md\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.md\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.md\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.md\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.md\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.md\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.md\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.md\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.md\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.md\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.md\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.md\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.md\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 992px){.lg\\:m-0{margin:0rem!important}.lg\\:m-1{margin:.25rem!important}.lg\\:m-2{margin:.5rem!important}.lg\\:m-3{margin:1rem!important}.lg\\:m-4{margin:1.5rem!important}.lg\\:m-5{margin:2rem!important}.lg\\:m-6{margin:3rem!important}.lg\\:m-7{margin:4rem!important}.lg\\:m-8{margin:5rem!important}.lg\\:-m-1{margin:-.25rem!important}.lg\\:-m-2{margin:-.5rem!important}.lg\\:-m-3{margin:-1rem!important}.lg\\:-m-4{margin:-1.5rem!important}.lg\\:-m-5{margin:-2rem!important}.lg\\:-m-6{margin:-3rem!important}.lg\\:-m-7{margin:-4rem!important}.lg\\:-m-8{margin:-5rem!important}.lg\\:m-auto{margin:auto!important}.lg\\:mt-0{margin-top:0rem!important}.lg\\:mt-1{margin-top:.25rem!important}.lg\\:mt-2{margin-top:.5rem!important}.lg\\:mt-3{margin-top:1rem!important}.lg\\:mt-4{margin-top:1.5rem!important}.lg\\:mt-5{margin-top:2rem!important}.lg\\:mt-6{margin-top:3rem!important}.lg\\:mt-7{margin-top:4rem!important}.lg\\:mt-8{margin-top:5rem!important}.lg\\:-mt-1{margin-top:-.25rem!important}.lg\\:-mt-2{margin-top:-.5rem!important}.lg\\:-mt-3{margin-top:-1rem!important}.lg\\:-mt-4{margin-top:-1.5rem!important}.lg\\:-mt-5{margin-top:-2rem!important}.lg\\:-mt-6{margin-top:-3rem!important}.lg\\:-mt-7{margin-top:-4rem!important}.lg\\:-mt-8{margin-top:-5rem!important}.lg\\:mt-auto{margin-top:auto!important}.lg\\:mr-0{margin-right:0rem!important}.lg\\:mr-1{margin-right:.25rem!important}.lg\\:mr-2{margin-right:.5rem!important}.lg\\:mr-3{margin-right:1rem!important}.lg\\:mr-4{margin-right:1.5rem!important}.lg\\:mr-5{margin-right:2rem!important}.lg\\:mr-6{margin-right:3rem!important}.lg\\:mr-7{margin-right:4rem!important}.lg\\:mr-8{margin-right:5rem!important}.lg\\:-mr-1{margin-right:-.25rem!important}.lg\\:-mr-2{margin-right:-.5rem!important}.lg\\:-mr-3{margin-right:-1rem!important}.lg\\:-mr-4{margin-right:-1.5rem!important}.lg\\:-mr-5{margin-right:-2rem!important}.lg\\:-mr-6{margin-right:-3rem!important}.lg\\:-mr-7{margin-right:-4rem!important}.lg\\:-mr-8{margin-right:-5rem!important}.lg\\:mr-auto{margin-right:auto!important}.lg\\:ml-0{margin-left:0rem!important}.lg\\:ml-1{margin-left:.25rem!important}.lg\\:ml-2{margin-left:.5rem!important}.lg\\:ml-3{margin-left:1rem!important}.lg\\:ml-4{margin-left:1.5rem!important}.lg\\:ml-5{margin-left:2rem!important}.lg\\:ml-6{margin-left:3rem!important}.lg\\:ml-7{margin-left:4rem!important}.lg\\:ml-8{margin-left:5rem!important}.lg\\:-ml-1{margin-left:-.25rem!important}.lg\\:-ml-2{margin-left:-.5rem!important}.lg\\:-ml-3{margin-left:-1rem!important}.lg\\:-ml-4{margin-left:-1.5rem!important}.lg\\:-ml-5{margin-left:-2rem!important}.lg\\:-ml-6{margin-left:-3rem!important}.lg\\:-ml-7{margin-left:-4rem!important}.lg\\:-ml-8{margin-left:-5rem!important}.lg\\:ml-auto{margin-left:auto!important}.lg\\:mb-0{margin-bottom:0rem!important}.lg\\:mb-1{margin-bottom:.25rem!important}.lg\\:mb-2{margin-bottom:.5rem!important}.lg\\:mb-3{margin-bottom:1rem!important}.lg\\:mb-4{margin-bottom:1.5rem!important}.lg\\:mb-5{margin-bottom:2rem!important}.lg\\:mb-6{margin-bottom:3rem!important}.lg\\:mb-7{margin-bottom:4rem!important}.lg\\:mb-8{margin-bottom:5rem!important}.lg\\:-mb-1{margin-bottom:-.25rem!important}.lg\\:-mb-2{margin-bottom:-.5rem!important}.lg\\:-mb-3{margin-bottom:-1rem!important}.lg\\:-mb-4{margin-bottom:-1.5rem!important}.lg\\:-mb-5{margin-bottom:-2rem!important}.lg\\:-mb-6{margin-bottom:-3rem!important}.lg\\:-mb-7{margin-bottom:-4rem!important}.lg\\:-mb-8{margin-bottom:-5rem!important}.lg\\:mb-auto{margin-bottom:auto!important}.lg\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.lg\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.lg\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.lg\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.lg\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.lg\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.lg\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.lg\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.lg\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.lg\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.lg\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.lg\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.lg\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.lg\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.lg\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.lg\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.lg\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.lg\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.lg\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.lg\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.lg\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.lg\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.lg\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.lg\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.lg\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.lg\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.lg\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.lg\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.lg\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.lg\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.lg\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.lg\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.lg\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.lg\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.lg\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.lg\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 1200px){.xl\\:m-0{margin:0rem!important}.xl\\:m-1{margin:.25rem!important}.xl\\:m-2{margin:.5rem!important}.xl\\:m-3{margin:1rem!important}.xl\\:m-4{margin:1.5rem!important}.xl\\:m-5{margin:2rem!important}.xl\\:m-6{margin:3rem!important}.xl\\:m-7{margin:4rem!important}.xl\\:m-8{margin:5rem!important}.xl\\:-m-1{margin:-.25rem!important}.xl\\:-m-2{margin:-.5rem!important}.xl\\:-m-3{margin:-1rem!important}.xl\\:-m-4{margin:-1.5rem!important}.xl\\:-m-5{margin:-2rem!important}.xl\\:-m-6{margin:-3rem!important}.xl\\:-m-7{margin:-4rem!important}.xl\\:-m-8{margin:-5rem!important}.xl\\:m-auto{margin:auto!important}.xl\\:mt-0{margin-top:0rem!important}.xl\\:mt-1{margin-top:.25rem!important}.xl\\:mt-2{margin-top:.5rem!important}.xl\\:mt-3{margin-top:1rem!important}.xl\\:mt-4{margin-top:1.5rem!important}.xl\\:mt-5{margin-top:2rem!important}.xl\\:mt-6{margin-top:3rem!important}.xl\\:mt-7{margin-top:4rem!important}.xl\\:mt-8{margin-top:5rem!important}.xl\\:-mt-1{margin-top:-.25rem!important}.xl\\:-mt-2{margin-top:-.5rem!important}.xl\\:-mt-3{margin-top:-1rem!important}.xl\\:-mt-4{margin-top:-1.5rem!important}.xl\\:-mt-5{margin-top:-2rem!important}.xl\\:-mt-6{margin-top:-3rem!important}.xl\\:-mt-7{margin-top:-4rem!important}.xl\\:-mt-8{margin-top:-5rem!important}.xl\\:mt-auto{margin-top:auto!important}.xl\\:mr-0{margin-right:0rem!important}.xl\\:mr-1{margin-right:.25rem!important}.xl\\:mr-2{margin-right:.5rem!important}.xl\\:mr-3{margin-right:1rem!important}.xl\\:mr-4{margin-right:1.5rem!important}.xl\\:mr-5{margin-right:2rem!important}.xl\\:mr-6{margin-right:3rem!important}.xl\\:mr-7{margin-right:4rem!important}.xl\\:mr-8{margin-right:5rem!important}.xl\\:-mr-1{margin-right:-.25rem!important}.xl\\:-mr-2{margin-right:-.5rem!important}.xl\\:-mr-3{margin-right:-1rem!important}.xl\\:-mr-4{margin-right:-1.5rem!important}.xl\\:-mr-5{margin-right:-2rem!important}.xl\\:-mr-6{margin-right:-3rem!important}.xl\\:-mr-7{margin-right:-4rem!important}.xl\\:-mr-8{margin-right:-5rem!important}.xl\\:mr-auto{margin-right:auto!important}.xl\\:ml-0{margin-left:0rem!important}.xl\\:ml-1{margin-left:.25rem!important}.xl\\:ml-2{margin-left:.5rem!important}.xl\\:ml-3{margin-left:1rem!important}.xl\\:ml-4{margin-left:1.5rem!important}.xl\\:ml-5{margin-left:2rem!important}.xl\\:ml-6{margin-left:3rem!important}.xl\\:ml-7{margin-left:4rem!important}.xl\\:ml-8{margin-left:5rem!important}.xl\\:-ml-1{margin-left:-.25rem!important}.xl\\:-ml-2{margin-left:-.5rem!important}.xl\\:-ml-3{margin-left:-1rem!important}.xl\\:-ml-4{margin-left:-1.5rem!important}.xl\\:-ml-5{margin-left:-2rem!important}.xl\\:-ml-6{margin-left:-3rem!important}.xl\\:-ml-7{margin-left:-4rem!important}.xl\\:-ml-8{margin-left:-5rem!important}.xl\\:ml-auto{margin-left:auto!important}.xl\\:mb-0{margin-bottom:0rem!important}.xl\\:mb-1{margin-bottom:.25rem!important}.xl\\:mb-2{margin-bottom:.5rem!important}.xl\\:mb-3{margin-bottom:1rem!important}.xl\\:mb-4{margin-bottom:1.5rem!important}.xl\\:mb-5{margin-bottom:2rem!important}.xl\\:mb-6{margin-bottom:3rem!important}.xl\\:mb-7{margin-bottom:4rem!important}.xl\\:mb-8{margin-bottom:5rem!important}.xl\\:-mb-1{margin-bottom:-.25rem!important}.xl\\:-mb-2{margin-bottom:-.5rem!important}.xl\\:-mb-3{margin-bottom:-1rem!important}.xl\\:-mb-4{margin-bottom:-1.5rem!important}.xl\\:-mb-5{margin-bottom:-2rem!important}.xl\\:-mb-6{margin-bottom:-3rem!important}.xl\\:-mb-7{margin-bottom:-4rem!important}.xl\\:-mb-8{margin-bottom:-5rem!important}.xl\\:mb-auto{margin-bottom:auto!important}.xl\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.xl\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.xl\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.xl\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.xl\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.xl\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.xl\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.xl\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.xl\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.xl\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.xl\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.xl\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.xl\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.xl\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.xl\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.xl\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.xl\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.xl\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.xl\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.xl\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.xl\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.xl\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.xl\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.xl\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.xl\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.xl\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.xl\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.xl\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.xl\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.xl\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.xl\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.xl\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.xl\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.xl\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.xl\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.xl\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}.shadow-none{box-shadow:none!important}.shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.focus\\:shadow-none:focus{box-shadow:none!important}.hover\\:shadow-none:hover,.active\\:shadow-none:active{box-shadow:none!important}.focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.hover\\:shadow-1:hover,.active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.hover\\:shadow-2:hover,.active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.hover\\:shadow-3:hover,.active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.hover\\:shadow-4:hover,.active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.hover\\:shadow-5:hover,.active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.hover\\:shadow-6:hover,.active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.hover\\:shadow-7:hover,.active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.hover\\:shadow-8:hover,.active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}@media screen and (min-width: 576px){.sm\\:shadow-none{box-shadow:none!important}.sm\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.sm\\:focus\\:shadow-none:focus{box-shadow:none!important}.sm\\:hover\\:shadow-none:hover,.sm\\:active\\:shadow-none:active{box-shadow:none!important}.sm\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:hover\\:shadow-1:hover,.sm\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:hover\\:shadow-2:hover,.sm\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:hover\\:shadow-3:hover,.sm\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:hover\\:shadow-4:hover,.sm\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:hover\\:shadow-5:hover,.sm\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:hover\\:shadow-6:hover,.sm\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:hover\\:shadow-7:hover,.sm\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.sm\\:hover\\:shadow-8:hover,.sm\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 768px){.md\\:shadow-none{box-shadow:none!important}.md\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.md\\:focus\\:shadow-none:focus{box-shadow:none!important}.md\\:hover\\:shadow-none:hover,.md\\:active\\:shadow-none:active{box-shadow:none!important}.md\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:hover\\:shadow-1:hover,.md\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:hover\\:shadow-2:hover,.md\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:hover\\:shadow-3:hover,.md\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:hover\\:shadow-4:hover,.md\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:hover\\:shadow-5:hover,.md\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:hover\\:shadow-6:hover,.md\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:hover\\:shadow-7:hover,.md\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.md\\:hover\\:shadow-8:hover,.md\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 992px){.lg\\:shadow-none{box-shadow:none!important}.lg\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.lg\\:focus\\:shadow-none:focus{box-shadow:none!important}.lg\\:hover\\:shadow-none:hover,.lg\\:active\\:shadow-none:active{box-shadow:none!important}.lg\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:hover\\:shadow-1:hover,.lg\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:hover\\:shadow-2:hover,.lg\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:hover\\:shadow-3:hover,.lg\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:hover\\:shadow-4:hover,.lg\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:hover\\:shadow-5:hover,.lg\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:hover\\:shadow-6:hover,.lg\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:hover\\:shadow-7:hover,.lg\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.lg\\:hover\\:shadow-8:hover,.lg\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 1200px){.xl\\:shadow-none{box-shadow:none!important}.xl\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.xl\\:focus\\:shadow-none:focus{box-shadow:none!important}.xl\\:hover\\:shadow-none:hover,.xl\\:active\\:shadow-none:active{box-shadow:none!important}.xl\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:hover\\:shadow-1:hover,.xl\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:hover\\:shadow-2:hover,.xl\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:hover\\:shadow-3:hover,.xl\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:hover\\:shadow-4:hover,.xl\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:hover\\:shadow-5:hover,.xl\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:hover\\:shadow-6:hover,.xl\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:hover\\:shadow-7:hover,.xl\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.xl\\:hover\\:shadow-8:hover,.xl\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}.border-none{border-width:0px!important;border-style:none}.border-1{border-width:1px!important;border-style:solid}.border-2{border-width:2px!important;border-style:solid}.border-3{border-width:3px!important;border-style:solid}.border-top-none{border-top-width:0px!important;border-top-style:none}.border-top-1{border-top-width:1px!important;border-top-style:solid}.border-top-2{border-top-width:2px!important;border-top-style:solid}.border-top-3{border-top-width:3px!important;border-top-style:solid}.border-right-none{border-right-width:0px!important;border-right-style:none}.border-right-1{border-right-width:1px!important;border-right-style:solid}.border-right-2{border-right-width:2px!important;border-right-style:solid}.border-right-3{border-right-width:3px!important;border-right-style:solid}.border-left-none{border-left-width:0px!important;border-left-style:none}.border-left-1{border-left-width:1px!important;border-left-style:solid}.border-left-2{border-left-width:2px!important;border-left-style:solid}.border-left-3{border-left-width:3px!important;border-left-style:solid}.border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}@media screen and (min-width: 576px){.sm\\:border-none{border-width:0px!important;border-style:none}.sm\\:border-1{border-width:1px!important;border-style:solid}.sm\\:border-2{border-width:2px!important;border-style:solid}.sm\\:border-3{border-width:3px!important;border-style:solid}.sm\\:border-top-none{border-top-width:0px!important;border-top-style:none}.sm\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.sm\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.sm\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.sm\\:border-right-none{border-right-width:0px!important;border-right-style:none}.sm\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.sm\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.sm\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.sm\\:border-left-none{border-left-width:0px!important;border-left-style:none}.sm\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.sm\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.sm\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.sm\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.sm\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.sm\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.sm\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.sm\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.sm\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.sm\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.sm\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.sm\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.sm\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.sm\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.sm\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 768px){.md\\:border-none{border-width:0px!important;border-style:none}.md\\:border-1{border-width:1px!important;border-style:solid}.md\\:border-2{border-width:2px!important;border-style:solid}.md\\:border-3{border-width:3px!important;border-style:solid}.md\\:border-top-none{border-top-width:0px!important;border-top-style:none}.md\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.md\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.md\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.md\\:border-right-none{border-right-width:0px!important;border-right-style:none}.md\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.md\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.md\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.md\\:border-left-none{border-left-width:0px!important;border-left-style:none}.md\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.md\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.md\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.md\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.md\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.md\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.md\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.md\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.md\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.md\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.md\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.md\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.md\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.md\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.md\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 992px){.lg\\:border-none{border-width:0px!important;border-style:none}.lg\\:border-1{border-width:1px!important;border-style:solid}.lg\\:border-2{border-width:2px!important;border-style:solid}.lg\\:border-3{border-width:3px!important;border-style:solid}.lg\\:border-top-none{border-top-width:0px!important;border-top-style:none}.lg\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.lg\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.lg\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.lg\\:border-right-none{border-right-width:0px!important;border-right-style:none}.lg\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.lg\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.lg\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.lg\\:border-left-none{border-left-width:0px!important;border-left-style:none}.lg\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.lg\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.lg\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.lg\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.lg\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.lg\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.lg\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.lg\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.lg\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.lg\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.lg\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.lg\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.lg\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.lg\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.lg\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 1200px){.xl\\:border-none{border-width:0px!important;border-style:none}.xl\\:border-1{border-width:1px!important;border-style:solid}.xl\\:border-2{border-width:2px!important;border-style:solid}.xl\\:border-3{border-width:3px!important;border-style:solid}.xl\\:border-top-none{border-top-width:0px!important;border-top-style:none}.xl\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.xl\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.xl\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.xl\\:border-right-none{border-right-width:0px!important;border-right-style:none}.xl\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.xl\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.xl\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.xl\\:border-left-none{border-left-width:0px!important;border-left-style:none}.xl\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.xl\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.xl\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.xl\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.xl\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.xl\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.xl\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.xl\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.xl\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.xl\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.xl\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.xl\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.xl\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.xl\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.xl\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}.border-solid{border-style:solid!important}.border-dashed{border-style:dashed!important}.border-dotted{border-style:dotted!important}.border-double{border-style:double!important}@media screen and (min-width: 576px){.sm\\:border-solid{border-style:solid!important}.sm\\:border-dashed{border-style:dashed!important}.sm\\:border-dotted{border-style:dotted!important}.sm\\:border-double{border-style:double!important}}@media screen and (min-width: 768px){.md\\:border-solid{border-style:solid!important}.md\\:border-dashed{border-style:dashed!important}.md\\:border-dotted{border-style:dotted!important}.md\\:border-double{border-style:double!important}}@media screen and (min-width: 992px){.lg\\:border-solid{border-style:solid!important}.lg\\:border-dashed{border-style:dashed!important}.lg\\:border-dotted{border-style:dotted!important}.lg\\:border-double{border-style:double!important}}@media screen and (min-width: 1200px){.xl\\:border-solid{border-style:solid!important}.xl\\:border-dashed{border-style:dashed!important}.xl\\:border-dotted{border-style:dotted!important}.xl\\:border-double{border-style:double!important}}.border-noround{border-radius:0!important}.border-round{border-radius:var(--border-radius)!important}.border-round-xs{border-radius:.125rem!important}.border-round-sm{border-radius:.25rem!important}.border-round-md{border-radius:.375rem!important}.border-round-lg{border-radius:.5rem!important}.border-round-xl{border-radius:.75rem!important}.border-round-2xl{border-radius:1rem!important}.border-round-3xl{border-radius:1.5rem!important}.border-circle{border-radius:50%!important}@media screen and (min-width: 576px){.sm\\:border-noround{border-radius:0!important}.sm\\:border-round{border-radius:var(--border-radius)!important}.sm\\:border-round-xs{border-radius:.125rem!important}.sm\\:border-round-sm{border-radius:.25rem!important}.sm\\:border-round-md{border-radius:.375rem!important}.sm\\:border-round-lg{border-radius:.5rem!important}.sm\\:border-round-xl{border-radius:.75rem!important}.sm\\:border-round-2xl{border-radius:1rem!important}.sm\\:border-round-3xl{border-radius:1.5rem!important}.sm\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 768px){.md\\:border-noround{border-radius:0!important}.md\\:border-round{border-radius:var(--border-radius)!important}.md\\:border-round-xs{border-radius:.125rem!important}.md\\:border-round-sm{border-radius:.25rem!important}.md\\:border-round-md{border-radius:.375rem!important}.md\\:border-round-lg{border-radius:.5rem!important}.md\\:border-round-xl{border-radius:.75rem!important}.md\\:border-round-2xl{border-radius:1rem!important}.md\\:border-round-3xl{border-radius:1.5rem!important}.md\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 992px){.lg\\:border-noround{border-radius:0!important}.lg\\:border-round{border-radius:var(--border-radius)!important}.lg\\:border-round-xs{border-radius:.125rem!important}.lg\\:border-round-sm{border-radius:.25rem!important}.lg\\:border-round-md{border-radius:.375rem!important}.lg\\:border-round-lg{border-radius:.5rem!important}.lg\\:border-round-xl{border-radius:.75rem!important}.lg\\:border-round-2xl{border-radius:1rem!important}.lg\\:border-round-3xl{border-radius:1.5rem!important}.lg\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 1200px){.xl\\:border-noround{border-radius:0!important}.xl\\:border-round{border-radius:var(--border-radius)!important}.xl\\:border-round-xs{border-radius:.125rem!important}.xl\\:border-round-sm{border-radius:.25rem!important}.xl\\:border-round-md{border-radius:.375rem!important}.xl\\:border-round-lg{border-radius:.5rem!important}.xl\\:border-round-xl{border-radius:.75rem!important}.xl\\:border-round-2xl{border-radius:1rem!important}.xl\\:border-round-3xl{border-radius:1.5rem!important}.xl\\:border-circle{border-radius:50%!important}}.border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}@media screen and (min-width: 576px){.sm\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.sm\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.sm\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.sm\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.sm\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.sm\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.sm\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.sm\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.sm\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.sm\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.sm\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.sm\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.sm\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.sm\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.sm\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.sm\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.sm\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.sm\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.sm\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.sm\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.sm\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.sm\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.sm\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.sm\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.sm\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.sm\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.sm\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.sm\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.sm\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.sm\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.sm\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.sm\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.sm\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.sm\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.sm\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.sm\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.sm\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.sm\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.sm\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.sm\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 768px){.md\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.md\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.md\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.md\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.md\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.md\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.md\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.md\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.md\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.md\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.md\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.md\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.md\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.md\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.md\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.md\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.md\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.md\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.md\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.md\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.md\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.md\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.md\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.md\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.md\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.md\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.md\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.md\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.md\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.md\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.md\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.md\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.md\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.md\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.md\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.md\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.md\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.md\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.md\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.md\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 992px){.lg\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.lg\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.lg\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.lg\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.lg\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.lg\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.lg\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.lg\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.lg\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.lg\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.lg\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.lg\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.lg\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.lg\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.lg\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.lg\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.lg\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.lg\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.lg\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.lg\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.lg\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.lg\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.lg\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.lg\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.lg\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.lg\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.lg\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.lg\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.lg\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.lg\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.lg\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.lg\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.lg\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.lg\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.lg\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.lg\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.lg\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.lg\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.lg\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.lg\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 1200px){.xl\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.xl\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.xl\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.xl\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.xl\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.xl\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.xl\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.xl\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.xl\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.xl\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.xl\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.xl\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.xl\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.xl\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.xl\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.xl\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.xl\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.xl\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.xl\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.xl\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.xl\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.xl\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.xl\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.xl\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.xl\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.xl\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.xl\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.xl\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.xl\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.xl\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.xl\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.xl\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.xl\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.xl\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.xl\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.xl\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.xl\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.xl\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.xl\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.xl\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}.w-full{width:100%!important}.w-screen{width:100vw!important}.w-auto{width:auto!important}.w-1{width:8.3333%!important}.w-2{width:16.6667%!important}.w-3{width:25%!important}.w-4{width:33.3333%!important}.w-5{width:41.6667%!important}.w-6{width:50%!important}.w-7{width:58.3333%!important}.w-8{width:66.6667%!important}.w-9{width:75%!important}.w-10{width:83.3333%!important}.w-11{width:91.6667%!important}.w-12{width:100%!important}.w-min{width:min-content!important}.w-max{width:max-content!important}.w-fit{width:-moz-fit-content!important;width:fit-content!important}.w-1rem{width:1rem!important}.w-2rem{width:2rem!important}.w-3rem{width:3rem!important}.w-4rem{width:4rem!important}.w-5rem{width:5rem!important}.w-6rem{width:6rem!important}.w-7rem{width:7rem!important}.w-8rem{width:8rem!important}.w-9rem{width:9rem!important}.w-10rem{width:10rem!important}.w-11rem{width:11rem!important}.w-12rem{width:12rem!important}.w-13rem{width:13rem!important}.w-14rem{width:14rem!important}.w-15rem{width:15rem!important}.w-16rem{width:16rem!important}.w-17rem{width:17rem!important}.w-18rem{width:18rem!important}.w-19rem{width:19rem!important}.w-20rem{width:20rem!important}.w-21rem{width:21rem!important}.w-22rem{width:22rem!important}.w-23rem{width:23rem!important}.w-24rem{width:24rem!important}.w-25rem{width:25rem!important}.w-26rem{width:26rem!important}.w-27rem{width:27rem!important}.w-28rem{width:28rem!important}.w-29rem{width:29rem!important}.w-30rem{width:30rem!important}@media screen and (min-width: 576px){.sm\\:w-full{width:100%!important}.sm\\:w-screen{width:100vw!important}.sm\\:w-auto{width:auto!important}.sm\\:w-1{width:8.3333%!important}.sm\\:w-2{width:16.6667%!important}.sm\\:w-3{width:25%!important}.sm\\:w-4{width:33.3333%!important}.sm\\:w-5{width:41.6667%!important}.sm\\:w-6{width:50%!important}.sm\\:w-7{width:58.3333%!important}.sm\\:w-8{width:66.6667%!important}.sm\\:w-9{width:75%!important}.sm\\:w-10{width:83.3333%!important}.sm\\:w-11{width:91.6667%!important}.sm\\:w-12{width:100%!important}.sm\\:w-min{width:min-content!important}.sm\\:w-max{width:max-content!important}.sm\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.sm\\:w-1rem{width:1rem!important}.sm\\:w-2rem{width:2rem!important}.sm\\:w-3rem{width:3rem!important}.sm\\:w-4rem{width:4rem!important}.sm\\:w-5rem{width:5rem!important}.sm\\:w-6rem{width:6rem!important}.sm\\:w-7rem{width:7rem!important}.sm\\:w-8rem{width:8rem!important}.sm\\:w-9rem{width:9rem!important}.sm\\:w-10rem{width:10rem!important}.sm\\:w-11rem{width:11rem!important}.sm\\:w-12rem{width:12rem!important}.sm\\:w-13rem{width:13rem!important}.sm\\:w-14rem{width:14rem!important}.sm\\:w-15rem{width:15rem!important}.sm\\:w-16rem{width:16rem!important}.sm\\:w-17rem{width:17rem!important}.sm\\:w-18rem{width:18rem!important}.sm\\:w-19rem{width:19rem!important}.sm\\:w-20rem{width:20rem!important}.sm\\:w-21rem{width:21rem!important}.sm\\:w-22rem{width:22rem!important}.sm\\:w-23rem{width:23rem!important}.sm\\:w-24rem{width:24rem!important}.sm\\:w-25rem{width:25rem!important}.sm\\:w-26rem{width:26rem!important}.sm\\:w-27rem{width:27rem!important}.sm\\:w-28rem{width:28rem!important}.sm\\:w-29rem{width:29rem!important}.sm\\:w-30rem{width:30rem!important}}@media screen and (min-width: 768px){.md\\:w-full{width:100%!important}.md\\:w-screen{width:100vw!important}.md\\:w-auto{width:auto!important}.md\\:w-1{width:8.3333%!important}.md\\:w-2{width:16.6667%!important}.md\\:w-3{width:25%!important}.md\\:w-4{width:33.3333%!important}.md\\:w-5{width:41.6667%!important}.md\\:w-6{width:50%!important}.md\\:w-7{width:58.3333%!important}.md\\:w-8{width:66.6667%!important}.md\\:w-9{width:75%!important}.md\\:w-10{width:83.3333%!important}.md\\:w-11{width:91.6667%!important}.md\\:w-12{width:100%!important}.md\\:w-min{width:min-content!important}.md\\:w-max{width:max-content!important}.md\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.md\\:w-1rem{width:1rem!important}.md\\:w-2rem{width:2rem!important}.md\\:w-3rem{width:3rem!important}.md\\:w-4rem{width:4rem!important}.md\\:w-5rem{width:5rem!important}.md\\:w-6rem{width:6rem!important}.md\\:w-7rem{width:7rem!important}.md\\:w-8rem{width:8rem!important}.md\\:w-9rem{width:9rem!important}.md\\:w-10rem{width:10rem!important}.md\\:w-11rem{width:11rem!important}.md\\:w-12rem{width:12rem!important}.md\\:w-13rem{width:13rem!important}.md\\:w-14rem{width:14rem!important}.md\\:w-15rem{width:15rem!important}.md\\:w-16rem{width:16rem!important}.md\\:w-17rem{width:17rem!important}.md\\:w-18rem{width:18rem!important}.md\\:w-19rem{width:19rem!important}.md\\:w-20rem{width:20rem!important}.md\\:w-21rem{width:21rem!important}.md\\:w-22rem{width:22rem!important}.md\\:w-23rem{width:23rem!important}.md\\:w-24rem{width:24rem!important}.md\\:w-25rem{width:25rem!important}.md\\:w-26rem{width:26rem!important}.md\\:w-27rem{width:27rem!important}.md\\:w-28rem{width:28rem!important}.md\\:w-29rem{width:29rem!important}.md\\:w-30rem{width:30rem!important}}@media screen and (min-width: 992px){.lg\\:w-full{width:100%!important}.lg\\:w-screen{width:100vw!important}.lg\\:w-auto{width:auto!important}.lg\\:w-1{width:8.3333%!important}.lg\\:w-2{width:16.6667%!important}.lg\\:w-3{width:25%!important}.lg\\:w-4{width:33.3333%!important}.lg\\:w-5{width:41.6667%!important}.lg\\:w-6{width:50%!important}.lg\\:w-7{width:58.3333%!important}.lg\\:w-8{width:66.6667%!important}.lg\\:w-9{width:75%!important}.lg\\:w-10{width:83.3333%!important}.lg\\:w-11{width:91.6667%!important}.lg\\:w-12{width:100%!important}.lg\\:w-min{width:min-content!important}.lg\\:w-max{width:max-content!important}.lg\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.lg\\:w-1rem{width:1rem!important}.lg\\:w-2rem{width:2rem!important}.lg\\:w-3rem{width:3rem!important}.lg\\:w-4rem{width:4rem!important}.lg\\:w-5rem{width:5rem!important}.lg\\:w-6rem{width:6rem!important}.lg\\:w-7rem{width:7rem!important}.lg\\:w-8rem{width:8rem!important}.lg\\:w-9rem{width:9rem!important}.lg\\:w-10rem{width:10rem!important}.lg\\:w-11rem{width:11rem!important}.lg\\:w-12rem{width:12rem!important}.lg\\:w-13rem{width:13rem!important}.lg\\:w-14rem{width:14rem!important}.lg\\:w-15rem{width:15rem!important}.lg\\:w-16rem{width:16rem!important}.lg\\:w-17rem{width:17rem!important}.lg\\:w-18rem{width:18rem!important}.lg\\:w-19rem{width:19rem!important}.lg\\:w-20rem{width:20rem!important}.lg\\:w-21rem{width:21rem!important}.lg\\:w-22rem{width:22rem!important}.lg\\:w-23rem{width:23rem!important}.lg\\:w-24rem{width:24rem!important}.lg\\:w-25rem{width:25rem!important}.lg\\:w-26rem{width:26rem!important}.lg\\:w-27rem{width:27rem!important}.lg\\:w-28rem{width:28rem!important}.lg\\:w-29rem{width:29rem!important}.lg\\:w-30rem{width:30rem!important}}@media screen and (min-width: 1200px){.xl\\:w-full{width:100%!important}.xl\\:w-screen{width:100vw!important}.xl\\:w-auto{width:auto!important}.xl\\:w-1{width:8.3333%!important}.xl\\:w-2{width:16.6667%!important}.xl\\:w-3{width:25%!important}.xl\\:w-4{width:33.3333%!important}.xl\\:w-5{width:41.6667%!important}.xl\\:w-6{width:50%!important}.xl\\:w-7{width:58.3333%!important}.xl\\:w-8{width:66.6667%!important}.xl\\:w-9{width:75%!important}.xl\\:w-10{width:83.3333%!important}.xl\\:w-11{width:91.6667%!important}.xl\\:w-12{width:100%!important}.xl\\:w-min{width:min-content!important}.xl\\:w-max{width:max-content!important}.xl\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.xl\\:w-1rem{width:1rem!important}.xl\\:w-2rem{width:2rem!important}.xl\\:w-3rem{width:3rem!important}.xl\\:w-4rem{width:4rem!important}.xl\\:w-5rem{width:5rem!important}.xl\\:w-6rem{width:6rem!important}.xl\\:w-7rem{width:7rem!important}.xl\\:w-8rem{width:8rem!important}.xl\\:w-9rem{width:9rem!important}.xl\\:w-10rem{width:10rem!important}.xl\\:w-11rem{width:11rem!important}.xl\\:w-12rem{width:12rem!important}.xl\\:w-13rem{width:13rem!important}.xl\\:w-14rem{width:14rem!important}.xl\\:w-15rem{width:15rem!important}.xl\\:w-16rem{width:16rem!important}.xl\\:w-17rem{width:17rem!important}.xl\\:w-18rem{width:18rem!important}.xl\\:w-19rem{width:19rem!important}.xl\\:w-20rem{width:20rem!important}.xl\\:w-21rem{width:21rem!important}.xl\\:w-22rem{width:22rem!important}.xl\\:w-23rem{width:23rem!important}.xl\\:w-24rem{width:24rem!important}.xl\\:w-25rem{width:25rem!important}.xl\\:w-26rem{width:26rem!important}.xl\\:w-27rem{width:27rem!important}.xl\\:w-28rem{width:28rem!important}.xl\\:w-29rem{width:29rem!important}.xl\\:w-30rem{width:30rem!important}}.h-full{height:100%!important}.h-screen{height:100vh!important}.h-auto{height:auto!important}.h-min{height:min-content!important}.h-max{height:max-content!important}.h-fit{height:-moz-fit-content!important;height:fit-content!important}.h-1rem{height:1rem!important}.h-2rem{height:2rem!important}.h-3rem{height:3rem!important}.h-4rem{height:4rem!important}.h-5rem{height:5rem!important}.h-6rem{height:6rem!important}.h-7rem{height:7rem!important}.h-8rem{height:8rem!important}.h-9rem{height:9rem!important}.h-10rem{height:10rem!important}.h-11rem{height:11rem!important}.h-12rem{height:12rem!important}.h-13rem{height:13rem!important}.h-14rem{height:14rem!important}.h-15rem{height:15rem!important}.h-16rem{height:16rem!important}.h-17rem{height:17rem!important}.h-18rem{height:18rem!important}.h-19rem{height:19rem!important}.h-20rem{height:20rem!important}.h-21rem{height:21rem!important}.h-22rem{height:22rem!important}.h-23rem{height:23rem!important}.h-24rem{height:24rem!important}.h-25rem{height:25rem!important}.h-26rem{height:26rem!important}.h-27rem{height:27rem!important}.h-28rem{height:28rem!important}.h-29rem{height:29rem!important}.h-30rem{height:30rem!important}@media screen and (min-width: 576px){.sm\\:h-full{height:100%!important}.sm\\:h-screen{height:100vh!important}.sm\\:h-auto{height:auto!important}.sm\\:h-min{height:min-content!important}.sm\\:h-max{height:max-content!important}.sm\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.sm\\:h-1rem{height:1rem!important}.sm\\:h-2rem{height:2rem!important}.sm\\:h-3rem{height:3rem!important}.sm\\:h-4rem{height:4rem!important}.sm\\:h-5rem{height:5rem!important}.sm\\:h-6rem{height:6rem!important}.sm\\:h-7rem{height:7rem!important}.sm\\:h-8rem{height:8rem!important}.sm\\:h-9rem{height:9rem!important}.sm\\:h-10rem{height:10rem!important}.sm\\:h-11rem{height:11rem!important}.sm\\:h-12rem{height:12rem!important}.sm\\:h-13rem{height:13rem!important}.sm\\:h-14rem{height:14rem!important}.sm\\:h-15rem{height:15rem!important}.sm\\:h-16rem{height:16rem!important}.sm\\:h-17rem{height:17rem!important}.sm\\:h-18rem{height:18rem!important}.sm\\:h-19rem{height:19rem!important}.sm\\:h-20rem{height:20rem!important}.sm\\:h-21rem{height:21rem!important}.sm\\:h-22rem{height:22rem!important}.sm\\:h-23rem{height:23rem!important}.sm\\:h-24rem{height:24rem!important}.sm\\:h-25rem{height:25rem!important}.sm\\:h-26rem{height:26rem!important}.sm\\:h-27rem{height:27rem!important}.sm\\:h-28rem{height:28rem!important}.sm\\:h-29rem{height:29rem!important}.sm\\:h-30rem{height:30rem!important}}@media screen and (min-width: 768px){.md\\:h-full{height:100%!important}.md\\:h-screen{height:100vh!important}.md\\:h-auto{height:auto!important}.md\\:h-min{height:min-content!important}.md\\:h-max{height:max-content!important}.md\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.md\\:h-1rem{height:1rem!important}.md\\:h-2rem{height:2rem!important}.md\\:h-3rem{height:3rem!important}.md\\:h-4rem{height:4rem!important}.md\\:h-5rem{height:5rem!important}.md\\:h-6rem{height:6rem!important}.md\\:h-7rem{height:7rem!important}.md\\:h-8rem{height:8rem!important}.md\\:h-9rem{height:9rem!important}.md\\:h-10rem{height:10rem!important}.md\\:h-11rem{height:11rem!important}.md\\:h-12rem{height:12rem!important}.md\\:h-13rem{height:13rem!important}.md\\:h-14rem{height:14rem!important}.md\\:h-15rem{height:15rem!important}.md\\:h-16rem{height:16rem!important}.md\\:h-17rem{height:17rem!important}.md\\:h-18rem{height:18rem!important}.md\\:h-19rem{height:19rem!important}.md\\:h-20rem{height:20rem!important}.md\\:h-21rem{height:21rem!important}.md\\:h-22rem{height:22rem!important}.md\\:h-23rem{height:23rem!important}.md\\:h-24rem{height:24rem!important}.md\\:h-25rem{height:25rem!important}.md\\:h-26rem{height:26rem!important}.md\\:h-27rem{height:27rem!important}.md\\:h-28rem{height:28rem!important}.md\\:h-29rem{height:29rem!important}.md\\:h-30rem{height:30rem!important}}@media screen and (min-width: 992px){.lg\\:h-full{height:100%!important}.lg\\:h-screen{height:100vh!important}.lg\\:h-auto{height:auto!important}.lg\\:h-min{height:min-content!important}.lg\\:h-max{height:max-content!important}.lg\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.lg\\:h-1rem{height:1rem!important}.lg\\:h-2rem{height:2rem!important}.lg\\:h-3rem{height:3rem!important}.lg\\:h-4rem{height:4rem!important}.lg\\:h-5rem{height:5rem!important}.lg\\:h-6rem{height:6rem!important}.lg\\:h-7rem{height:7rem!important}.lg\\:h-8rem{height:8rem!important}.lg\\:h-9rem{height:9rem!important}.lg\\:h-10rem{height:10rem!important}.lg\\:h-11rem{height:11rem!important}.lg\\:h-12rem{height:12rem!important}.lg\\:h-13rem{height:13rem!important}.lg\\:h-14rem{height:14rem!important}.lg\\:h-15rem{height:15rem!important}.lg\\:h-16rem{height:16rem!important}.lg\\:h-17rem{height:17rem!important}.lg\\:h-18rem{height:18rem!important}.lg\\:h-19rem{height:19rem!important}.lg\\:h-20rem{height:20rem!important}.lg\\:h-21rem{height:21rem!important}.lg\\:h-22rem{height:22rem!important}.lg\\:h-23rem{height:23rem!important}.lg\\:h-24rem{height:24rem!important}.lg\\:h-25rem{height:25rem!important}.lg\\:h-26rem{height:26rem!important}.lg\\:h-27rem{height:27rem!important}.lg\\:h-28rem{height:28rem!important}.lg\\:h-29rem{height:29rem!important}.lg\\:h-30rem{height:30rem!important}}@media screen and (min-width: 1200px){.xl\\:h-full{height:100%!important}.xl\\:h-screen{height:100vh!important}.xl\\:h-auto{height:auto!important}.xl\\:h-min{height:min-content!important}.xl\\:h-max{height:max-content!important}.xl\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.xl\\:h-1rem{height:1rem!important}.xl\\:h-2rem{height:2rem!important}.xl\\:h-3rem{height:3rem!important}.xl\\:h-4rem{height:4rem!important}.xl\\:h-5rem{height:5rem!important}.xl\\:h-6rem{height:6rem!important}.xl\\:h-7rem{height:7rem!important}.xl\\:h-8rem{height:8rem!important}.xl\\:h-9rem{height:9rem!important}.xl\\:h-10rem{height:10rem!important}.xl\\:h-11rem{height:11rem!important}.xl\\:h-12rem{height:12rem!important}.xl\\:h-13rem{height:13rem!important}.xl\\:h-14rem{height:14rem!important}.xl\\:h-15rem{height:15rem!important}.xl\\:h-16rem{height:16rem!important}.xl\\:h-17rem{height:17rem!important}.xl\\:h-18rem{height:18rem!important}.xl\\:h-19rem{height:19rem!important}.xl\\:h-20rem{height:20rem!important}.xl\\:h-21rem{height:21rem!important}.xl\\:h-22rem{height:22rem!important}.xl\\:h-23rem{height:23rem!important}.xl\\:h-24rem{height:24rem!important}.xl\\:h-25rem{height:25rem!important}.xl\\:h-26rem{height:26rem!important}.xl\\:h-27rem{height:27rem!important}.xl\\:h-28rem{height:28rem!important}.xl\\:h-29rem{height:29rem!important}.xl\\:h-30rem{height:30rem!important}}.min-w-0{min-width:0px!important}.min-w-full{min-width:100%!important}.min-w-screen{min-width:100vw!important}.min-w-min{min-width:min-content!important}.min-w-max{min-width:max-content!important}@media screen and (min-width: 576px){.sm\\:min-w-0{min-width:0px!important}.sm\\:min-w-full{min-width:100%!important}.sm\\:min-w-screen{min-width:100vw!important}.sm\\:min-w-min{min-width:min-content!important}.sm\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 768px){.md\\:min-w-0{min-width:0px!important}.md\\:min-w-full{min-width:100%!important}.md\\:min-w-screen{min-width:100vw!important}.md\\:min-w-min{min-width:min-content!important}.md\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 992px){.lg\\:min-w-0{min-width:0px!important}.lg\\:min-w-full{min-width:100%!important}.lg\\:min-w-screen{min-width:100vw!important}.lg\\:min-w-min{min-width:min-content!important}.lg\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 1200px){.xl\\:min-w-0{min-width:0px!important}.xl\\:min-w-full{min-width:100%!important}.xl\\:min-w-screen{min-width:100vw!important}.xl\\:min-w-min{min-width:min-content!important}.xl\\:min-w-max{min-width:max-content!important}}.max-w-0{max-width:0px!important}.max-w-full{max-width:100%!important}.max-w-screen{max-width:100vw!important}.max-w-min{max-width:min-content!important}.max-w-max{max-width:max-content!important}.max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.max-w-1rem{max-width:1rem!important}.max-w-2rem{max-width:2rem!important}.max-w-3rem{max-width:3rem!important}.max-w-4rem{max-width:4rem!important}.max-w-5rem{max-width:5rem!important}.max-w-6rem{max-width:6rem!important}.max-w-7rem{max-width:7rem!important}.max-w-8rem{max-width:8rem!important}.max-w-9rem{max-width:9rem!important}.max-w-10rem{max-width:10rem!important}.max-w-11rem{max-width:11rem!important}.max-w-12rem{max-width:12rem!important}.max-w-13rem{max-width:13rem!important}.max-w-14rem{max-width:14rem!important}.max-w-15rem{max-width:15rem!important}.max-w-16rem{max-width:16rem!important}.max-w-17rem{max-width:17rem!important}.max-w-18rem{max-width:18rem!important}.max-w-19rem{max-width:19rem!important}.max-w-20rem{max-width:20rem!important}.max-w-21rem{max-width:21rem!important}.max-w-22rem{max-width:22rem!important}.max-w-23rem{max-width:23rem!important}.max-w-24rem{max-width:24rem!important}.max-w-25rem{max-width:25rem!important}.max-w-26rem{max-width:26rem!important}.max-w-27rem{max-width:27rem!important}.max-w-28rem{max-width:28rem!important}.max-w-29rem{max-width:29rem!important}.max-w-30rem{max-width:30rem!important}@media screen and (min-width: 576px){.sm\\:max-w-0{max-width:0px!important}.sm\\:max-w-full{max-width:100%!important}.sm\\:max-w-screen{max-width:100vw!important}.sm\\:max-w-min{max-width:min-content!important}.sm\\:max-w-max{max-width:max-content!important}.sm\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.sm\\:max-w-1rem{max-width:1rem!important}.sm\\:max-w-2rem{max-width:2rem!important}.sm\\:max-w-3rem{max-width:3rem!important}.sm\\:max-w-4rem{max-width:4rem!important}.sm\\:max-w-5rem{max-width:5rem!important}.sm\\:max-w-6rem{max-width:6rem!important}.sm\\:max-w-7rem{max-width:7rem!important}.sm\\:max-w-8rem{max-width:8rem!important}.sm\\:max-w-9rem{max-width:9rem!important}.sm\\:max-w-10rem{max-width:10rem!important}.sm\\:max-w-11rem{max-width:11rem!important}.sm\\:max-w-12rem{max-width:12rem!important}.sm\\:max-w-13rem{max-width:13rem!important}.sm\\:max-w-14rem{max-width:14rem!important}.sm\\:max-w-15rem{max-width:15rem!important}.sm\\:max-w-16rem{max-width:16rem!important}.sm\\:max-w-17rem{max-width:17rem!important}.sm\\:max-w-18rem{max-width:18rem!important}.sm\\:max-w-19rem{max-width:19rem!important}.sm\\:max-w-20rem{max-width:20rem!important}.sm\\:max-w-21rem{max-width:21rem!important}.sm\\:max-w-22rem{max-width:22rem!important}.sm\\:max-w-23rem{max-width:23rem!important}.sm\\:max-w-24rem{max-width:24rem!important}.sm\\:max-w-25rem{max-width:25rem!important}.sm\\:max-w-26rem{max-width:26rem!important}.sm\\:max-w-27rem{max-width:27rem!important}.sm\\:max-w-28rem{max-width:28rem!important}.sm\\:max-w-29rem{max-width:29rem!important}.sm\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 768px){.md\\:max-w-0{max-width:0px!important}.md\\:max-w-full{max-width:100%!important}.md\\:max-w-screen{max-width:100vw!important}.md\\:max-w-min{max-width:min-content!important}.md\\:max-w-max{max-width:max-content!important}.md\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.md\\:max-w-1rem{max-width:1rem!important}.md\\:max-w-2rem{max-width:2rem!important}.md\\:max-w-3rem{max-width:3rem!important}.md\\:max-w-4rem{max-width:4rem!important}.md\\:max-w-5rem{max-width:5rem!important}.md\\:max-w-6rem{max-width:6rem!important}.md\\:max-w-7rem{max-width:7rem!important}.md\\:max-w-8rem{max-width:8rem!important}.md\\:max-w-9rem{max-width:9rem!important}.md\\:max-w-10rem{max-width:10rem!important}.md\\:max-w-11rem{max-width:11rem!important}.md\\:max-w-12rem{max-width:12rem!important}.md\\:max-w-13rem{max-width:13rem!important}.md\\:max-w-14rem{max-width:14rem!important}.md\\:max-w-15rem{max-width:15rem!important}.md\\:max-w-16rem{max-width:16rem!important}.md\\:max-w-17rem{max-width:17rem!important}.md\\:max-w-18rem{max-width:18rem!important}.md\\:max-w-19rem{max-width:19rem!important}.md\\:max-w-20rem{max-width:20rem!important}.md\\:max-w-21rem{max-width:21rem!important}.md\\:max-w-22rem{max-width:22rem!important}.md\\:max-w-23rem{max-width:23rem!important}.md\\:max-w-24rem{max-width:24rem!important}.md\\:max-w-25rem{max-width:25rem!important}.md\\:max-w-26rem{max-width:26rem!important}.md\\:max-w-27rem{max-width:27rem!important}.md\\:max-w-28rem{max-width:28rem!important}.md\\:max-w-29rem{max-width:29rem!important}.md\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 992px){.lg\\:max-w-0{max-width:0px!important}.lg\\:max-w-full{max-width:100%!important}.lg\\:max-w-screen{max-width:100vw!important}.lg\\:max-w-min{max-width:min-content!important}.lg\\:max-w-max{max-width:max-content!important}.lg\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.lg\\:max-w-1rem{max-width:1rem!important}.lg\\:max-w-2rem{max-width:2rem!important}.lg\\:max-w-3rem{max-width:3rem!important}.lg\\:max-w-4rem{max-width:4rem!important}.lg\\:max-w-5rem{max-width:5rem!important}.lg\\:max-w-6rem{max-width:6rem!important}.lg\\:max-w-7rem{max-width:7rem!important}.lg\\:max-w-8rem{max-width:8rem!important}.lg\\:max-w-9rem{max-width:9rem!important}.lg\\:max-w-10rem{max-width:10rem!important}.lg\\:max-w-11rem{max-width:11rem!important}.lg\\:max-w-12rem{max-width:12rem!important}.lg\\:max-w-13rem{max-width:13rem!important}.lg\\:max-w-14rem{max-width:14rem!important}.lg\\:max-w-15rem{max-width:15rem!important}.lg\\:max-w-16rem{max-width:16rem!important}.lg\\:max-w-17rem{max-width:17rem!important}.lg\\:max-w-18rem{max-width:18rem!important}.lg\\:max-w-19rem{max-width:19rem!important}.lg\\:max-w-20rem{max-width:20rem!important}.lg\\:max-w-21rem{max-width:21rem!important}.lg\\:max-w-22rem{max-width:22rem!important}.lg\\:max-w-23rem{max-width:23rem!important}.lg\\:max-w-24rem{max-width:24rem!important}.lg\\:max-w-25rem{max-width:25rem!important}.lg\\:max-w-26rem{max-width:26rem!important}.lg\\:max-w-27rem{max-width:27rem!important}.lg\\:max-w-28rem{max-width:28rem!important}.lg\\:max-w-29rem{max-width:29rem!important}.lg\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 1200px){.xl\\:max-w-0{max-width:0px!important}.xl\\:max-w-full{max-width:100%!important}.xl\\:max-w-screen{max-width:100vw!important}.xl\\:max-w-min{max-width:min-content!important}.xl\\:max-w-max{max-width:max-content!important}.xl\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.xl\\:max-w-1rem{max-width:1rem!important}.xl\\:max-w-2rem{max-width:2rem!important}.xl\\:max-w-3rem{max-width:3rem!important}.xl\\:max-w-4rem{max-width:4rem!important}.xl\\:max-w-5rem{max-width:5rem!important}.xl\\:max-w-6rem{max-width:6rem!important}.xl\\:max-w-7rem{max-width:7rem!important}.xl\\:max-w-8rem{max-width:8rem!important}.xl\\:max-w-9rem{max-width:9rem!important}.xl\\:max-w-10rem{max-width:10rem!important}.xl\\:max-w-11rem{max-width:11rem!important}.xl\\:max-w-12rem{max-width:12rem!important}.xl\\:max-w-13rem{max-width:13rem!important}.xl\\:max-w-14rem{max-width:14rem!important}.xl\\:max-w-15rem{max-width:15rem!important}.xl\\:max-w-16rem{max-width:16rem!important}.xl\\:max-w-17rem{max-width:17rem!important}.xl\\:max-w-18rem{max-width:18rem!important}.xl\\:max-w-19rem{max-width:19rem!important}.xl\\:max-w-20rem{max-width:20rem!important}.xl\\:max-w-21rem{max-width:21rem!important}.xl\\:max-w-22rem{max-width:22rem!important}.xl\\:max-w-23rem{max-width:23rem!important}.xl\\:max-w-24rem{max-width:24rem!important}.xl\\:max-w-25rem{max-width:25rem!important}.xl\\:max-w-26rem{max-width:26rem!important}.xl\\:max-w-27rem{max-width:27rem!important}.xl\\:max-w-28rem{max-width:28rem!important}.xl\\:max-w-29rem{max-width:29rem!important}.xl\\:max-w-30rem{max-width:30rem!important}}.min-h-0{min-height:0px!important}.min-h-full{min-height:100%!important}.min-h-screen{min-height:100vh!important}@media screen and (min-width: 576px){.sm\\:min-h-0{min-height:0px!important}.sm\\:min-h-full{min-height:100%!important}.sm\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 768px){.md\\:min-h-0{min-height:0px!important}.md\\:min-h-full{min-height:100%!important}.md\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 992px){.lg\\:min-h-0{min-height:0px!important}.lg\\:min-h-full{min-height:100%!important}.lg\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 1200px){.xl\\:min-h-0{min-height:0px!important}.xl\\:min-h-full{min-height:100%!important}.xl\\:min-h-screen{min-height:100vh!important}}.max-h-0{max-height:0px!important}.max-h-full{max-height:100%!important}.max-h-screen{max-height:100vh!important}.max-h-min{max-height:min-content!important}.max-h-max{max-height:max-content!important}.max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.max-h-1rem{max-height:1rem!important}.max-h-2rem{max-height:2rem!important}.max-h-3rem{max-height:3rem!important}.max-h-4rem{max-height:4rem!important}.max-h-5rem{max-height:5rem!important}.max-h-6rem{max-height:6rem!important}.max-h-7rem{max-height:7rem!important}.max-h-8rem{max-height:8rem!important}.max-h-9rem{max-height:9rem!important}.max-h-10rem{max-height:10rem!important}.max-h-11rem{max-height:11rem!important}.max-h-12rem{max-height:12rem!important}.max-h-13rem{max-height:13rem!important}.max-h-14rem{max-height:14rem!important}.max-h-15rem{max-height:15rem!important}.max-h-16rem{max-height:16rem!important}.max-h-17rem{max-height:17rem!important}.max-h-18rem{max-height:18rem!important}.max-h-19rem{max-height:19rem!important}.max-h-20rem{max-height:20rem!important}.max-h-21rem{max-height:21rem!important}.max-h-22rem{max-height:22rem!important}.max-h-23rem{max-height:23rem!important}.max-h-24rem{max-height:24rem!important}.max-h-25rem{max-height:25rem!important}.max-h-26rem{max-height:26rem!important}.max-h-27rem{max-height:27rem!important}.max-h-28rem{max-height:28rem!important}.max-h-29rem{max-height:29rem!important}.max-h-30rem{max-height:30rem!important}@media screen and (min-width: 576px){.sm\\:max-h-0{max-height:0px!important}.sm\\:max-h-full{max-height:100%!important}.sm\\:max-h-screen{max-height:100vh!important}.sm\\:max-h-min{max-height:min-content!important}.sm\\:max-h-max{max-height:max-content!important}.sm\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.sm\\:max-h-1rem{max-height:1rem!important}.sm\\:max-h-2rem{max-height:2rem!important}.sm\\:max-h-3rem{max-height:3rem!important}.sm\\:max-h-4rem{max-height:4rem!important}.sm\\:max-h-5rem{max-height:5rem!important}.sm\\:max-h-6rem{max-height:6rem!important}.sm\\:max-h-7rem{max-height:7rem!important}.sm\\:max-h-8rem{max-height:8rem!important}.sm\\:max-h-9rem{max-height:9rem!important}.sm\\:max-h-10rem{max-height:10rem!important}.sm\\:max-h-11rem{max-height:11rem!important}.sm\\:max-h-12rem{max-height:12rem!important}.sm\\:max-h-13rem{max-height:13rem!important}.sm\\:max-h-14rem{max-height:14rem!important}.sm\\:max-h-15rem{max-height:15rem!important}.sm\\:max-h-16rem{max-height:16rem!important}.sm\\:max-h-17rem{max-height:17rem!important}.sm\\:max-h-18rem{max-height:18rem!important}.sm\\:max-h-19rem{max-height:19rem!important}.sm\\:max-h-20rem{max-height:20rem!important}.sm\\:max-h-21rem{max-height:21rem!important}.sm\\:max-h-22rem{max-height:22rem!important}.sm\\:max-h-23rem{max-height:23rem!important}.sm\\:max-h-24rem{max-height:24rem!important}.sm\\:max-h-25rem{max-height:25rem!important}.sm\\:max-h-26rem{max-height:26rem!important}.sm\\:max-h-27rem{max-height:27rem!important}.sm\\:max-h-28rem{max-height:28rem!important}.sm\\:max-h-29rem{max-height:29rem!important}.sm\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 768px){.md\\:max-h-0{max-height:0px!important}.md\\:max-h-full{max-height:100%!important}.md\\:max-h-screen{max-height:100vh!important}.md\\:max-h-min{max-height:min-content!important}.md\\:max-h-max{max-height:max-content!important}.md\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.md\\:max-h-1rem{max-height:1rem!important}.md\\:max-h-2rem{max-height:2rem!important}.md\\:max-h-3rem{max-height:3rem!important}.md\\:max-h-4rem{max-height:4rem!important}.md\\:max-h-5rem{max-height:5rem!important}.md\\:max-h-6rem{max-height:6rem!important}.md\\:max-h-7rem{max-height:7rem!important}.md\\:max-h-8rem{max-height:8rem!important}.md\\:max-h-9rem{max-height:9rem!important}.md\\:max-h-10rem{max-height:10rem!important}.md\\:max-h-11rem{max-height:11rem!important}.md\\:max-h-12rem{max-height:12rem!important}.md\\:max-h-13rem{max-height:13rem!important}.md\\:max-h-14rem{max-height:14rem!important}.md\\:max-h-15rem{max-height:15rem!important}.md\\:max-h-16rem{max-height:16rem!important}.md\\:max-h-17rem{max-height:17rem!important}.md\\:max-h-18rem{max-height:18rem!important}.md\\:max-h-19rem{max-height:19rem!important}.md\\:max-h-20rem{max-height:20rem!important}.md\\:max-h-21rem{max-height:21rem!important}.md\\:max-h-22rem{max-height:22rem!important}.md\\:max-h-23rem{max-height:23rem!important}.md\\:max-h-24rem{max-height:24rem!important}.md\\:max-h-25rem{max-height:25rem!important}.md\\:max-h-26rem{max-height:26rem!important}.md\\:max-h-27rem{max-height:27rem!important}.md\\:max-h-28rem{max-height:28rem!important}.md\\:max-h-29rem{max-height:29rem!important}.md\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 992px){.lg\\:max-h-0{max-height:0px!important}.lg\\:max-h-full{max-height:100%!important}.lg\\:max-h-screen{max-height:100vh!important}.lg\\:max-h-min{max-height:min-content!important}.lg\\:max-h-max{max-height:max-content!important}.lg\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.lg\\:max-h-1rem{max-height:1rem!important}.lg\\:max-h-2rem{max-height:2rem!important}.lg\\:max-h-3rem{max-height:3rem!important}.lg\\:max-h-4rem{max-height:4rem!important}.lg\\:max-h-5rem{max-height:5rem!important}.lg\\:max-h-6rem{max-height:6rem!important}.lg\\:max-h-7rem{max-height:7rem!important}.lg\\:max-h-8rem{max-height:8rem!important}.lg\\:max-h-9rem{max-height:9rem!important}.lg\\:max-h-10rem{max-height:10rem!important}.lg\\:max-h-11rem{max-height:11rem!important}.lg\\:max-h-12rem{max-height:12rem!important}.lg\\:max-h-13rem{max-height:13rem!important}.lg\\:max-h-14rem{max-height:14rem!important}.lg\\:max-h-15rem{max-height:15rem!important}.lg\\:max-h-16rem{max-height:16rem!important}.lg\\:max-h-17rem{max-height:17rem!important}.lg\\:max-h-18rem{max-height:18rem!important}.lg\\:max-h-19rem{max-height:19rem!important}.lg\\:max-h-20rem{max-height:20rem!important}.lg\\:max-h-21rem{max-height:21rem!important}.lg\\:max-h-22rem{max-height:22rem!important}.lg\\:max-h-23rem{max-height:23rem!important}.lg\\:max-h-24rem{max-height:24rem!important}.lg\\:max-h-25rem{max-height:25rem!important}.lg\\:max-h-26rem{max-height:26rem!important}.lg\\:max-h-27rem{max-height:27rem!important}.lg\\:max-h-28rem{max-height:28rem!important}.lg\\:max-h-29rem{max-height:29rem!important}.lg\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 1200px){.xl\\:max-h-0{max-height:0px!important}.xl\\:max-h-full{max-height:100%!important}.xl\\:max-h-screen{max-height:100vh!important}.xl\\:max-h-min{max-height:min-content!important}.xl\\:max-h-max{max-height:max-content!important}.xl\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.xl\\:max-h-1rem{max-height:1rem!important}.xl\\:max-h-2rem{max-height:2rem!important}.xl\\:max-h-3rem{max-height:3rem!important}.xl\\:max-h-4rem{max-height:4rem!important}.xl\\:max-h-5rem{max-height:5rem!important}.xl\\:max-h-6rem{max-height:6rem!important}.xl\\:max-h-7rem{max-height:7rem!important}.xl\\:max-h-8rem{max-height:8rem!important}.xl\\:max-h-9rem{max-height:9rem!important}.xl\\:max-h-10rem{max-height:10rem!important}.xl\\:max-h-11rem{max-height:11rem!important}.xl\\:max-h-12rem{max-height:12rem!important}.xl\\:max-h-13rem{max-height:13rem!important}.xl\\:max-h-14rem{max-height:14rem!important}.xl\\:max-h-15rem{max-height:15rem!important}.xl\\:max-h-16rem{max-height:16rem!important}.xl\\:max-h-17rem{max-height:17rem!important}.xl\\:max-h-18rem{max-height:18rem!important}.xl\\:max-h-19rem{max-height:19rem!important}.xl\\:max-h-20rem{max-height:20rem!important}.xl\\:max-h-21rem{max-height:21rem!important}.xl\\:max-h-22rem{max-height:22rem!important}.xl\\:max-h-23rem{max-height:23rem!important}.xl\\:max-h-24rem{max-height:24rem!important}.xl\\:max-h-25rem{max-height:25rem!important}.xl\\:max-h-26rem{max-height:26rem!important}.xl\\:max-h-27rem{max-height:27rem!important}.xl\\:max-h-28rem{max-height:28rem!important}.xl\\:max-h-29rem{max-height:29rem!important}.xl\\:max-h-30rem{max-height:30rem!important}}.static{position:static!important}.fixed{position:fixed!important}.absolute{position:absolute!important}.relative{position:relative!important}.sticky{position:sticky!important}@media screen and (min-width: 576px){.sm\\:static{position:static!important}.sm\\:fixed{position:fixed!important}.sm\\:absolute{position:absolute!important}.sm\\:relative{position:relative!important}.sm\\:sticky{position:sticky!important}}@media screen and (min-width: 768px){.md\\:static{position:static!important}.md\\:fixed{position:fixed!important}.md\\:absolute{position:absolute!important}.md\\:relative{position:relative!important}.md\\:sticky{position:sticky!important}}@media screen and (min-width: 992px){.lg\\:static{position:static!important}.lg\\:fixed{position:fixed!important}.lg\\:absolute{position:absolute!important}.lg\\:relative{position:relative!important}.lg\\:sticky{position:sticky!important}}@media screen and (min-width: 1200px){.xl\\:static{position:static!important}.xl\\:fixed{position:fixed!important}.xl\\:absolute{position:absolute!important}.xl\\:relative{position:relative!important}.xl\\:sticky{position:sticky!important}}.top-auto{top:auto!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}@media screen and (min-width: 576px){.sm\\:top-auto{top:auto!important}.sm\\:top-0{top:0!important}.sm\\:top-50{top:50%!important}.sm\\:top-100{top:100%!important}}@media screen and (min-width: 768px){.md\\:top-auto{top:auto!important}.md\\:top-0{top:0!important}.md\\:top-50{top:50%!important}.md\\:top-100{top:100%!important}}@media screen and (min-width: 992px){.lg\\:top-auto{top:auto!important}.lg\\:top-0{top:0!important}.lg\\:top-50{top:50%!important}.lg\\:top-100{top:100%!important}}@media screen and (min-width: 1200px){.xl\\:top-auto{top:auto!important}.xl\\:top-0{top:0!important}.xl\\:top-50{top:50%!important}.xl\\:top-100{top:100%!important}}.left-auto{left:auto!important}.left-0{left:0!important}.left-50{left:50%!important}.left-100{left:100%!important}@media screen and (min-width: 576px){.sm\\:left-auto{left:auto!important}.sm\\:left-0{left:0!important}.sm\\:left-50{left:50%!important}.sm\\:left-100{left:100%!important}}@media screen and (min-width: 768px){.md\\:left-auto{left:auto!important}.md\\:left-0{left:0!important}.md\\:left-50{left:50%!important}.md\\:left-100{left:100%!important}}@media screen and (min-width: 992px){.lg\\:left-auto{left:auto!important}.lg\\:left-0{left:0!important}.lg\\:left-50{left:50%!important}.lg\\:left-100{left:100%!important}}@media screen and (min-width: 1200px){.xl\\:left-auto{left:auto!important}.xl\\:left-0{left:0!important}.xl\\:left-50{left:50%!important}.xl\\:left-100{left:100%!important}}.right-auto{right:auto!important}.right-0{right:0!important}.right-50{right:50%!important}.right-100{right:100%!important}@media screen and (min-width: 576px){.sm\\:right-auto{right:auto!important}.sm\\:right-0{right:0!important}.sm\\:right-50{right:50%!important}.sm\\:right-100{right:100%!important}}@media screen and (min-width: 768px){.md\\:right-auto{right:auto!important}.md\\:right-0{right:0!important}.md\\:right-50{right:50%!important}.md\\:right-100{right:100%!important}}@media screen and (min-width: 992px){.lg\\:right-auto{right:auto!important}.lg\\:right-0{right:0!important}.lg\\:right-50{right:50%!important}.lg\\:right-100{right:100%!important}}@media screen and (min-width: 1200px){.xl\\:right-auto{right:auto!important}.xl\\:right-0{right:0!important}.xl\\:right-50{right:50%!important}.xl\\:right-100{right:100%!important}}.bottom-auto{bottom:auto!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}@media screen and (min-width: 576px){.sm\\:bottom-auto{bottom:auto!important}.sm\\:bottom-0{bottom:0!important}.sm\\:bottom-50{bottom:50%!important}.sm\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 768px){.md\\:bottom-auto{bottom:auto!important}.md\\:bottom-0{bottom:0!important}.md\\:bottom-50{bottom:50%!important}.md\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 992px){.lg\\:bottom-auto{bottom:auto!important}.lg\\:bottom-0{bottom:0!important}.lg\\:bottom-50{bottom:50%!important}.lg\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 1200px){.xl\\:bottom-auto{bottom:auto!important}.xl\\:bottom-0{bottom:0!important}.xl\\:bottom-50{bottom:50%!important}.xl\\:bottom-100{bottom:100%!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-auto{overflow:auto!important}.sm\\:overflow-hidden{overflow:hidden!important}.sm\\:overflow-visible{overflow:visible!important}.sm\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-auto{overflow:auto!important}.md\\:overflow-hidden{overflow:hidden!important}.md\\:overflow-visible{overflow:visible!important}.md\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-auto{overflow:auto!important}.lg\\:overflow-hidden{overflow:hidden!important}.lg\\:overflow-visible{overflow:visible!important}.lg\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-auto{overflow:auto!important}.xl\\:overflow-hidden{overflow:hidden!important}.xl\\:overflow-visible{overflow:visible!important}.xl\\:overflow-scroll{overflow:scroll!important}}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-x-auto{overflow-x:auto!important}.sm\\:overflow-x-hidden{overflow-x:hidden!important}.sm\\:overflow-x-visible{overflow-x:visible!important}.sm\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-x-auto{overflow-x:auto!important}.md\\:overflow-x-hidden{overflow-x:hidden!important}.md\\:overflow-x-visible{overflow-x:visible!important}.md\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-x-auto{overflow-x:auto!important}.lg\\:overflow-x-hidden{overflow-x:hidden!important}.lg\\:overflow-x-visible{overflow-x:visible!important}.lg\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-x-auto{overflow-x:auto!important}.xl\\:overflow-x-hidden{overflow-x:hidden!important}.xl\\:overflow-x-visible{overflow-x:visible!important}.xl\\:overflow-x-scroll{overflow-x:scroll!important}}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-y-auto{overflow-y:auto!important}.sm\\:overflow-y-hidden{overflow-y:hidden!important}.sm\\:overflow-y-visible{overflow-y:visible!important}.sm\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-y-auto{overflow-y:auto!important}.md\\:overflow-y-hidden{overflow-y:hidden!important}.md\\:overflow-y-visible{overflow-y:visible!important}.md\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-y-auto{overflow-y:auto!important}.lg\\:overflow-y-hidden{overflow-y:hidden!important}.lg\\:overflow-y-visible{overflow-y:visible!important}.lg\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-y-auto{overflow-y:auto!important}.xl\\:overflow-y-hidden{overflow-y:hidden!important}.xl\\:overflow-y-visible{overflow-y:visible!important}.xl\\:overflow-y-scroll{overflow-y:scroll!important}}.z-auto{z-index:auto!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}.z-4{z-index:4!important}.z-5{z-index:5!important}@media screen and (min-width: 576px){.sm\\:z-auto{z-index:auto!important}.sm\\:z-0{z-index:0!important}.sm\\:z-1{z-index:1!important}.sm\\:z-2{z-index:2!important}.sm\\:z-3{z-index:3!important}.sm\\:z-4{z-index:4!important}.sm\\:z-5{z-index:5!important}}@media screen and (min-width: 768px){.md\\:z-auto{z-index:auto!important}.md\\:z-0{z-index:0!important}.md\\:z-1{z-index:1!important}.md\\:z-2{z-index:2!important}.md\\:z-3{z-index:3!important}.md\\:z-4{z-index:4!important}.md\\:z-5{z-index:5!important}}@media screen and (min-width: 992px){.lg\\:z-auto{z-index:auto!important}.lg\\:z-0{z-index:0!important}.lg\\:z-1{z-index:1!important}.lg\\:z-2{z-index:2!important}.lg\\:z-3{z-index:3!important}.lg\\:z-4{z-index:4!important}.lg\\:z-5{z-index:5!important}}@media screen and (min-width: 1200px){.xl\\:z-auto{z-index:auto!important}.xl\\:z-0{z-index:0!important}.xl\\:z-1{z-index:1!important}.xl\\:z-2{z-index:2!important}.xl\\:z-3{z-index:3!important}.xl\\:z-4{z-index:4!important}.xl\\:z-5{z-index:5!important}}.bg-repeat{background-repeat:repeat!important}.bg-no-repeat{background-repeat:no-repeat!important}.bg-repeat-x{background-repeat:repeat-x!important}.bg-repeat-y{background-repeat:repeat-y!important}.bg-repeat-round{background-repeat:round!important}.bg-repeat-space{background-repeat:space!important}@media screen and (min-width: 576px){.sm\\:bg-repeat{background-repeat:repeat!important}.sm\\:bg-no-repeat{background-repeat:no-repeat!important}.sm\\:bg-repeat-x{background-repeat:repeat-x!important}.sm\\:bg-repeat-y{background-repeat:repeat-y!important}.sm\\:bg-repeat-round{background-repeat:round!important}.sm\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 768px){.md\\:bg-repeat{background-repeat:repeat!important}.md\\:bg-no-repeat{background-repeat:no-repeat!important}.md\\:bg-repeat-x{background-repeat:repeat-x!important}.md\\:bg-repeat-y{background-repeat:repeat-y!important}.md\\:bg-repeat-round{background-repeat:round!important}.md\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 992px){.lg\\:bg-repeat{background-repeat:repeat!important}.lg\\:bg-no-repeat{background-repeat:no-repeat!important}.lg\\:bg-repeat-x{background-repeat:repeat-x!important}.lg\\:bg-repeat-y{background-repeat:repeat-y!important}.lg\\:bg-repeat-round{background-repeat:round!important}.lg\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 1200px){.xl\\:bg-repeat{background-repeat:repeat!important}.xl\\:bg-no-repeat{background-repeat:no-repeat!important}.xl\\:bg-repeat-x{background-repeat:repeat-x!important}.xl\\:bg-repeat-y{background-repeat:repeat-y!important}.xl\\:bg-repeat-round{background-repeat:round!important}.xl\\:bg-repeat-space{background-repeat:space!important}}.bg-auto{background-size:auto!important}.bg-cover{background-size:cover!important}.bg-contain{background-size:contain!important}@media screen and (min-width: 576px){.sm\\:bg-auto{background-size:auto!important}.sm\\:bg-cover{background-size:cover!important}.sm\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 768px){.md\\:bg-auto{background-size:auto!important}.md\\:bg-cover{background-size:cover!important}.md\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 992px){.lg\\:bg-auto{background-size:auto!important}.lg\\:bg-cover{background-size:cover!important}.lg\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 1200px){.xl\\:bg-auto{background-size:auto!important}.xl\\:bg-cover{background-size:cover!important}.xl\\:bg-contain{background-size:contain!important}}.bg-bottom{background-position:bottom!important}.bg-center{background-position:center!important}.bg-left{background-position:left!important}.bg-left-bottom{background-position:left bottom!important}.bg-left-top{background-position:left top!important}.bg-right{background-position:right!important}.bg-right-bottom{background-position:right bottom!important}.bg-right-top{background-position:right top!important}.bg-top{background-position:top!important}@media screen and (min-width: 576px){.sm\\:bg-bottom{background-position:bottom!important}.sm\\:bg-center{background-position:center!important}.sm\\:bg-left{background-position:left!important}.sm\\:bg-left-bottom{background-position:left bottom!important}.sm\\:bg-left-top{background-position:left top!important}.sm\\:bg-right{background-position:right!important}.sm\\:bg-right-bottom{background-position:right bottom!important}.sm\\:bg-right-top{background-position:right top!important}.sm\\:bg-top{background-position:top!important}}@media screen and (min-width: 768px){.md\\:bg-bottom{background-position:bottom!important}.md\\:bg-center{background-position:center!important}.md\\:bg-left{background-position:left!important}.md\\:bg-left-bottom{background-position:left bottom!important}.md\\:bg-left-top{background-position:left top!important}.md\\:bg-right{background-position:right!important}.md\\:bg-right-bottom{background-position:right bottom!important}.md\\:bg-right-top{background-position:right top!important}.md\\:bg-top{background-position:top!important}}@media screen and (min-width: 992px){.lg\\:bg-bottom{background-position:bottom!important}.lg\\:bg-center{background-position:center!important}.lg\\:bg-left{background-position:left!important}.lg\\:bg-left-bottom{background-position:left bottom!important}.lg\\:bg-left-top{background-position:left top!important}.lg\\:bg-right{background-position:right!important}.lg\\:bg-right-bottom{background-position:right bottom!important}.lg\\:bg-right-top{background-position:right top!important}.lg\\:bg-top{background-position:top!important}}@media screen and (min-width: 1200px){.xl\\:bg-bottom{background-position:bottom!important}.xl\\:bg-center{background-position:center!important}.xl\\:bg-left{background-position:left!important}.xl\\:bg-left-bottom{background-position:left bottom!important}.xl\\:bg-left-top{background-position:left top!important}.xl\\:bg-right{background-position:right!important}.xl\\:bg-right-bottom{background-position:right bottom!important}.xl\\:bg-right-top{background-position:right top!important}.xl\\:bg-top{background-position:top!important}}.list-none{list-style:none!important}.list-disc{list-style:disc!important}.list-decimal{list-style:decimal!important}.appearance-none{-webkit-appearance:none!important;appearance:none!important}.outline-none{outline:none!important}.pointer-events-none{pointer-events:none!important}.pointer-events-auto{pointer-events:auto!important}.cursor-auto{cursor:auto!important}.cursor-pointer{cursor:pointer!important}.cursor-wait{cursor:wait!important}.cursor-move{cursor:move!important}.select-none{-webkit-user-select:none!important;user-select:none!important}.select-text{-webkit-user-select:text!important;user-select:text!important}.select-all{-webkit-user-select:all!important;user-select:all!important}.select-auto{-webkit-user-select:auto!important;user-select:auto!important}.opacity-0{opacity:0!important}.opacity-10{opacity:.1!important}.opacity-20{opacity:.2!important}.opacity-30{opacity:.3!important}.opacity-40{opacity:.4!important}.opacity-50{opacity:.5!important}.opacity-60{opacity:.6!important}.opacity-70{opacity:.7!important}.opacity-80{opacity:.8!important}.opacity-90{opacity:.9!important}.opacity-100{opacity:1!important}.reset{all:unset}.transition-none{transition-property:none!important}.transition-all{transition-property:all!important}.transition-colors{transition-property:background-color,border-color,color!important}.transition-transform{transition-property:transform!important}.transition-duration-100{transition-duration:.1s!important}.transition-duration-150{transition-duration:.15s!important}.transition-duration-200{transition-duration:.2s!important}.transition-duration-300{transition-duration:.3s!important}.transition-duration-400{transition-duration:.4s!important}.transition-duration-500{transition-duration:.5s!important}.transition-duration-1000{transition-duration:1s!important}.transition-duration-2000{transition-duration:2s!important}.transition-duration-3000{transition-duration:3s!important}.transition-linear{transition-timing-function:linear!important}.transition-ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)!important}.transition-ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.transition-ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.transition-delay-100{transition-delay:.1s!important}.transition-delay-150{transition-delay:.15s!important}.transition-delay-200{transition-delay:.2s!important}.transition-delay-300{transition-delay:.3s!important}.transition-delay-400{transition-delay:.4s!important}.transition-delay-500{transition-delay:.5s!important}.transition-delay-1000{transition-delay:1s!important}.translate-x-0{transform:translate(0)!important}.translate-x-100{transform:translate(100%)!important}.-translate-x-100{transform:translate(-100%)!important}.translate-y-0{transform:translateY(0)!important}.translate-y-100{transform:translateY(100%)!important}.-translate-y-100{transform:translateY(-100%)!important}@media screen and (min-width: 576px){.sm\\:translate-x-0{transform:translate(0)!important}.sm\\:translate-x-100{transform:translate(100%)!important}.sm\\:-translate-x-100{transform:translate(-100%)!important}.sm\\:translate-y-0{transform:translateY(0)!important}.sm\\:translate-y-100{transform:translateY(100%)!important}.sm\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 768px){.md\\:translate-x-0{transform:translate(0)!important}.md\\:translate-x-100{transform:translate(100%)!important}.md\\:-translate-x-100{transform:translate(-100%)!important}.md\\:translate-y-0{transform:translateY(0)!important}.md\\:translate-y-100{transform:translateY(100%)!important}.md\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 992px){.lg\\:translate-x-0{transform:translate(0)!important}.lg\\:translate-x-100{transform:translate(100%)!important}.lg\\:-translate-x-100{transform:translate(-100%)!important}.lg\\:translate-y-0{transform:translateY(0)!important}.lg\\:translate-y-100{transform:translateY(100%)!important}.lg\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 1200px){.xl\\:translate-x-0{transform:translate(0)!important}.xl\\:translate-x-100{transform:translate(100%)!important}.xl\\:-translate-x-100{transform:translate(-100%)!important}.xl\\:translate-y-0{transform:translateY(0)!important}.xl\\:translate-y-100{transform:translateY(100%)!important}.xl\\:-translate-y-100{transform:translateY(-100%)!important}}.rotate-45{transform:rotate(45deg)!important}.-rotate-45{transform:rotate(-45deg)!important}.rotate-90{transform:rotate(90deg)!important}.-rotate-90{transform:rotate(-90deg)!important}.rotate-180{transform:rotate(180deg)!important}.-rotate-180{transform:rotate(-180deg)!important}@media screen and (min-width: 576px){.sm\\:rotate-45{transform:rotate(45deg)!important}.sm\\:-rotate-45{transform:rotate(-45deg)!important}.sm\\:rotate-90{transform:rotate(90deg)!important}.sm\\:-rotate-90{transform:rotate(-90deg)!important}.sm\\:rotate-180{transform:rotate(180deg)!important}.sm\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 768px){.md\\:rotate-45{transform:rotate(45deg)!important}.md\\:-rotate-45{transform:rotate(-45deg)!important}.md\\:rotate-90{transform:rotate(90deg)!important}.md\\:-rotate-90{transform:rotate(-90deg)!important}.md\\:rotate-180{transform:rotate(180deg)!important}.md\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 992px){.lg\\:rotate-45{transform:rotate(45deg)!important}.lg\\:-rotate-45{transform:rotate(-45deg)!important}.lg\\:rotate-90{transform:rotate(90deg)!important}.lg\\:-rotate-90{transform:rotate(-90deg)!important}.lg\\:rotate-180{transform:rotate(180deg)!important}.lg\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 1200px){.xl\\:rotate-45{transform:rotate(45deg)!important}.xl\\:-rotate-45{transform:rotate(-45deg)!important}.xl\\:rotate-90{transform:rotate(90deg)!important}.xl\\:-rotate-90{transform:rotate(-90deg)!important}.xl\\:rotate-180{transform:rotate(180deg)!important}.xl\\:-rotate-180{transform:rotate(-180deg)!important}}.origin-center{transform-origin:center!important}.origin-top{transform-origin:top!important}.origin-top-right{transform-origin:top right!important}.origin-right{transform-origin:right!important}.origin-bottom-right{transform-origin:bottom right!important}.origin-bottom{transform-origin:bottom!important}.origin-bottom-left{transform-origin:bottom left!important}.origin-left{transform-origin:left!important}.origin-top-left{transform-origin:top-left!important}@media screen and (min-width: 576px){.sm\\:origin-center{transform-origin:center!important}.sm\\:origin-top{transform-origin:top!important}.sm\\:origin-top-right{transform-origin:top right!important}.sm\\:origin-right{transform-origin:right!important}.sm\\:origin-bottom-right{transform-origin:bottom right!important}.sm\\:origin-bottom{transform-origin:bottom!important}.sm\\:origin-bottom-left{transform-origin:bottom left!important}.sm\\:origin-left{transform-origin:left!important}.sm\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 768px){.md\\:origin-center{transform-origin:center!important}.md\\:origin-top{transform-origin:top!important}.md\\:origin-top-right{transform-origin:top right!important}.md\\:origin-right{transform-origin:right!important}.md\\:origin-bottom-right{transform-origin:bottom right!important}.md\\:origin-bottom{transform-origin:bottom!important}.md\\:origin-bottom-left{transform-origin:bottom left!important}.md\\:origin-left{transform-origin:left!important}.md\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 992px){.lg\\:origin-center{transform-origin:center!important}.lg\\:origin-top{transform-origin:top!important}.lg\\:origin-top-right{transform-origin:top right!important}.lg\\:origin-right{transform-origin:right!important}.lg\\:origin-bottom-right{transform-origin:bottom right!important}.lg\\:origin-bottom{transform-origin:bottom!important}.lg\\:origin-bottom-left{transform-origin:bottom left!important}.lg\\:origin-left{transform-origin:left!important}.lg\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 1200px){.xl\\:origin-center{transform-origin:center!important}.xl\\:origin-top{transform-origin:top!important}.xl\\:origin-top-right{transform-origin:top right!important}.xl\\:origin-right{transform-origin:right!important}.xl\\:origin-bottom-right{transform-origin:bottom right!important}.xl\\:origin-bottom{transform-origin:bottom!important}.xl\\:origin-bottom-left{transform-origin:bottom left!important}.xl\\:origin-left{transform-origin:left!important}.xl\\:origin-top-left{transform-origin:top-left!important}}@keyframes fadein{0%{opacity:0}to{opacity:1}}@keyframes fadeout{0%{opacity:1}to{opacity:0}}@keyframes scalein{0%{opacity:0;transform:scaleY(.8);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:scaleY(1)}}@keyframes slidedown{0%{max-height:0}to{max-height:auto}}@keyframes slideup{0%{max-height:1000px}to{max-height:0}}@keyframes fadeinleft{0%{opacity:0;transform:translate(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutleft{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(-100%)}}@keyframes fadeinright{0%{opacity:0;transform:translate(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutright{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(100%)}}@keyframes fadeinup{0%{opacity:0;transform:translateY(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutup{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(-100%)}}@keyframes fadeindown{0%{opacity:0;transform:translateY(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutdown{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(100%)}}@keyframes animate-width{0%{width:0}to{width:100%}}@keyframes flip{0%{transform:perspective(2000px) rotateX(-100deg)}to{transform:perspective(2000px) rotateX(0)}}@keyframes flipleft{0%{transform:perspective(2000px) rotateY(-100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipright{0%{transform:perspective(2000px) rotateY(100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipup{0%{transform:perspective(2000px) rotateX(-100deg);opacity:0}to{transform:perspective(2000px) rotateX(0);opacity:1}}@keyframes zoomin{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomindown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}}@keyframes zoominleft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0)}}@keyframes zoominright{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0)}}@keyframes zoominup{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}}.fadein{animation:fadein .15s linear}.fadeout{animation:fadeout .15s linear}.slidedown{animation:slidedown .45s ease-in-out}.slideup{animation:slideup .45s cubic-bezier(0,1,0,1)}.scalein{animation:scalein .15s linear}.fadeinleft{animation:fadeinleft .15s linear}.fadeoutleft{animation:fadeoutleft .15s linear}.fadeinright{animation:fadeinright .15s linear}.fadeoutright{animation:fadeoutright .15s linear}.fadeinup{animation:fadeinup .15s linear}.fadeoutup{animation:fadeoutup .15s linear}.fadeindown{animation:fadeindown .15s linear}.fadeoutdown{animation:fadeoutdown .15s linear}.animate-width{animation:animate-width 1s linear}.flip{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flip .15s linear}.flipup{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipup .15s linear}.flipleft{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipleft .15s linear}.flipright{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipright .15s linear}.zoomin{animation:zoomin .15s linear}.zoomindown{animation:zoomindown .15s linear}.zoominleft{animation:zoominleft .15s linear}.zoominright{animation:zoominright .15s linear}.zoominup{animation:zoominup .15s linear}.animation-duration-100{animation-duration:.1s!important}.animation-duration-150{animation-duration:.15s!important}.animation-duration-200{animation-duration:.2s!important}.animation-duration-300{animation-duration:.3s!important}.animation-duration-400{animation-duration:.4s!important}.animation-duration-500{animation-duration:.5s!important}.animation-duration-1000{animation-duration:1s!important}.animation-duration-2000{animation-duration:2s!important}.animation-duration-3000{animation-duration:3s!important}.animation-delay-100{animation-delay:.1s!important}.animation-delay-150{animation-delay:.15s!important}.animation-delay-200{animation-delay:.2s!important}.animation-delay-300{animation-delay:.3s!important}.animation-delay-400{animation-delay:.4s!important}.animation-delay-500{animation-delay:.5s!important}.animation-delay-1000{animation-delay:1s!important}.animation-iteration-1{animation-iteration-count:1!important}.animation-iteration-2{animation-iteration-count:2!important}.animation-iteration-infinite{animation-iteration-count:infinite!important}.animation-linear{animation-timing-function:linear!important}.animation-ease-in{animation-timing-function:cubic-bezier(.4,0,1,1)!important}.animation-ease-out{animation-timing-function:cubic-bezier(0,0,.2,1)!important}.animation-ease-in-out{animation-timing-function:cubic-bezier(.4,0,.2,1)!important}.animation-fill-none{animation-fill-mode:none!important}.animation-fill-forwards{animation-fill-mode:forwards!important}.animation-fill-backwards{animation-fill-mode:backwards!important}.animation-fill-both{animation-fill-mode:both!important}:host ::ng-deep w-image-file-uploader,:host ::ng-deep .w-image-file-uploader,:host ::ng-deep .w-image-file-button .p-fileupload,:host ::ng-deep .p-fileupload,:host ::ng-deep .w-image-file-uploader-gallery,:host ::ng-deep p-galleriacontent{display:block;height:100%}::ng-deep .p-fileupload-content{display:flex;flex-direction:column;height:100%}::ng-deep .p-galleria.p-component{max-width:100%;height:100%}::ng-deep .p-galleria-content{display:flex;flex-direction:column;height:100%}::ng-deep p-galleriaitem{height:100%}::ng-deep .p-galleria-item-wrapper{display:flex;flex-direction:column;position:relative;height:100%}::ng-deep .p-galleria-item-container{position:relative;display:flex;height:100%}::ng-deep .p-galleria-item{display:flex;justify-content:center;align-items:center;height:100%;width:100%}.wapp-file-upload-button-remove{top:-10px;right:-10px;display:none}.wapp-file-upload-button{visibility:hidden}.w-image-file-uploader-delete-button{position:absolute;top:0%;left:0%}.w-image-file-uploader-hide-move-button{visibility:hidden}::ng-deep .w-image-file-uploader-gallery p-galleriacontent .p-galleria .p-galleria-content p-galleriaitem .p-galleria-item-wrapper .p-galleria-item-container .p-galleria-item-prev.p-disabled{visibility:hidden}::ng-deep .w-image-file-uploader-gallery p-galleriacontent .p-galleria .p-galleria-content p-galleriaitem .p-galleria-item-wrapper .p-galleria-item-container .p-galleria-item-next.p-disabled{visibility:hidden}:host ::ng-deep .w-image-file-button .p-fileupload .p-fileupload-buttonbar{display:none}:host ::ng-deep .w-image-file-button .p-fileupload .p-fileupload-content{border:none!important;padding:0}:host ::ng-deep .w-image-file-uploader-delete-button-icon.w-button-text-small.p-button.p-button-icon-only .p-button-icon{font-size:16px}.w-image-file-uploader-move-buttons{position:absolute;bottom:0%;left:0%}:host ::ng-deep .w-button-text-small.p-button.p-button-icon-only .p-button-icon{color:#fff;filter:drop-shadow(1px 1px 16.9px rgba(0,0,0,.2)) drop-shadow(1px 1px 1px rgba(0,0,0,.6))}::ng-deep .p-galleria-item-prev-icon,::ng-deep .p-galleria-item-next-icon{filter:drop-shadow(1px 1px 16.9px rgba(0,0,0,.2)) drop-shadow(1px 1px 1px rgba(0,0,0,.6))}::ng-deep .p-galleria-item{border-radius:2px;background-color:#f8f9fa}.w-image-file-uploader-space-container{padding:24px 8px}.w-image-file-uploader-field-container-height{height:398px!important}.w-image-file-uploader-container-height{height:100%!important}.w-image-file-uploader-multi-action-button{align-items:center;justify-content:center;align-content:center;width:24px!important;height:24px!important;display:flex;flex-direction:row;border-radius:16px;cursor:pointer}.w-image-file-uploader-arrow{filter:drop-shadow(1px 1px 16.9px rgba(0,0,0,.2)) drop-shadow(1px 1px 1px rgba(0,0,0,.6))}.w-image-file-uploader-multi-images-index{text-shadow:1px 1px 16.9px rgba(0,0,0,.2),1px 1px 1px rgba(0,0,0,.6)}:host ::ng-deep .w-image-file-uploader-field .p-fileupload{border:1px solid #e8ebee;height:auto}:host ::ng-deep .w-image-file-uploader-field-no-image .p-fileupload{border:1px solid #e8ebee;height:398px}.w-image-file-uploader-field-img-container{width:280px;height:280px}.w-image-file-uploader-gallery-field{height:280px;display:block}\n"] }]
396
400
  }], ctorParameters: function () { return [{ type: i1.DialogService }, { type: i2.HttpClient }, { type: i3.ConfirmationService }]; }, propDecorators: { allowMultipleImages: [{
397
401
  type: Input,
398
402
  args: ['allowMultipleImages']
@@ -469,4 +473,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
469
473
  type: ViewChild,
470
474
  args: ['fileUploadOnlyImage']
471
475
  }] } });
472
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidy1pbWFnZS1maWxlLXVwbG9hZGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dhcHAtY29tcG9uZW50cy9zcmMvbGliL2ZpbGUvdy1pbWFnZS1maWxlLXVwbG9hZGVyL3ctaW1hZ2UtZmlsZS11cGxvYWRlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93YXBwLWNvbXBvbmVudHMvc3JjL2xpYi9maWxlL3ctaW1hZ2UtZmlsZS11cGxvYWRlci93LWltYWdlLWZpbGUtdXBsb2FkZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsT0FBTyxFQUFpQixTQUFTLEVBQWMsWUFBWSxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQWEsU0FBUyxFQUFFLFlBQVksRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUd0SSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFHbEQsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sOENBQThDLENBQUM7Ozs7Ozs7Ozs7Ozs7QUFXdEYsTUFBTSxPQUFPLDJCQUEyQjtJQWdGdEMsWUFDVSxhQUE0QixFQUM1QixJQUFnQixFQUNoQixtQkFBd0M7UUFGeEMsa0JBQWEsR0FBYixhQUFhLENBQWU7UUFDNUIsU0FBSSxHQUFKLElBQUksQ0FBWTtRQUNoQix3QkFBbUIsR0FBbkIsbUJBQW1CLENBQXFCO1FBbEZwQix3QkFBbUIsR0FBWSxLQUFLLENBQUM7UUFDdkMsc0JBQWlCLEdBQVksS0FBSyxDQUFDO1FBQy9CLDBCQUFxQixHQUFVLEVBQUUsQ0FBQztRQU1qQywyQkFBc0IsR0FBWSxLQUFLLENBQUM7UUFDaEQsbUJBQWMsR0FBWSxLQUFLLENBQUM7UUFDakMsa0JBQWEsR0FBWSxLQUFLLENBQUM7UUFDdEIsc0JBQWlCLEdBQVcsSUFBSSxDQUFDO1FBQ3JCLHVCQUFrQixHQUFRLENBQUMsQ0FBQztRQUM3QyxzQkFBaUIsR0FBNkI7WUFDeEUsa0JBQWtCLEVBQUUsRUFBRTtZQUN0QixnQkFBZ0IsRUFBRSxTQUFTO1lBQzNCLFlBQVksRUFBRSxPQUFPO1lBQ3JCLFNBQVMsRUFBRSxLQUFLO1lBQ2hCLGlCQUFpQixFQUFFLEVBQUU7WUFDckIsaUJBQWlCLEVBQUUsRUFBRTtZQUNyQixpQkFBaUIsRUFBRSxFQUFFO1lBQ3JCLGtCQUFrQixFQUFFLEVBQUU7WUFDdEIscUJBQXFCLEVBQUUsRUFBRTtZQUN6QixzQkFBc0IsRUFBRSxFQUFFO1lBQzFCLHlCQUF5QixFQUFFLEVBQUU7WUFDN0IseUJBQXlCLEVBQUU7Z0JBQ3pCLGNBQWMsRUFBRSxLQUFLO2dCQUNyQixxQkFBcUIsRUFBRSxDQUFDLEdBQUMsQ0FBQztnQkFDMUIsZUFBZSxFQUFFLEdBQUc7Z0JBQ3BCLGVBQWUsRUFBRSxHQUFHO2FBQ3JCO1lBQ0QseUJBQXlCLEVBQUUsRUFBRTtZQUM3Qix3QkFBd0IsRUFBRSxFQUFFO1NBQzdCLENBQUE7UUFDNEIsdUJBQWtCLEdBQVksS0FBSyxDQUFDO1FBRzlDLGFBQVEsR0FBWSxLQUFLLENBQUM7UUFFakIscUJBQWdCLEdBQXNCLElBQUksWUFBWSxFQUFPLENBQUM7UUFDaEUsbUJBQWMsR0FBc0IsSUFBSSxZQUFZLEVBQU8sQ0FBQztRQUN6RCxzQkFBaUIsR0FBc0IsSUFBSSxZQUFZLEVBQU8sQ0FBQztRQUNuRSxrQkFBYSxHQUFzQixJQUFJLFlBQVksRUFBTyxDQUFDO1FBT3BGLHVCQUFrQixHQUFXLENBQUMsQ0FBQztRQUMvQixrQkFBYSxHQUFVLEVBQUUsQ0FBQztRQUMxQixpQkFBWSxHQUFXLFNBQVMsQ0FBQztRQUNqQyxrQkFBYSxHQUFXLFNBQVMsQ0FBQztRQUNsQyx1QkFBa0IsR0FBWSxLQUFLLENBQUM7UUFDcEMseUJBQW9CLEdBQVksS0FBSyxDQUFDO1FBQ3RDLHdCQUFtQixHQUFZLEtBQUssQ0FBQztRQUdyQyw2QkFBd0IsR0FBUSxJQUFJLENBQUM7UUFHckMsb0NBQStCLEdBQVU7WUFDdkM7Z0JBQ0UsVUFBVSxFQUFFLFFBQVE7Z0JBQ3BCLFVBQVUsRUFBRSxDQUFDO2dCQUNiLFNBQVMsRUFBRSxDQUFDO2FBQ2I7WUFDRDtnQkFDRSxVQUFVLEVBQUUsT0FBTztnQkFDbkIsVUFBVSxFQUFFLENBQUM7Z0JBQ2IsU0FBUyxFQUFFLENBQUM7YUFDYjtZQUNEO2dCQUNFLFVBQVUsRUFBRSxPQUFPO2dCQUNuQixVQUFVLEVBQUUsQ0FBQztnQkFDYixTQUFTLEVBQUUsQ0FBQzthQUNiO1NBQ0YsQ0FBQztJQU1BLENBQUM7SUFFSCxRQUFRO1FBQ04sSUFBSSxDQUFDLGVBQWUsR0FBRztZQUNyQixjQUFjLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLHlCQUF5QixDQUFDLGNBQWM7WUFDL0UscUJBQXFCLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLHlCQUF5QixDQUFDLHFCQUFxQjtZQUM3RixlQUFlLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLHlCQUF5QixDQUFDLGVBQWU7WUFDakYsZUFBZSxFQUFFLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyx5QkFBeUIsQ0FBQyxlQUFlO1lBQ2pGLFdBQVcsRUFBRSxJQUFJLENBQUMsaUJBQWlCLENBQUMsWUFBWTtTQUNqRCxDQUFBO1FBRUQsSUFBRyxJQUFJLENBQUMsaUJBQWlCLElBQUksS0FBSyxJQUFJLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUFDO1lBQzFFLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLEdBQUcsSUFBSSxDQUFDLHFCQUFxQixDQUFDLENBQUM7U0FDeEQ7SUFDSCxDQUFDO0lBRUQsWUFBWSxDQUFDLEdBQVEsRUFBRSxJQUFXO1FBQ2hDLElBQUcsT0FBTyxHQUFHLEtBQUssV0FBVyxFQUFFO1lBQzdCLE9BQU8sS0FBSyxDQUFDO1NBQ2Q7UUFFRCxJQUFJLE1BQU0sR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxDQUFBO1FBQzlCLElBQUcsTUFBTSxHQUFHLENBQUMsQ0FBQyxFQUFFO1lBQ1osT0FBTyxJQUFJLENBQUMsWUFBWSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUMsRUFBRSxNQUFNLENBQUMsQ0FBQyxFQUFFLElBQUksQ0FBQyxNQUFNLENBQUMsTUFBTSxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUM7U0FDckY7UUFDRCxPQUFPLEdBQUcsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUNuQixDQUFDO0lBRUQsd0JBQXdCLENBQUMsS0FBVTtRQUNqQyxJQUFJLENBQUMsaUJBQWlCLEdBQUcsS0FBSyxDQUFDLFlBQVksQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUMvQyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLGlCQUFpQixFQUFFLEtBQUssQ0FBQyxhQUFhLENBQUMsQ0FBQztJQUNyRSxDQUFDO0lBRUQsbUNBQW1DLENBQUMsS0FBVTtRQUM1QyxJQUFHLElBQUksQ0FBQyxpQkFBaUIsSUFBSSxJQUFJLEVBQUM7WUFDaEMsSUFBRyxJQUFJLENBQUMsd0JBQXdCLEVBQUM7Z0JBQy9CLElBQUksWUFBWSxHQUFlLENBQUMsRUFBQyxNQUFNLEVBQUUsSUFBSSxDQUFDLHdCQUF3QixDQUFDLE1BQU0sRUFBRSxJQUFJLEVBQUUsSUFBSSxDQUFDLHdCQUF3QixDQUFDLElBQUksRUFBQyxDQUFDLENBQUM7Z0JBRTFILElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxTQUFTLEVBQUUsWUFBWSxFQUFFLEVBQUUsT0FBTyxFQUFFLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxDQUFDLFNBQVMsQ0FBQztvQkFDaEYsSUFBSSxFQUFFLENBQUMsYUFBa0IsRUFBRSxFQUFFO3dCQUMzQixJQUFJLENBQUMsbUJBQW1CLENBQUMsS0FBSyxFQUFFLENBQUM7d0JBQ2pDLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUM7b0JBQzVDLENBQUM7b0JBQ0QsS0FBSyxFQUFFLENBQUMsS0FBSyxFQUFFLEVBQUU7d0JBQ2YsSUFBSSxDQUFDLG1CQUFtQixDQUFDLFNBQVMsR0FBRyxLQUFLLENBQUM7d0JBQzNDLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO29CQUNsQyxDQUFDO2lCQUNGLENBQUMsQ0FBQTthQUNIO1NBQ0Y7SUFDSCxDQUFDO0lBRUQscUJBQXFCLENBQUMsS0FBWSxFQUFFLElBQVM7UUFDM0MsS0FBSyxDQUFDLGVBQWUsRUFBRSxDQUFDO1FBQ3hCLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxLQUFLLEVBQUUsQ0FBQztRQUNqQyxJQUFJLENBQUMsaUJBQWlCLEdBQUcsSUFBSSxDQUFDO1FBQzlCLElBQUksQ0FBQyx3QkFBd0IsR0FBRyxJQUFJLENBQUM7UUFDckMsSUFBSSxDQUFDLGVBQWUsR0FBRyxJQUFJLENBQUM7UUFDNUIsSUFBSSxDQUFDLGlCQUFpQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUNwQyxDQUFDO0lBRUQsZUFBZSxDQUFDLEtBQVU7UUFDeEIsSUFBSSxXQUFXLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUN4QyxJQUFHLFdBQVcsR0FBRyxDQUFDLElBQUksV0FBVyxHQUFHLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxNQUFNLEVBQUM7WUFDcEUsTUFBTSxJQUFJLEdBQUcsSUFBSSxDQUFDLHFCQUFxQixDQUFDLFdBQVcsQ0FBQyxDQUFDO1lBQ3JELElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxXQUFXLENBQUMsR0FBRyxJQUFJLENBQUMscUJBQXFCLENBQUUsV0FBVyxHQUFHLENBQUMsQ0FBQyxDQUFDO1lBQ3ZGLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxXQUFXLEdBQUcsQ0FBQyxDQUFDLEdBQUcsSUFBSSxDQUFDO1lBRW5ELElBQUksQ0FBQyxxQkFBcUIsR0FBRyxDQUFDLElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsbUJBQW1CLENBQUMsSUFBSSxDQUFDLHFCQUFxQixDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQztZQUMvSSxJQUFJLENBQUMsa0JBQWtCLEdBQUcsV0FBVyxHQUFHLENBQUMsQ0FBQztZQUUxQyxJQUFHLElBQUksQ0FBQyxTQUFTLElBQUksU0FBUyxJQUFJLElBQUksQ0FBQyxrQkFBa0IsS0FBSyxDQUFDLEVBQUM7Z0JBQzlELElBQUksQ0FBQyxrQkFBa0IsR0FBRyxJQUFJLENBQUM7Z0JBQy9CLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLHFCQUFxQixDQUFDLENBQUM7YUFDOUM7aUJBQUssSUFBRyxJQUFJLENBQUMsaUJBQWlCLElBQUksSUFBSSxJQUFJLElBQUksQ0FBQyxTQUFTLElBQUksU0FBUyxFQUFDO2dCQUNyRSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxDQUFDO2FBQ3hEO2lCQUFJO2dCQUNILElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLDRCQUE0QixDQUFDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxDQUFDLENBQUM7YUFDNUY7U0FDRjtJQUNILENBQUM7SUFFRCxnQkFBZ0IsQ0FBQyxLQUFVO1FBQ3pCLElBQUksV0FBVyxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDeEMsSUFBRyxXQUFXLElBQUksQ0FBQyxJQUFJLFdBQVcsR0FBRyxJQUFJLENBQUMscUJBQXFCLENBQUMsTUFBTSxHQUFFLENBQUMsRUFBQztZQUN4RSxNQUFNLElBQUksR0FBRyxJQUFJLENBQUMscUJBQXFCLENBQUMsV0FBVyxDQUFDLENBQUM7WUFDckQsSUFBSSxDQUFDLHFCQUFxQixDQUFDLFdBQVcsQ0FBQyxHQUFHLElBQUksQ0FBQyxxQkFBcUIsQ0FBRSxXQUFXLEdBQUcsQ0FBQyxDQUFDLENBQUM7WUFDdkYsSUFBSSxDQUFDLHFCQUFxQixDQUFDLFdBQVcsR0FBRyxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUM7WUFFbkQsSUFBSSxDQUFDLHFCQUFxQixHQUFHLENBQUMsSUFBSSxDQUFDLHNCQUFzQixDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLHFCQUFxQixDQUFDO1lBQy9JLElBQUksQ0FBQyxrQkFBa0IsR0FBRyxXQUFXLEdBQUcsQ0FBQyxDQUFDO1lBRTFDLElBQUcsSUFBSSxDQUFDLFNBQVMsSUFBRSxTQUFTLElBQUksSUFBSSxDQUFDLGtCQUFrQixLQUFLLENBQUMsRUFBQztnQkFDNUQsSUFBSSxDQUFDLGtCQUFrQixHQUFHLElBQUksQ0FBQztnQkFDL0IsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUMsQ0FBQzthQUM5QztpQkFBSyxJQUFHLElBQUksQ0FBQyxpQkFBaUIsSUFBSSxJQUFJLElBQUksSUFBSSxDQUFDLFNBQVMsSUFBSSxTQUFTLEVBQUM7Z0JBQ3JFLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLHFCQUFxQixDQUFDLENBQUM7YUFDeEQ7aUJBQUk7Z0JBQ0gsSUFBSSxDQUFDLGlCQUFpQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsNEJBQTRCLENBQUMsSUFBSSxDQUFDLHFCQUFxQixDQUFDLENBQUMsQ0FBQzthQUM1RjtTQUNGO0lBQ0gsQ0FBQztJQUVELGtDQUFrQyxDQUFDLEtBQVc7UUFDNUMsSUFBRyxJQUFJLENBQUMsaUJBQWlCLElBQUksSUFBSSxFQUFDO1lBQ2hDLElBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUFDO2dCQUMvQixJQUFJLFlBQVksR0FBZSxJQUFJLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsQ0FBQztnQkFDdkUsSUFBSSxDQUFDLG9CQUFvQixHQUFHLElBQUksQ0FBQztnQkFFakMsSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFNBQVMsRUFBRSxZQUFZLEVBQUUsRUFBRSxPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLENBQUMsU0FBUyxDQUFDO29CQUNoRixJQUFJLEVBQUcsQ0FBQyxjQUFtQixFQUFFLEVBQUU7d0JBQzdCLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxJQUFJLENBQUMsR0FBRyxjQUFjLENBQUMsQ0FBQzt3QkFDbkQsSUFBSSxDQUFDLHFCQUFxQixHQUFHLENBQUMsR0FBRyxJQUFJLENBQUMscUJBQXFCLENBQUMsQ0FBQzt3QkFFN0QsSUFBRyxJQUFJLENBQUMscUJBQXFCLENBQUMsTUFBTSxJQUFJLENBQUMsRUFBQzs0QkFDeEMsSUFBSSxDQUFDLGtCQUFrQixHQUFHLENBQUMsQ0FBQzt5QkFDN0I7d0JBRUQsSUFBSSxDQUFDLGFBQWEsR0FBRyxFQUFFLENBQUM7d0JBQ3hCLElBQUksQ0FBQyxVQUFVLENBQUMsS0FBSyxFQUFFLENBQUM7d0JBRXhCLElBQUksQ0FBQyxxQkFBcUIsR0FBRyxJQUFJLENBQUMsc0JBQXNCLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLHFCQUFxQixDQUFDO3dCQUU3SSxJQUFHLElBQUksQ0FBQyxTQUFTLElBQUUsU0FBUyxJQUFJLElBQUksQ0FBQyxrQkFBa0IsS0FBSyxDQUFDLEVBQUM7NEJBQzVELElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLHFCQUFxQixDQUFDLENBQUM7eUJBQzlDOzZCQUFJOzRCQUNILElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLHFCQUFxQixDQUFDLENBQUM7eUJBQ3hEO3dCQUVELElBQUksQ0FBQyxvQkFBb0IsR0FBRyxLQUFLLENBQUM7b0JBQ3BDLENBQUM7b0JBQ0QsS0FBSyxFQUFFLENBQUMsS0FBSyxFQUFFLEVBQUU7d0JBQ2YsSUFBSSxDQUFDLG9CQUFvQixHQUFHLEtBQUssQ0FBQzt3QkFDbEMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7b0JBQ2xDLENBQUM7aUJBQ0YsQ0FBQyxDQUFBO2FBQ0g7U0FDRjtJQUNILENBQUM7SUFFRCx1QkFBdUIsQ0FBQyxLQUFVO1FBQ2hDLElBQUcsSUFBSSxDQUFDLG1CQUFtQixJQUFJLElBQUksRUFBQztZQUNsQyxLQUFLLENBQUMsWUFBWSxDQUFDLE9BQU8sQ0FBQyxDQUFDLElBQVMsRUFBRSxLQUFhLEVBQUUsRUFBRTtnQkFDdEQsSUFBSSxPQUFPLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsSUFBSSxJQUFJLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztnQkFDaEUsSUFBRyxLQUFLLENBQUMsWUFBWSxDQUFDLE1BQU0sSUFBSSxDQUFDLEVBQUM7b0JBQ2hDLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLEVBQUUsS0FBSyxDQUFDLGFBQWEsQ0FBQyxDQUFDO2lCQUNsRDtxQkFBSyxJQUFHLE9BQU8sSUFBSSxTQUFTLEVBQUM7b0JBQzVCLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLEVBQUUsS0FBSyxDQUFDLGFBQWEsQ0FBQyxDQUFDO2lCQUNsRDtZQUNILENBQUMsQ0FBQyxDQUFDO1NBQ0o7YUFBSTtZQUNILElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxLQUFLLENBQUMsWUFBWSxDQUFDLENBQUMsQ0FBQyxFQUFFLEtBQUssQ0FBQyxhQUFhLENBQUMsQ0FBQztTQUNuRTtJQUNILENBQUM7SUFFRCwyQkFBMkIsQ0FBQyxLQUFVLEVBQUUsS0FBVTtRQUNoRCxJQUFJLENBQUMsbUJBQW1CLENBQUMsT0FBTyxDQUFDO1lBQy9CLE1BQU0sRUFBRSxLQUFLLENBQUMsTUFBcUI7WUFDbkMsT0FBTyxFQUFFLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyx5QkFBeUI7WUFDekQsSUFBSSxFQUFFLDRCQUE0QjtZQUNsQyxXQUFXLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLHNCQUFzQjtZQUMxRCxNQUFNLEVBQUUsR0FBRyxFQUFFO2dCQUNYLElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxLQUFLLENBQUMsQ0FBQztZQUNyQyxDQUFDO1NBQ0YsQ0FBQyxDQUFBO0lBQ0osQ0FBQztJQUVELHFCQUFxQixDQUFDLEtBQVUsRUFBRSxJQUFVLEVBQUUsUUFBb0I7UUFDaEUsTUFBTSxLQUFLLEdBQUcsUUFBUSxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUM7UUFDM0MsUUFBUSxDQUFDLE1BQU0sQ0FBQyxLQUFLLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFDOUIsSUFBSSxDQUFDLGFBQWEsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUM7SUFDbkYsQ0FBQztJQUVELHNCQUFzQixDQUFDLEtBQVU7UUFDL0IsSUFBSSxDQUFDLG1CQUFtQixHQUFHLElBQUksQ0FBQztRQUNoQyxJQUFHLElBQUksQ0FBQyxpQkFBaUIsRUFBQztZQUN4QixJQUFJLGNBQWMsR0FBRyxJQUFJLENBQUMsU0FBUyxHQUFDLEdBQUcsR0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLENBQUM7WUFDdEUsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsY0FBYyxFQUFFLEVBQUMsT0FBTyxFQUFFLElBQUksQ0FBQyxPQUFPLEVBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQztnQkFDbEUsSUFBSSxFQUFFLEdBQUcsRUFBRTtvQkFDVCxJQUFJLENBQUMsZ0JBQWdCLENBQUMsS0FBSyxDQUFDLENBQUM7b0JBQzdCLElBQUksQ0FBQyxxQkFBcUIsR0FBRyxJQUFJLENBQUMscUJBQXFCLENBQUMsTUFBTSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsQ0FBQyxHQUFHLENBQUMsTUFBTSxLQUFLLEtBQUssQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsS0FBSyxLQUFLLENBQUMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLENBQUMsQ0FBQyxDQUFDO29CQUN4SyxJQUFJLENBQUMscUJBQXFCLEdBQUcsQ0FBQyxHQUFHLElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLG1CQUFtQixDQUFDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUMsQ0FBQztvQkFDbEosSUFBSSxDQUFDLG1CQUFtQixHQUFHLEtBQUssQ0FBQztvQkFDakMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsRUFBQyxZQUFZLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxJQUFJLENBQUMscUJBQXFCLEVBQUMsQ0FBQyxDQUFDO2dCQUNyRixDQUFDO2dCQUNELEtBQUssRUFBRSxDQUFDLEtBQUssRUFBRSxFQUFFO29CQUNmLElBQUksQ0FBQyxtQkFBbUIsR0FBRyxLQUFLLENBQUM7b0JBQ2pDLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO29CQUNoQyxJQUFJLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztnQkFDaEMsQ0FBQzthQUNGLENBQUMsQ0FBQTtTQUNIO2FBQUk7WUFDSCxJQUFJLENBQUMsZ0JBQWdCLENBQUMsS0FBSyxDQUFDLENBQUM7WUFDN0IsSUFBSSxDQUFDLHFCQUFxQixHQUFHLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxNQUFNLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxNQUFNLEtBQUssS0FBSyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxLQUFLLEtBQUssQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsQ0FBQyxDQUFDLENBQUM7WUFDeEssSUFBSSxDQUFDLHFCQUFxQixHQUFHLENBQUMsR0FBRyxJQUFJLENBQUMsc0JBQXNCLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLHFCQUFxQixDQUFDLENBQUM7WUFDbEosSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsRUFBQyxZQUFZLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxJQUFJLENBQUMscUJBQXFCLEVBQUMsQ0FBQyxDQUFDO1lBQ25GLElBQUksQ0FBQyxtQkFBbUIsR0FBRyxLQUFLLENBQUM7U0FDbEM7SUFDSCxDQUFDO0lBRUQsZ0JBQWdCLENBQUMsS0FBVTtRQUN6QixJQUFJLFVBQVUsR0FBRyxJQUFJLENBQUMscUJBQXFCLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxFQUFFO1lBQzFELElBQUcsQ0FBQyxHQUFHLENBQUMsTUFBTSxJQUFJLFNBQVMsQ0FBQyxFQUFDO2dCQUMzQixJQUFHLEdBQUcsQ0FBQyxNQUFNLElBQUksS0FBSyxDQUFDLE1BQU0sRUFBQztvQkFDNUIsT0FBTyxHQUFHLENBQUMsS0FBSyxDQUFDO2lCQUNsQjthQUNGO2lCQUFLLElBQUcsR0FBRyxDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxLQUFLLEtBQUssQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsRUFBQztnQkFDckUsT0FBTyxHQUFHLENBQUMsS0FBSyxDQUFDO2FBQ2xCO1lBQ0QsT0FBTyxDQUFDLENBQUMsQ0FBQztRQUNaLENBQUMsQ0FBQyxDQUFDO1FBRUgsSUFBRyxVQUFVLEdBQUMsQ0FBQyxJQUFJLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxNQUFNLEVBQUM7WUFDbkQsSUFBSSxDQUFDLGtCQUFrQixHQUFHLFVBQVUsR0FBQyxDQUFDLENBQUM7U0FDeEM7SUFDSCxDQUFDO0lBRUQsV0FBVyxDQUFDLGNBQXFCO1FBQy9CLElBQUksY0FBYyxHQUFHLElBQUksQ0FBQyxTQUFTLEdBQUcsR0FBRyxHQUFHLElBQUksQ0FBQyxrQkFBa0IsQ0FBQztRQUNwRSxJQUFJLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxjQUFjLEVBQUUsY0FBYyxFQUFFLEVBQUMsT0FBTyxFQUFFLElBQUksQ0FBQyxPQUFPLEVBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQztZQUMvRSxJQUFJLEVBQUUsQ0FBQyxhQUFrQixFQUFFLEVBQUU7Z0JBQzNCLElBQUksQ0FBQyxrQkFBa0IsR0FBRyxLQUFLLENBQUM7Z0JBQ2hDLElBQUksQ0FBQyxxQkFBcUIsR0FBRyxhQUFhLENBQUM7Z0JBQzNDLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLHFCQUFxQixDQUFDLENBQUM7WUFDekQsQ0FBQztTQUNGLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFRCxnQkFBZ0IsQ0FBQyxRQUFhLEVBQUUsS0FBVztRQUN6QyxNQUFNLEdBQUcsR0FBcUIsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsc0JBQXNCLEVBQUU7WUFDNUUsTUFBTSxFQUFFLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyx5QkFBeUIsRUFBRSxLQUFLLENBQUMsTUFBTTtZQUN0RSxLQUFLLEVBQUUsT0FBTztZQUNkLFlBQVksRUFBRSxFQUFDLFVBQVUsRUFBRSxNQUFNLEVBQUUsUUFBUSxFQUFFLE1BQU0sRUFBRSxnQkFBZ0IsRUFBRSxLQUFLLEVBQUM7WUFDN0UsSUFBSSxFQUFFLEVBQUMsU0FBUyxFQUFFLElBQUksQ0FBQyxlQUFlLEVBQUUsWUFBWSxFQUFFLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyx5QkFBeUIsRUFBRSxJQUFJLEVBQUUsUUFBUSxFQUFDO1lBQ3ZILFNBQVMsRUFBRSxJQUFJO1NBQ2hCLENBQUMsQ0FBQztRQUVILEdBQUcsQ0FBQyxPQUFPLENBQUMsU0FBUyxDQUFDLENBQUMsWUFBc0IsRUFBRSxFQUFFO1lBQy9DLElBQUcsWUFBWSxFQUFDO2dCQUNkLElBQUcsSUFBSSxDQUFDLG1CQUFtQixJQUFJLEtBQUssRUFBQztvQkFDbkMsSUFBSSxDQUFDLHdCQUF3QixHQUFHLFlBQVksQ0FBQztvQkFDN0MsSUFBSSxDQUFDLGlCQUFpQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyx3QkFBd0IsQ0FBQyxDQUFDLENBQUM7aUJBQ2pGO3FCQUFJO29CQUNILElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxDQUFDO29CQUV0QyxJQUFJLENBQUMsYUFBYSxHQUFHLENBQUMsSUFBSSxDQUFDLHNCQUFzQixJQUFJLElBQUksQ0FBQyxpQkFBaUIsSUFBSSxLQUFLLENBQUUsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLG1CQUFtQixDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQztvQkFFM0osSUFBRyxJQUFJLENBQUMsaUJBQWlCLElBQUksS0FBSyxFQUFDO3dCQUNqQyxJQUFJLENBQUMscUJBQXFCLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxDQUFDO3dCQUM5QyxJQUFJLENBQUMscUJBQXFCLEdBQUcsQ0FBQyxHQUFHLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxDQUFDO3dCQUU3RCxJQUFHLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxNQUFNLElBQUksQ0FBQyxFQUFDOzRCQUN4QyxJQUFJLENBQUMsa0JBQWtCLEdBQUcsQ0FBQyxDQUFDO3lCQUM3Qjt3QkFFRCxJQUFJLENBQUMsaUJBQWlCLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyw0QkFBNEIsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUMsQ0FBQztxQkFDcEY7eUJBQUk7d0JBQ0gsSUFBSSxDQUFDLGlCQUFpQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsNEJBQTRCLENBQUMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUMsQ0FBQyxDQUFDO3FCQUN6RztpQkFDRjthQUNGO2lCQUFJO2dCQUNILElBQUcsSUFBSSxDQUFDLG1CQUFtQixFQUFDO29CQUMxQixJQUFJLENBQUMsVUFBVSxDQUFDLE1BQU0sR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDO29CQUM3RixJQUFJLFFBQVEsR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLE1BQU0sQ0FBQztvQkFDdEMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxLQUFLLEVBQUUsQ0FBQztvQkFDeEIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxNQUFNLEdBQUcsUUFBUSxDQUFDO2lCQUNuQztxQkFBSTtvQkFDSCxJQUFJLENBQUMsaUJBQWlCLEdBQUcsSUFBSSxDQUFDO29CQUM5QixJQUFJLENBQUMsbUJBQW1CLENBQUMsS0FBSyxFQUFFLENBQUM7aUJBQ2xDO2FBQ0Y7WUFFRCxJQUFHLENBQUMsSUFBSSxDQUFDLGlCQUFpQixJQUFJLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLFNBQVMsSUFBSSxJQUFJLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsTUFBTSxJQUFJLElBQUksQ0FBQyxVQUFVLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxFQUFDO2dCQUNoSixJQUFJLENBQUMsa0NBQWtDLEVBQUUsQ0FBQzthQUMzQztRQUNILENBQUMsQ0FBQyxDQUFBO0lBQ0osQ0FBQztJQUVELGNBQWMsQ0FBQyxNQUFXO1FBQ3hCLElBQUcsS0FBSyxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMsSUFBSSxLQUFLLEVBQUM7WUFDaEMsT0FBUSxDQUFDO29CQUNQLE1BQU0sRUFBRSxNQUFNLENBQUMsTUFBTTtvQkFDckIsSUFBSSxFQUFFLE1BQU0sQ0FBQyxJQUFJO29CQUNqQixHQUFHLENBQUMsTUFBTSxDQUFDLFFBQVEsS0FBSyxTQUFTLElBQUksRUFBRSxRQUFRLEVBQUUsTUFBTSxDQUFDLFFBQVEsRUFBRSxDQUFDO2lCQUNwRSxDQUFDLENBQUE7U0FDSDtRQUVELE9BQU8sTUFBTSxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQVEsRUFBRSxFQUFFO1lBQzdCLE9BQVE7Z0JBQ04sTUFBTSxFQUFFLEdBQUcsQ0FBQyxNQUFNO2dCQUNsQixJQUFJLEVBQUUsR0FBRyxDQUFDLElBQUk7Z0JBQ2QsR0FBRyxDQUFDLEdBQUcsQ0FBQyxRQUFRLEtBQUssU0FBUyxJQUFJLEVBQUUsUUFBUSxFQUFFLEdBQUcsQ0FBQyxRQUFRLEVBQUUsQ0FBQzthQUM5RCxDQUFBO1FBQ0gsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRUQsNEJBQTRCLENBQUMsTUFBYTtRQUN4QyxPQUFPO1lBQ0wsUUFBUSxFQUNOLE1BQU0sQ0FBQyxNQUFNLENBQUMsQ0FBQyxHQUFHLEVBQUUsRUFBRSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsSUFBSSxTQUFTLENBQUM7WUFDbEUsU0FBUyxFQUNQLE1BQU0sQ0FBQyxNQUFNLENBQUMsQ0FBQyxHQUFHLEVBQUUsRUFBRSxDQUFDLEdBQUcsQ0FBQyxNQUFNLElBQUksU0FBUyxDQUFDO1NBQ2xELENBQUE7SUFDSCxDQUFDO0lBRUQsbUJBQW1CLENBQUMsV0FBa0I7UUFDcEMsV0FBVyxHQUFHLFdBQVcsQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLEVBQUUsS0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDO1lBQzdDLEdBQUcsR0FBRztZQUNOLFFBQVEsRUFBRSxLQUFLO1NBQ2hCLENBQUMsQ0FBQyxDQUFBO1FBRUgsT0FBTyxXQUFXLENBQUM7SUFDckIsQ0FBQztJQUVELGdCQUFnQixDQUFDLElBQVM7UUFDeEIsSUFBSSxDQUFDLHFCQUFxQixDQUFDLE9BQU8sRUFBRSxDQUFDLE9BQU8sQ0FBQyxTQUFTLENBQUMsRUFBRTtZQUNyRCxTQUFTLENBQUMsYUFBYSxDQUFDLEVBQUUsS0FBSyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUMsYUFBYSxDQUFDLEtBQUssQ0FBQyxPQUFPLEdBQUcsTUFBTSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUM7UUFDckcsQ0FBQyxDQUFDLENBQUE7SUFDSixDQUFDO0lBRUQsaUJBQWlCLENBQUMsSUFBUztRQUN6QixJQUFJLENBQUMscUJBQXFCLENBQUMsT0FBTyxFQUFFLENBQUMsT0FBTyxDQUFDLFNBQVMsQ0FBQyxFQUFFO1lBQ3JELFNBQVMsQ0FBQyxhQUFhLENBQUMsRUFBRSxLQUFLLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxhQUFhLENBQUMsS0FBSyxDQUFDLE9BQU8sR0FBRyxNQUFNLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQztRQUNyRyxDQUFDLENBQUMsQ0FBQTtJQUNKLENBQUM7SUFFRCxTQUFTLENBQUMsR0FBUTtRQUNoQixPQUFPLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDakQsQ0FBQztJQUVELHFCQUFxQjtRQUNuQixJQUFJLENBQUMsVUFBVSxDQUFDLE1BQU0sRUFBRSxDQUFDO0lBQzNCLENBQUM7SUFFRCwyQkFBMkI7UUFDekIsSUFBSSxDQUFDLG1CQUFtQixDQUFDLE1BQU0sRUFBRSxDQUFDO0lBQ3BDLENBQUM7SUFFRCxlQUFlO1FBQ2IsSUFBRyxJQUFJLENBQUMsa0JBQWtCLElBQUksSUFBSSxFQUFDO1lBQ2pDLE9BQU8scUNBQXFDLENBQUM7U0FDOUM7UUFDRCxPQUFPLCtCQUErQixDQUFDO0lBQ3pDLENBQUM7O3dIQTNhVSwyQkFBMkI7NEdBQTNCLDJCQUEyQixtM0JBRjNCLENBQUMsbUJBQW1CLENBQUMscVZDaEJsQyx1d1lBMkpBOzJGRHpJYSwyQkFBMkI7a0JBTnZDLFNBQVM7K0JBQ0UsdUJBQXVCLGFBR3RCLENBQUMsbUJBQW1CLENBQUM7K0pBR0YsbUJBQW1CO3NCQUFoRCxLQUFLO3VCQUFDLHFCQUFxQjtnQkFDQSxpQkFBaUI7c0JBQTVDLEtBQUs7dUJBQUMsbUJBQW1CO2dCQUNNLHFCQUFxQjtzQkFBcEQsS0FBSzt1QkFBQyx1QkFBdUI7Z0JBQ0osZUFBZTtzQkFBeEMsS0FBSzt1QkFBQyxpQkFBaUI7Z0JBQ0osU0FBUztzQkFBNUIsS0FBSzt1QkFBQyxXQUFXO2dCQUNFLFNBQVM7c0JBQTVCLEtBQUs7dUJBQUMsV0FBVztnQkFDRSxTQUFTO3NCQUE1QixLQUFLO3VCQUFDLFdBQVc7Z0JBQ0EsT0FBTztzQkFBeEIsS0FBSzt1QkFBQyxTQUFTO2dCQUNpQixzQkFBc0I7c0JBQXRELEtBQUs7dUJBQUMsd0JBQXdCO2dCQUNOLGNBQWM7c0JBQXRDLEtBQUs7dUJBQUMsZ0JBQWdCO2dCQUNDLGFBQWE7c0JBQXBDLEtBQUs7dUJBQUMsZUFBZTtnQkFDVyxpQkFBaUI7c0JBQWpELEtBQUs7dUJBQUMsd0JBQXdCO2dCQUNjLGtCQUFrQjtzQkFBOUQsS0FBSzt1QkFBQyxvQ0FBb0M7Z0JBQ2YsaUJBQWlCO3NCQUE1QyxLQUFLO3VCQUFDLG1CQUFtQjtnQkFxQkcsa0JBQWtCO3NCQUE5QyxLQUFLO3VCQUFDLG9CQUFvQjtnQkFDWCxLQUFLO3NCQUFwQixLQUFLO3VCQUFDLE9BQU87Z0JBQ0ksT0FBTztzQkFBeEIsS0FBSzt1QkFBQyxTQUFTO2dCQUNHLFFBQVE7c0JBQTFCLEtBQUs7dUJBQUMsVUFBVTtnQkFFVyxnQkFBZ0I7c0JBQTNDLE1BQU07dUJBQUMsa0JBQWtCO2dCQUNBLGNBQWM7c0JBQXZDLE1BQU07dUJBQUMsZ0JBQWdCO2dCQUNLLGlCQUFpQjtzQkFBN0MsTUFBTTt1QkFBQyxtQkFBbUI7Z0JBQ0YsYUFBYTtzQkFBckMsTUFBTTt1QkFBQyxlQUFlO2dCQUVFLFVBQVU7c0JBQWxDLFNBQVM7dUJBQUMsWUFBWTtnQkFFZ0IscUJBQXFCO3NCQUEzRCxZQUFZO3VCQUFDLHVCQUF1QjtnQkFDSCxtQkFBbUI7c0JBQXBELFNBQVM7dUJBQUMscUJBQXFCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSHR0cENsaWVudCwgSHR0cEhlYWRlcnMgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCc7XHJcbmltcG9ydCB7IEFmdGVyVmlld0luaXQsIENvbXBvbmVudCwgRWxlbWVudFJlZiwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT3V0cHV0LCBRdWVyeUxpc3QsIFZpZXdDaGlsZCwgVmlld0NoaWxkcmVuIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IFdJbWFnZUZpbGVVcGxvYWRlckNvbmZpZyB9IGZyb20gJy4uLy4uL3NoYXJlZC9tb2RlbHMvdy1pbWFnZS1maWxlLXVwbG9hZGVyLWNvbmZpZy5tb2RlbCc7XHJcbmltcG9ydCB7IEZpbGVVcGxvYWQgfSBmcm9tICdwcmltZW5nL2ZpbGV1cGxvYWQnO1xyXG5pbXBvcnQgeyBDb25maXJtYXRpb25TZXJ2aWNlIH0gZnJvbSAncHJpbWVuZy9hcGknO1xyXG5pbXBvcnQgeyBEaWFsb2dTZXJ2aWNlLCBEeW5hbWljRGlhbG9nUmVmIH0gZnJvbSAncHJpbWVuZy9keW5hbWljZGlhbG9nJztcclxuaW1wb3J0IHsgSW1hZ2VCNjQgfSBmcm9tICcuLi8uLi9zaGFyZWQvbW9kZWxzL2ltYWdlLWI2NC5tb2RlbCc7XHJcbmltcG9ydCB7IFdJbWFnZUNyb3BwZXJDb21wb25lbnQgfSBmcm9tICcuLi93LWltYWdlLWNyb3BwZXIvdy1pbWFnZS1jcm9wcGVyLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IFdJbWFnZUNyb3BwZXJEYXRhIH0gZnJvbSAnLi4vLi4vc2hhcmVkL21vZGVscy93LWltYWdlLWNyb3BwZXItZGF0YS5tb2RlbCc7XHJcbmltcG9ydCB7IFdGaWxlQjY0IH0gZnJvbSAnLi4vLi4vc2hhcmVkL21vZGVscy93LWZpbGUtYjY0Lm1vZGVsJztcclxuaW1wb3J0IHsgV0ljb25zQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vaWNvbnMvd2FwcGluZy1pY29ucy93LWljb25zLmNvbXBvbmVudCc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ3ctaW1hZ2UtZmlsZS11cGxvYWRlcicsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL3ctaW1hZ2UtZmlsZS11cGxvYWRlci5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vdy1pbWFnZS1maWxlLXVwbG9hZGVyLmNvbXBvbmVudC5zY3NzJ10sXHJcbiAgcHJvdmlkZXJzOiBbQ29uZmlybWF0aW9uU2VydmljZV1cclxufSlcclxuZXhwb3J0IGNsYXNzIFdJbWFnZUZpbGVVcGxvYWRlckNvbXBvbmVudCB7XHJcbiAgQElucHV0KCdhbGxvd011bHRpcGxlSW1hZ2VzJykgYWxsb3dNdWx0aXBsZUltYWdlczogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIEBJbnB1dCgnYWN0aXZlSW1hZ2VVcGxvYWQnKSBhY3RpdmVJbWFnZVVwbG9hZDogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIEBJbnB1dCgnaW1hZ2VzQWxyZWFkeVVwbG9hZGVkJykgaW1hZ2VzQWxyZWFkeVVwbG9hZGVkOiBhbnlbXSA9IFtdO1xyXG4gIEBJbnB1dCgnaW1hZ2VTaW5nbGVNb2RlJykgaW1hZ2VTaW5nbGVNb2RlOiBhbnk7XHJcbiAgQElucHV0KCd1cGxvYWRVcmwnKSB1cGxvYWRVcmwhOiBzdHJpbmc7XHJcbiAgQElucHV0KCd1cGRhdGVVcmwnKSB1cGRhdGVVcmwhOiBzdHJpbmc7XHJcbiAgQElucHV0KCdkZWxldGVVcmwnKSBkZWxldGVVcmwhOiBzdHJpbmc7XHJcbiAgQElucHV0KCdoZWFkZXJzJykgaGVhZGVycyE6IEh0dHBIZWFkZXJzO1xyXG4gIEBJbnB1dCgnYWN0aXZlUG9zaXRpb25Qcm9wZXJ0eScpIGFjdGl2ZVBvc2l0aW9uUHJvcGVydHk6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBASW5wdXQoJ3ZpZXdTaW5nbGVNb2RlJykgdmlld1NpbmdsZU1vZGU6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBASW5wdXQoJ3ZpZXdNdWx0aU1vZGUnKSB2aWV3TXVsdGlNb2RlOiBib29sZWFuID0gZmFsc2U7XHJcbiAgQElucHV0KCdpZGVudGlmaWNhdG9ySW1hZ2VOYW1lJykgaWRlbnRpZmljYXRvck5hbWU6IHN0cmluZyA9IFwiaWRcIjtcclxuICBASW5wdXQoJ2lkZW50aWZpY2F0b3JJbWFnZXNDb2xsZWN0aW9uVmFsdWUnKSBpZGVudGlmaWNhdG9yVmFsdWU6IGFueSA9IDA7XHJcbiAgQElucHV0KCdpbWFnZVVwbG9hZENvbmZpZycpIGltYWdlVXBsb2FkQ29uZmlnOiBXSW1hZ2VGaWxlVXBsb2FkZXJDb25maWcgPSB7IFxyXG4gICAgaW1hZ2VQcm9wZXJ0eU5hbWVzOiBbXSwgXHJcbiAgICBhY2NlcHRJbWFnZVR5cGVzOiBcImltYWdlLypcIiwgXHJcbiAgICBtYXhJbWFnZVNpemU6IDEwMDAwMDAsXHJcbiAgICBhbGxvd0F1dG86IGZhbHNlLCBcclxuICAgIHVwbG9hZEJ1dHRvbkxhYmVsOiBcIlwiLFxyXG4gICAgY2hvb3NlQnV0dG9uTGFiZWw6IFwiXCIsXHJcbiAgICBjYW5jZWxCdXR0b25MYWJlbDogXCJcIixcclxuICAgIGNvbnRlbnRIZWFkZXJMYWJlbDogXCJcIixcclxuICAgIGNvbnRlbnRTdWJoZWFkZXJMYWJlbDogXCJcIixcclxuICAgIGRlbGV0ZUltYWdlQnV0dG9uTGFiZWw6IFwiXCIsXHJcbiAgICBjcm9wcGVkRGlhbG9nVHJhbnNsYXRpb25zOiBcIlwiLFxyXG4gICAgY3JvcHBlZEltYWdlQ29uZmlndXJhdGlvbjoge1xyXG4gICAgICByb3VuZGVkQ3JvcHBlcjogZmFsc2UsXHJcbiAgICAgIGNvbmZpZ3VyZWRBc3BlY3RSYXRpbzogNC8zLFxyXG4gICAgICB2aWV3UG9ydFdpZHRoUHg6IDQwMCxcclxuICAgICAgdmlld1BvcnRIZWlodFB4OiA1MDBcclxuICAgIH0sXHJcbiAgICBjb25maXJtRGVsZXRlTWVzc2FnZUxhYmVsOiBcIlwiLFxyXG4gICAgY29uZmlybURlbGV0ZUJ1dHRvbkxhYmVsOiBcIlwiXHJcbiAgfVxyXG4gIEBJbnB1dCgnYWN0aXZlRmllbGRWZXJzaW9uJykgYWN0aXZlRmllbGRWZXJzaW9uOiBib29sZWFuID0gZmFsc2U7IFxyXG4gIEBJbnB1dCgnbGFiZWwnKSBsYWJlbCE6IHN0cmluZzsgXHJcbiAgQElucHV0KCd0b29sdGlwJykgdG9vbHRpcCE6IHN0cmluZzsgXHJcbiAgQElucHV0KCdyZXF1aXJlZCcpIHJlcXVpcmVkOiBib29sZWFuID0gZmFsc2U7IFxyXG5cclxuICBAT3V0cHV0KCdvblVwbG9hZEZpbmlzaGVkJykgb25VcGxvYWRGaW5pc2hlZDogRXZlbnRFbWl0dGVyPGFueT4gPSBuZXcgRXZlbnRFbWl0dGVyPGFueT4oKTtcclxuICBAT3V0cHV0KCdvbkVycm9ySGFuZGxlcicpIG9uRXJyb3JIYW5kbGVyOiBFdmVudEVtaXR0ZXI8YW55PiA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xyXG4gIEBPdXRwdXQoJ29uUmV0dXJuSW1hZ2VzQjY0Jykgb25SZXR1cm5JbWFnZXNCNjQ6IEV2ZW50RW1pdHRlcjxhbnk+ID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XHJcbiAgQE91dHB1dCgnb25EZWxldGVJbWFnZScpIG9uRGVsZXRlSW1hZ2U6IEV2ZW50RW1pdHRlcjxhbnk+ID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XHJcblxyXG4gIEBWaWV3Q2hpbGQoJ2ZpbGVVcGxvYWQnKSBmaWxlVXBsb2FkITogRmlsZVVwbG9hZDtcclxuICBcclxuICBAVmlld0NoaWxkcmVuKCdidXR0b25SZW1vdmVPbmx5SW1hZ2UnKSBidXR0b25SZW1vdmVPbmx5SW1hZ2UhOiBRdWVyeUxpc3Q8RWxlbWVudFJlZj47XHJcbiAgQFZpZXdDaGlsZCgnZmlsZVVwbG9hZE9ubHlJbWFnZScpIGZpbGV1cGxvYWRPbmx5SW1hZ2UhOiBGaWxlVXBsb2FkO1xyXG5cclxuICBhY3RpdmVJbmRleEdhbGxlcnk6IG51bWJlciA9IDA7IFxyXG4gIGNyb3BwZXJJbWFnZXM6IGFueVtdID0gW107XHJcbiAgZGVmYXVsdFdpZHRoOiBzdHJpbmcgPSBcInctMThyZW1cIjtcclxuICBkZWZhdWx0SGVpZ2h0OiBzdHJpbmcgPSBcImgtMThyZW1cIjtcclxuICBkaXNhYmxlTW92ZUJ1dHRvbnM6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBpc1VwbG9hZGluZ011bHRpTW9kZTogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIGlzRGVsZXRpbmdNdWx0aU1vZGU6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBcclxuICBvbmx5SW1hZ2VTZWxlY3RlZDogYW55O1xyXG4gIG9ubHlDcm9wcGVkSW1hZ2VTZWxlY3RlZDogYW55ID0gbnVsbDtcclxuICBcclxuICBkaW1lbnNpb25zSW5wdXQhOiBXSW1hZ2VDcm9wcGVyRGF0YTtcclxuICBjYXJvdXNlbEltYWdlc1Jlc3BvbnNpdmVPcHRpb25zOiBhbnlbXSA9IFtcclxuICAgIHtcclxuICAgICAgYnJlYWtwb2ludDogJzEwMjRweCcsXHJcbiAgICAgIG51bVZpc2libGU6IDQsXHJcbiAgICAgIG51bVNjcm9sbDogNFxyXG4gICAgfSxcclxuICAgIHtcclxuICAgICAgYnJlYWtwb2ludDogJzg1MHB4JyxcclxuICAgICAgbnVtVmlzaWJsZTogMixcclxuICAgICAgbnVtU2Nyb2xsOiAyXHJcbiAgICB9LFxyXG4gICAge1xyXG4gICAgICBicmVha3BvaW50OiAnNTYwcHgnLFxyXG4gICAgICBudW1WaXNpYmxlOiAxLFxyXG4gICAgICBudW1TY3JvbGw6IDFcclxuICAgIH1cclxuICBdO1xyXG5cclxuICBjb25zdHJ1Y3RvcihcclxuICAgIHByaXZhdGUgZGlhbG9nU2VydmljZTogRGlhbG9nU2VydmljZSwgXHJcbiAgICBwcml2YXRlIGh0dHA6IEh0dHBDbGllbnQsIFxyXG4gICAgcHJpdmF0ZSBjb25maXJtYXRpb25TZXJ2aWNlOiBDb25maXJtYXRpb25TZXJ2aWNlXHJcbiAgKXt9XHJcblxyXG4gIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gICAgdGhpcy5kaW1lbnNpb25zSW5wdXQgPSB7XHJcbiAgICAgIHJvdW5kZWRDcm9wcGVyOiB0aGlzLmltYWdlVXBsb2FkQ29uZmlnLmNyb3BwZWRJbWFnZUNvbmZpZ3VyYXRpb24ucm91bmRlZENyb3BwZXIsXHJcbiAgICAgIGNvbmZpZ3VyZWRBc3BlY3RSYXRpbzogdGhpcy5pbWFnZVVwbG9hZENvbmZpZy5jcm9wcGVkSW1hZ2VDb25maWd1cmF0aW9uLmNvbmZpZ3VyZWRBc3BlY3RSYXRpbyxcclxuICAgICAgdmlld1BvcnRXaWR0aFB4OiB0aGlzLmltYWdlVXBsb2FkQ29uZmlnLmNyb3BwZWRJbWFnZUNvbmZpZ3VyYXRpb24udmlld1BvcnRXaWR0aFB4LFxyXG4gICAgICB2aWV3UG9ydEhlaWh0UHg6IHRoaXMuaW1hZ2VVcGxvYWRDb25maWcuY3JvcHBlZEltYWdlQ29uZmlndXJhdGlvbi52aWV3UG9ydEhlaWh0UHgsXHJcbiAgICAgIG1heEZpbGVTaXplOiB0aGlzLmltYWdlVXBsb2FkQ29uZmlnLm1heEltYWdlU2l6ZVxyXG4gICAgfVxyXG5cclxuICAgIGlmKHRoaXMuYWN0aXZlSW1hZ2VVcGxvYWQgPT0gZmFsc2UgJiYgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQubGVuZ3RoID4gMCl7XHJcbiAgICAgIHRoaXMuY3JvcHBlckltYWdlcy5wdXNoKC4uLnRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkKTtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIHJlYWRQcm9wZXJ0eShvYmo6IGFueSwgcHJvcDpzdHJpbmcpOmFueSB7XHJcbiAgICBpZih0eXBlb2Ygb2JqID09PSAndW5kZWZpbmVkJykge1xyXG4gICAgICByZXR1cm4gZmFsc2U7XHJcbiAgICB9XHJcbiAgICBcclxuICAgIHZhciBfaW5kZXggPSBwcm9wLmluZGV4T2YoJy4nKVxyXG4gICAgaWYoX2luZGV4ID4gLTEpIHtcclxuICAgICAgICByZXR1cm4gdGhpcy5yZWFkUHJvcGVydHkob2JqW3Byb3Auc3Vic3RyaW5nKDAsIF9pbmRleCldLCBwcm9wLnN1YnN0cihfaW5kZXggKyAxKSk7XHJcbiAgICB9XHJcbiAgICByZXR1cm4gb2JqW3Byb3BdO1xyXG4gIH1cclxuXHJcbiAgb25DdXN0b21VcGxvYWRTaW5nbGVNb2RlKGV2ZW50OiBhbnkpe1xyXG4gICAgdGhpcy5vbmx5SW1hZ2VTZWxlY3RlZCA9IGV2ZW50LmN1cnJlbnRGaWxlc1swXTtcclxuICAgIHRoaXMub3Blbk1vZGFsQ3JvcHBlcih0aGlzLm9ubHlJbWFnZVNlbGVjdGVkLCBldmVudC5vcmlnaW5hbEV2ZW50KTtcclxuICB9XHJcblxyXG4gIG9uQ3VzdG9taXplVXBsb2FkRnVuY3Rpb25TaW5nbGVNb2RlKGV2ZW50OiBhbnkpe1xyXG4gICAgaWYodGhpcy5hY3RpdmVJbWFnZVVwbG9hZCA9PSB0cnVlKXtcclxuICAgICAgaWYodGhpcy5vbmx5Q3JvcHBlZEltYWdlU2VsZWN0ZWQpe1xyXG4gICAgICAgIGxldCBiYXNlNjRJbWFnZXM6IEltYWdlQjY0W10gPSBbe2Jhc2U2NDogdGhpcy5vbmx5Q3JvcHBlZEltYWdlU2VsZWN0ZWQuYmFzZTY0LCBuYW1lOiB0aGlzLm9ubHlDcm9wcGVkSW1hZ2VTZWxlY3RlZC5uYW1lfV07XHJcblxyXG4gICAgICAgIHRoaXMuaHR0cC5wb3N0KHRoaXMudXBsb2FkVXJsLCBiYXNlNjRJbWFnZXMsIHsgaGVhZGVyczogdGhpcy5oZWFkZXJzIH0pLnN1YnNjcmliZSh7XHJcbiAgICAgICAgICBuZXh0OiAoaW1hZ2VVcGxvYWRlZDogYW55KSA9PiB7XHJcbiAgICAgICAgICAgIHRoaXMuZmlsZXVwbG9hZE9ubHlJbWFnZS5jbGVhcigpO1xyXG4gICAgICAgICAgICB0aGlzLm9uVXBsb2FkRmluaXNoZWQuZW1pdChpbWFnZVVwbG9hZGVkKTtcclxuICAgICAgICAgIH0sXHJcbiAgICAgICAgICBlcnJvcjogKGVycm9yKSA9PiB7XHJcbiAgICAgICAgICAgIHRoaXMuZmlsZXVwbG9hZE9ubHlJbWFnZS51cGxvYWRpbmcgPSBmYWxzZTtcclxuICAgICAgICAgICAgdGhpcy5vbkVycm9ySGFuZGxlci5lbWl0KGVycm9yKTtcclxuICAgICAgICAgIH1cclxuICAgICAgICB9KVxyXG4gICAgICB9XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICByZW1vdmVJbWFnZVNpbmdsZU1vZGUoZXZlbnQ6IEV2ZW50LCBmaWxlOiBhbnkpIHtcclxuICAgIGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpO1xyXG4gICAgdGhpcy5maWxldXBsb2FkT25seUltYWdlLmNsZWFyKCk7XHJcbiAgICB0aGlzLm9ubHlJbWFnZVNlbGVjdGVkID0gbnVsbDtcclxuICAgIHRoaXMub25seUNyb3BwZWRJbWFnZVNlbGVjdGVkID0gbnVsbDtcclxuICAgIHRoaXMuaW1hZ2VTaW5nbGVNb2RlID0gbnVsbDtcclxuICAgIHRoaXMub25SZXR1cm5JbWFnZXNCNjQuZW1pdChudWxsKTtcclxuICB9XHJcblxyXG4gIG1vdmVJbWFnZVRvTGVmdChldmVudDogYW55KXtcclxuICAgIGxldCBpbmRleFRvTW92ZSA9IHRoaXMuZmluZEluZGV4KGV2ZW50KTtcclxuICAgIGlmKGluZGV4VG9Nb3ZlID4gMCAmJiBpbmRleFRvTW92ZSA8IHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkLmxlbmd0aCl7XHJcbiAgICAgIGNvbnN0IHRlbXAgPSB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZFtpbmRleFRvTW92ZV07XHJcbiAgICAgIHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkW2luZGV4VG9Nb3ZlXSA9IHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkWyBpbmRleFRvTW92ZSAtIDFdO1xyXG4gICAgICB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZFtpbmRleFRvTW92ZSAtIDFdID0gdGVtcDtcclxuXHJcbiAgICAgIHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkID0gKHRoaXMuYWN0aXZlUG9zaXRpb25Qcm9wZXJ0eSkgPyB0aGlzLmFkZFBvc2l0aW9uUHJvcGVydHkodGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQpIDogdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQ7XHJcbiAgICAgIHRoaXMuYWN0aXZlSW5kZXhHYWxsZXJ5ID0gaW5kZXhUb01vdmUgLSAxO1xyXG4gICAgICBcclxuICAgICAgaWYodGhpcy51cGxvYWRVcmwgIT0gdW5kZWZpbmVkICYmIHRoaXMuaWRlbnRpZmljYXRvclZhbHVlICE9PSAwKXtcclxuICAgICAgICB0aGlzLmRpc2FibGVNb3ZlQnV0dG9ucyA9IHRydWU7XHJcbiAgICAgICAgdGhpcy51cGRhdGVJbWFnZSh0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZCk7XHJcbiAgICAgIH1lbHNlIGlmKHRoaXMuYWN0aXZlSW1hZ2VVcGxvYWQgPT0gdHJ1ZSAmJiB0aGlzLnVwbG9hZFVybCAhPSB1bmRlZmluZWQpe1xyXG4gICAgICAgIHRoaXMub25VcGxvYWRGaW5pc2hlZC5lbWl0KHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkKTtcclxuICAgICAgfWVsc2V7XHJcbiAgICAgICAgdGhpcy5vblJldHVybkltYWdlc0I2NC5lbWl0KHRoaXMuZ2V0QXJyYXlzVG9DcmVhdGVBbmRUb1VwZGF0ZSh0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZCkpO1xyXG4gICAgICB9XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBtb3ZlSW1hZ2VUb1JpZ2h0KGV2ZW50OiBhbnkpeyAgXHJcbiAgICBsZXQgaW5kZXhUb01vdmUgPSB0aGlzLmZpbmRJbmRleChldmVudCk7XHJcbiAgICBpZihpbmRleFRvTW92ZSA+PSAwICYmIGluZGV4VG9Nb3ZlIDwgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQubGVuZ3RoIC0xKXtcclxuICAgICAgY29uc3QgdGVtcCA9IHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkW2luZGV4VG9Nb3ZlXTtcclxuICAgICAgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWRbaW5kZXhUb01vdmVdID0gdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWRbIGluZGV4VG9Nb3ZlICsgMV07XHJcbiAgICAgIHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkW2luZGV4VG9Nb3ZlICsgMV0gPSB0ZW1wO1xyXG5cclxuICAgICAgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQgPSAodGhpcy5hY3RpdmVQb3NpdGlvblByb3BlcnR5KSA/IHRoaXMuYWRkUG9zaXRpb25Qcm9wZXJ0eSh0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZCkgOiB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZDtcclxuICAgICAgdGhpcy5hY3RpdmVJbmRleEdhbGxlcnkgPSBpbmRleFRvTW92ZSArIDE7IFxyXG5cclxuICAgICAgaWYodGhpcy51cGxvYWRVcmwhPXVuZGVmaW5lZCAmJiB0aGlzLmlkZW50aWZpY2F0b3JWYWx1ZSAhPT0gMCl7XHJcbiAgICAgICAgdGhpcy5kaXNhYmxlTW92ZUJ1dHRvbnMgPSB0cnVlOyBcclxuICAgICAgICB0aGlzLnVwZGF0ZUltYWdlKHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkKTtcclxuICAgICAgfWVsc2UgaWYodGhpcy5hY3RpdmVJbWFnZVVwbG9hZCA9PSB0cnVlICYmIHRoaXMudXBsb2FkVXJsICE9IHVuZGVmaW5lZCl7XHJcbiAgICAgICAgdGhpcy5vblVwbG9hZEZpbmlzaGVkLmVtaXQodGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQpO1xyXG4gICAgICB9ZWxzZXtcclxuICAgICAgICB0aGlzLm9uUmV0dXJuSW1hZ2VzQjY0LmVtaXQodGhpcy5nZXRBcnJheXNUb0NyZWF0ZUFuZFRvVXBkYXRlKHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkKSk7XHJcbiAgICAgIH1cclxuICAgIH1cclxuICB9XHJcblxyXG4gIG9uQ3VzdG9taXplVXBsb2FkRnVuY3Rpb25NdWx0aU1vZGUoZXZlbnQ/OiBhbnkpe1xyXG4gICAgaWYodGhpcy5hY3RpdmVJbWFnZVVwbG9hZCA9PSB0cnVlKXtcclxuICAgICAgaWYodGhpcy5jcm9wcGVySW1hZ2VzLmxlbmd0aCA+IDApe1xyXG4gICAgICAgIGxldCBiYXNlNjRJbWFnZXM6IEltYWdlQjY0W10gPSB0aGlzLm1hcFRvT2JqZWN0QjY0KHRoaXMuY3JvcHBlckltYWdlcyk7XHJcbiAgICAgICAgdGhpcy5pc1VwbG9hZGluZ011bHRpTW9kZSA9IHRydWU7XHJcblxyXG4gICAgICAgIHRoaXMuaHR0cC5wb3N0KHRoaXMudXBsb2FkVXJsLCBiYXNlNjRJbWFnZXMsIHsgaGVhZGVyczogdGhpcy5oZWFkZXJzIH0pLnN1YnNjcmliZSh7XHJcbiAgICAgICAgICBuZXh0OiAgKGltYWdlc1VwbG9hZGVkOiBhbnkpID0+IHtcclxuICAgICAgICAgICAgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQucHVzaCguLi5pbWFnZXNVcGxvYWRlZCk7XHJcbiAgICAgICAgICAgIHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkID0gWy4uLnRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkXTtcclxuICAgICAgICAgIFxyXG4gICAgICAgICAgICBpZih0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZC5sZW5ndGggPT0gMSl7XHJcbiAgICAgICAgICAgICAgdGhpcy5hY3RpdmVJbmRleEdhbGxlcnkgPSAwOyBcclxuICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICBcclxuICAgICAgICAgICAgdGhpcy5jcm9wcGVySW1hZ2VzID0gW107XHJcbiAgICAgICAgICAgIHRoaXMuZmlsZVVwbG9hZC5jbGVhcigpO1xyXG5cclxuICAgICAgICAgICAgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQgPSB0aGlzLmFjdGl2ZVBvc2l0aW9uUHJvcGVydHkgPyB0aGlzLmFkZFBvc2l0aW9uUHJvcGVydHkodGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQpIDogdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQ7XHJcbiAgICAgICAgICAgIFxyXG4gICAgICAgICAgICBpZih0aGlzLnVwbG9hZFVybCE9dW5kZWZpbmVkICYmIHRoaXMuaWRlbnRpZmljYXRvclZhbHVlICE9PSAwKXtcclxuICAgICAgICAgICAgICB0aGlzLnVwZGF0ZUltYWdlKHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkKTtcclxuICAgICAgICAgICAgfWVsc2V7XHJcbiAgICAgICAgICAgICAgdGhpcy5vblVwbG9hZEZpbmlzaGVkLmVtaXQodGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQpO1xyXG4gICAgICAgICAgICB9XHJcblxyXG4gICAgICAgICAgICB0aGlzLmlzVXBsb2FkaW5nTXVsdGlNb2RlID0gZmFsc2U7XHJcbiAgICAgICAgICB9LFxyXG4gICAgICAgICAgZXJyb3I6IChlcnJvcikgPT4ge1xyXG4gICAgICAgICAgICB0aGlzLmlzVXBsb2FkaW5nTXVsdGlNb2RlID0gZmFsc2U7XHJcbiAgICAgICAgICAgIHRoaXMub25FcnJvckhhbmRsZXIuZW1pdChlcnJvcik7XHJcbiAgICAgICAgICB9XHJcbiAgICAgICAgfSlcclxuICAgICAgfVxyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgb25DdXN0b21VcGxvYWRNdWx0aU1vZGUoZXZlbnQ6IGFueSl7XHJcbiAgICBpZih0aGlzLmFsbG93TXVsdGlwbGVJbWFnZXMgPT0gdHJ1ZSl7XHJcbiAgICAgIGV2ZW50LmN1cnJlbnRGaWxlcy5mb3JFYWNoKChmaWxlOiBhbnksIGluZGV4OiBudW1iZXIpID0+IHtcclxuICAgICAgICBsZXQgZm91bmRJdCA9IHRoaXMuY3JvcHBlckltYWdlcy5maW5kKGYgPT4gZi5uYW1lID09IGZpbGUubmFtZSk7XHJcbiAgICAgICAgaWYoZXZlbnQuY3VycmVudEZpbGVzLmxlbmd0aCA9PSAwKXtcclxuICAgICAgICAgIHRoaXMub3Blbk1vZGFsQ3JvcHBlcihmaWxlLCBldmVudC5vcmlnaW5hbEV2ZW50KTtcclxuICAgICAgICB9ZWxzZSBpZihmb3VuZEl0ID09IHVuZGVmaW5lZCl7XHJcbiAgICAgICAgICB0aGlzLm9wZW5Nb2RhbENyb3BwZXIoZmlsZSwgZXZlbnQub3JpZ2luYWxFdmVudCk7XHJcbiAgICAgICAgfVxyXG4gICAgICB9KTtcclxuICAgIH1lbHNle1xyXG4gICAgICB0aGlzLm9wZW5Nb2RhbENyb3BwZXIoZXZlbnQuY3VycmVudEZpbGVzWzBdLCBldmVudC5vcmlnaW5hbEV2ZW50KTtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIGNvbmZpcm1EZWxldGVJbWFnZU11bHRpTW9kZShldmVudDogYW55LCBpbWFnZTogYW55KXtcclxuICAgIHRoaXMuY29uZmlybWF0aW9uU2VydmljZS5jb25maXJtKHtcclxuICAgICAgdGFyZ2V0OiBldmVudC50YXJnZXQgYXMgRXZlbnRUYXJnZXQsIFxyXG4gICAgICBtZXNzYWdlOiB0aGlzLmltYWdlVXBsb2FkQ29uZmlnLmNvbmZpcm1EZWxldGVNZXNzYWdlTGFiZWwsXHJcbiAgICAgIGljb246IFwicGkgcGktZXhjbGFtYXRpb24tdHJpYW5nbGVcIixcclxuICAgICAgYWNjZXB0TGFiZWw6IHRoaXMuaW1hZ2VVcGxvYWRDb25maWcuZGVsZXRlSW1hZ2VCdXR0b25MYWJlbCwgXHJcbiAgICAgIGFjY2VwdDogKCkgPT4ge1xyXG4gICAgICAgIHRoaXMub25EZWxldGVJbWFnZU11bHRpTW9kZShpbWFnZSk7XHJcbiAgICAgIH1cclxuICAgIH0pXHJcbiAgfVxyXG5cclxuICBvbkRlbGV0ZUZpbGVNdWx0aU1vZGUoZXZlbnQ6IGFueSwgZmlsZTogRmlsZSwgdXBsb2FkZXI6IEZpbGVVcGxvYWQpe1xyXG4gICAgY29uc3QgaW5kZXggPSB1cGxvYWRlci5maWxlcy5pbmRleE9mKGZpbGUpO1xyXG4gICAgdXBsb2FkZXIucmVtb3ZlKGV2ZW50LCBpbmRleCk7XHJcbiAgICB0aGlzLmNyb3BwZXJJbWFnZXMgPSB0aGlzLmNyb3BwZXJJbWFnZXMuZmlsdGVyKHMgPT4gIWZpbGUubmFtZS5pbmNsdWRlcyhzLm5hbWUpKTtcclxuICB9XHJcblxyXG4gIG9uRGVsZXRlSW1hZ2VNdWx0aU1vZGUoaW1hZ2U6IGFueSl7XHJcbiAgICB0aGlzLmlzRGVsZXRpbmdNdWx0aU1vZGUgPSB0cnVlO1xyXG4gICAgaWYodGhpcy5hY3RpdmVJbWFnZVVwbG9hZCl7XHJcbiAgICAgIGxldCBkZWxldGVVcmxGaW5hbCA9IHRoaXMuZGVsZXRlVXJsK1wiL1wiK2ltYWdlW3RoaXMuaWRlbnRpZmljYXRvck5hbWVdO1xyXG4gICAgICB0aGlzLmh0dHAuZGVsZXRlKGRlbGV0ZVVybEZpbmFsLCB7aGVhZGVyczogdGhpcy5oZWFkZXJzfSkuc3Vic2NyaWJlKHtcclxuICAgICAgICBuZXh0OiAoKSA9PiB7XHJcbiAgICAgICAgICB0aGlzLmdldEluZGV4VG9EZWxldGUoaW1hZ2UpOyBcclxuICAgICAgICAgIHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkID0gdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQuZmlsdGVyKGltZyA9PiAoaW1nLmJhc2U2NCAhPT0gaW1hZ2UuYmFzZTY0KSB8fCAoaW1nW3RoaXMuaWRlbnRpZmljYXRvck5hbWVdICE9PSBpbWFnZVt0aGlzLmlkZW50aWZpY2F0b3JOYW1lXSkpO1xyXG4gICAgICAgICAgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQgPSBbLi4udGhpcy5hY3RpdmVQb3NpdGlvblByb3BlcnR5ID8gdGhpcy5hZGRQb3NpdGlvblByb3BlcnR5KHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkKSA6IHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkXTtcclxuICAgICAgICAgIHRoaXMuaXNEZWxldGluZ011bHRpTW9kZSA9IGZhbHNlO1xyXG4gICAgICAgICAgdGhpcy5vbkRlbGV0ZUltYWdlLmVtaXQoe2RlbGV0ZWRJbWFnZTogaW1hZ2UsIGltYWdlczogdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWR9KTtcclxuICAgICAgICB9LFxyXG4gICAgICAgIGVycm9yOiAoZXJyb3IpID0+IHtcclxuICAgICAgICAgIHRoaXMuaXNEZWxldGluZ011bHRpTW9kZSA9IGZhbHNlO1xyXG4gICAgICAgICAgdGhpcy5vbkVycm9ySGFuZGxlci5lbWl0KGVycm9yKTtcclxuICAgICAgICAgIHRoaXMub25EZWxldGVJbWFnZS5lbWl0KG51bGwpO1xyXG4gICAgICAgIH1cclxuICAgICAgfSlcclxuICAgIH1lbHNle1xyXG4gICAgICB0aGlzLmdldEluZGV4VG9EZWxldGUoaW1hZ2UpOyBcclxuICAgICAgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQgPSB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZC5maWx0ZXIoaW1nID0+IChpbWcuYmFzZTY0ICE9PSBpbWFnZS5iYXNlNjQpIHx8IChpbWdbdGhpcy5pZGVudGlmaWNhdG9yTmFtZV0gIT09IGltYWdlW3RoaXMuaWRlbnRpZmljYXRvck5hbWVdKSk7XHJcbiAgICAgIHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkID0gWy4uLnRoaXMuYWN0aXZlUG9zaXRpb25Qcm9wZXJ0eSA/IHRoaXMuYWRkUG9zaXRpb25Qcm9wZXJ0eSh0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZCkgOiB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZF07XHJcbiAgICAgIHRoaXMub25EZWxldGVJbWFnZS5lbWl0KHtkZWxldGVkSW1hZ2U6IGltYWdlLCBpbWFnZXM6IHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkfSk7XHJcbiAgICAgIHRoaXMuaXNEZWxldGluZ011bHRpTW9kZSA9IGZhbHNlO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgZ2V0SW5kZXhUb0RlbGV0ZShpbWFnZTogYW55KXtcclxuICAgIGxldCBpbWFnZUluZGV4ID0gdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQuZmluZEluZGV4KGltZyA9PiB7XHJcbiAgICAgIGlmKChpbWcuYmFzZTY0ICE9IHVuZGVmaW5lZCkpe1xyXG4gICAgICAgIGlmKGltZy5iYXNlNjQgPT0gaW1hZ2UuYmFzZTY0KXtcclxuICAgICAgICAgIHJldHVybiBpbWcuaW5kZXg7IFxyXG4gICAgICAgIH1cclxuICAgICAgfWVsc2UgaWYoaW1nW3RoaXMuaWRlbnRpZmljYXRvck5hbWVdICE9PSBpbWFnZVt0aGlzLmlkZW50aWZpY2F0b3JOYW1lXSl7XHJcbiAgICAgICAgcmV0dXJuIGltZy5pbmRleDsgXHJcbiAgICAgIH1cclxuICAgICAgcmV0dXJuIC0xOyBcclxuICAgIH0pO1xyXG5cclxuICAgIGlmKGltYWdlSW5kZXgrMSA9PSB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZC5sZW5ndGgpe1xyXG4gICAgICB0aGlzLmFjdGl2ZUluZGV4R2FsbGVyeSA9IGltYWdlSW5kZXgtMTsgXHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICB1cGRhdGVJbWFnZShpbWFnZXNUb1VwZGF0ZTogYW55W10pOiBhbnl7XHJcbiAgICBsZXQgdXBkYXRlVXJsRmluYWwgPSB0aGlzLnVwZGF0ZVVybCArIFwiL1wiICsgdGhpcy5pZGVudGlmaWNhdG9yVmFsdWU7XHJcbiAgICB0aGlzLmh0dHAucHV0KHVwZGF0ZVVybEZpbmFsLCBpbWFnZXNUb1VwZGF0ZSwge2hlYWRlcnM6IHRoaXMuaGVhZGVyc30pLnN1YnNjcmliZSh7XHJcbiAgICAgIG5leHQ6IChpbWFnZXNVcGRhdGVkOiBhbnkpID0+IHtcclxuICAgICAgICB0aGlzLmRpc2FibGVNb3ZlQnV0dG9ucyA9IGZhbHNlO1xyXG4gICAgICAgIHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkID0gaW1hZ2VzVXBkYXRlZDtcclxuICAgICAgICB0aGlzLm9uVXBsb2FkRmluaXNoZWQuZW1pdCh0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZCk7XHJcbiAgICAgIH1cclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgb3Blbk1vZGFsQ3JvcHBlcihmaWxlQmxvYjogYW55LCBldmVudD86IGFueSl7XHJcbiAgICBjb25zdCByZWY6IER5bmFtaWNEaWFsb2dSZWYgPSB0aGlzLmRpYWxvZ1NlcnZpY2Uub3BlbihXSW1hZ2VDcm9wcGVyQ29tcG9uZW50LCB7XHJcbiAgICAgIGhlYWRlcjogdGhpcy5pbWFnZVVwbG9hZENvbmZpZy5jcm9wcGVkRGlhbG9nVHJhbnNsYXRpb25zPy5tb2RhbC5oZWFkZXIsXHJcbiAgICAgIHdpZHRoOiAnNzByZW0nLFxyXG4gICAgICBjb250ZW50U3R5bGU6IHtcIm92ZXJmbG93XCI6IFwiYXV0b1wiLCBcImhlaWdodFwiOiBcImF1dG9cIiwgXCJwYWRkaW5nLWJvdHRvbVwiOiBcIjhweFwifSxcclxuICAgICAgZGF0YToge2RhdGFNb2RhbDogdGhpcy5kaW1lbnNpb25zSW5wdXQsIHRyYW5zbGF0aW9uczogdGhpcy5pbWFnZVVwbG9hZENvbmZpZy5jcm9wcGVkRGlhbG9nVHJhbnNsYXRpb25zLCBibG9iOiBmaWxlQmxvYn0sXHJcbiAgICAgIHJlc2l6YWJsZTogdHJ1ZVxyXG4gICAgfSk7XHJcblxyXG4gICAgcmVmLm9uQ2xvc2Uuc3Vic2NyaWJlKChpbWFnZUNyb3BwZWQ6IFdGaWxlQjY0KSA9PiB7XHJcbiAgICAgIGlmKGltYWdlQ3JvcHBlZCl7XHJcbiAgICAgICAgaWYodGhpcy5hbGxvd011bHRpcGxlSW1hZ2VzID09IGZhbHNlKXtcclxuICAgICAgICAgIHRoaXMub25seUNyb3BwZWRJbWFnZVNlbGVjdGVkID0gaW1hZ2VDcm9wcGVkO1xyXG4gICAgICAgICAgdGhpcy5vblJldHVybkltYWdlc0I2NC5lbWl0KHRoaXMubWFwVG9PYmplY3RCNjQodGhpcy5vbmx5Q3JvcHBlZEltYWdlU2VsZWN0ZWQpKTtcclxuICAgICAgICB9ZWxzZXtcclxuICAgICAgICAgIHRoaXMuY3JvcHBlckltYWdlcy5wdXNoKGltYWdlQ3JvcHBlZCk7XHJcbiAgICAgICAgICBcclxuICAgICAgICAgIHRoaXMuY3JvcHBlckltYWdlcyA9ICh0aGlzLmFjdGl2ZVBvc2l0aW9uUHJvcGVydHkgJiYgdGhpcy5hY3RpdmVJbWFnZVVwbG9hZCA9PSBmYWxzZSApID8gdGhpcy5hZGRQb3NpdGlvblByb3BlcnR5KHRoaXMuY3JvcHBlckltYWdlcykgOiB0aGlzLmNyb3BwZXJJbWFnZXM7XHJcblxyXG4gICAgICAgICAgaWYodGhpcy5hY3RpdmVJbWFnZVVwbG9hZCA9PSBmYWxzZSl7XHJcbiAgICAgICAgICAgIHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkLnB1c2goaW1hZ2VDcm9wcGVkKTtcclxuICAgICAgICAgICAgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQgPSBbLi4udGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWRdO1xyXG5cclxuICAgICAgICAgICAgaWYodGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQubGVuZ3RoID09IDEpe1xyXG4gICAgICAgICAgICAgIHRoaXMuYWN0aXZlSW5kZXhHYWxsZXJ5ID0gMDsgXHJcbiAgICAgICAgICAgIH1cclxuXHJcbiAgICAgICAgICAgIHRoaXMub25SZXR1cm5JbWFnZXNCNjQuZW1pdCh0aGlzLmdldEFycmF5c1RvQ3JlYXRlQW5kVG9VcGRhdGUodGhpcy5jcm9wcGVySW1hZ2VzKSk7XHJcbiAgICAgICAgICB9ZWxzZXtcclxuICAgICAgICAgICAgdGhpcy5vblJldHVybkltYWdlc0I2NC5lbWl0KHRoaXMuZ2V0QXJyYXlzVG9DcmVhdGVBbmRUb1VwZGF0ZSh0aGlzLm1hcFRvT2JqZWN0QjY0KHRoaXMuY3JvcHBlckltYWdlcykpKTtcclxuICAgICAgICAgIH1cclxuICAgICAgICB9XHJcbiAgICAgIH1lbHNle1xyXG4gICAgICAgIGlmKHRoaXMuYWxsb3dNdWx0aXBsZUltYWdlcyl7XHJcbiAgICAgICAgICB0aGlzLmZpbGVVcGxvYWQuX2ZpbGVzID0gdGhpcy5maWxlVXBsb2FkLl9maWxlcy5maWx0ZXIoZiA9PiAhZi5uYW1lLmluY2x1ZGVzKGZpbGVCbG9iLm5hbWUpKTtcclxuICAgICAgICAgIGxldCBmaWxlc0F1eCA9IHRoaXMuZmlsZVVwbG9hZC5fZmlsZXM7XHJcbiAgICAgICAgICB0aGlzLmZpbGVVcGxvYWQuY2xlYXIoKTtcclxuICAgICAgICAgIHRoaXMuZmlsZVVwbG9hZC5fZmlsZXMgPSBmaWxlc0F1eDtcclxuICAgICAgICB9ZWxzZXtcclxuICAgICAgICAgIHRoaXMub25seUltYWdlU2VsZWN0ZWQgPSBudWxsO1xyXG4gICAgICAgICAgdGhpcy5maWxldXBsb2FkT25seUltYWdlLmNsZWFyKCk7XHJcbiAgICAgICAgfVxyXG4gICAgICB9XHJcblxyXG4gICAgICBpZigodGhpcy5hY3RpdmVJbWFnZVVwbG9hZCA9PSB0cnVlKSAmJiAodGhpcy5pbWFnZVVwbG9hZENvbmZpZy5hbGxvd0F1dG8gPT0gdHJ1ZSkgJiYgKHRoaXMuY3JvcHBlckltYWdlcy5sZW5ndGggPT0gdGhpcy5maWxlVXBsb2FkLl9maWxlcy5sZW5ndGgpKXtcclxuICAgICAgICB0aGlzLm9uQ3VzdG9taXplVXBsb2FkRnVuY3Rpb25NdWx0aU1vZGUoKTtcclxuICAgICAgfVxyXG4gICAgfSlcclxuICB9XHJcblxyXG4gIG1hcFRvT2JqZWN0QjY0KGltYWdlczogYW55KTogSW1hZ2VCNjRbXXtcclxuICAgIGlmKEFycmF5LmlzQXJyYXkoaW1hZ2VzKSA9PSBmYWxzZSl7XHJcbiAgICAgIHJldHVybiAgW3tcclxuICAgICAgICBiYXNlNjQ6IGltYWdlcy5iYXNlNjQsXHJcbiAgICAgICAgbmFtZTogaW1hZ2VzLm5hbWUsXHJcbiAgICAgICAgLi4uKGltYWdlcy5wb3NpdGlvbiAhPT0gdW5kZWZpbmVkICYmIHsgcG9zaXRpb246IGltYWdlcy5wb3NpdGlvbiB9KVxyXG4gICAgICB9XVxyXG4gICAgfVxyXG5cclxuICAgIHJldHVybiBpbWFnZXMubWFwKChpbWc6IGFueSkgPT4ge1xyXG4gICAgICByZXR1cm4gIHtcclxuICAgICAgICBiYXNlNjQ6IGltZy5iYXNlNjQsXHJcbiAgICAgICAgbmFtZTogaW1nLm5hbWUsIFxyXG4gICAgICAgIC4uLihpbWcucG9zaXRpb24gIT09IHVuZGVmaW5lZCAmJiB7IHBvc2l0aW9uOiBpbWcucG9zaXRpb24gfSlcclxuICAgICAgfVxyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICBnZXRBcnJheXNUb0NyZWF0ZUFuZFRvVXBkYXRlKGltYWdlczogYW55W10pe1xyXG4gICAgcmV0dXJuIHtcclxuICAgICAgdG9DcmVhdGU6IFxyXG4gICAgICAgIGltYWdlcy5maWx0ZXIoKGltZykgPT4gaW1nW3RoaXMuaWRlbnRpZmljYXRvck5hbWVdID09IHVuZGVmaW5lZCksXHJcbiAgICAgIHRvVXBkYXRlZDogXHJcbiAgICAgICAgaW1hZ2VzLmZpbHRlcigoaW1nKSA9PiBpbWcuYmFzZTY0ID09IHVuZGVmaW5lZClcclxuICAgIH1cclxuICB9XHJcblxyXG4gIGFkZFBvc2l0aW9uUHJvcGVydHkoaW1hZ2VzQXJyYXk6IGFueVtdKXtcclxuICAgIGltYWdlc0FycmF5ID0gaW1hZ2VzQXJyYXkubWFwKChpbWcsIGluZGV4KSA9PiAoe1xyXG4gICAgICAuLi5pbWcsXHJcbiAgICAgIHBvc2l0aW9uOiBpbmRleFxyXG4gICAgfSkpXHJcblxyXG4gICAgcmV0dXJuIGltYWdlc0FycmF5O1xyXG4gIH1cclxuXHJcbiAgb25JbWFnZU1vdXNlT3ZlcihmaWxlOiBhbnkpIHtcclxuICAgIHRoaXMuYnV0dG9uUmVtb3ZlT25seUltYWdlLnRvQXJyYXkoKS5mb3JFYWNoKGJ0blJlbW92ZSA9PiB7XHJcbiAgICAgICAgYnRuUmVtb3ZlLm5hdGl2ZUVsZW1lbnQuaWQgPT09IGZpbGUubmFtZSA/IGJ0blJlbW92ZS5uYXRpdmVFbGVtZW50LnN0eWxlLmRpc3BsYXkgPSAnZmxleCcgOiBudWxsO1xyXG4gICAgfSlcclxuICB9XHJcblxyXG4gIG9uSW1hZ2VNb3VzZUxlYXZlKGZpbGU6IGFueSkge1xyXG4gICAgdGhpcy5idXR0b25SZW1vdmVPbmx5SW1hZ2UudG9BcnJheSgpLmZvckVhY2goYnRuUmVtb3ZlID0+IHtcclxuICAgICAgICBidG5SZW1vdmUubmF0aXZlRWxlbWVudC5pZCA9PT0gZmlsZS5uYW1lID8gYnRuUmVtb3ZlLm5hdGl2ZUVsZW1lbnQuc3R5bGUuZGlzcGxheSA9ICdub25lJyA6IG51bGw7XHJcbiAgICB9KVxyXG4gIH1cclxuXHJcbiAgZmluZEluZGV4KGltZzogYW55KXtcclxuICAgIHJldHVybiB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZC5pbmRleE9mKGltZyk7XHJcbiAgfVxyXG5cclxuICBvcGVuSW1hZ2VGaWxlU2VsZWN0b3IoKXtcclxuICAgIHRoaXMuZmlsZVVwbG9hZC5jaG9vc2UoKTsgXHJcbiAgfVxyXG5cclxuICBvcGVuU2luZ2xlSW1hZ2VGaWxlU2VsZWN0b3IoKXtcclxuICAgIHRoaXMuZmlsZXVwbG9hZE9ubHlJbWFnZS5jaG9vc2UoKTsgXHJcbiAgfSAgXHJcblxyXG4gIGdldEdhbGxlcnlDbGFzcygpe1xyXG4gICAgaWYodGhpcy5hY3RpdmVGaWVsZFZlcnNpb24gPT0gdHJ1ZSl7XHJcbiAgICAgIHJldHVybiAndy1pbWFnZS1maWxlLXVwbG9hZGVyLWdhbGxlcnktZmllbGQnOyBcclxuICAgIH1cclxuICAgIHJldHVybiAndy1pbWFnZS1maWxlLXVwbG9hZGVyLWdhbGxlcnknOyBcclxuICB9XHJcbn1cclxuIiwiXHJcbjx3LWlucHV0LWxhYmVsICpuZ0lmPVwiYWN0aXZlRmllbGRWZXJzaW9uID09IHRydWVcIiBbbGFiZWxdPVwibGFiZWxcIiBbdG9vbHRpcF09XCJ0b29sdGlwXCIgW3JlcXVpcmVkXT1cInJlcXVpcmVkXCI+PC93LWlucHV0LWxhYmVsPlxyXG48ZGl2ICpuZ0lmPVwiYWN0aXZlRmllbGRWZXJzaW9uID09IHRydWUgJiYgKGxhYmVsICE9IHVuZGVmaW5lZCAmJiBsYWJlbC5sZW5ndGggPiAwKVwiIGNsYXNzPVwiaW5wdXQtbGFiZWwtZ2FwLWRpdmlkZXJcIj48L2Rpdj5cclxuPHAtZmlsZVVwbG9hZCAqbmdJZj1cImFsbG93TXVsdGlwbGVJbWFnZXMgPT0gZmFsc2U7IGVsc2Ugd2l0aENhcm91c2VsXCIgI2ZpbGVVcGxvYWRPbmx5SW1hZ2UgY2xhc3M9XCJ3LWltYWdlLWZpbGUtYnV0dG9uXCIgXHJcbiAgICBbbmdDbGFzc109XCJ7J3ctaW1hZ2UtZmlsZS11cGxvYWRlcicgOiBhY3RpdmVGaWVsZFZlcnNpb24gPT0gZmFsc2UsIFxyXG4gICAgICAgICAgICAgICAgJ3ctaW1hZ2UtZmlsZS11cGxvYWRlci1maWVsZCcgOiBhY3RpdmVGaWVsZFZlcnNpb24gPT0gdHJ1ZSwgXHJcbiAgICAgICAgICAgICAgICAndy1pbWFnZS1maWxlLXVwbG9hZGVyLWZpZWxkLW5vLWltYWdlJyA6IGFjdGl2ZUZpZWxkVmVyc2lvbiA9PSB0cnVlICYmIChvbmx5Q3JvcHBlZEltYWdlU2VsZWN0ZWQgPT0gbnVsbCB8fCB1bmRlZmluZWQgKSAmJiAoaW1hZ2VTaW5nbGVNb2RlID09IG51bGwgfHwgdW5kZWZpbmVkKX1cIlxyXG4gICAgbW9kZT1cImFkdmFuY2VkXCIgIFxyXG4gICAgW2FjY2VwdF09XCJpbWFnZVVwbG9hZENvbmZpZy5hY2NlcHRJbWFnZVR5cGVzXCIgXHJcbiAgICBbbXVsdGlwbGVdPVwiZmFsc2VcIiBcclxuICAgIChvblNlbGVjdCk9XCJvbkN1c3RvbVVwbG9hZFNpbmdsZU1vZGUoJGV2ZW50KVwiIFxyXG4gICAgW3VwbG9hZExhYmVsXT1cIm9ubHlDcm9wcGVkSW1hZ2VTZWxlY3RlZCA/IChvbmx5Q3JvcHBlZEltYWdlU2VsZWN0ZWQubmFtZS5sZW5ndGg+Nik/IChvbmx5Q3JvcHBlZEltYWdlU2VsZWN0ZWQubmFtZSB8IHNsaWNlOjA6NikrJy4uLic6KG9ubHlDcm9wcGVkSW1hZ2VTZWxlY3RlZC5uYW1lKSA6ICcnXCIgXHJcbiAgICBbY3VzdG9tVXBsb2FkXT1cInRydWVcIiBcclxuICAgICh1cGxvYWRIYW5kbGVyKT1cIm9uQ3VzdG9taXplVXBsb2FkRnVuY3Rpb25TaW5nbGVNb2RlKCRldmVudClcIiBcclxuICAgIFttYXhGaWxlU2l6ZV09XCJpbWFnZVVwbG9hZENvbmZpZy5tYXhJbWFnZVNpemVcIj5cclxuICAgIDxuZy10ZW1wbGF0ZSBsZXQtZmlsZSBsZXQtaT1cImluZGV4XCIgcFRlbXBsYXRlPSdmaWxlJz5cclxuICAgICAgICA8ZGl2ICpuZ0lmPVwiYWN0aXZlSW1hZ2VVcGxvYWRcIj48L2Rpdj5cclxuICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiY29udGVudFwiPlxyXG4gICAgICAgIDxwLXByb2dyZXNzQmFyICpuZ0lmPVwiZmFsc2VcIj48L3AtcHJvZ3Jlc3NCYXI+XHJcbiAgICAgICAgPGRpdiAqbmdJZj1cIihvbmx5Q3JvcHBlZEltYWdlU2VsZWN0ZWQgIT0gbnVsbCB8fCB1bmRlZmluZWQpIHx8IChpbWFnZVNpbmdsZU1vZGUgIT0gbnVsbCB8fCB1bmRlZmluZWQpXCIgc3R5bGU9XCJmbGV4LWdyb3c6IDE7XCI+XHJcbiAgICAgICAgICAgIDxwLWdhbGxlcmlhIFxyXG4gICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwiZ2V0R2FsbGVyeUNsYXNzKClcIiBcclxuICAgICAgICAgICAgICAgIFt2YWx1ZV09XCIob25seUNyb3BwZWRJbWFnZVNlbGVjdGVkICE9PSBudWxsKSA/IFtvbmx5Q3JvcHBlZEltYWdlU2VsZWN0ZWQuZmlsZUJhc2U2NF0gOiAoaW1hZ2VVcGxvYWRDb25maWcuc2luZ2xlTW9kZUltYWdlRGVmYXVsdCA/IFtpbWFnZVVwbG9hZENvbmZpZy5zaW5nbGVNb2RlSW1hZ2VEZWZhdWx0XSA6IChpbWFnZVNpbmdsZU1vZGUgPyBbaW1hZ2VTaW5nbGVNb2RlXSA6IFsnaHR0cHM6Ly93YXBwaW5nc3RvcmFnZWRldi5ibG9iLmNvcmUud2luZG93cy5uZXQvd2FwcGluZy9hcHByZXNvdXJjZXMvaWNfaW1hZ2VfYmx1ZS5wbmcnXSkpXCIgXHJcbiAgICAgICAgICAgICAgICBbcmVzcG9uc2l2ZU9wdGlvbnNdPVwiY2Fyb3VzZWxJbWFnZXNSZXNwb25zaXZlT3B0aW9uc1wiIFxyXG4gICAgICAgICAgICAgICAgW2NvbnRhaW5lclN0eWxlXT1cInsgJ21heC13aWR0aCc6ICcxMDAlJywgJ21heC1oZWlnaHQnOicxMDAlJ31cIiBcclxuICAgICAgICAgICAgICAgIFtudW1WaXNpYmxlXT1cIjJcIiBcclxuICAgICAgICAgICAgICAgIFtzaG93SXRlbU5hdmlnYXRvcnNdPVwiZmFsc2VcIlxyXG4gICAgICAgICAgICAgICAgW3Nob3dUaHVtYm5haWxzXT1cImZhbHNlXCIgW3Nob3dJbmRpY2F0b3JzXT1cImZhbHNlXCI+XHJcbiAgICAgICAgICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiaXRlbVwiIGxldC1pbWFnZT5cclxuICAgICAgICAgICAgICAgICAgICA8ZGl2ICpuZ0lmPVwiKHZpZXdTaW5nbGVNb2RlID09IGZhbHNlICYmIChpbWFnZVNpbmdsZU1vZGUgIT0gbnVsbCB8fCB1bmRlZmluZWQpKSB8fCBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAodmlld1NpbmdsZU1vZGUgPT0gZmFsc2UgJiYgb25seUNyb3BwZWRJbWFnZVNlbGVjdGVkICE9IG51bGwpXCIgY2xhc3M9XCJ3LWltYWdlLWZpbGUtdXBsb2FkZXItZGVsZXRlLWJ1dHRvbiBmbGV4IGFsaWduLWNvbnRlbnQtY2VudGVyIGp1c3RpZnktY29udGVudC1jZW50ZXJcIiBzdHlsZT1cIndpZHRoOiAxMDAlO1wiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8dy1idXR0b24gYnV0dG9uQ2xhc3M9XCJ3LWltYWdlLWZpbGUtdXBsb2FkZXItZGVsZXRlLWJ1dHRvbi1pY29uXCIgaWNvbj1cInBpIHBpLXRyYXNoXCIgdHlwZT1cInRleHRcIiAoY2xpY2spPVwicmVtb3ZlSW1hZ2VTaW5nbGVNb2RlKCRldmVudCwgb25seUltYWdlU2VsZWN0ZWQpXCI+PC93LWJ1dHRvbj5cclxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiZmxleCBmbGV4LXdyYXAgYWxpZ24tY29udGVudC1jZW50ZXIganVzdGlmeS1jb250ZW50LWNlbnRlclwiIFtuZ0NsYXNzXT1cInsndy1pbWFnZS1maWxlLXVwbG9hZGVyLWZpZWxkLWltZy1jb250YWluZXInOiBhY3RpdmVGaWVsZFZlcnNpb259XCIgc3R5bGU9XCJvYmplY3QtZml0OiBjb250YWluOyAvKiB3aWR0aDogMzAwcHg7IGhlaWdodDogMzAwcHg7ICovXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxpbWcgW3NyY109XCJpbWFnZVwiIHN0eWxlPVwibWF4LXdpZHRoOjEwMCU7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIG1heC1oZWlnaHQ6MTAwJTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgaGVpZ2h0OiBhdXRvO1xyXG4gICAgICAgICAgICAgICAgICAgICAgICB3aWR0aDphdXRvO1wiIC8+XHJcbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgICAgICA8L3AtZ2FsbGVyaWE+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGRpdiAqbmdJZj1cInZpZXdTaW5nbGVNb2RlID09IGZhbHNlOyBlbHNlIHZpZXdTaW5nbGVNb2RlTWVzc2FnZVwiIChjbGljayk9XCJvcGVuU2luZ2xlSW1hZ2VGaWxlU2VsZWN0b3IoKVwiIFxyXG4gICAgICAgICAgICBjbGFzcz1cInctaW1hZ2UtZmlsZS11cGxvYWRlci1zcGFjZS1jb250YWluZXIgZmxleCBmbGV4LWNvbHVtbiBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyIGFsaWduLWl0ZW1zLWNlbnRlclwiIHN0eWxlPVwiY3Vyc29yOiBwb2ludGVyO1wiXHJcbiAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsndy1pbWFnZS1maWxlLXVwbG9hZGVyLWNvbnRhaW5lci1oZWlnaHQnIDogKG9ubHlDcm9wcGVkSW1hZ2VTZWxlY3RlZCA9PSBudWxsIHx8IHVuZGVmaW5lZCApICYmIChpbWFnZVNpbmdsZU1vZGUgPT0gbnVsbCB8fCB1bmRlZmluZWQpICYmIGFjdGl2ZUZpZWxkVmVyc2lvbiA9PSBmYWxzZSwgJ3ctaW1hZ2UtZmlsZS11cGxvYWRlci1maWVsZC1jb250YWluZXItaGVpZ2h0JyA6IGFjdGl2ZUZpZWxkVmVyc2lvbiA9PSB0cnVlICYmIChvbmx5Q3JvcHBlZEltYWdlU2VsZWN0ZWQgPT0gbnVsbCB8fCB1bmRlZmluZWQgKSAmJiAoaW1hZ2VTaW5nbGVNb2RlID09IG51bGwgfHwgdW5kZWZpbmVkKX1cIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwaSBwaS11cGxvYWQgc3VidGl0bGUxIHRleHRNYWluQ29sb3JcIj48L3NwYW4+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwic3VidGl0bGUxIHRleHRNYWluQ29sb3IgbS0yXCI+XHJcbiAgICAgICAgICAgICAgICB7e2ltYWdlVXBsb2FkQ29uZmlnLmNvbnRlbnRIZWFkZXJMYWJlbH19XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ0ZXh0U29mdENvbG9yIHRleHQtY2VudGVyXCI+XHJcbiAgICAgICAgICAgICAgICB7e2ltYWdlVXBsb2FkQ29uZmlnLmNvbnRlbnRTdWJoZWFkZXJMYWJlbH19XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8bmctdGVtcGxhdGUgI3ZpZXdTaW5nbGVNb2RlTWVzc2FnZT5cclxuICAgICAgICAgICAgPGRpdiAqbmdJZj1cImltYWdlU2luZ2xlTW9kZSA9PSBudWxsIHx8IHVuZGVmaW5lZFwiIGNsYXNzPVwidGV4dFNvZnRDb2xvciBmbGV4IGp1c3RpZnktY29udGVudC1jZW50ZXIgYWxpZ24taXRlbXMtY2VudGVyIHctaW1hZ2UtZmlsZS11cGxvYWRlci1jb250YWluZXItaGVpZ2h0XCI+XHJcbiAgICAgICAgICAgICAgICB7e2ltYWdlVXBsb2FkQ29uZmlnLnZpZXdNb2RlY29udGVudExhYmVsfX1cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgIDwvbmctdGVtcGxhdGU+XHJcbjwvcC1maWxlVXBsb2FkPlxyXG48bmctdGVtcGxhdGUgI3dpdGhDYXJvdXNlbD5cclxuICAgIDxwLWZpbGVVcGxvYWQgKm5nSWY9XCJpbWFnZVVwbG9hZENvbmZpZ1wiICNmaWxlVXBsb2FkIGNsYXNzPVwidy1pbWFnZS1maWxlLWJ1dHRvblwiIFxyXG4gICAgICAgIFtuZ0NsYXNzXT1cInsndy1pbWFnZS1maWxlLXVwbG9hZGVyJyA6IGFjdGl2ZUZpZWxkVmVyc2lvbiA9PSBmYWxzZSwgXHJcbiAgICAgICAgICAgICAgICAgICAgJ3ctaW1hZ2UtZmlsZS11cGxvYWRlci1maWVsZCcgOiBhY3RpdmVGaWVsZFZlcnNpb24gPT0gdHJ1ZSwgXHJcbiAgICAgICAgICAgICAgICAgICAgJ3ctaW1hZ2UtZmlsZS11cGxvYWRlci1maWVsZC1uby1pbWFnZScgOiBhY3RpdmVGaWVsZFZlcnNpb24gPT0gdHJ1ZSAmJiAoaW1hZ2VzQWxyZWFkeVVwbG9hZGVkLmxlbmd0aCA9PSAwIHx8IHVuZGVmaW5lZCApIHx8IChpbWFnZXNBbHJlYWR5VXBsb2FkZWQgPT0gbnVsbCB8fCB1bmRlZmluZWQpfVwiXHJcbiAgICAgICAgbmFtZT1cIm1lZGlhSW1hZ2VzW11cIiBcclxuICAgICAgICBbYWNjZXB0XT1cImltYWdlVXBsb2FkQ29uZmlnLmFjY2VwdEltYWdlVHlwZXNcIiBcclxuICAgICAgICBtb2RlPVwiYWR2YW5jZWRcIiBcclxuICAgICAgICBbY3VzdG9tVXBsb2FkXT1cInRydWVcIiBcclxuICAgICAgICAob25TZWxlY3QpPVwib25DdXN0b21VcGxvYWRNdWx0aU1vZGUoJGV2ZW50KVwiIFxyXG4gICAgICAgICh1cGxvYWRIYW5kbGVyKT1cIm9uQ3VzdG9taXplVXBsb2FkRnVuY3Rpb25NdWx0aU1vZGUoJGV2ZW50KVwiIFxyXG4gICAgICAgIFt1cGxvYWRMYWJlbF09XCJpbWFnZVVwbG9hZENvbmZpZy51cGxvYWRCdXR0b25MYWJlbCA/PyAnJ1wiIFxyXG4gICAgICAgIFtjaG9vc2VMYWJlbF09XCJpbWFnZVVwbG9hZENvbmZpZy5jaG9vc2VCdXR0b25MYWJlbCA/PyAnJ1wiIFxyXG4gICAgICAgIFtjYW5jZWxMYWJlbF09XCJpbWFnZVVwbG9hZENvbmZpZy5jYW5jZWxCdXR0b25MYWJlbCA/PyAnJ1wiIFxyXG4gICAgICAgIFtzaG93VXBsb2FkQnV0dG9uXT1cImFjdGl2ZUltYWdlVXBsb2FkXCJcclxuICAgICAgICBbc2hvd0NhbmNlbEJ1dHRvbl09XCJhY3RpdmVJbWFnZVVwbG9hZFwiXHJcbiAgICAgICAgW2F1dG9dPVwiaW1hZ2VVcGxvYWRDb25maWcuYWxsb3dBdXRvXCIgXHJcbiAgICAgICAgW211bHRpcGxlXT1cInRydWVcIiBcclxuICAgICAgICBbbWF4RmlsZVNpemVdPVwiaW1hZ2VVcGxvYWRDb25maWcubWF4SW1hZ2VTaXplXCIgXHJcbiAgICAgICAgW2Nob29zZVN0eWxlQ2xhc3NdPVwiJ3AtYnV0dG9uLWljb24gcC1idXR0b24taWNvbi1yaWdodCdcIj5cclxuICAgICAgICA8bmctdGVtcGxhdGUgbGV0LWZpbGUgbGV0LWk9XCJpbmRleFwiIHBUZW1wbGF0ZT0nZmlsZSc+XHJcbiAgICAgICAgICAgIDxkaXYgKm5nSWY9XCJhY3RpdmVJbWFnZVVwbG9hZCAmJiBjcm9wcGVySW1hZ2VzLmxlbmd0aCA+IDBcIiBjbGFzcz1cInAtZmlsZXVwbG9hZC1yb3dcIj5cclxuICAgICAgICAgICAgICAgIDxkaXY+PGltZyBbc3JjXT1cImNyb3BwZXJJbWFnZXNbaV0/LmZpbGVCYXNlNjRcIiB3aWR0aD1cIjUwXCIvPjwvZGl2PlxyXG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInAtZmlsZXVwbG9hZC1maWxlbmFtZVwiPnt7ZmlsZS5uYW1lfX08L2Rpdj5cclxuICAgICAgICAgICAgICAgIDxkaXY+IDx3LWJ1dHRvbiBpY29uPVwicGkgcGktdGltZXNcIiAob25DbGljayk9XCJvbkRlbGV0ZUZpbGVNdWx0aU1vZGUoJGV2ZW50LCBmaWxlLCBmaWxlVXBsb2FkKVwiPjwvdy1idXR0b24+IDwvZGl2PlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJjb250ZW50XCI+XHJcbiAgICAgICAgICAgIDxwLXByb2dyZXNzQmFyICpuZ0lmPVwiaXNVcGxvYWRpbmdNdWx0aU1vZGVcIiBjbGFzcz1cInAtZWxlbWVudCBuZy1zdGFyLWluc2VydGVkXCIgW21vZGVdPVwiJ2luZGV0ZXJtaW5hdGUnXCI+XHJcbiAgICAgICAgICAgICAgICA8ZGl2IHJvbGU9XCJwcm9ncmVzc2JhclwiIGFyaWEtdmFsdWVtaW49XCIwXCIgYXJpYS12YWx1ZW5vdz1cIjBcIiBhcmlhLXZhbHVlbWF4PVwiMTAwXCIgZGF0YS1wYy1uYW1lPVwicHJvZ3Jlc3NiYXJcIiBkYXRhLXBjLXNlY3Rpb249XCJyb290XCIgY2xhc3M9XCJwLXByb2dyZXNzYmFyIHAtY29tcG9uZW50IHAtcHJvZ3Jlc3NiYXItZGV0ZXJtaW5hdGVcIj5cclxuICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwicC1wcm9ncmVzc2Jhci12YWx1ZSBwLXByb2dyZXNzYmFyLXZhbHVlLWFuaW1hdGUgbmctc3Rhci1pbnNlcnRlZFwiIHN0eWxlPVwiZGlzcGxheTogZmxleDsgd2lkdGg6IDAlO1wiIGRhdGEtcGMtc2VjdGlvbj1cInZhbHVlXCI+PC9kaXY+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPC9wLXByb2dyZXNzQmFyPlxyXG4gICAgICAgICAgICA8ZGl2ICpuZ0lmPVwiaW1hZ2VzQWxyZWFkeVVwbG9hZGVkLmxlbmd0aCA+IDBcIiBzdHlsZT1cImZsZXgtZ3JvdzogMTtcIj5cclxuICAgICAgICAgICAgICAgIDxwLWdhbGxlcmlhICBcclxuICAgICAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJnZXRHYWxsZXJ5Q2xhc3MoKVwiIFxyXG4gICAgICAgICAgICAgICAgICAgIFt2YWx1ZV09XCJpbWFnZXNBbHJlYWR5VXBsb2FkZWRcIiBcclxuICAgICAgICAgICAgICAgICAgICBbYWN0aXZlSW5kZXhdPVwiYWN0aXZlSW5kZXhHYWxsZXJ5XCIgXHJcbiAgICAgICAgICAgICAgICAgICAgW3Jlc3BvbnNpdmVPcHRpb25zXT1cImNhcm91c2VsSW1hZ2VzUmVzcG9uc2l2ZU9wdGlvbnNcIiBcclxuICAgICAgICAgICAgICAgICAgICBbY29udGFpbmVyU3R5bGVdPVwieyAnbWF4LXdpZHRoJzogJzEwMCUnLCAnbWF4LWhlaWdodCc6JzEwMCUnfVwiIFxyXG4gICAgICAgICAgICAgICAgICAgIFtudW1WaXNpYmxlXT1cIjNcIiBcclxuICAgICAgICAgICAgICAgICAgICBbc2hvd0l0ZW1OYXZpZ2F0b3JzXT1cInRydWVcIlxyXG4gICAgICAgICAgICAgICAgICAgIFtzaG93VGh1bWJuYWlsc109XCJmYWxzZVwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJpdGVtXCIgbGV0LWltYWdlPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8ZGl2ICpuZ0lmPVwidmlld011bHRpTW9kZSA9PSBmYWxzZVwiIGNsYXNzPVwidy1pbWFnZS1maWxlLXVwbG9hZGVyLWRlbGV0ZS1idXR0b24gZmxleCBhbGlnbi1jb250ZW50LWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyXCIgc3R5bGU9XCJ3aWR0aDogMTAwJTtcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx3LWJ1dHRvbiBidXR0b25DbGFzcz1cInctaW1hZ2UtZmlsZS11cGxvYWRlci1kZWxldGUtYnV0dG9uLWljb25cIiBpY29uPVwicGkgcGktdHJhc2hcIiB0eXBlPVwidGV4dFwiIChvbkNsaWNrKT1cImNvbmZpcm1EZWxldGVJbWFnZU11bHRpTW9kZSgkZXZlbnQsIGltYWdlKVwiIFtsb2FkaW5nXT1cImlzRGVsZXRpbmdNdWx0aU1vZGVcIj48L3ctYnV0dG9uPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImZsZXggZmxleC13cmFwIGFsaWduLWNvbnRlbnQtY2VudGVyIGp1c3RpZnktY29udGVudC1jZW50ZXJcIiBbbmdDbGFzc109XCJ7J3ctaW1hZ2UtZmlsZS11cGxvYWRlci1maWVsZC1pbWctY29udGFpbmVyJzogYWN0aXZlRmllbGRWZXJzaW9ufVwiIHN0eWxlPVwib2JqZWN0LWZpdDogY29udGFpbjtcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbWcgW3NyY109XCJyZWFkUHJvcGVydHkoaW1hZ2UsIGltYWdlVXBsb2FkQ29uZmlnLmltYWdlUHJvcGVydHlOYW1lc1swXSkgPz8gaW1hZ2UuZmlsZUJhc2U2NFwiIHN0eWxlPVwibWF4LXdpZHRoOjEwMCU7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBtYXgtaGVpZ2h0OjEwMCU7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBoZWlnaHQ6IGF1dG87XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB3aWR0aDphdXRvO1wiIC8+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwidy1pbWFnZS1maWxlLXVwbG9hZGVyLW1vdmUtYnV0dG9ucyBmbGV4IGFsaWduLWNvbnRlbnQtY2VudGVyIGp1c3RpZnktY29udGVudC1jZW50ZXJcIiBzdHlsZT1cIndpZHRoOiAxMDAlO1wiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiAqbmdJZj1cInZpZXdNdWx0aU1vZGUgPT0gZmFsc2UgJiYgYWN0aXZlUG9zaXRpb25Qcm9wZXJ0eSA9PSB0cnVlXCIgY2xhc3M9XCJ3LWltYWdlLWZpbGUtdXBsb2FkZXItbXVsdGktYWN0aW9uLWJ1dHRvblwiIFtuZ0NsYXNzXT1cInsndy1pbWFnZS1maWxlLXVwbG9hZGVyLWhpZGUtbW92ZS1idXR0b24nIDogZmluZEluZGV4KGltYWdlKSA9PSAwIHx8IGRpc2FibGVNb3ZlQnV0dG9uc31cIiAoY2xpY2spPVwibW92ZUltYWdlVG9MZWZ0KGltYWdlKVwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx3LWljb25zIG5hbWU9XCJkb3VibGVBcnJvd0xlZnRcIiBjbGFzcz1cInctaW1hZ2UtZmlsZS11cGxvYWRlci1hcnJvd1wiIFtoZWlnaHRdPVwiMTBcIiBbd2lkdGhdPVwiMTBcIiBbY29sb3JdPVwiJ3doaXRlJ1wiPjwvdy1pY29ucz5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgKm5nSWY9XCJpc0RlbGV0aW5nTXVsdGlNb2RlID09IGZhbHNlOyBlbHNlIGluZGV4TG9hZGluZ1wiIGNsYXNzPVwidy1pbWFnZS1maWxlLXVwbG9hZGVyLW11bHRpLWltYWdlcy1pbmRleCBmbGV4IGFsaWduLWl0ZW1zLWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAge3sgZmluZEluZGV4KGltYWdlKSArIDEgfX0gLyB7eyBpbWFnZXNBbHJlYWR5VXBsb2FkZWQubGVuZ3RoIH19XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjaW5kZXhMb2FkaW5nPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ3LWltYWdlLWZpbGUtdXBsb2FkZXItbXVsdGktaW1hZ2VzLWluZGV4IGZsZXggYWxpZ24taXRlbXMtY2VudGVyIGp1c3RpZnktY29udGVudC1jZW50ZXJcIj4gLSAvIC0gPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2ICpuZ0lmPVwidmlld011bHRpTW9kZSA9PSBmYWxzZSAgJiYgYWN0aXZlUG9zaXRpb25Qcm9wZXJ0eSA9PSB0cnVlXCIgY2xhc3M9XCJ3LWltYWdlLWZpbGUtdXBsb2FkZXItbXVsdGktYWN0aW9uLWJ1dHRvblwiIFtuZ0NsYXNzXT1cInsndy1pbWFnZS1maWxlLXVwbG9hZGVyLWhpZGUtbW92ZS1idXR0b24nIDogKGZpbmRJbmRleChpbWFnZSkgPT0gaW1hZ2VzQWxyZWFkeVVwbG9hZGVkLmxlbmd0aC0xKSB8fCBkaXNhYmxlTW92ZUJ1dHRvbnN9XCIgKGNsaWNrKT1cIm1vdmVJbWFnZVRvUmlnaHQoaW1hZ2UpXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHctaWNvbnMgbmFtZT1cImRvdWJsZUFycm93UmlnaHRcIiBjbGFzcz1cInctaW1hZ2UtZmlsZS11cGxvYWRlci1hcnJvd1wiIFtoZWlnaHRdPVwiMTBcIiBbd2lkdGhdPVwiMTBcIiBbY29sb3JdPVwiJ3doaXRlJ1wiPjwvdy1pY29ucz5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgICAgICAgICAgPC9wLWdhbGxlcmlhPlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPGRpdiAqbmdJZj1cInZpZXdNdWx0aU1vZGUgPT0gZmFsc2U7IGVsc2Ugdmlld011bHRpTW9kZU1lc3NhZ2VcIiAoY2xpY2spPVwib3BlbkltYWdlRmlsZVNlbGVjdG9yKClcIiBcclxuICAgICAgICAgICAgICAgIGNsYXNzPVwidy1pbWFnZS1maWxlLXVwbG9hZGVyLXNwYWNlLWNvbnRhaW5lciBmbGV4IGZsZXgtY29sdW1uIGp1c3RpZnktY29udGVudC1jZW50ZXIgYWxpZ24taXRlbXMtY2VudGVyXCIgXHJcbiAgICAgICAgICAgICAgICBzdHlsZT1cImN1cnNvcjogcG9pbnRlcjtcIiBcclxuICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsndy1pbWFnZS1maWxlLXVwbG9hZGVyLWNvbnRhaW5lci1oZWlnaHQnIDogKGltYWdlc0FscmVhZHlVcGxvYWRlZC5sZW5ndGggPT0gMCB8fCB1bmRlZmluZWQgKSB8fCAoaW1hZ2VzQWxyZWFkeVVwbG9hZGVkID09IG51bGwgfHwgdW5kZWZpbmVkKSAmJiBhY3RpdmVGaWVsZFZlcnNpb24gPT0gZmFsc2UsICd3LWltYWdlLWZpbGUtdXBsb2FkZXItZmllbGQtY29udGFpbmVyLWhlaWdodCcgOiBhY3RpdmVGaWVsZFZlcnNpb24gPT0gdHJ1ZSAmJiAoaW1hZ2VzQWxyZWFkeVVwbG9hZGVkLmxlbmd0aCA9PSAwIHx8IHVuZGVmaW5lZCApIHx8IChpbWFnZXNBbHJlYWR5VXBsb2FkZWQgPT0gbnVsbCB8fCB1bmRlZmluZWQpfVwiPlxyXG4gICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwaSBwaS11cGxvYWQgc3VidGl0bGUxIHRleHRNYWluQ29sb3JcIj48L3NwYW4+XHJcbiAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInN1YnRpdGxlMSB0ZXh0TWFpbkNvbG9yIG0tMlwiPlxyXG4gICAgICAgICAgICAgICAgICAgIHt7aW1hZ2VVcGxvYWRDb25maWcuY29udGVudEhlYWRlckxhYmVsfX1cclxuICAgICAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidGV4dFNvZnRDb2xvciB0ZXh0LWNlbnRlclwiPlxyXG4gICAgICAgICAgICAgICAgICAgIHt7aW1hZ2VVcGxvYWRDb25maWcuY29udGVudFN1YmhlYWRlckxhYmVsfX1cclxuICAgICAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjdmlld011bHRpTW9kZU1lc3NhZ2U+XHJcbiAgICAgICAgICAgICAgICA8ZGl2ICpuZ0lmPVwiaW1hZ2VzQWxyZWFkeVVwbG9hZGVkLmxlbmd0aD09MFwiIGNsYXNzPVwidGV4dFNvZnRDb2xvciBmbGV4IGp1c3RpZnktY29udGVudC1jZW50ZXIgYWxpZ24taXRlbXMtY2VudGVyIHctaW1hZ2UtZmlsZS11cGxvYWRlci1jb250YWluZXItaGVpZ2h0XCI+XHJcbiAgICAgICAgICAgICAgICAgICAge3tpbWFnZVVwbG9hZENvbmZpZy52aWV3TW9kZWNvbnRlbnRMYWJlbH19XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgPC9wLWZpbGVVcGxvYWQ+XHJcbjwvbmctdGVtcGxhdGU+XHJcblxyXG48cC1jb25maXJtUG9wdXA+PC9wLWNvbmZpcm1Qb3B1cD5cclxuIl19
476
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidy1pbWFnZS1maWxlLXVwbG9hZGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3dhcHAtY29tcG9uZW50cy9zcmMvbGliL2ZpbGUvdy1pbWFnZS1maWxlLXVwbG9hZGVyL3ctaW1hZ2UtZmlsZS11cGxvYWRlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93YXBwLWNvbXBvbmVudHMvc3JjL2xpYi9maWxlL3ctaW1hZ2UtZmlsZS11cGxvYWRlci93LWltYWdlLWZpbGUtdXBsb2FkZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsT0FBTyxFQUFpQixTQUFTLEVBQWMsWUFBWSxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQWEsU0FBUyxFQUFFLFlBQVksRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUd0SSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFHbEQsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sOENBQThDLENBQUM7Ozs7Ozs7Ozs7Ozs7QUFXdEYsTUFBTSxPQUFPLDJCQUEyQjtJQW9GdEMsWUFDVSxhQUE0QixFQUM1QixJQUFnQixFQUNoQixtQkFBd0M7UUFGeEMsa0JBQWEsR0FBYixhQUFhLENBQWU7UUFDNUIsU0FBSSxHQUFKLElBQUksQ0FBWTtRQUNoQix3QkFBbUIsR0FBbkIsbUJBQW1CLENBQXFCO1FBdEZwQix3QkFBbUIsR0FBWSxLQUFLLENBQUM7UUFDdkMsc0JBQWlCLEdBQVksS0FBSyxDQUFDO1FBQy9CLDBCQUFxQixHQUFVLEVBQUUsQ0FBQztRQU1qQywyQkFBc0IsR0FBWSxLQUFLLENBQUM7UUFDaEQsbUJBQWMsR0FBWSxLQUFLLENBQUM7UUFDakMsa0JBQWEsR0FBWSxLQUFLLENBQUM7UUFDdEIsc0JBQWlCLEdBQVcsSUFBSSxDQUFDO1FBQ3JCLHVCQUFrQixHQUFRLENBQUMsQ0FBQztRQUM3QyxzQkFBaUIsR0FBNkI7WUFDeEUsa0JBQWtCLEVBQUUsRUFBRTtZQUN0QixnQkFBZ0IsRUFBRSxTQUFTO1lBQzNCLFlBQVksRUFBRSxPQUFPO1lBQ3JCLFNBQVMsRUFBRSxLQUFLO1lBQ2hCLGlCQUFpQixFQUFFLEVBQUU7WUFDckIsaUJBQWlCLEVBQUUsRUFBRTtZQUNyQixpQkFBaUIsRUFBRSxFQUFFO1lBQ3JCLGtCQUFrQixFQUFFLEVBQUU7WUFDdEIscUJBQXFCLEVBQUUsRUFBRTtZQUN6QixzQkFBc0IsRUFBRSxFQUFFO1lBQzFCLHlCQUF5QixFQUFFLEVBQUU7WUFDN0IseUJBQXlCLEVBQUU7Z0JBQ3pCLGNBQWMsRUFBRSxLQUFLO2dCQUNyQixxQkFBcUIsRUFBRSxDQUFDLEdBQUMsQ0FBQztnQkFDMUIsZUFBZSxFQUFFLEdBQUc7Z0JBQ3BCLGVBQWUsRUFBRSxHQUFHO2FBQ3JCO1lBQ0QseUJBQXlCLEVBQUUsRUFBRTtZQUM3Qix3QkFBd0IsRUFBRSxFQUFFO1lBQzVCLDZCQUE2QixFQUFFLEVBQUU7WUFDakMsNEJBQTRCLEVBQUUsRUFBRTtZQUNoQyw2QkFBNkIsRUFBRSxFQUFFO1lBQ2pDLDRCQUE0QixFQUFFLEVBQUU7U0FDakMsQ0FBQTtRQUM0Qix1QkFBa0IsR0FBWSxLQUFLLENBQUM7UUFHOUMsYUFBUSxHQUFZLEtBQUssQ0FBQztRQUVqQixxQkFBZ0IsR0FBc0IsSUFBSSxZQUFZLEVBQU8sQ0FBQztRQUNoRSxtQkFBYyxHQUFzQixJQUFJLFlBQVksRUFBTyxDQUFDO1FBQ3pELHNCQUFpQixHQUFzQixJQUFJLFlBQVksRUFBTyxDQUFDO1FBQ25FLGtCQUFhLEdBQXNCLElBQUksWUFBWSxFQUFPLENBQUM7UUFPcEYsdUJBQWtCLEdBQVcsQ0FBQyxDQUFDO1FBQy9CLGtCQUFhLEdBQVUsRUFBRSxDQUFDO1FBQzFCLGlCQUFZLEdBQVcsU0FBUyxDQUFDO1FBQ2pDLGtCQUFhLEdBQVcsU0FBUyxDQUFDO1FBQ2xDLHVCQUFrQixHQUFZLEtBQUssQ0FBQztRQUNwQyx5QkFBb0IsR0FBWSxLQUFLLENBQUM7UUFDdEMsd0JBQW1CLEdBQVksS0FBSyxDQUFDO1FBR3JDLDZCQUF3QixHQUFRLElBQUksQ0FBQztRQUdyQyxvQ0FBK0IsR0FBVTtZQUN2QztnQkFDRSxVQUFVLEVBQUUsUUFBUTtnQkFDcEIsVUFBVSxFQUFFLENBQUM7Z0JBQ2IsU0FBUyxFQUFFLENBQUM7YUFDYjtZQUNEO2dCQUNFLFVBQVUsRUFBRSxPQUFPO2dCQUNuQixVQUFVLEVBQUUsQ0FBQztnQkFDYixTQUFTLEVBQUUsQ0FBQzthQUNiO1lBQ0Q7Z0JBQ0UsVUFBVSxFQUFFLE9BQU87Z0JBQ25CLFVBQVUsRUFBRSxDQUFDO2dCQUNiLFNBQVMsRUFBRSxDQUFDO2FBQ2I7U0FDRixDQUFDO0lBTUEsQ0FBQztJQUVILFFBQVE7UUFDTixJQUFJLENBQUMsZUFBZSxHQUFHO1lBQ3JCLGNBQWMsRUFBRSxJQUFJLENBQUMsaUJBQWlCLENBQUMseUJBQXlCLENBQUMsY0FBYztZQUMvRSxxQkFBcUIsRUFBRSxJQUFJLENBQUMsaUJBQWlCLENBQUMseUJBQXlCLENBQUMscUJBQXFCO1lBQzdGLGVBQWUsRUFBRSxJQUFJLENBQUMsaUJBQWlCLENBQUMseUJBQXlCLENBQUMsZUFBZTtZQUNqRixlQUFlLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLHlCQUF5QixDQUFDLGVBQWU7WUFDakYsV0FBVyxFQUFFLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxZQUFZO1NBQ2pELENBQUE7UUFFRCxJQUFHLElBQUksQ0FBQyxpQkFBaUIsSUFBSSxLQUFLLElBQUksSUFBSSxDQUFDLHFCQUFxQixDQUFDLE1BQU0sR0FBRyxDQUFDLEVBQUM7WUFDMUUsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsR0FBRyxJQUFJLENBQUMscUJBQXFCLENBQUMsQ0FBQztTQUN4RDtJQUNILENBQUM7SUFFRCxZQUFZLENBQUMsR0FBUSxFQUFFLElBQVc7UUFDaEMsSUFBRyxPQUFPLEdBQUcsS0FBSyxXQUFXLEVBQUU7WUFDN0IsT0FBTyxLQUFLLENBQUM7U0FDZDtRQUVELElBQUksTUFBTSxHQUFHLElBQUksQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLENBQUE7UUFDOUIsSUFBRyxNQUFNLEdBQUcsQ0FBQyxDQUFDLEVBQUU7WUFDWixPQUFPLElBQUksQ0FBQyxZQUFZLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FBQyxFQUFFLE1BQU0sQ0FBQyxDQUFDLEVBQUUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxNQUFNLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQztTQUNyRjtRQUNELE9BQU8sR0FBRyxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ25CLENBQUM7SUFFRCx3QkFBd0IsQ0FBQyxLQUFVO1FBQ2pDLElBQUksQ0FBQyxpQkFBaUIsR0FBRyxLQUFLLENBQUMsWUFBWSxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQy9DLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsaUJBQWlCLEVBQUUsS0FBSyxDQUFDLGFBQWEsQ0FBQyxDQUFDO0lBQ3JFLENBQUM7SUFFRCxtQ0FBbUMsQ0FBQyxLQUFVO1FBQzVDLElBQUcsSUFBSSxDQUFDLGlCQUFpQixJQUFJLElBQUksRUFBQztZQUNoQyxJQUFHLElBQUksQ0FBQyx3QkFBd0IsRUFBQztnQkFDL0IsSUFBSSxZQUFZLEdBQWUsQ0FBQyxFQUFDLE1BQU0sRUFBRSxJQUFJLENBQUMsd0JBQXdCLENBQUMsTUFBTSxFQUFFLElBQUksRUFBRSxJQUFJLENBQUMsd0JBQXdCLENBQUMsSUFBSSxFQUFDLENBQUMsQ0FBQztnQkFFMUgsSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFNBQVMsRUFBRSxZQUFZLEVBQUUsRUFBRSxPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLENBQUMsU0FBUyxDQUFDO29CQUNoRixJQUFJLEVBQUUsQ0FBQyxhQUFrQixFQUFFLEVBQUU7d0JBQzNCLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxLQUFLLEVBQUUsQ0FBQzt3QkFDakMsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsQ0FBQztvQkFDNUMsQ0FBQztvQkFDRCxLQUFLLEVBQUUsQ0FBQyxLQUFLLEVBQUUsRUFBRTt3QkFDZixJQUFJLENBQUMsbUJBQW1CLENBQUMsU0FBUyxHQUFHLEtBQUssQ0FBQzt3QkFDM0MsSUFBSSxDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7b0JBQ2xDLENBQUM7aUJBQ0YsQ0FBQyxDQUFBO2FBQ0g7U0FDRjtJQUNILENBQUM7SUFFRCxxQkFBcUIsQ0FBQyxLQUFZLEVBQUUsSUFBUztRQUMzQyxLQUFLLENBQUMsZUFBZSxFQUFFLENBQUM7UUFDeEIsSUFBSSxDQUFDLG1CQUFtQixDQUFDLEtBQUssRUFBRSxDQUFDO1FBQ2pDLElBQUksQ0FBQyxpQkFBaUIsR0FBRyxJQUFJLENBQUM7UUFDOUIsSUFBSSxDQUFDLHdCQUF3QixHQUFHLElBQUksQ0FBQztRQUNyQyxJQUFJLENBQUMsZUFBZSxHQUFHLElBQUksQ0FBQztRQUM1QixJQUFJLENBQUMsaUJBQWlCLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ3BDLENBQUM7SUFFRCxlQUFlLENBQUMsS0FBVTtRQUN4QixJQUFJLFdBQVcsR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ3hDLElBQUcsV0FBVyxHQUFHLENBQUMsSUFBSSxXQUFXLEdBQUcsSUFBSSxDQUFDLHFCQUFxQixDQUFDLE1BQU0sRUFBQztZQUNwRSxNQUFNLElBQUksR0FBRyxJQUFJLENBQUMscUJBQXFCLENBQUMsV0FBVyxDQUFDLENBQUM7WUFDckQsSUFBSSxDQUFDLHFCQUFxQixDQUFDLFdBQVcsQ0FBQyxHQUFHLElBQUksQ0FBQyxxQkFBcUIsQ0FBRSxXQUFXLEdBQUcsQ0FBQyxDQUFDLENBQUM7WUFDdkYsSUFBSSxDQUFDLHFCQUFxQixDQUFDLFdBQVcsR0FBRyxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUM7WUFFbkQsSUFBSSxDQUFDLHFCQUFxQixHQUFHLENBQUMsSUFBSSxDQUFDLHNCQUFzQixDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLHFCQUFxQixDQUFDO1lBQy9JLElBQUksQ0FBQyxrQkFBa0IsR0FBRyxXQUFXLEdBQUcsQ0FBQyxDQUFDO1lBRTFDLElBQUcsSUFBSSxDQUFDLFNBQVMsSUFBSSxTQUFTLElBQUksSUFBSSxDQUFDLGtCQUFrQixLQUFLLENBQUMsRUFBQztnQkFDOUQsSUFBSSxDQUFDLGtCQUFrQixHQUFHLElBQUksQ0FBQztnQkFDL0IsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUMsQ0FBQzthQUM5QztpQkFBSyxJQUFHLElBQUksQ0FBQyxpQkFBaUIsSUFBSSxJQUFJLElBQUksSUFBSSxDQUFDLFNBQVMsSUFBSSxTQUFTLEVBQUM7Z0JBQ3JFLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLHFCQUFxQixDQUFDLENBQUM7YUFDeEQ7aUJBQUk7Z0JBQ0gsSUFBSSxDQUFDLGlCQUFpQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsNEJBQTRCLENBQUMsSUFBSSxDQUFDLHFCQUFxQixDQUFDLENBQUMsQ0FBQzthQUM1RjtTQUNGO0lBQ0gsQ0FBQztJQUVELGdCQUFnQixDQUFDLEtBQVU7UUFDekIsSUFBSSxXQUFXLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUN4QyxJQUFHLFdBQVcsSUFBSSxDQUFDLElBQUksV0FBVyxHQUFHLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxNQUFNLEdBQUUsQ0FBQyxFQUFDO1lBQ3hFLE1BQU0sSUFBSSxHQUFHLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxXQUFXLENBQUMsQ0FBQztZQUNyRCxJQUFJLENBQUMscUJBQXFCLENBQUMsV0FBVyxDQUFDLEdBQUcsSUFBSSxDQUFDLHFCQUFxQixDQUFFLFdBQVcsR0FBRyxDQUFDLENBQUMsQ0FBQztZQUN2RixJQUFJLENBQUMscUJBQXFCLENBQUMsV0FBVyxHQUFHLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQztZQUVuRCxJQUFJLENBQUMscUJBQXFCLEdBQUcsQ0FBQyxJQUFJLENBQUMsc0JBQXNCLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLG1CQUFtQixDQUFDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUM7WUFDL0ksSUFBSSxDQUFDLGtCQUFrQixHQUFHLFdBQVcsR0FBRyxDQUFDLENBQUM7WUFFMUMsSUFBRyxJQUFJLENBQUMsU0FBUyxJQUFFLFNBQVMsSUFBSSxJQUFJLENBQUMsa0JBQWtCLEtBQUssQ0FBQyxFQUFDO2dCQUM1RCxJQUFJLENBQUMsa0JBQWtCLEdBQUcsSUFBSSxDQUFDO2dCQUMvQixJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxDQUFDO2FBQzlDO2lCQUFLLElBQUcsSUFBSSxDQUFDLGlCQUFpQixJQUFJLElBQUksSUFBSSxJQUFJLENBQUMsU0FBUyxJQUFJLFNBQVMsRUFBQztnQkFDckUsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUMsQ0FBQzthQUN4RDtpQkFBSTtnQkFDSCxJQUFJLENBQUMsaUJBQWlCLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyw0QkFBNEIsQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUMsQ0FBQyxDQUFDO2FBQzVGO1NBQ0Y7SUFDSCxDQUFDO0lBRUQsa0NBQWtDLENBQUMsS0FBVztRQUM1QyxJQUFHLElBQUksQ0FBQyxpQkFBaUIsSUFBSSxJQUFJLEVBQUM7WUFDaEMsSUFBRyxJQUFJLENBQUMsYUFBYSxDQUFDLE1BQU0sR0FBRyxDQUFDLEVBQUM7Z0JBQy9CLElBQUksWUFBWSxHQUFlLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxDQUFDO2dCQUN2RSxJQUFJLENBQUMsb0JBQW9CLEdBQUcsSUFBSSxDQUFDO2dCQUVqQyxJQUFJLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsU0FBUyxFQUFFLFlBQVksRUFBRSxFQUFFLE9BQU8sRUFBRSxJQUFJLENBQUMsT0FBTyxFQUFFLENBQUMsQ0FBQyxTQUFTLENBQUM7b0JBQ2hGLElBQUksRUFBRyxDQUFDLGNBQW1CLEVBQUUsRUFBRTt3QkFDN0IsSUFBSSxDQUFDLHFCQUFxQixDQUFDLElBQUksQ0FBQyxHQUFHLGNBQWMsQ0FBQyxDQUFDO3dCQUNuRCxJQUFJLENBQUMscUJBQXFCLEdBQUcsQ0FBQyxHQUFHLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxDQUFDO3dCQUU3RCxJQUFHLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxNQUFNLElBQUksQ0FBQyxFQUFDOzRCQUN4QyxJQUFJLENBQUMsa0JBQWtCLEdBQUcsQ0FBQyxDQUFDO3lCQUM3Qjt3QkFFRCxJQUFJLENBQUMsYUFBYSxHQUFHLEVBQUUsQ0FBQzt3QkFDeEIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxLQUFLLEVBQUUsQ0FBQzt3QkFFeEIsSUFBSSxDQUFDLHFCQUFxQixHQUFHLElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLG1CQUFtQixDQUFDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUM7d0JBRTdJLElBQUcsSUFBSSxDQUFDLFNBQVMsSUFBRSxTQUFTLElBQUksSUFBSSxDQUFDLGtCQUFrQixLQUFLLENBQUMsRUFBQzs0QkFDNUQsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUMsQ0FBQzt5QkFDOUM7NkJBQUk7NEJBQ0gsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUMsQ0FBQzt5QkFDeEQ7d0JBRUQsSUFBSSxDQUFDLG9CQUFvQixHQUFHLEtBQUssQ0FBQztvQkFDcEMsQ0FBQztvQkFDRCxLQUFLLEVBQUUsQ0FBQyxLQUFLLEVBQUUsRUFBRTt3QkFDZixJQUFJLENBQUMsb0JBQW9CLEdBQUcsS0FBSyxDQUFDO3dCQUNsQyxJQUFJLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztvQkFDbEMsQ0FBQztpQkFDRixDQUFDLENBQUE7YUFDSDtTQUNGO0lBQ0gsQ0FBQztJQUVELHVCQUF1QixDQUFDLEtBQVU7UUFDaEMsSUFBRyxJQUFJLENBQUMsbUJBQW1CLElBQUksSUFBSSxFQUFDO1lBQ2xDLEtBQUssQ0FBQyxZQUFZLENBQUMsT0FBTyxDQUFDLENBQUMsSUFBUyxFQUFFLEtBQWEsRUFBRSxFQUFFO2dCQUN0RCxJQUFJLE9BQU8sR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxJQUFJLElBQUksSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO2dCQUNoRSxJQUFHLEtBQUssQ0FBQyxZQUFZLENBQUMsTUFBTSxJQUFJLENBQUMsRUFBQztvQkFDaEMsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksRUFBRSxLQUFLLENBQUMsYUFBYSxDQUFDLENBQUM7aUJBQ2xEO3FCQUFLLElBQUcsT0FBTyxJQUFJLFNBQVMsRUFBQztvQkFDNUIsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksRUFBRSxLQUFLLENBQUMsYUFBYSxDQUFDLENBQUM7aUJBQ2xEO1lBQ0gsQ0FBQyxDQUFDLENBQUM7U0FDSjthQUFJO1lBQ0gsSUFBSSxDQUFDLGdCQUFnQixDQUFDLEtBQUssQ0FBQyxZQUFZLENBQUMsQ0FBQyxDQUFDLEVBQUUsS0FBSyxDQUFDLGFBQWEsQ0FBQyxDQUFDO1NBQ25FO0lBQ0gsQ0FBQztJQUVELDJCQUEyQixDQUFDLEtBQVUsRUFBRSxLQUFVO1FBQ2hELElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxPQUFPLENBQUM7WUFDL0IsTUFBTSxFQUFFLEtBQUssQ0FBQyxNQUFxQjtZQUNuQyxPQUFPLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLHlCQUF5QjtZQUN6RCxJQUFJLEVBQUUsNEJBQTRCO1lBQ2xDLFdBQVcsRUFBRSxJQUFJLENBQUMsaUJBQWlCLENBQUMsc0JBQXNCO1lBQzFELE1BQU0sRUFBRSxHQUFHLEVBQUU7Z0JBQ1gsSUFBSSxDQUFDLHNCQUFzQixDQUFDLEtBQUssQ0FBQyxDQUFDO1lBQ3JDLENBQUM7U0FDRixDQUFDLENBQUE7SUFDSixDQUFDO0lBRUQscUJBQXFCLENBQUMsS0FBVSxFQUFFLElBQVUsRUFBRSxRQUFvQjtRQUNoRSxNQUFNLEtBQUssR0FBRyxRQUFRLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUMzQyxRQUFRLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxLQUFLLENBQUMsQ0FBQztRQUM5QixJQUFJLENBQUMsYUFBYSxHQUFHLElBQUksQ0FBQyxhQUFhLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztJQUNuRixDQUFDO0lBRUQsc0JBQXNCLENBQUMsS0FBVTtRQUMvQixJQUFJLENBQUMsbUJBQW1CLEdBQUcsSUFBSSxDQUFDO1FBQ2hDLElBQUcsSUFBSSxDQUFDLGlCQUFpQixFQUFDO1lBQ3hCLElBQUksY0FBYyxHQUFHLElBQUksQ0FBQyxTQUFTLEdBQUMsR0FBRyxHQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsQ0FBQztZQUN0RSxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxjQUFjLEVBQUUsRUFBQyxPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU8sRUFBQyxDQUFDLENBQUMsU0FBUyxDQUFDO2dCQUNsRSxJQUFJLEVBQUUsR0FBRyxFQUFFO29CQUNULElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxLQUFLLENBQUMsQ0FBQztvQkFDN0IsSUFBSSxDQUFDLHFCQUFxQixHQUFHLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxNQUFNLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxNQUFNLEtBQUssS0FBSyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxLQUFLLEtBQUssQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsQ0FBQyxDQUFDLENBQUM7b0JBQ3hLLElBQUksQ0FBQyxxQkFBcUIsR0FBRyxDQUFDLEdBQUcsSUFBSSxDQUFDLHNCQUFzQixDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsbUJBQW1CLENBQUMsSUFBSSxDQUFDLHFCQUFxQixDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxDQUFDO29CQUNsSixJQUFJLENBQUMsbUJBQW1CLEdBQUcsS0FBSyxDQUFDO29CQUNqQyxJQUFJLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxFQUFDLFlBQVksRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLElBQUksQ0FBQyxxQkFBcUIsRUFBQyxDQUFDLENBQUM7Z0JBQ3JGLENBQUM7Z0JBQ0QsS0FBSyxFQUFFLENBQUMsS0FBSyxFQUFFLEVBQUU7b0JBQ2YsSUFBSSxDQUFDLG1CQUFtQixHQUFHLEtBQUssQ0FBQztvQkFDakMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7b0JBQ2hDLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO2dCQUNoQyxDQUFDO2FBQ0YsQ0FBQyxDQUFBO1NBQ0g7YUFBSTtZQUNILElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxLQUFLLENBQUMsQ0FBQztZQUM3QixJQUFJLENBQUMscUJBQXFCLEdBQUcsSUFBSSxDQUFDLHFCQUFxQixDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLENBQUMsR0FBRyxDQUFDLE1BQU0sS0FBSyxLQUFLLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLEtBQUssS0FBSyxDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDLENBQUMsQ0FBQztZQUN4SyxJQUFJLENBQUMscUJBQXFCLEdBQUcsQ0FBQyxHQUFHLElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLG1CQUFtQixDQUFDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUMsQ0FBQztZQUNsSixJQUFJLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxFQUFDLFlBQVksRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLElBQUksQ0FBQyxxQkFBcUIsRUFBQyxDQUFDLENBQUM7WUFDbkYsSUFBSSxDQUFDLG1CQUFtQixHQUFHLEtBQUssQ0FBQztTQUNsQztJQUNILENBQUM7SUFFRCxnQkFBZ0IsQ0FBQyxLQUFVO1FBQ3pCLElBQUksVUFBVSxHQUFHLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLEVBQUU7WUFDMUQsSUFBRyxDQUFDLEdBQUcsQ0FBQyxNQUFNLElBQUksU0FBUyxDQUFDLEVBQUM7Z0JBQzNCLElBQUcsR0FBRyxDQUFDLE1BQU0sSUFBSSxLQUFLLENBQUMsTUFBTSxFQUFDO29CQUM1QixPQUFPLEdBQUcsQ0FBQyxLQUFLLENBQUM7aUJBQ2xCO2FBQ0Y7aUJBQUssSUFBRyxHQUFHLENBQUMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLEtBQUssS0FBSyxDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxFQUFDO2dCQUNyRSxPQUFPLEdBQUcsQ0FBQyxLQUFLLENBQUM7YUFDbEI7WUFDRCxPQUFPLENBQUMsQ0FBQyxDQUFDO1FBQ1osQ0FBQyxDQUFDLENBQUM7UUFFSCxJQUFHLFVBQVUsR0FBQyxDQUFDLElBQUksSUFBSSxDQUFDLHFCQUFxQixDQUFDLE1BQU0sRUFBQztZQUNuRCxJQUFJLENBQUMsa0JBQWtCLEdBQUcsVUFBVSxHQUFDLENBQUMsQ0FBQztTQUN4QztJQUNILENBQUM7SUFFRCxXQUFXLENBQUMsY0FBcUI7UUFDL0IsSUFBSSxjQUFjLEdBQUcsSUFBSSxDQUFDLFNBQVMsR0FBRyxHQUFHLEdBQUcsSUFBSSxDQUFDLGtCQUFrQixDQUFDO1FBQ3BFLElBQUksQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLGNBQWMsRUFBRSxjQUFjLEVBQUUsRUFBQyxPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU8sRUFBQyxDQUFDLENBQUMsU0FBUyxDQUFDO1lBQy9FLElBQUksRUFBRSxDQUFDLGFBQWtCLEVBQUUsRUFBRTtnQkFDM0IsSUFBSSxDQUFDLGtCQUFrQixHQUFHLEtBQUssQ0FBQztnQkFDaEMsSUFBSSxDQUFDLHFCQUFxQixHQUFHLGFBQWEsQ0FBQztnQkFDM0MsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUMsQ0FBQztZQUN6RCxDQUFDO1NBQ0YsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVELGdCQUFnQixDQUFDLFFBQWEsRUFBRSxLQUFXO1FBQ3pDLE1BQU0sR0FBRyxHQUFxQixJQUFJLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxzQkFBc0IsRUFBRTtZQUM1RSxNQUFNLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLHlCQUF5QixFQUFFLEtBQUssQ0FBQyxNQUFNO1lBQ3RFLEtBQUssRUFBRSxPQUFPO1lBQ2QsWUFBWSxFQUFFLEVBQUMsVUFBVSxFQUFFLE1BQU0sRUFBRSxRQUFRLEVBQUUsTUFBTSxFQUFFLGdCQUFnQixFQUFFLEtBQUssRUFBQztZQUM3RSxJQUFJLEVBQUUsRUFBQyxTQUFTLEVBQUUsSUFBSSxDQUFDLGVBQWUsRUFBRSxZQUFZLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLHlCQUF5QixFQUFFLElBQUksRUFBRSxRQUFRLEVBQUM7WUFDdkgsU0FBUyxFQUFFLElBQUk7U0FDaEIsQ0FBQyxDQUFDO1FBRUgsR0FBRyxDQUFDLE9BQU8sQ0FBQyxTQUFTLENBQUMsQ0FBQyxZQUFzQixFQUFFLEVBQUU7WUFDL0MsSUFBRyxZQUFZLEVBQUM7Z0JBQ2QsSUFBRyxJQUFJLENBQUMsbUJBQW1CLElBQUksS0FBSyxFQUFDO29CQUNuQyxJQUFJLENBQUMsd0JBQXdCLEdBQUcsWUFBWSxDQUFDO29CQUM3QyxJQUFJLENBQUMsaUJBQWlCLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLHdCQUF3QixDQUFDLENBQUMsQ0FBQztpQkFDakY7cUJBQUk7b0JBQ0gsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUM7b0JBRXRDLElBQUksQ0FBQyxhQUFhLEdBQUcsQ0FBQyxJQUFJLENBQUMsc0JBQXNCLElBQUksSUFBSSxDQUFDLGlCQUFpQixJQUFJLEtBQUssQ0FBRSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsbUJBQW1CLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDO29CQUUzSixJQUFHLElBQUksQ0FBQyxpQkFBaUIsSUFBSSxLQUFLLEVBQUM7d0JBQ2pDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUM7d0JBQzlDLElBQUksQ0FBQyxxQkFBcUIsR0FBRyxDQUFDLEdBQUcsSUFBSSxDQUFDLHFCQUFxQixDQUFDLENBQUM7d0JBRTdELElBQUcsSUFBSSxDQUFDLHFCQUFxQixDQUFDLE1BQU0sSUFBSSxDQUFDLEVBQUM7NEJBQ3hDLElBQUksQ0FBQyxrQkFBa0IsR0FBRyxDQUFDLENBQUM7eUJBQzdCO3dCQUVELElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLDRCQUE0QixDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsQ0FBQyxDQUFDO3FCQUNwRjt5QkFBSTt3QkFDSCxJQUFJLENBQUMsaUJBQWlCLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyw0QkFBNEIsQ0FBQyxJQUFJLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsQ0FBQyxDQUFDLENBQUM7cUJBQ3pHO2lCQUNGO2FBQ0Y7aUJBQUk7Z0JBQ0gsSUFBRyxJQUFJLENBQUMsbUJBQW1CLEVBQUM7b0JBQzFCLElBQUksQ0FBQyxVQUFVLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUM7b0JBQzdGLElBQUksUUFBUSxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsTUFBTSxDQUFDO29CQUN0QyxJQUFJLENBQUMsVUFBVSxDQUFDLEtBQUssRUFBRSxDQUFDO29CQUN4QixJQUFJLENBQUMsVUFBVSxDQUFDLE1BQU0sR0FBRyxRQUFRLENBQUM7aUJBQ25DO3FCQUFJO29CQUNILElBQUksQ0FBQyxpQkFBaUIsR0FBRyxJQUFJLENBQUM7b0JBQzlCLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxLQUFLLEVBQUUsQ0FBQztpQkFDbEM7YUFDRjtZQUVELElBQUcsQ0FBQyxJQUFJLENBQUMsaUJBQWlCLElBQUksSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsU0FBUyxJQUFJLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxNQUFNLElBQUksSUFBSSxDQUFDLFVBQVUsQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLEVBQUM7Z0JBQ2hKLElBQUksQ0FBQyxrQ0FBa0MsRUFBRSxDQUFDO2FBQzNDO1FBQ0gsQ0FBQyxDQUFDLENBQUE7SUFDSixDQUFDO0lBRUQsY0FBYyxDQUFDLE1BQVc7UUFDeEIsSUFBRyxLQUFLLENBQUMsT0FBTyxDQUFDLE1BQU0sQ0FBQyxJQUFJLEtBQUssRUFBQztZQUNoQyxPQUFRLENBQUM7b0JBQ1AsTUFBTSxFQUFFLE1BQU0sQ0FBQyxNQUFNO29CQUNyQixJQUFJLEVBQUUsTUFBTSxDQUFDLElBQUk7b0JBQ2pCLEdBQUcsQ0FBQyxNQUFNLENBQUMsUUFBUSxLQUFLLFNBQVMsSUFBSSxFQUFFLFFBQVEsRUFBRSxNQUFNLENBQUMsUUFBUSxFQUFFLENBQUM7aUJBQ3BFLENBQUMsQ0FBQTtTQUNIO1FBRUQsT0FBTyxNQUFNLENBQUMsR0FBRyxDQUFDLENBQUMsR0FBUSxFQUFFLEVBQUU7WUFDN0IsT0FBUTtnQkFDTixNQUFNLEVBQUUsR0FBRyxDQUFDLE1BQU07Z0JBQ2xCLElBQUksRUFBRSxHQUFHLENBQUMsSUFBSTtnQkFDZCxHQUFHLENBQUMsR0FBRyxDQUFDLFFBQVEsS0FBSyxTQUFTLElBQUksRUFBRSxRQUFRLEVBQUUsR0FBRyxDQUFDLFFBQVEsRUFBRSxDQUFDO2FBQzlELENBQUE7UUFDSCxDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFRCw0QkFBNEIsQ0FBQyxNQUFhO1FBQ3hDLE9BQU87WUFDTCxRQUFRLEVBQ04sTUFBTSxDQUFDLE1BQU0sQ0FBQyxDQUFDLEdBQUcsRUFBRSxFQUFFLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxJQUFJLFNBQVMsQ0FBQztZQUNsRSxTQUFTLEVBQ1AsTUFBTSxDQUFDLE1BQU0sQ0FBQyxDQUFDLEdBQUcsRUFBRSxFQUFFLENBQUMsR0FBRyxDQUFDLE1BQU0sSUFBSSxTQUFTLENBQUM7U0FDbEQsQ0FBQTtJQUNILENBQUM7SUFFRCxtQkFBbUIsQ0FBQyxXQUFrQjtRQUNwQyxXQUFXLEdBQUcsV0FBVyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsRUFBRSxLQUFLLEVBQUUsRUFBRSxDQUFDLENBQUM7WUFDN0MsR0FBRyxHQUFHO1lBQ04sUUFBUSxFQUFFLEtBQUs7U0FDaEIsQ0FBQyxDQUFDLENBQUE7UUFFSCxPQUFPLFdBQVcsQ0FBQztJQUNyQixDQUFDO0lBRUQsZ0JBQWdCLENBQUMsSUFBUztRQUN4QixJQUFJLENBQUMscUJBQXFCLENBQUMsT0FBTyxFQUFFLENBQUMsT0FBTyxDQUFDLFNBQVMsQ0FBQyxFQUFFO1lBQ3JELFNBQVMsQ0FBQyxhQUFhLENBQUMsRUFBRSxLQUFLLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxhQUFhLENBQUMsS0FBSyxDQUFDLE9BQU8sR0FBRyxNQUFNLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQztRQUNyRyxDQUFDLENBQUMsQ0FBQTtJQUNKLENBQUM7SUFFRCxpQkFBaUIsQ0FBQyxJQUFTO1FBQ3pCLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxPQUFPLEVBQUUsQ0FBQyxPQUFPLENBQUMsU0FBUyxDQUFDLEVBQUU7WUFDckQsU0FBUyxDQUFDLGFBQWEsQ0FBQyxFQUFFLEtBQUssSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsU0FBUyxDQUFDLGFBQWEsQ0FBQyxLQUFLLENBQUMsT0FBTyxHQUFHLE1BQU0sQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDO1FBQ3JHLENBQUMsQ0FBQyxDQUFBO0lBQ0osQ0FBQztJQUVELFNBQVMsQ0FBQyxHQUFRO1FBQ2hCLE9BQU8sSUFBSSxDQUFDLHFCQUFxQixDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsQ0FBQztJQUNqRCxDQUFDO0lBRUQscUJBQXFCO1FBQ25CLElBQUksQ0FBQyxVQUFVLENBQUMsTUFBTSxFQUFFLENBQUM7SUFDM0IsQ0FBQztJQUVELDJCQUEyQjtRQUN6QixJQUFJLENBQUMsbUJBQW1CLENBQUMsTUFBTSxFQUFFLENBQUM7SUFDcEMsQ0FBQztJQUVELGVBQWU7UUFDYixJQUFHLElBQUksQ0FBQyxrQkFBa0IsSUFBSSxJQUFJLEVBQUM7WUFDakMsT0FBTyxxQ0FBcUMsQ0FBQztTQUM5QztRQUNELE9BQU8sK0JBQStCLENBQUM7SUFDekMsQ0FBQzs7d0hBL2FVLDJCQUEyQjs0R0FBM0IsMkJBQTJCLG0zQkFGM0IsQ0FBQyxtQkFBbUIsQ0FBQyxxVkNoQmxDLDJqYUFtS0E7MkZEakphLDJCQUEyQjtrQkFOdkMsU0FBUzsrQkFDRSx1QkFBdUIsYUFHdEIsQ0FBQyxtQkFBbUIsQ0FBQzsrSkFHRixtQkFBbUI7c0JBQWhELEtBQUs7dUJBQUMscUJBQXFCO2dCQUNBLGlCQUFpQjtzQkFBNUMsS0FBSzt1QkFBQyxtQkFBbUI7Z0JBQ00scUJBQXFCO3NCQUFwRCxLQUFLO3VCQUFDLHVCQUF1QjtnQkFDSixlQUFlO3NCQUF4QyxLQUFLO3VCQUFDLGlCQUFpQjtnQkFDSixTQUFTO3NCQUE1QixLQUFLO3VCQUFDLFdBQVc7Z0JBQ0UsU0FBUztzQkFBNUIsS0FBSzt1QkFBQyxXQUFXO2dCQUNFLFNBQVM7c0JBQTVCLEtBQUs7dUJBQUMsV0FBVztnQkFDQSxPQUFPO3NCQUF4QixLQUFLO3VCQUFDLFNBQVM7Z0JBQ2lCLHNCQUFzQjtzQkFBdEQsS0FBSzt1QkFBQyx3QkFBd0I7Z0JBQ04sY0FBYztzQkFBdEMsS0FBSzt1QkFBQyxnQkFBZ0I7Z0JBQ0MsYUFBYTtzQkFBcEMsS0FBSzt1QkFBQyxlQUFlO2dCQUNXLGlCQUFpQjtzQkFBakQsS0FBSzt1QkFBQyx3QkFBd0I7Z0JBQ2Msa0JBQWtCO3NCQUE5RCxLQUFLO3VCQUFDLG9DQUFvQztnQkFDZixpQkFBaUI7c0JBQTVDLEtBQUs7dUJBQUMsbUJBQW1CO2dCQXlCRyxrQkFBa0I7c0JBQTlDLEtBQUs7dUJBQUMsb0JBQW9CO2dCQUNYLEtBQUs7c0JBQXBCLEtBQUs7dUJBQUMsT0FBTztnQkFDSSxPQUFPO3NCQUF4QixLQUFLO3VCQUFDLFNBQVM7Z0JBQ0csUUFBUTtzQkFBMUIsS0FBSzt1QkFBQyxVQUFVO2dCQUVXLGdCQUFnQjtzQkFBM0MsTUFBTTt1QkFBQyxrQkFBa0I7Z0JBQ0EsY0FBYztzQkFBdkMsTUFBTTt1QkFBQyxnQkFBZ0I7Z0JBQ0ssaUJBQWlCO3NCQUE3QyxNQUFNO3VCQUFDLG1CQUFtQjtnQkFDRixhQUFhO3NCQUFyQyxNQUFNO3VCQUFDLGVBQWU7Z0JBRUUsVUFBVTtzQkFBbEMsU0FBUzt1QkFBQyxZQUFZO2dCQUVnQixxQkFBcUI7c0JBQTNELFlBQVk7dUJBQUMsdUJBQXVCO2dCQUNILG1CQUFtQjtzQkFBcEQsU0FBUzt1QkFBQyxxQkFBcUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBIdHRwQ2xpZW50LCBIdHRwSGVhZGVycyB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbi9odHRwJztcclxuaW1wb3J0IHsgQWZ0ZXJWaWV3SW5pdCwgQ29tcG9uZW50LCBFbGVtZW50UmVmLCBFdmVudEVtaXR0ZXIsIElucHV0LCBPdXRwdXQsIFF1ZXJ5TGlzdCwgVmlld0NoaWxkLCBWaWV3Q2hpbGRyZW4gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgV0ltYWdlRmlsZVVwbG9hZGVyQ29uZmlnIH0gZnJvbSAnLi4vLi4vc2hhcmVkL21vZGVscy93LWltYWdlLWZpbGUtdXBsb2FkZXItY29uZmlnLm1vZGVsJztcclxuaW1wb3J0IHsgRmlsZVVwbG9hZCB9IGZyb20gJ3ByaW1lbmcvZmlsZXVwbG9hZCc7XHJcbmltcG9ydCB7IENvbmZpcm1hdGlvblNlcnZpY2UgfSBmcm9tICdwcmltZW5nL2FwaSc7XHJcbmltcG9ydCB7IERpYWxvZ1NlcnZpY2UsIER5bmFtaWNEaWFsb2dSZWYgfSBmcm9tICdwcmltZW5nL2R5bmFtaWNkaWFsb2cnO1xyXG5pbXBvcnQgeyBJbWFnZUI2NCB9IGZyb20gJy4uLy4uL3NoYXJlZC9tb2RlbHMvaW1hZ2UtYjY0Lm1vZGVsJztcclxuaW1wb3J0IHsgV0ltYWdlQ3JvcHBlckNvbXBvbmVudCB9IGZyb20gJy4uL3ctaW1hZ2UtY3JvcHBlci93LWltYWdlLWNyb3BwZXIuY29tcG9uZW50JztcclxuaW1wb3J0IHsgV0ltYWdlQ3JvcHBlckRhdGEgfSBmcm9tICcuLi8uLi9zaGFyZWQvbW9kZWxzL3ctaW1hZ2UtY3JvcHBlci1kYXRhLm1vZGVsJztcclxuaW1wb3J0IHsgV0ZpbGVCNjQgfSBmcm9tICcuLi8uLi9zaGFyZWQvbW9kZWxzL3ctZmlsZS1iNjQubW9kZWwnO1xyXG5pbXBvcnQgeyBXSWNvbnNDb21wb25lbnQgfSBmcm9tICcuLi8uLi9pY29ucy93YXBwaW5nLWljb25zL3ctaWNvbnMuY29tcG9uZW50JztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAndy1pbWFnZS1maWxlLXVwbG9hZGVyJyxcclxuICB0ZW1wbGF0ZVVybDogJy4vdy1pbWFnZS1maWxlLXVwbG9hZGVyLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybHM6IFsnLi93LWltYWdlLWZpbGUtdXBsb2FkZXIuY29tcG9uZW50LnNjc3MnXSxcclxuICBwcm92aWRlcnM6IFtDb25maXJtYXRpb25TZXJ2aWNlXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgV0ltYWdlRmlsZVVwbG9hZGVyQ29tcG9uZW50IHtcclxuICBASW5wdXQoJ2FsbG93TXVsdGlwbGVJbWFnZXMnKSBhbGxvd011bHRpcGxlSW1hZ2VzOiBib29sZWFuID0gZmFsc2U7XHJcbiAgQElucHV0KCdhY3RpdmVJbWFnZVVwbG9hZCcpIGFjdGl2ZUltYWdlVXBsb2FkOiBib29sZWFuID0gZmFsc2U7XHJcbiAgQElucHV0KCdpbWFnZXNBbHJlYWR5VXBsb2FkZWQnKSBpbWFnZXNBbHJlYWR5VXBsb2FkZWQ6IGFueVtdID0gW107XHJcbiAgQElucHV0KCdpbWFnZVNpbmdsZU1vZGUnKSBpbWFnZVNpbmdsZU1vZGU6IGFueTtcclxuICBASW5wdXQoJ3VwbG9hZFVybCcpIHVwbG9hZFVybCE6IHN0cmluZztcclxuICBASW5wdXQoJ3VwZGF0ZVVybCcpIHVwZGF0ZVVybCE6IHN0cmluZztcclxuICBASW5wdXQoJ2RlbGV0ZVVybCcpIGRlbGV0ZVVybCE6IHN0cmluZztcclxuICBASW5wdXQoJ2hlYWRlcnMnKSBoZWFkZXJzITogSHR0cEhlYWRlcnM7XHJcbiAgQElucHV0KCdhY3RpdmVQb3NpdGlvblByb3BlcnR5JykgYWN0aXZlUG9zaXRpb25Qcm9wZXJ0eTogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIEBJbnB1dCgndmlld1NpbmdsZU1vZGUnKSB2aWV3U2luZ2xlTW9kZTogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIEBJbnB1dCgndmlld011bHRpTW9kZScpIHZpZXdNdWx0aU1vZGU6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBASW5wdXQoJ2lkZW50aWZpY2F0b3JJbWFnZU5hbWUnKSBpZGVudGlmaWNhdG9yTmFtZTogc3RyaW5nID0gXCJpZFwiO1xyXG4gIEBJbnB1dCgnaWRlbnRpZmljYXRvckltYWdlc0NvbGxlY3Rpb25WYWx1ZScpIGlkZW50aWZpY2F0b3JWYWx1ZTogYW55ID0gMDtcclxuICBASW5wdXQoJ2ltYWdlVXBsb2FkQ29uZmlnJykgaW1hZ2VVcGxvYWRDb25maWc6IFdJbWFnZUZpbGVVcGxvYWRlckNvbmZpZyA9IHsgXHJcbiAgICBpbWFnZVByb3BlcnR5TmFtZXM6IFtdLCBcclxuICAgIGFjY2VwdEltYWdlVHlwZXM6IFwiaW1hZ2UvKlwiLCBcclxuICAgIG1heEltYWdlU2l6ZTogMTAwMDAwMCxcclxuICAgIGFsbG93QXV0bzogZmFsc2UsIFxyXG4gICAgdXBsb2FkQnV0dG9uTGFiZWw6IFwiXCIsXHJcbiAgICBjaG9vc2VCdXR0b25MYWJlbDogXCJcIixcclxuICAgIGNhbmNlbEJ1dHRvbkxhYmVsOiBcIlwiLFxyXG4gICAgY29udGVudEhlYWRlckxhYmVsOiBcIlwiLFxyXG4gICAgY29udGVudFN1YmhlYWRlckxhYmVsOiBcIlwiLFxyXG4gICAgZGVsZXRlSW1hZ2VCdXR0b25MYWJlbDogXCJcIixcclxuICAgIGNyb3BwZWREaWFsb2dUcmFuc2xhdGlvbnM6IFwiXCIsXHJcbiAgICBjcm9wcGVkSW1hZ2VDb25maWd1cmF0aW9uOiB7XHJcbiAgICAgIHJvdW5kZWRDcm9wcGVyOiBmYWxzZSxcclxuICAgICAgY29uZmlndXJlZEFzcGVjdFJhdGlvOiA0LzMsXHJcbiAgICAgIHZpZXdQb3J0V2lkdGhQeDogNDAwLFxyXG4gICAgICB2aWV3UG9ydEhlaWh0UHg6IDUwMFxyXG4gICAgfSxcclxuICAgIGNvbmZpcm1EZWxldGVNZXNzYWdlTGFiZWw6IFwiXCIsXHJcbiAgICBjb25maXJtRGVsZXRlQnV0dG9uTGFiZWw6IFwiXCIsXHJcbiAgICBpbnZhbGlkRmlsZVNpemVNZXNzYWdlU3VtbWFyeTogXCJcIixcclxuICAgIGludmFsaWRGaWxlU2l6ZU1lc3NhZ2VEZXRhaWw6IFwiXCIsXHJcbiAgICBpbnZhbGlkRmlsZVR5cGVNZXNzYWdlU3VtbWFyeTogXCJcIixcclxuICAgIGludmFsaWRGaWxlVHlwZU1lc3NhZ2VEZXRhaWw6IFwiXCJcclxuICB9XHJcbiAgQElucHV0KCdhY3RpdmVGaWVsZFZlcnNpb24nKSBhY3RpdmVGaWVsZFZlcnNpb246IGJvb2xlYW4gPSBmYWxzZTsgXHJcbiAgQElucHV0KCdsYWJlbCcpIGxhYmVsITogc3RyaW5nOyBcclxuICBASW5wdXQoJ3Rvb2x0aXAnKSB0b29sdGlwITogc3RyaW5nOyBcclxuICBASW5wdXQoJ3JlcXVpcmVkJykgcmVxdWlyZWQ6IGJvb2xlYW4gPSBmYWxzZTsgXHJcblxyXG4gIEBPdXRwdXQoJ29uVXBsb2FkRmluaXNoZWQnKSBvblVwbG9hZEZpbmlzaGVkOiBFdmVudEVtaXR0ZXI8YW55PiA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xyXG4gIEBPdXRwdXQoJ29uRXJyb3JIYW5kbGVyJykgb25FcnJvckhhbmRsZXI6IEV2ZW50RW1pdHRlcjxhbnk+ID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XHJcbiAgQE91dHB1dCgnb25SZXR1cm5JbWFnZXNCNjQnKSBvblJldHVybkltYWdlc0I2NDogRXZlbnRFbWl0dGVyPGFueT4gPSBuZXcgRXZlbnRFbWl0dGVyPGFueT4oKTtcclxuICBAT3V0cHV0KCdvbkRlbGV0ZUltYWdlJykgb25EZWxldGVJbWFnZTogRXZlbnRFbWl0dGVyPGFueT4gPSBuZXcgRXZlbnRFbWl0dGVyPGFueT4oKTtcclxuXHJcbiAgQFZpZXdDaGlsZCgnZmlsZVVwbG9hZCcpIGZpbGVVcGxvYWQhOiBGaWxlVXBsb2FkO1xyXG4gIFxyXG4gIEBWaWV3Q2hpbGRyZW4oJ2J1dHRvblJlbW92ZU9ubHlJbWFnZScpIGJ1dHRvblJlbW92ZU9ubHlJbWFnZSE6IFF1ZXJ5TGlzdDxFbGVtZW50UmVmPjtcclxuICBAVmlld0NoaWxkKCdmaWxlVXBsb2FkT25seUltYWdlJykgZmlsZXVwbG9hZE9ubHlJbWFnZSE6IEZpbGVVcGxvYWQ7XHJcblxyXG4gIGFjdGl2ZUluZGV4R2FsbGVyeTogbnVtYmVyID0gMDsgXHJcbiAgY3JvcHBlckltYWdlczogYW55W10gPSBbXTtcclxuICBkZWZhdWx0V2lkdGg6IHN0cmluZyA9IFwidy0xOHJlbVwiO1xyXG4gIGRlZmF1bHRIZWlnaHQ6IHN0cmluZyA9IFwiaC0xOHJlbVwiO1xyXG4gIGRpc2FibGVNb3ZlQnV0dG9uczogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIGlzVXBsb2FkaW5nTXVsdGlNb2RlOiBib29sZWFuID0gZmFsc2U7XHJcbiAgaXNEZWxldGluZ011bHRpTW9kZTogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIFxyXG4gIG9ubHlJbWFnZVNlbGVjdGVkOiBhbnk7XHJcbiAgb25seUNyb3BwZWRJbWFnZVNlbGVjdGVkOiBhbnkgPSBudWxsO1xyXG4gIFxyXG4gIGRpbWVuc2lvbnNJbnB1dCE6IFdJbWFnZUNyb3BwZXJEYXRhO1xyXG4gIGNhcm91c2VsSW1hZ2VzUmVzcG9uc2l2ZU9wdGlvbnM6IGFueVtdID0gW1xyXG4gICAge1xyXG4gICAgICBicmVha3BvaW50OiAnMTAyNHB4JyxcclxuICAgICAgbnVtVmlzaWJsZTogNCxcclxuICAgICAgbnVtU2Nyb2xsOiA0XHJcbiAgICB9LFxyXG4gICAge1xyXG4gICAgICBicmVha3BvaW50OiAnODUwcHgnLFxyXG4gICAgICBudW1WaXNpYmxlOiAyLFxyXG4gICAgICBudW1TY3JvbGw6IDJcclxuICAgIH0sXHJcbiAgICB7XHJcbiAgICAgIGJyZWFrcG9pbnQ6ICc1NjBweCcsXHJcbiAgICAgIG51bVZpc2libGU6IDEsXHJcbiAgICAgIG51bVNjcm9sbDogMVxyXG4gICAgfVxyXG4gIF07XHJcblxyXG4gIGNvbnN0cnVjdG9yKFxyXG4gICAgcHJpdmF0ZSBkaWFsb2dTZXJ2aWNlOiBEaWFsb2dTZXJ2aWNlLCBcclxuICAgIHByaXZhdGUgaHR0cDogSHR0cENsaWVudCwgXHJcbiAgICBwcml2YXRlIGNvbmZpcm1hdGlvblNlcnZpY2U6IENvbmZpcm1hdGlvblNlcnZpY2VcclxuICApe31cclxuXHJcbiAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgICB0aGlzLmRpbWVuc2lvbnNJbnB1dCA9IHtcclxuICAgICAgcm91bmRlZENyb3BwZXI6IHRoaXMuaW1hZ2VVcGxvYWRDb25maWcuY3JvcHBlZEltYWdlQ29uZmlndXJhdGlvbi5yb3VuZGVkQ3JvcHBlcixcclxuICAgICAgY29uZmlndXJlZEFzcGVjdFJhdGlvOiB0aGlzLmltYWdlVXBsb2FkQ29uZmlnLmNyb3BwZWRJbWFnZUNvbmZpZ3VyYXRpb24uY29uZmlndXJlZEFzcGVjdFJhdGlvLFxyXG4gICAgICB2aWV3UG9ydFdpZHRoUHg6IHRoaXMuaW1hZ2VVcGxvYWRDb25maWcuY3JvcHBlZEltYWdlQ29uZmlndXJhdGlvbi52aWV3UG9ydFdpZHRoUHgsXHJcbiAgICAgIHZpZXdQb3J0SGVpaHRQeDogdGhpcy5pbWFnZVVwbG9hZENvbmZpZy5jcm9wcGVkSW1hZ2VDb25maWd1cmF0aW9uLnZpZXdQb3J0SGVpaHRQeCxcclxuICAgICAgbWF4RmlsZVNpemU6IHRoaXMuaW1hZ2VVcGxvYWRDb25maWcubWF4SW1hZ2VTaXplXHJcbiAgICB9XHJcblxyXG4gICAgaWYodGhpcy5hY3RpdmVJbWFnZVVwbG9hZCA9PSBmYWxzZSAmJiB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZC5sZW5ndGggPiAwKXtcclxuICAgICAgdGhpcy5jcm9wcGVySW1hZ2VzLnB1c2goLi4udGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQpO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgcmVhZFByb3BlcnR5KG9iajogYW55LCBwcm9wOnN0cmluZyk6YW55IHtcclxuICAgIGlmKHR5cGVvZiBvYmogPT09ICd1bmRlZmluZWQnKSB7XHJcbiAgICAgIHJldHVybiBmYWxzZTtcclxuICAgIH1cclxuICAgIFxyXG4gICAgdmFyIF9pbmRleCA9IHByb3AuaW5kZXhPZignLicpXHJcbiAgICBpZihfaW5kZXggPiAtMSkge1xyXG4gICAgICAgIHJldHVybiB0aGlzLnJlYWRQcm9wZXJ0eShvYmpbcHJvcC5zdWJzdHJpbmcoMCwgX2luZGV4KV0sIHByb3Auc3Vic3RyKF9pbmRleCArIDEpKTtcclxuICAgIH1cclxuICAgIHJldHVybiBvYmpbcHJvcF07XHJcbiAgfVxyXG5cclxuICBvbkN1c3RvbVVwbG9hZFNpbmdsZU1vZGUoZXZlbnQ6IGFueSl7XHJcbiAgICB0aGlzLm9ubHlJbWFnZVNlbGVjdGVkID0gZXZlbnQuY3VycmVudEZpbGVzWzBdO1xyXG4gICAgdGhpcy5vcGVuTW9kYWxDcm9wcGVyKHRoaXMub25seUltYWdlU2VsZWN0ZWQsIGV2ZW50Lm9yaWdpbmFsRXZlbnQpO1xyXG4gIH1cclxuXHJcbiAgb25DdXN0b21pemVVcGxvYWRGdW5jdGlvblNpbmdsZU1vZGUoZXZlbnQ6IGFueSl7XHJcbiAgICBpZih0aGlzLmFjdGl2ZUltYWdlVXBsb2FkID09IHRydWUpe1xyXG4gICAgICBpZih0aGlzLm9ubHlDcm9wcGVkSW1hZ2VTZWxlY3RlZCl7XHJcbiAgICAgICAgbGV0IGJhc2U2NEltYWdlczogSW1hZ2VCNjRbXSA9IFt7YmFzZTY0OiB0aGlzLm9ubHlDcm9wcGVkSW1hZ2VTZWxlY3RlZC5iYXNlNjQsIG5hbWU6IHRoaXMub25seUNyb3BwZWRJbWFnZVNlbGVjdGVkLm5hbWV9XTtcclxuXHJcbiAgICAgICAgdGhpcy5odHRwLnBvc3QodGhpcy51cGxvYWRVcmwsIGJhc2U2NEltYWdlcywgeyBoZWFkZXJzOiB0aGlzLmhlYWRlcnMgfSkuc3Vic2NyaWJlKHtcclxuICAgICAgICAgIG5leHQ6IChpbWFnZVVwbG9hZGVkOiBhbnkpID0+IHtcclxuICAgICAgICAgICAgdGhpcy5maWxldXBsb2FkT25seUltYWdlLmNsZWFyKCk7XHJcbiAgICAgICAgICAgIHRoaXMub25VcGxvYWRGaW5pc2hlZC5lbWl0KGltYWdlVXBsb2FkZWQpO1xyXG4gICAgICAgICAgfSxcclxuICAgICAgICAgIGVycm9yOiAoZXJyb3IpID0+IHtcclxuICAgICAgICAgICAgdGhpcy5maWxldXBsb2FkT25seUltYWdlLnVwbG9hZGluZyA9IGZhbHNlO1xyXG4gICAgICAgICAgICB0aGlzLm9uRXJyb3JIYW5kbGVyLmVtaXQoZXJyb3IpO1xyXG4gICAgICAgICAgfVxyXG4gICAgICAgIH0pXHJcbiAgICAgIH1cclxuICAgIH1cclxuICB9XHJcblxyXG4gIHJlbW92ZUltYWdlU2luZ2xlTW9kZShldmVudDogRXZlbnQsIGZpbGU6IGFueSkge1xyXG4gICAgZXZlbnQuc3RvcFByb3BhZ2F0aW9uKCk7XHJcbiAgICB0aGlzLmZpbGV1cGxvYWRPbmx5SW1hZ2UuY2xlYXIoKTtcclxuICAgIHRoaXMub25seUltYWdlU2VsZWN0ZWQgPSBudWxsO1xyXG4gICAgdGhpcy5vbmx5Q3JvcHBlZEltYWdlU2VsZWN0ZWQgPSBudWxsO1xyXG4gICAgdGhpcy5pbWFnZVNpbmdsZU1vZGUgPSBudWxsO1xyXG4gICAgdGhpcy5vblJldHVybkltYWdlc0I2NC5lbWl0KG51bGwpO1xyXG4gIH1cclxuXHJcbiAgbW92ZUltYWdlVG9MZWZ0KGV2ZW50OiBhbnkpe1xyXG4gICAgbGV0IGluZGV4VG9Nb3ZlID0gdGhpcy5maW5kSW5kZXgoZXZlbnQpO1xyXG4gICAgaWYoaW5kZXhUb01vdmUgPiAwICYmIGluZGV4VG9Nb3ZlIDwgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQubGVuZ3RoKXtcclxuICAgICAgY29uc3QgdGVtcCA9IHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkW2luZGV4VG9Nb3ZlXTtcclxuICAgICAgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWRbaW5kZXhUb01vdmVdID0gdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWRbIGluZGV4VG9Nb3ZlIC0gMV07XHJcbiAgICAgIHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkW2luZGV4VG9Nb3ZlIC0gMV0gPSB0ZW1wO1xyXG5cclxuICAgICAgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQgPSAodGhpcy5hY3RpdmVQb3NpdGlvblByb3BlcnR5KSA/IHRoaXMuYWRkUG9zaXRpb25Qcm9wZXJ0eSh0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZCkgOiB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZDtcclxuICAgICAgdGhpcy5hY3RpdmVJbmRleEdhbGxlcnkgPSBpbmRleFRvTW92ZSAtIDE7XHJcbiAgICAgIFxyXG4gICAgICBpZih0aGlzLnVwbG9hZFVybCAhPSB1bmRlZmluZWQgJiYgdGhpcy5pZGVudGlmaWNhdG9yVmFsdWUgIT09IDApe1xyXG4gICAgICAgIHRoaXMuZGlzYWJsZU1vdmVCdXR0b25zID0gdHJ1ZTtcclxuICAgICAgICB0aGlzLnVwZGF0ZUltYWdlKHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkKTtcclxuICAgICAgfWVsc2UgaWYodGhpcy5hY3RpdmVJbWFnZVVwbG9hZCA9PSB0cnVlICYmIHRoaXMudXBsb2FkVXJsICE9IHVuZGVmaW5lZCl7XHJcbiAgICAgICAgdGhpcy5vblVwbG9hZEZpbmlzaGVkLmVtaXQodGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQpO1xyXG4gICAgICB9ZWxzZXtcclxuICAgICAgICB0aGlzLm9uUmV0dXJuSW1hZ2VzQjY0LmVtaXQodGhpcy5nZXRBcnJheXNUb0NyZWF0ZUFuZFRvVXBkYXRlKHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkKSk7XHJcbiAgICAgIH1cclxuICAgIH1cclxuICB9XHJcblxyXG4gIG1vdmVJbWFnZVRvUmlnaHQoZXZlbnQ6IGFueSl7ICBcclxuICAgIGxldCBpbmRleFRvTW92ZSA9IHRoaXMuZmluZEluZGV4KGV2ZW50KTtcclxuICAgIGlmKGluZGV4VG9Nb3ZlID49IDAgJiYgaW5kZXhUb01vdmUgPCB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZC5sZW5ndGggLTEpe1xyXG4gICAgICBjb25zdCB0ZW1wID0gdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWRbaW5kZXhUb01vdmVdO1xyXG4gICAgICB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZFtpbmRleFRvTW92ZV0gPSB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZFsgaW5kZXhUb01vdmUgKyAxXTtcclxuICAgICAgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWRbaW5kZXhUb01vdmUgKyAxXSA9IHRlbXA7XHJcblxyXG4gICAgICB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZCA9ICh0aGlzLmFjdGl2ZVBvc2l0aW9uUHJvcGVydHkpID8gdGhpcy5hZGRQb3NpdGlvblByb3BlcnR5KHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkKSA6IHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkO1xyXG4gICAgICB0aGlzLmFjdGl2ZUluZGV4R2FsbGVyeSA9IGluZGV4VG9Nb3ZlICsgMTsgXHJcblxyXG4gICAgICBpZih0aGlzLnVwbG9hZFVybCE9dW5kZWZpbmVkICYmIHRoaXMuaWRlbnRpZmljYXRvclZhbHVlICE9PSAwKXtcclxuICAgICAgICB0aGlzLmRpc2FibGVNb3ZlQnV0dG9ucyA9IHRydWU7IFxyXG4gICAgICAgIHRoaXMudXBkYXRlSW1hZ2UodGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQpO1xyXG4gICAgICB9ZWxzZSBpZih0aGlzLmFjdGl2ZUltYWdlVXBsb2FkID09IHRydWUgJiYgdGhpcy51cGxvYWRVcmwgIT0gdW5kZWZpbmVkKXtcclxuICAgICAgICB0aGlzLm9uVXBsb2FkRmluaXNoZWQuZW1pdCh0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZCk7XHJcbiAgICAgIH1lbHNle1xyXG4gICAgICAgIHRoaXMub25SZXR1cm5JbWFnZXNCNjQuZW1pdCh0aGlzLmdldEFycmF5c1RvQ3JlYXRlQW5kVG9VcGRhdGUodGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQpKTtcclxuICAgICAgfVxyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgb25DdXN0b21pemVVcGxvYWRGdW5jdGlvbk11bHRpTW9kZShldmVudD86IGFueSl7XHJcbiAgICBpZih0aGlzLmFjdGl2ZUltYWdlVXBsb2FkID09IHRydWUpe1xyXG4gICAgICBpZih0aGlzLmNyb3BwZXJJbWFnZXMubGVuZ3RoID4gMCl7XHJcbiAgICAgICAgbGV0IGJhc2U2NEltYWdlczogSW1hZ2VCNjRbXSA9IHRoaXMubWFwVG9PYmplY3RCNjQodGhpcy5jcm9wcGVySW1hZ2VzKTtcclxuICAgICAgICB0aGlzLmlzVXBsb2FkaW5nTXVsdGlNb2RlID0gdHJ1ZTtcclxuXHJcbiAgICAgICAgdGhpcy5odHRwLnBvc3QodGhpcy51cGxvYWRVcmwsIGJhc2U2NEltYWdlcywgeyBoZWFkZXJzOiB0aGlzLmhlYWRlcnMgfSkuc3Vic2NyaWJlKHtcclxuICAgICAgICAgIG5leHQ6ICAoaW1hZ2VzVXBsb2FkZWQ6IGFueSkgPT4ge1xyXG4gICAgICAgICAgICB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZC5wdXNoKC4uLmltYWdlc1VwbG9hZGVkKTtcclxuICAgICAgICAgICAgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQgPSBbLi4udGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWRdO1xyXG4gICAgICAgICAgXHJcbiAgICAgICAgICAgIGlmKHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkLmxlbmd0aCA9PSAxKXtcclxuICAgICAgICAgICAgICB0aGlzLmFjdGl2ZUluZGV4R2FsbGVyeSA9IDA7IFxyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIFxyXG4gICAgICAgICAgICB0aGlzLmNyb3BwZXJJbWFnZXMgPSBbXTtcclxuICAgICAgICAgICAgdGhpcy5maWxlVXBsb2FkLmNsZWFyKCk7XHJcblxyXG4gICAgICAgICAgICB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZCA9IHRoaXMuYWN0aXZlUG9zaXRpb25Qcm9wZXJ0eSA/IHRoaXMuYWRkUG9zaXRpb25Qcm9wZXJ0eSh0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZCkgOiB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZDtcclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgIGlmKHRoaXMudXBsb2FkVXJsIT11bmRlZmluZWQgJiYgdGhpcy5pZGVudGlmaWNhdG9yVmFsdWUgIT09IDApe1xyXG4gICAgICAgICAgICAgIHRoaXMudXBkYXRlSW1hZ2UodGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQpO1xyXG4gICAgICAgICAgICB9ZWxzZXtcclxuICAgICAgICAgICAgICB0aGlzLm9uVXBsb2FkRmluaXNoZWQuZW1pdCh0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZCk7XHJcbiAgICAgICAgICAgIH1cclxuXHJcbiAgICAgICAgICAgIHRoaXMuaXNVcGxvYWRpbmdNdWx0aU1vZGUgPSBmYWxzZTtcclxuICAgICAgICAgIH0sXHJcbiAgICAgICAgICBlcnJvcjogKGVycm9yKSA9PiB7XHJcbiAgICAgICAgICAgIHRoaXMuaXNVcGxvYWRpbmdNdWx0aU1vZGUgPSBmYWxzZTtcclxuICAgICAgICAgICAgdGhpcy5vbkVycm9ySGFuZGxlci5lbWl0KGVycm9yKTtcclxuICAgICAgICAgIH1cclxuICAgICAgICB9KVxyXG4gICAgICB9XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBvbkN1c3RvbVVwbG9hZE11bHRpTW9kZShldmVudDogYW55KXtcclxuICAgIGlmKHRoaXMuYWxsb3dNdWx0aXBsZUltYWdlcyA9PSB0cnVlKXtcclxuICAgICAgZXZlbnQuY3VycmVudEZpbGVzLmZvckVhY2goKGZpbGU6IGFueSwgaW5kZXg6IG51bWJlcikgPT4ge1xyXG4gICAgICAgIGxldCBmb3VuZEl0ID0gdGhpcy5jcm9wcGVySW1hZ2VzLmZpbmQoZiA9PiBmLm5hbWUgPT0gZmlsZS5uYW1lKTtcclxuICAgICAgICBpZihldmVudC5jdXJyZW50RmlsZXMubGVuZ3RoID09IDApe1xyXG4gICAgICAgICAgdGhpcy5vcGVuTW9kYWxDcm9wcGVyKGZpbGUsIGV2ZW50Lm9yaWdpbmFsRXZlbnQpO1xyXG4gICAgICAgIH1lbHNlIGlmKGZvdW5kSXQgPT0gdW5kZWZpbmVkKXtcclxuICAgICAgICAgIHRoaXMub3Blbk1vZGFsQ3JvcHBlcihmaWxlLCBldmVudC5vcmlnaW5hbEV2ZW50KTtcclxuICAgICAgICB9XHJcbiAgICAgIH0pO1xyXG4gICAgfWVsc2V7XHJcbiAgICAgIHRoaXMub3Blbk1vZGFsQ3JvcHBlcihldmVudC5jdXJyZW50RmlsZXNbMF0sIGV2ZW50Lm9yaWdpbmFsRXZlbnQpO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgY29uZmlybURlbGV0ZUltYWdlTXVsdGlNb2RlKGV2ZW50OiBhbnksIGltYWdlOiBhbnkpe1xyXG4gICAgdGhpcy5jb25maXJtYXRpb25TZXJ2aWNlLmNvbmZpcm0oe1xyXG4gICAgICB0YXJnZXQ6IGV2ZW50LnRhcmdldCBhcyBFdmVudFRhcmdldCwgXHJcbiAgICAgIG1lc3NhZ2U6IHRoaXMuaW1hZ2VVcGxvYWRDb25maWcuY29uZmlybURlbGV0ZU1lc3NhZ2VMYWJlbCxcclxuICAgICAgaWNvbjogXCJwaSBwaS1leGNsYW1hdGlvbi10cmlhbmdsZVwiLFxyXG4gICAgICBhY2NlcHRMYWJlbDogdGhpcy5pbWFnZVVwbG9hZENvbmZpZy5kZWxldGVJbWFnZUJ1dHRvbkxhYmVsLCBcclxuICAgICAgYWNjZXB0OiAoKSA9PiB7XHJcbiAgICAgICAgdGhpcy5vbkRlbGV0ZUltYWdlTXVsdGlNb2RlKGltYWdlKTtcclxuICAgICAgfVxyXG4gICAgfSlcclxuICB9XHJcblxyXG4gIG9uRGVsZXRlRmlsZU11bHRpTW9kZShldmVudDogYW55LCBmaWxlOiBGaWxlLCB1cGxvYWRlcjogRmlsZVVwbG9hZCl7XHJcbiAgICBjb25zdCBpbmRleCA9IHVwbG9hZGVyLmZpbGVzLmluZGV4T2YoZmlsZSk7XHJcbiAgICB1cGxvYWRlci5yZW1vdmUoZXZlbnQsIGluZGV4KTtcclxuICAgIHRoaXMuY3JvcHBlckltYWdlcyA9IHRoaXMuY3JvcHBlckltYWdlcy5maWx0ZXIocyA9PiAhZmlsZS5uYW1lLmluY2x1ZGVzKHMubmFtZSkpO1xyXG4gIH1cclxuXHJcbiAgb25EZWxldGVJbWFnZU11bHRpTW9kZShpbWFnZTogYW55KXtcclxuICAgIHRoaXMuaXNEZWxldGluZ011bHRpTW9kZSA9IHRydWU7XHJcbiAgICBpZih0aGlzLmFjdGl2ZUltYWdlVXBsb2FkKXtcclxuICAgICAgbGV0IGRlbGV0ZVVybEZpbmFsID0gdGhpcy5kZWxldGVVcmwrXCIvXCIraW1hZ2VbdGhpcy5pZGVudGlmaWNhdG9yTmFtZV07XHJcbiAgICAgIHRoaXMuaHR0cC5kZWxldGUoZGVsZXRlVXJsRmluYWwsIHtoZWFkZXJzOiB0aGlzLmhlYWRlcnN9KS5zdWJzY3JpYmUoe1xyXG4gICAgICAgIG5leHQ6ICgpID0+IHtcclxuICAgICAgICAgIHRoaXMuZ2V0SW5kZXhUb0RlbGV0ZShpbWFnZSk7IFxyXG4gICAgICAgICAgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQgPSB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZC5maWx0ZXIoaW1nID0+IChpbWcuYmFzZTY0ICE9PSBpbWFnZS5iYXNlNjQpIHx8IChpbWdbdGhpcy5pZGVudGlmaWNhdG9yTmFtZV0gIT09IGltYWdlW3RoaXMuaWRlbnRpZmljYXRvck5hbWVdKSk7XHJcbiAgICAgICAgICB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZCA9IFsuLi50aGlzLmFjdGl2ZVBvc2l0aW9uUHJvcGVydHkgPyB0aGlzLmFkZFBvc2l0aW9uUHJvcGVydHkodGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQpIDogdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWRdO1xyXG4gICAgICAgICAgdGhpcy5pc0RlbGV0aW5nTXVsdGlNb2RlID0gZmFsc2U7XHJcbiAgICAgICAgICB0aGlzLm9uRGVsZXRlSW1hZ2UuZW1pdCh7ZGVsZXRlZEltYWdlOiBpbWFnZSwgaW1hZ2VzOiB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZH0pO1xyXG4gICAgICAgIH0sXHJcbiAgICAgICAgZXJyb3I6IChlcnJvcikgPT4ge1xyXG4gICAgICAgICAgdGhpcy5pc0RlbGV0aW5nTXVsdGlNb2RlID0gZmFsc2U7XHJcbiAgICAgICAgICB0aGlzLm9uRXJyb3JIYW5kbGVyLmVtaXQoZXJyb3IpO1xyXG4gICAgICAgICAgdGhpcy5vbkRlbGV0ZUltYWdlLmVtaXQobnVsbCk7XHJcbiAgICAgICAgfVxyXG4gICAgICB9KVxyXG4gICAgfWVsc2V7XHJcbiAgICAgIHRoaXMuZ2V0SW5kZXhUb0RlbGV0ZShpbWFnZSk7IFxyXG4gICAgICB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZCA9IHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkLmZpbHRlcihpbWcgPT4gKGltZy5iYXNlNjQgIT09IGltYWdlLmJhc2U2NCkgfHwgKGltZ1t0aGlzLmlkZW50aWZpY2F0b3JOYW1lXSAhPT0gaW1hZ2VbdGhpcy5pZGVudGlmaWNhdG9yTmFtZV0pKTtcclxuICAgICAgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQgPSBbLi4udGhpcy5hY3RpdmVQb3NpdGlvblByb3BlcnR5ID8gdGhpcy5hZGRQb3NpdGlvblByb3BlcnR5KHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkKSA6IHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkXTtcclxuICAgICAgdGhpcy5vbkRlbGV0ZUltYWdlLmVtaXQoe2RlbGV0ZWRJbWFnZTogaW1hZ2UsIGltYWdlczogdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWR9KTtcclxuICAgICAgdGhpcy5pc0RlbGV0aW5nTXVsdGlNb2RlID0gZmFsc2U7XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBnZXRJbmRleFRvRGVsZXRlKGltYWdlOiBhbnkpe1xyXG4gICAgbGV0IGltYWdlSW5kZXggPSB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZC5maW5kSW5kZXgoaW1nID0+IHtcclxuICAgICAgaWYoKGltZy5iYXNlNjQgIT0gdW5kZWZpbmVkKSl7XHJcbiAgICAgICAgaWYoaW1nLmJhc2U2NCA9PSBpbWFnZS5iYXNlNjQpe1xyXG4gICAgICAgICAgcmV0dXJuIGltZy5pbmRleDsgXHJcbiAgICAgICAgfVxyXG4gICAgICB9ZWxzZSBpZihpbWdbdGhpcy5pZGVudGlmaWNhdG9yTmFtZV0gIT09IGltYWdlW3RoaXMuaWRlbnRpZmljYXRvck5hbWVdKXtcclxuICAgICAgICByZXR1cm4gaW1nLmluZGV4OyBcclxuICAgICAgfVxyXG4gICAgICByZXR1cm4gLTE7IFxyXG4gICAgfSk7XHJcblxyXG4gICAgaWYoaW1hZ2VJbmRleCsxID09IHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkLmxlbmd0aCl7XHJcbiAgICAgIHRoaXMuYWN0aXZlSW5kZXhHYWxsZXJ5ID0gaW1hZ2VJbmRleC0xOyBcclxuICAgIH1cclxuICB9XHJcblxyXG4gIHVwZGF0ZUltYWdlKGltYWdlc1RvVXBkYXRlOiBhbnlbXSk6IGFueXtcclxuICAgIGxldCB1cGRhdGVVcmxGaW5hbCA9IHRoaXMudXBkYXRlVXJsICsgXCIvXCIgKyB0aGlzLmlkZW50aWZpY2F0b3JWYWx1ZTtcclxuICAgIHRoaXMuaHR0cC5wdXQodXBkYXRlVXJsRmluYWwsIGltYWdlc1RvVXBkYXRlLCB7aGVhZGVyczogdGhpcy5oZWFkZXJzfSkuc3Vic2NyaWJlKHtcclxuICAgICAgbmV4dDogKGltYWdlc1VwZGF0ZWQ6IGFueSkgPT4ge1xyXG4gICAgICAgIHRoaXMuZGlzYWJsZU1vdmVCdXR0b25zID0gZmFsc2U7XHJcbiAgICAgICAgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQgPSBpbWFnZXNVcGRhdGVkO1xyXG4gICAgICAgIHRoaXMub25VcGxvYWRGaW5pc2hlZC5lbWl0KHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkKTtcclxuICAgICAgfVxyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICBvcGVuTW9kYWxDcm9wcGVyKGZpbGVCbG9iOiBhbnksIGV2ZW50PzogYW55KXtcclxuICAgIGNvbnN0IHJlZjogRHluYW1pY0RpYWxvZ1JlZiA9IHRoaXMuZGlhbG9nU2VydmljZS5vcGVuKFdJbWFnZUNyb3BwZXJDb21wb25lbnQsIHtcclxuICAgICAgaGVhZGVyOiB0aGlzLmltYWdlVXBsb2FkQ29uZmlnLmNyb3BwZWREaWFsb2dUcmFuc2xhdGlvbnM/Lm1vZGFsLmhlYWRlcixcclxuICAgICAgd2lkdGg6ICc3MHJlbScsXHJcbiAgICAgIGNvbnRlbnRTdHlsZToge1wib3ZlcmZsb3dcIjogXCJhdXRvXCIsIFwiaGVpZ2h0XCI6IFwiYXV0b1wiLCBcInBhZGRpbmctYm90dG9tXCI6IFwiOHB4XCJ9LFxyXG4gICAgICBkYXRhOiB7ZGF0YU1vZGFsOiB0aGlzLmRpbWVuc2lvbnNJbnB1dCwgdHJhbnNsYXRpb25zOiB0aGlzLmltYWdlVXBsb2FkQ29uZmlnLmNyb3BwZWREaWFsb2dUcmFuc2xhdGlvbnMsIGJsb2I6IGZpbGVCbG9ifSxcclxuICAgICAgcmVzaXphYmxlOiB0cnVlXHJcbiAgICB9KTtcclxuXHJcbiAgICByZWYub25DbG9zZS5zdWJzY3JpYmUoKGltYWdlQ3JvcHBlZDogV0ZpbGVCNjQpID0+IHtcclxuICAgICAgaWYoaW1hZ2VDcm9wcGVkKXtcclxuICAgICAgICBpZih0aGlzLmFsbG93TXVsdGlwbGVJbWFnZXMgPT0gZmFsc2Upe1xyXG4gICAgICAgICAgdGhpcy5vbmx5Q3JvcHBlZEltYWdlU2VsZWN0ZWQgPSBpbWFnZUNyb3BwZWQ7XHJcbiAgICAgICAgICB0aGlzLm9uUmV0dXJuSW1hZ2VzQjY0LmVtaXQodGhpcy5tYXBUb09iamVjdEI2NCh0aGlzLm9ubHlDcm9wcGVkSW1hZ2VTZWxlY3RlZCkpO1xyXG4gICAgICAgIH1lbHNle1xyXG4gICAgICAgICAgdGhpcy5jcm9wcGVySW1hZ2VzLnB1c2goaW1hZ2VDcm9wcGVkKTtcclxuICAgICAgICAgIFxyXG4gICAgICAgICAgdGhpcy5jcm9wcGVySW1hZ2VzID0gKHRoaXMuYWN0aXZlUG9zaXRpb25Qcm9wZXJ0eSAmJiB0aGlzLmFjdGl2ZUltYWdlVXBsb2FkID09IGZhbHNlICkgPyB0aGlzLmFkZFBvc2l0aW9uUHJvcGVydHkodGhpcy5jcm9wcGVySW1hZ2VzKSA6IHRoaXMuY3JvcHBlckltYWdlcztcclxuXHJcbiAgICAgICAgICBpZih0aGlzLmFjdGl2ZUltYWdlVXBsb2FkID09IGZhbHNlKXtcclxuICAgICAgICAgICAgdGhpcy5pbWFnZXNBbHJlYWR5VXBsb2FkZWQucHVzaChpbWFnZUNyb3BwZWQpO1xyXG4gICAgICAgICAgICB0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZCA9IFsuLi50aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZF07XHJcblxyXG4gICAgICAgICAgICBpZih0aGlzLmltYWdlc0FscmVhZHlVcGxvYWRlZC5sZW5ndGggPT0gMSl7XHJcbiAgICAgICAgICAgICAgdGhpcy5hY3RpdmVJbmRleEdhbGxlcnkgPSAwOyBcclxuICAgICAgICAgICAgfVxyXG5cclxuICAgICAgICAgICAgdGhpcy5vblJldHVybkltYWdlc0I2NC5lbWl0KHRoaXMuZ2V0QXJyYXlzVG9DcmVhdGVBbmRUb1VwZGF0ZSh0aGlzLmNyb3BwZXJJbWFnZXMpKTtcclxuICAgICAgICAgIH1lbHNle1xyXG4gICAgICAgICAgICB0aGlzLm9uUmV0dXJuSW1hZ2VzQjY0LmVtaXQodGhpcy5nZXRBcnJheXNUb0NyZWF0ZUFuZFRvVXBkYXRlKHRoaXMubWFwVG9PYmplY3RCNjQodGhpcy5jcm9wcGVySW1hZ2VzKSkpO1xyXG4gICAgICAgICAgfVxyXG4gICAgICAgIH1cclxuICAgICAgfWVsc2V7XHJcbiAgICAgICAgaWYodGhpcy5hbGxvd011bHRpcGxlSW1hZ2VzKXtcclxuICAgICAgICAgIHRoaXMuZmlsZVVwbG9hZC5fZmlsZXMgPSB0aGlzLmZpbGVVcGxvYWQuX2ZpbGVzLmZpbHRlcihmID0+ICFmLm5hbWUuaW5jbHVkZXMoZmlsZUJsb2IubmFtZSkpO1xyXG4gICAgICAgICAgbGV0IGZpbGVzQXV4ID0gdGhpcy5maWxlVXBsb2FkLl9maWxlcztcclxuICAgICAgICAgIHRoaXMuZmlsZVVwbG9hZC5jbGVhcigpO1xyXG4gICAgICAgICAgdGhpcy5maWxlVXBsb2FkLl9maWxlcyA9IGZpbGVzQXV4O1xyXG4gICAgICAgIH1lbHNle1xyXG4gICAgICAgICAgdGhpcy5vbmx5SW1hZ2VTZWxlY3RlZCA9IG51bGw7XHJcbiAgICAgICAgICB0aGlzLmZpbGV1cGxvYWRPbmx5SW1hZ2UuY2xlYXIoKTtcclxuICAgICAgICB9XHJcbiAgICAgIH1cclxuXHJcbiAgICAgIGlmKCh0aGlzLmFjdGl2ZUltYWdlVXBsb2FkID09IHRydWUpICYmICh0aGlzLmltYWdlVXBsb2FkQ29uZmlnLmFsbG93QXV0byA9PSB0cnVlKSAmJiAodGhpcy5jcm9wcGVySW1hZ2VzLmxlbmd0aCA9PSB0aGlzLmZpbGVVcGxvYWQuX2ZpbGVzLmxlbmd0aCkpe1xyXG4gICAgICAgIHRoaXMub25DdXN0b21pemVVcGxvYWRGdW5jdGlvbk11bHRpTW9kZSgpO1xyXG4gICAgICB9XHJcbiAgICB9KVxyXG4gIH1cclxuXHJcbiAgbWFwVG9PYmplY3RCNjQoaW1hZ2VzOiBhbnkpOiBJbWFnZUI2NFtde1xyXG4gICAgaWYoQXJyYXkuaXNBcnJheShpbWFnZXMpID09IGZhbHNlKXtcclxuICAgICAgcmV0dXJuICBbe1xyXG4gICAgICAgIGJhc2U2NDogaW1hZ2VzLmJhc2U2NCxcclxuICAgICAgICBuYW1lOiBpbWFnZXMubmFtZSxcclxuICAgICAgICAuLi4oaW1hZ2VzLnBvc2l0aW9uICE9PSB1bmRlZmluZWQgJiYgeyBwb3NpdGlvbjogaW1hZ2VzLnBvc2l0aW9uIH0pXHJcbiAgICAgIH1dXHJcbiAgICB9XHJcblxyXG4gICAgcmV0dXJuIGltYWdlcy5tYXAoKGltZzogYW55KSA9PiB7XHJcbiAgICAgIHJldHVybiAge1xyXG4gICAgICAgIGJhc2U2NDogaW1nLmJhc2U2NCxcclxuICAgICAgICBuYW1lOiBpbWcubmFtZSwgXHJcbiAgICAgICAgLi4uKGltZy5wb3NpdGlvbiAhPT0gdW5kZWZpbmVkICYmIHsgcG9zaXRpb246IGltZy5wb3NpdGlvbiB9KVxyXG4gICAgICB9XHJcbiAgICB9KTtcclxuICB9XHJcblxyXG4gIGdldEFycmF5c1RvQ3JlYXRlQW5kVG9VcGRhdGUoaW1hZ2VzOiBhbnlbXSl7XHJcbiAgICByZXR1cm4ge1xyXG4gICAgICB0b0NyZWF0ZTogXHJcbiAgICAgICAgaW1hZ2VzLmZpbHRlcigoaW1nKSA9PiBpbWdbdGhpcy5pZGVudGlmaWNhdG9yTmFtZV0gPT0gdW5kZWZpbmVkKSxcclxuICAgICAgdG9VcGRhdGVkOiBcclxuICAgICAgICBpbWFnZXMuZmlsdGVyKChpbWcpID0+IGltZy5iYXNlNjQgPT0gdW5kZWZpbmVkKVxyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgYWRkUG9zaXRpb25Qcm9wZXJ0eShpbWFnZXNBcnJheTogYW55W10pe1xyXG4gICAgaW1hZ2VzQXJyYXkgPSBpbWFnZXNBcnJheS5tYXAoKGltZywgaW5kZXgpID0+ICh7XHJcbiAgICAgIC4uLmltZyxcclxuICAgICAgcG9zaXRpb246IGluZGV4XHJcbiAgICB9KSlcclxuXHJcbiAgICByZXR1cm4gaW1hZ2VzQXJyYXk7XHJcbiAgfVxyXG5cclxuICBvbkltYWdlTW91c2VPdmVyKGZpbGU6IGFueSkge1xyXG4gICAgdGhpcy5idXR0b25SZW1vdmVPbmx5SW1hZ2UudG9BcnJheSgpLmZvckVhY2goYnRuUmVtb3ZlID0+IHtcclxuICAgICAgICBidG5SZW1vdmUubmF0aXZlRWxlbWVudC5pZCA9PT0gZmlsZS5uYW1lID8gYnRuUmVtb3ZlLm5hdGl2ZUVsZW1lbnQuc3R5bGUuZGlzcGxheSA9ICdmbGV4JyA6IG51bGw7XHJcbiAgICB9KVxyXG4gIH1cclxuXHJcbiAgb25JbWFnZU1vdXNlTGVhdmUoZmlsZTogYW55KSB7XHJcbiAgICB0aGlzLmJ1dHRvblJlbW92ZU9ubHlJbWFnZS50b0FycmF5KCkuZm9yRWFjaChidG5SZW1vdmUgPT4ge1xyXG4gICAgICAgIGJ0blJlbW92ZS5uYXRpdmVFbGVtZW50LmlkID09PSBmaWxlLm5hbWUgPyBidG5SZW1vdmUubmF0aXZlRWxlbWVudC5zdHlsZS5kaXNwbGF5ID0gJ25vbmUnIDogbnVsbDtcclxuICAgIH0pXHJcbiAgfVxyXG5cclxuICBmaW5kSW5kZXgoaW1nOiBhbnkpe1xyXG4gICAgcmV0dXJuIHRoaXMuaW1hZ2VzQWxyZWFkeVVwbG9hZGVkLmluZGV4T2YoaW1nKTtcclxuICB9XHJcblxyXG4gIG9wZW5JbWFnZUZpbGVTZWxlY3Rvcigpe1xyXG4gICAgdGhpcy5maWxlVXBsb2FkLmNob29zZSgpOyBcclxuICB9XHJcblxyXG4gIG9wZW5TaW5nbGVJbWFnZUZpbGVTZWxlY3Rvcigpe1xyXG4gICAgdGhpcy5maWxldXBsb2FkT25seUltYWdlLmNob29zZSgpOyBcclxuICB9ICBcclxuXHJcbiAgZ2V0R2FsbGVyeUNsYXNzKCl7XHJcbiAgICBpZih0aGlzLmFjdGl2ZUZpZWxkVmVyc2lvbiA9PSB0cnVlKXtcclxuICAgICAgcmV0dXJuICd3LWltYWdlLWZpbGUtdXBsb2FkZXItZ2FsbGVyeS1maWVsZCc7IFxyXG4gICAgfVxyXG4gICAgcmV0dXJuICd3LWltYWdlLWZpbGUtdXBsb2FkZXItZ2FsbGVyeSc7IFxyXG4gIH1cclxufVxyXG4iLCJcclxuPHctaW5wdXQtbGFiZWwgKm5nSWY9XCJhY3RpdmVGaWVsZFZlcnNpb24gPT0gdHJ1ZVwiIFtsYWJlbF09XCJsYWJlbFwiIFt0b29sdGlwXT1cInRvb2x0aXBcIiBbcmVxdWlyZWRdPVwicmVxdWlyZWRcIj48L3ctaW5wdXQtbGFiZWw+XHJcbjxkaXYgKm5nSWY9XCJhY3RpdmVGaWVsZFZlcnNpb24gPT0gdHJ1ZSAmJiAobGFiZWwgIT0gdW5kZWZpbmVkICYmIGxhYmVsLmxlbmd0aCA+IDApXCIgY2xhc3M9XCJpbnB1dC1sYWJlbC1nYXAtZGl2aWRlclwiPjwvZGl2PlxyXG48cC1maWxlVXBsb2FkICpuZ0lmPVwiYWxsb3dNdWx0aXBsZUltYWdlcyA9PSBmYWxzZTsgZWxzZSB3aXRoQ2Fyb3VzZWxcIiAjZmlsZVVwbG9hZE9ubHlJbWFnZSBjbGFzcz1cInctaW1hZ2UtZmlsZS1idXR0b25cIiBcclxuICAgIFtuZ0NsYXNzXT1cInsndy1pbWFnZS1maWxlLXVwbG9hZGVyJyA6IGFjdGl2ZUZpZWxkVmVyc2lvbiA9PSBmYWxzZSwgXHJcbiAgICAgICAgICAgICAgICAndy1pbWFnZS1maWxlLXVwbG9hZGVyLWZpZWxkJyA6IGFjdGl2ZUZpZWxkVmVyc2lvbiA9PSB0cnVlLCBcclxuICAgICAgICAgICAgICAgICd3LWltYWdlLWZpbGUtdXBsb2FkZXItZmllbGQtbm8taW1hZ2UnIDogYWN0aXZlRmllbGRWZXJzaW9uID09IHRydWUgJiYgKG9ubHlDcm9wcGVkSW1hZ2VTZWxlY3RlZCA9PSBudWxsIHx8IHVuZGVmaW5lZCApICYmIChpbWFnZVNpbmdsZU1vZGUgPT0gbnVsbCB8fCB1bmRlZmluZWQpfVwiXHJcbiAgICBtb2RlPVwiYWR2YW5jZWRcIiAgXHJcbiAgICBbYWNjZXB0XT1cImltYWdlVXBsb2FkQ29uZmlnLmFjY2VwdEltYWdlVHlwZXNcIiBcclxuICAgIFttdWx0aXBsZV09XCJmYWxzZVwiIFxyXG4gICAgW2ludmFsaWRGaWxlU2l6ZU1lc3NhZ2VTdW1tYXJ5XT1cImltYWdlVXBsb2FkQ29uZmlnLmludmFsaWRGaWxlU2l6ZU1lc3NhZ2VTdW1tYXJ5ICsgJzonXCIgXHJcbiAgICBbaW52YWxpZEZpbGVTaXplTWVzc2FnZURldGFpbF09XCJpbWFnZVVwbG9hZENvbmZpZy5pbnZhbGlkRmlsZVNpemVNZXNzYWdlRGV0YWlsICsgJyB7MH0gYnl0ZXMuJ1wiIFxyXG4gICAgW2ludmFsaWRGaWxlVHlwZU1lc3NhZ2VTdW1tYXJ5XT1cImltYWdlVXBsb2FkQ29uZmlnLmludmFsaWRGaWxlVHlwZU1lc3NhZ2VTdW1tYXJ5ICsgJzonXCIgXHJcbiAgICBbaW52YWxpZEZpbGVUeXBlTWVzc2FnZURldGFpbF09XCJpbWFnZVVwbG9hZENvbmZpZy5pbnZhbGlkRmlsZVR5cGVNZXNzYWdlRGV0YWlsICsgJzogezB9LidcIlxyXG4gICAgKG9uU2VsZWN0KT1cIm9uQ3VzdG9tVXBsb2FkU2luZ2xlTW9kZSgkZXZlbnQpXCIgXHJcbiAgICBbdXBsb2FkTGFiZWxdPVwib25seUNyb3BwZWRJbWFnZVNlbGVjdGVkID8gKG9ubHlDcm9wcGVkSW1hZ2VTZWxlY3RlZC5uYW1lLmxlbmd0aD42KT8gKG9ubHlDcm9wcGVkSW1hZ2VTZWxlY3RlZC5uYW1lIHwgc2xpY2U6MDo2KSsnLi4uJzoob25seUNyb3BwZWRJbWFnZVNlbGVjdGVkLm5hbWUpIDogJydcIiBcclxuICAgIFtjdXN0b21VcGxvYWRdPVwidHJ1ZVwiIFxyXG4gICAgKHVwbG9hZEhhbmRsZXIpPVwib25DdXN0b21pemVVcGxvYWRGdW5jdGlvblNpbmdsZU1vZGUoJGV2ZW50KVwiIFxyXG4gICAgW21heEZpbGVTaXplXT1cImltYWdlVXBsb2FkQ29uZmlnLm1heEltYWdlU2l6ZVwiPlxyXG4gICAgPG5nLXRlbXBsYXRlIGxldC1maWxlIGxldC1pPVwiaW5kZXhcIiBwVGVtcGxhdGU9J2ZpbGUnPlxyXG4gICAgICAgIDxkaXYgKm5nSWY9XCJhY3RpdmVJbWFnZVVwbG9hZFwiPjwvZGl2PlxyXG4gICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJjb250ZW50XCI+XHJcbiAgICAgICAgPHAtcHJvZ3Jlc3NCYXIgKm5nSWY9XCJmYWxzZVwiPjwvcC1wcm9ncmVzc0Jhcj5cclxuICAgICAgICA8ZGl2ICpuZ0lmPVwiKG9ubHlDcm9wcGVkSW1hZ2VTZWxlY3RlZCAhPSBudWxsIHx8IHVuZGVmaW5lZCkgfHwgKGltYWdlU2luZ2xlTW9kZSAhPSBudWxsIHx8IHVuZGVmaW5lZClcIiBzdHlsZT1cImZsZXgtZ3JvdzogMTtcIj5cclxuICAgICAgICAgICAgPHAtZ2FsbGVyaWEgXHJcbiAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJnZXRHYWxsZXJ5Q2xhc3MoKVwiIFxyXG4gICAgICAgICAgICAgICAgW3ZhbHVlXT1cIihvbmx5Q3JvcHBlZEltYWdlU2VsZWN0ZWQgIT09IG51bGwpID8gW29ubHlDcm9wcGVkSW1hZ2VTZWxlY3RlZC5maWxlQmFzZTY0XSA6IChpbWFnZVVwbG9hZENvbmZpZy5zaW5nbGVNb2RlSW1hZ2VEZWZhdWx0ID8gW2ltYWdlVXBsb2FkQ29uZmlnLnNpbmdsZU1vZGVJbWFnZURlZmF1bHRdIDogKGltYWdlU2luZ2xlTW9kZSA/IFtpbWFnZVNpbmdsZU1vZGVdIDogWydodHRwczovL3dhcHBpbmdzdG9yYWdlZGV2LmJsb2IuY29yZS53aW5kb3dzLm5ldC93YXBwaW5nL2FwcHJlc291cmNlcy9pY19pbWFnZV9ibHVlLnBuZyddKSlcIiBcclxuICAgICAgICAgICAgICAgIFtyZXNwb25zaXZlT3B0aW9uc109XCJjYXJvdXNlbEltYWdlc1Jlc3BvbnNpdmVPcHRpb25zXCIgXHJcbiAgICAgICAgICAgICAgICBbY29udGFpbmVyU3R5bGVdPVwieyAnbWF4LXdpZHRoJzogJzEwMCUnLCAnbWF4LWhlaWdodCc6JzEwMCUnfVwiIFxyXG4gICAgICAgICAgICAgICAgW251bVZpc2libGVdPVwiMlwiIFxyXG4gICAgICAgICAgICAgICAgW3Nob3dJdGVtTmF2aWdhdG9yc109XCJmYWxzZVwiXHJcbiAgICAgICAgICAgICAgICBbc2hvd1RodW1ibmFpbHNdPVwiZmFsc2VcIiBbc2hvd0luZGljYXRvcnNdPVwiZmFsc2VcIj5cclxuICAgICAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJpdGVtXCIgbGV0LWltYWdlPlxyXG4gICAgICAgICAgICAgICAgICAgIDxkaXYgKm5nSWY9XCIodmlld1NpbmdsZU1vZGUgPT0gZmFsc2UgJiYgKGltYWdlU2luZ2xlTW9kZSAhPSBudWxsIHx8IHVuZGVmaW5lZCkpIHx8IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICh2aWV3U2luZ2xlTW9kZSA9PSBmYWxzZSAmJiBvbmx5Q3JvcHBlZEltYWdlU2VsZWN0ZWQgIT0gbnVsbClcIiBjbGFzcz1cInctaW1hZ2UtZmlsZS11cGxvYWRlci1kZWxldGUtYnV0dG9uIGZsZXggYWxpZ24tY29udGVudC1jZW50ZXIganVzdGlmeS1jb250ZW50LWNlbnRlclwiIHN0eWxlPVwid2lkdGg6IDEwMCU7XCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDx3LWJ1dHRvbiBidXR0b25DbGFzcz1cInctaW1hZ2UtZmlsZS11cGxvYWRlci1kZWxldGUtYnV0dG9uLWljb25cIiBpY29uPVwicGkgcGktdHJhc2hcIiB0eXBlPVwidGV4dFwiIChjbGljayk9XCJyZW1vdmVJbWFnZVNpbmdsZU1vZGUoJGV2ZW50LCBvbmx5SW1hZ2VTZWxlY3RlZClcIj48L3ctYnV0dG9uPlxyXG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJmbGV4IGZsZXgtd3JhcCBhbGlnbi1jb250ZW50LWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyXCIgW25nQ2xhc3NdPVwieyd3LWltYWdlLWZpbGUtdXBsb2FkZXItZmllbGQtaW1nLWNvbnRhaW5lcic6IGFjdGl2ZUZpZWxkVmVyc2lvbn1cIiBzdHlsZT1cIm9iamVjdC1maXQ6IGNvbnRhaW47IC8qIHdpZHRoOiAzMDBweDsgaGVpZ2h0OiAzMDBweDsgKi9cIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPGltZyBbc3JjXT1cImltYWdlXCIgc3R5bGU9XCJtYXgtd2lkdGg6MTAwJTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgbWF4LWhlaWdodDoxMDAlO1xyXG4gICAgICAgICAgICAgICAgICAgICAgICBoZWlnaHQ6IGF1dG87XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIHdpZHRoOmF1dG87XCIgLz5cclxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICAgICAgICAgIDwvcC1nYWxsZXJpYT5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8ZGl2ICpuZ0lmPVwidmlld1NpbmdsZU1vZGUgPT0gZmFsc2U7IGVsc2Ugdmlld1NpbmdsZU1vZGVNZXNzYWdlXCIgKGNsaWNrKT1cIm9wZW5TaW5nbGVJbWFnZUZpbGVTZWxlY3RvcigpXCIgXHJcbiAgICAgICAgICAgIGNsYXNzPVwidy1pbWFnZS1maWxlLXVwbG9hZGVyLXNwYWNlLWNvbnRhaW5lciBmbGV4IGZsZXgtY29sdW1uIGp1c3RpZnktY29udGVudC1jZW50ZXIgYWxpZ24taXRlbXMtY2VudGVyXCIgc3R5bGU9XCJjdXJzb3I6IHBvaW50ZXI7XCJcclxuICAgICAgICAgICAgW25nQ2xhc3NdPVwieyd3LWltYWdlLWZpbGUtdXBsb2FkZXItY29udGFpbmVyLWhlaWdodCcgOiAob25seUNyb3BwZWRJbWFnZVNlbGVjdGVkID09IG51bGwgfHwgdW5kZWZpbmVkICkgJiYgKGltYWdlU2luZ2xlTW9kZSA9PSBudWxsIHx8IHVuZGVmaW5lZCkgJiYgYWN0aXZlRmllbGRWZXJzaW9uID09IGZhbHNlLCAndy1pbWFnZS1maWxlLXVwbG9hZGVyLWZpZWxkLWNvbnRhaW5lci1oZWlnaHQnIDogYWN0aXZlRmllbGRWZXJzaW9uID09IHRydWUgJiYgKG9ubHlDcm9wcGVkSW1hZ2VTZWxlY3RlZCA9PSBudWxsIHx8IHVuZGVmaW5lZCApICYmIChpbWFnZVNpbmdsZU1vZGUgPT0gbnVsbCB8fCB1bmRlZmluZWQpfVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInBpIHBpLXVwbG9hZCBzdWJ0aXRsZTEgdGV4dE1haW5Db2xvclwiPjwvc3Bhbj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJzdWJ0aXRsZTEgdGV4dE1haW5Db2xvciBtLTJcIj5cclxuICAgICAgICAgICAgICAgIHt7aW1hZ2VVcGxvYWRDb25maWcuY29udGVudEhlYWRlckxhYmVsfX1cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInRleHRTb2Z0Q29sb3IgdGV4dC1jZW50ZXJcIj5cclxuICAgICAgICAgICAgICAgIHt7aW1hZ2VVcGxvYWRDb25maWcuY29udGVudFN1YmhlYWRlckxhYmVsfX1cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSAjdmlld1NpbmdsZU1vZGVNZXNzYWdlPlxyXG4gICAgICAgICAgICA8ZGl2ICpuZ0lmPVwiaW1hZ2VTaW5nbGVNb2RlID09IG51bGwgfHwgdW5kZWZpbmVkXCIgY2xhc3M9XCJ0ZXh0U29mdENvbG9yIGZsZXgganVzdGlmeS1jb250ZW50LWNlbnRlciBhbGlnbi1pdGVtcy1jZW50ZXIgdy1pbWFnZS1maWxlLXVwbG9hZGVyLWNvbnRhaW5lci1oZWlnaHRcIj5cclxuICAgICAgICAgICAgICAgIHt7aW1hZ2VVcGxvYWRDb25maWcudmlld01vZGVjb250ZW50TGFiZWx9fVxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgPC9uZy10ZW1wbGF0ZT5cclxuPC9wLWZpbGVVcGxvYWQ+XHJcbjxuZy10ZW1wbGF0ZSAjd2l0aENhcm91c2VsPlxyXG4gICAgPHAtZmlsZVVwbG9hZCAqbmdJZj1cImltYWdlVXBsb2FkQ29uZmlnXCIgI2ZpbGVVcGxvYWQgY2xhc3M9XCJ3LWltYWdlLWZpbGUtYnV0dG9uXCIgXHJcbiAgICAgICAgW25nQ2xhc3NdPVwieyd3LWltYWdlLWZpbGUtdXBsb2FkZXInIDogYWN0aXZlRmllbGRWZXJzaW9uID09IGZhbHNlLCBcclxuICAgICAgICAgICAgICAgICAgICAndy1pbWFnZS1maWxlLXVwbG9hZGVyLWZpZWxkJyA6IGFjdGl2ZUZpZWxkVmVyc2lvbiA9PSB0cnVlLCBcclxuICAgICAgICAgICAgICAgICAgICAndy1pbWFnZS1maWxlLXVwbG9hZGVyLWZpZWxkLW5vLWltYWdlJyA6IGFjdGl2ZUZpZWxkVmVyc2lvbiA9PSB0cnVlICYmIChpbWFnZXNBbHJlYWR5VXBsb2FkZWQubGVuZ3RoID09IDAgfHwgdW5kZWZpbmVkICkgfHwgKGltYWdlc0FscmVhZHlVcGxvYWRlZCA9PSBudWxsIHx8IHVuZGVmaW5lZCl9XCJcclxuICAgICAgICBuYW1lPVwibWVkaWFJbWFnZXNbXVwiIFxyXG4gICAgICAgIFthY2NlcHRdPVwiaW1hZ2VVcGxvYWRDb25maWcuYWNjZXB0SW1hZ2VUeXBlc1wiIFxyXG4gICAgICAgIG1vZGU9XCJhZHZhbmNlZFwiIFxyXG4gICAgICAgIFtjdXN0b21VcGxvYWRdPVwidHJ1ZVwiIFxyXG4gICAgICAgIChvblNlbGVjdCk9XCJvbkN1c3RvbVVwbG9hZE11bHRpTW9kZSgkZXZlbnQpXCIgXHJcbiAgICAgICAgKHVwbG9hZEhhbmRsZXIpPVwib25DdXN0b21pemVVcGxvYWRGdW5jdGlvbk11bHRpTW9kZSgkZXZlbnQpXCIgXHJcbiAgICAgICAgW3VwbG9hZExhYmVsXT1cImltYWdlVXBsb2FkQ29uZmlnLnVwbG9hZEJ1dHRvbkxhYmVsID8/ICcnXCIgXHJcbiAgICAgICAgW2Nob29zZUxhYmVsXT1cImltYWdlVXBsb2FkQ29uZmlnLmNob29zZUJ1dHRvbkxhYmVsID8/ICcnXCIgXHJcbiAgICAgICAgW2NhbmNlbExhYmVsXT1cImltYWdlVXBsb2FkQ29uZmlnLmNhbmNlbEJ1dHRvbkxhYmVsID8/ICcnXCIgXHJcbiAgICAgICAgW3Nob3dVcGxvYWRCdXR0b25dPVwiYWN0aXZlSW1hZ2VVcGxvYWRcIlxyXG4gICAgICAgIFtzaG93Q2FuY2VsQnV0dG9uXT1cImFjdGl2ZUltYWdlVXBsb2FkXCJcclxuICAgICAgICBbYXV0b109XCJpbWFnZVVwbG9hZENvbmZpZy5hbGxvd0F1dG9cIiBcclxuICAgICAgICBbbXVsdGlwbGVdPVwidHJ1ZVwiIFxyXG4gICAgICAgIFttYXhGaWxlU2l6ZV09XCJpbWFnZVVwbG9hZENvbmZpZy5tYXhJbWFnZVNpemVcIiBcclxuICAgICAgICBbaW52YWxpZEZpbGVTaXplTWVzc2FnZVN1bW1hcnldPVwiaW1hZ2VVcGxvYWRDb25maWcuaW52YWxpZEZpbGVTaXplTWVzc2FnZVN1bW1hcnkgKyAnOidcIiBcclxuICAgICAgICBbaW52YWxpZEZpbGVTaXplTWVzc2FnZURldGFpbF09XCJpbWFnZVVwbG9hZENvbmZpZy5pbnZhbGlkRmlsZVNpemVNZXNzYWdlRGV0YWlsICsgJyB7MH0gYnl0ZXMuJ1wiIFxyXG4gICAgICAgIFtpbnZhbGlkRmlsZVR5cGVNZXNzYWdlU3VtbWFyeV09XCJpbWFnZVVwbG9hZENvbmZpZy5pbnZhbGlkRmlsZVR5cGVNZXNzYWdlU3VtbWFyeSArICc6J1wiIFxyXG4gICAgICAgIFtpbnZhbGlkRmlsZVR5cGVNZXNzYWdlRGV0YWlsXT1cImltYWdlVXBsb2FkQ29uZmlnLmludmFsaWRGaWxlVHlwZU1lc3NhZ2VEZXRhaWwgKyAnOiB7MH0uJ1wiXHJcbiAgICAgICAgW2Nob29zZVN0eWxlQ2xhc3NdPVwiJ3AtYnV0dG9uLWljb24gcC1idXR0b24taWNvbi1yaWdodCdcIj5cclxuICAgICAgICA8bmctdGVtcGxhdGUgbGV0LWZpbGUgbGV0LWk9XCJpbmRleFwiIHBUZW1wbGF0ZT0nZmlsZSc+XHJcbiAgICAgICAgICAgIDxkaXYgKm5nSWY9XCJhY3RpdmVJbWFnZVVwbG9hZCAmJiBjcm9wcGVySW1hZ2VzLmxlbmd0aCA+IDBcIiBjbGFzcz1cInAtZmlsZXVwbG9hZC1yb3dcIj5cclxuICAgICAgICAgICAgICAgIDxkaXY+PGltZyBbc3JjXT1cImNyb3BwZXJJbWFnZXNbaV0/LmZpbGVCYXNlNjRcIiB3aWR0aD1cIjUwXCIvPjwvZGl2PlxyXG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInAtZmlsZXVwbG9hZC1maWxlbmFtZVwiPnt7ZmlsZS5uYW1lfX08L2Rpdj5cclxuICAgICAgICAgICAgICAgIDxkaXY+IDx3LWJ1dHRvbiBpY29uPVwicGkgcGktdGltZXNcIiAob25DbGljayk9XCJvbkRlbGV0ZUZpbGVNdWx0aU1vZGUoJGV2ZW50LCBmaWxlLCBmaWxlVXBsb2FkKVwiPjwvdy1idXR0b24+IDwvZGl2PlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJjb250ZW50XCI+XHJcbiAgICAgICAgICAgIDxwLXByb2dyZXNzQmFyICpuZ0lmPVwiaXNVcGxvYWRpbmdNdWx0aU1vZGVcIiBjbGFzcz1cInAtZWxlbWVudCBuZy1zdGFyLWluc2VydGVkXCIgW21vZGVdPVwiJ2luZGV0ZXJtaW5hdGUnXCI+XHJcbiAgICAgICAgICAgICAgICA8ZGl2IHJvbGU9XCJwcm9ncmVzc2JhclwiIGFyaWEtdmFsdWVtaW49XCIwXCIgYXJpYS12YWx1ZW5vdz1cIjBcIiBhcmlhLXZhbHVlbWF4PVwiMTAwXCIgZGF0YS1wYy1uYW1lPVwicHJvZ3Jlc3NiYXJcIiBkYXRhLXBjLXNlY3Rpb249XCJyb290XCIgY2xhc3M9XCJwLXByb2dyZXNzYmFyIHAtY29tcG9uZW50IHAtcHJvZ3Jlc3NiYXItZGV0ZXJtaW5hdGVcIj5cclxuICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwicC1wcm9ncmVzc2Jhci12YWx1ZSBwLXByb2dyZXNzYmFyLXZhbHVlLWFuaW1hdGUgbmctc3Rhci1pbnNlcnRlZFwiIHN0eWxlPVwiZGlzcGxheTogZmxleDsgd2lkdGg6IDAlO1wiIGRhdGEtcGMtc2VjdGlvbj1cInZhbHVlXCI+PC9kaXY+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPC9wLXByb2dyZXNzQmFyPlxyXG4gICAgICAgICAgICA8ZGl2ICpuZ0lmPVwiaW1hZ2VzQWxyZWFkeVVwbG9hZGVkLmxlbmd0aCA+IDBcIiBzdHlsZT1cImZsZXgtZ3JvdzogMTtcIj5cclxuICAgICAgICAgICAgICAgIDxwLWdhbGxlcmlhICBcclxuICAgICAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJnZXRHYWxsZXJ5Q2xhc3MoKVwiIFxyXG4gICAgICAgICAgICAgICAgICAgIFt2YWx1ZV09XCJpbWFnZXNBbHJlYWR5VXBsb2FkZWRcIiBcclxuICAgICAgICAgICAgICAgICAgICBbYWN0aXZlSW5kZXhdPVwiYWN0aXZlSW5kZXhHYWxsZXJ5XCIgXHJcbiAgICAgICAgICAgICAgICAgICAgW3Jlc3BvbnNpdmVPcHRpb25zXT1cImNhcm91c2VsSW1hZ2VzUmVzcG9uc2l2ZU9wdGlvbnNcIiBcclxuICAgICAgICAgICAgICAgICAgICBbY29udGFpbmVyU3R5bGVdPVwieyAnbWF4LXdpZHRoJzogJzEwMCUnLCAnbWF4LWhlaWdodCc6JzEwMCUnfVwiIFxyXG4gICAgICAgICAgICAgICAgICAgIFtudW1WaXNpYmxlXT1cIjNcIiBcclxuICAgICAgICAgICAgICAgICAgICBbc2hvd0l0ZW1OYXZpZ2F0b3JzXT1cInRydWVcIlxyXG4gICAgICAgICAgICAgICAgICAgIFtzaG93VGh1bWJuYWlsc109XCJmYWxzZVwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJpdGVtXCIgbGV0LWltYWdlPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8ZGl2ICpuZ0lmPVwidmlld011bHRpTW9kZSA9PSBmYWxzZVwiIGNsYXNzPVwidy1pbWFnZS1maWxlLXVwbG9hZGVyLWRlbGV0ZS1idXR0b24gZmxleCBhbGlnbi1jb250ZW50LWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyXCIgc3R5bGU9XCJ3aWR0aDogMTAwJTtcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx3LWJ1dHRvbiBidXR0b25DbGFzcz1cInctaW1hZ2UtZmlsZS11cGxvYWRlci1kZWxldGUtYnV0dG9uLWljb25cIiBpY29uPVwicGkgcGktdHJhc2hcIiB0eXBlPVwidGV4dFwiIChvbkNsaWNrKT1cImNvbmZpcm1EZWxldGVJbWFnZU11bHRpTW9kZSgkZXZlbnQsIGltYWdlKVwiIFtsb2FkaW5nXT1cImlzRGVsZXRpbmdNdWx0aU1vZGVcIj48L3ctYnV0dG9uPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImZsZXggZmxleC13cmFwIGFsaWduLWNvbnRlbnQtY2VudGVyIGp1c3RpZnktY29udGVudC1jZW50ZXJcIiBbbmdDbGFzc109XCJ7J3ctaW1hZ2UtZmlsZS11cGxvYWRlci1maWVsZC1pbWctY29udGFpbmVyJzogYWN0aXZlRmllbGRWZXJzaW9ufVwiIHN0eWxlPVwib2JqZWN0LWZpdDogY29udGFpbjtcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbWcgW3NyY109XCJyZWFkUHJvcGVydHkoaW1hZ2UsIGltYWdlVXBsb2FkQ29uZmlnLmltYWdlUHJvcGVydHlOYW1lc1swXSkgPz8gaW1hZ2UuZmlsZUJhc2U2NFwiIHN0eWxlPVwibWF4LXdpZHRoOjEwMCU7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBtYXgtaGVpZ2h0OjEwMCU7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBoZWlnaHQ6IGF1dG87XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB3aWR0aDphdXRvO1wiIC8+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwidy1pbWFnZS1maWxlLXVwbG9hZGVyLW1vdmUtYnV0dG9ucyBmbGV4IGFsaWduLWNvbnRlbnQtY2VudGVyIGp1c3RpZnktY29udGVudC1jZW50ZXJcIiBzdHlsZT1cIndpZHRoOiAxMDAlO1wiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiAqbmdJZj1cInZpZXdNdWx0aU1vZGUgPT0gZmFsc2UgJiYgYWN0aXZlUG9zaXRpb25Qcm9wZXJ0eSA9PSB0cnVlXCIgY2xhc3M9XCJ3LWltYWdlLWZpbGUtdXBsb2FkZXItbXVsdGktYWN0aW9uLWJ1dHRvblwiIFtuZ0NsYXNzXT1cInsndy1pbWFnZS1maWxlLXVwbG9hZGVyLWhpZGUtbW92ZS1idXR0b24nIDogZmluZEluZGV4KGltYWdlKSA9PSAwIHx8IGRpc2FibGVNb3ZlQnV0dG9uc31cIiAoY2xpY2spPVwibW92ZUltYWdlVG9MZWZ0KGltYWdlKVwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx3LWljb25zIG5hbWU9XCJkb3VibGVBcnJvd0xlZnRcIiBjbGFzcz1cInctaW1hZ2UtZmlsZS11cGxvYWRlci1hcnJvd1wiIFtoZWlnaHRdPVwiMTBcIiBbd2lkdGhdPVwiMTBcIiBbY29sb3JdPVwiJ3doaXRlJ1wiPjwvdy1pY29ucz5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgKm5nSWY9XCJpc0RlbGV0aW5nTXVsdGlNb2RlID09IGZhbHNlOyBlbHNlIGluZGV4TG9hZGluZ1wiIGNsYXNzPVwidy1pbWFnZS1maWxlLXVwbG9hZGVyLW11bHRpLWltYWdlcy1pbmRleCBmbGV4IGFsaWduLWl0ZW1zLWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAge3sgZmluZEluZGV4KGltYWdlKSArIDEgfX0gLyB7eyBpbWFnZXNBbHJlYWR5VXBsb2FkZWQubGVuZ3RoIH19XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjaW5kZXhMb2FkaW5nPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ3LWltYWdlLWZpbGUtdXBsb2FkZXItbXVsdGktaW1hZ2VzLWluZGV4IGZsZXggYWxpZ24taXRlbXMtY2VudGVyIGp1c3RpZnktY29udGVudC1jZW50ZXJcIj4gLSAvIC0gPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2ICpuZ0lmPVwidmlld011bHRpTW9kZSA9PSBmYWxzZSAgJiYgYWN0aXZlUG9zaXRpb25Qcm9wZXJ0eSA9PSB0cnVlXCIgY2xhc3M9XCJ3LWltYWdlLWZpbGUtdXBsb2FkZXItbXVsdGktYWN0aW9uLWJ1dHRvblwiIFtuZ0NsYXNzXT1cInsndy1pbWFnZS1maWxlLXVwbG9hZGVyLWhpZGUtbW92ZS1idXR0b24nIDogKGZpbmRJbmRleChpbWFnZSkgPT0gaW1hZ2VzQWxyZWFkeVVwbG9hZGVkLmxlbmd0aC0xKSB8fCBkaXNhYmxlTW92ZUJ1dHRvbnN9XCIgKGNsaWNrKT1cIm1vdmVJbWFnZVRvUmlnaHQoaW1hZ2UpXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHctaWNvbnMgbmFtZT1cImRvdWJsZUFycm93UmlnaHRcIiBjbGFzcz1cInctaW1hZ2UtZmlsZS11cGxvYWRlci1hcnJvd1wiIFtoZWlnaHRdPVwiMTBcIiBbd2lkdGhdPVwiMTBcIiBbY29sb3JdPVwiJ3doaXRlJ1wiPjwvdy1pY29ucz5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgICAgICAgICAgPC9wLWdhbGxlcmlhPlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPGRpdiAqbmdJZj1cInZpZXdNdWx0aU1vZGUgPT0gZmFsc2U7IGVsc2Ugdmlld011bHRpTW9kZU1lc3NhZ2VcIiAoY2xpY2spPVwib3BlbkltYWdlRmlsZVNlbGVjdG9yKClcIiBcclxuICAgICAgICAgICAgICAgIGNsYXNzPVwidy1pbWFnZS1maWxlLXVwbG9hZGVyLXNwYWNlLWNvbnRhaW5lciBmbGV4IGZsZXgtY29sdW1uIGp1c3RpZnktY29udGVudC1jZW50ZXIgYWxpZ24taXRlbXMtY2VudGVyXCIgXHJcbiAgICAgICAgICAgICAgICBzdHlsZT1cImN1cnNvcjogcG9pbnRlcjtcIiBcclxuICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsndy1pbWFnZS1maWxlLXVwbG9hZGVyLWNvbnRhaW5lci1oZWlnaHQnIDogKGltYWdlc0FscmVhZHlVcGxvYWRlZC5sZW5ndGggPT0gMCB8fCB1bmRlZmluZWQgKSB8fCAoaW1hZ2VzQWxyZWFkeVVwbG9hZGVkID09IG51bGwgfHwgdW5kZWZpbmVkKSAmJiBhY3RpdmVGaWVsZFZlcnNpb24gPT0gZmFsc2UsICd3LWltYWdlLWZpbGUtdXBsb2FkZXItZmllbGQtY29udGFpbmVyLWhlaWdodCcgOiBhY3RpdmVGaWVsZFZlcnNpb24gPT0gdHJ1ZSAmJiAoaW1hZ2VzQWxyZWFkeVVwbG9hZGVkLmxlbmd0aCA9PSAwIHx8IHVuZGVmaW5lZCApIHx8IChpbWFnZXNBbHJlYWR5VXBsb2FkZWQgPT0gbnVsbCB8fCB1bmRlZmluZWQpfVwiPlxyXG4gICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJwaSBwaS11cGxvYWQgc3VidGl0bGUxIHRleHRNYWluQ29sb3JcIj48L3NwYW4+XHJcbiAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInN1YnRpdGxlMSB0ZXh0TWFpbkNvbG9yIG0tMlwiPlxyXG4gICAgICAgICAgICAgICAgICAgIHt7aW1hZ2VVcGxvYWRDb25maWcuY29udGVudEhlYWRlckxhYmVsfX1cclxuICAgICAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidGV4dFNvZnRDb2xvciB0ZXh0LWNlbnRlclwiPlxyXG4gICAgICAgICAgICAgICAgICAgIHt7aW1hZ2VVcGxvYWRDb25maWcuY29udGVudFN1YmhlYWRlckxhYmVsfX1cclxuICAgICAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjdmlld011bHRpTW9kZU1lc3NhZ2U+XHJcbiAgICAgICAgICAgICAgICA8ZGl2ICpuZ0lmPVwiaW1hZ2VzQWxyZWFkeVVwbG9hZGVkLmxlbmd0aD09MFwiIGNsYXNzPVwidGV4dFNvZnRDb2xvciBmbGV4IGp1c3RpZnktY29udGVudC1jZW50ZXIgYWxpZ24taXRlbXMtY2VudGVyIHctaW1hZ2UtZmlsZS11cGxvYWRlci1jb250YWluZXItaGVpZ2h0XCI+XHJcbiAgICAgICAgICAgICAgICAgICAge3tpbWFnZVVwbG9hZENvbmZpZy52aWV3TW9kZWNvbnRlbnRMYWJlbH19XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgPC9wLWZpbGVVcGxvYWQ+XHJcbjwvbmctdGVtcGxhdGU+XHJcblxyXG48cC1jb25maXJtUG9wdXA+PC9wLWNvbmZpcm1Qb3B1cD5cclxuIl19