From e4ee9eb7d4bc5b992caa3d6db1b2923c0d3e3e2d Mon Sep 17 00:00:00 2001 From: Jonasel Roque <38173852+roquej@users.noreply.github.com> Date: Mon, 6 May 2024 17:56:41 -0700 Subject: [PATCH 01/12] Roquej 20240419 preprod edit (#81) * enable edit project page * add logic to check if a project can't use the editing feature, update config retrieval * fix updating instruments for repeatable data collection windows * add warning to editProject.php if there are non-DUSTER fields/forms in the project * add confirmation dialog to new project Vue app when editing a project --- classes/DusterConfigClass.php | 10 +- config.json | 7 + pages/editProject.php | 147 +++++++++++++++++- .../{index-66f121cc.js => index-4102b31f.js} | 112 ++++++------- pages/js/duster/new-project/dist/index.html | 2 +- .../src/components/ReviewPanel.vue | 57 ++++++- services/updateProject.php | 18 ++- 7 files changed, 279 insertions(+), 74 deletions(-) rename pages/js/duster/new-project/dist/assets/{index-66f121cc.js => index-4102b31f.js} (71%) diff --git a/classes/DusterConfigClass.php b/classes/DusterConfigClass.php index d7861e9..4476acb 100644 --- a/classes/DusterConfigClass.php +++ b/classes/DusterConfigClass.php @@ -12,7 +12,7 @@ class DusterConfigClass { - private $project_id, $duster_config, $module; + private $project_id, $duster_config, $design_config, $module; private $rp_info_form = array('form_name' => 'rp_info', 'form_label' => 'Researcher-Provided Information'); private $demographics_form = array('form_name' => 'demographics', 'form_label' => 'Demographics'); @@ -30,7 +30,9 @@ public function loadConfig() $config_url = $config_url . ((substr($config_url, -1) === '/') ? "" : "/") . SERVER_NAME . '/' . $this->project_id . '?redcap_user=' . $this->module->getUser()->getUserName(); - $this->duster_config = $this->module->starrApiGetRequest($config_url, 'ddp'); + $config_object = $this->module->starrApiGetRequest($config_url, 'ddp'); + $this->duster_config = $config_object['config']; + $this->design_config = $config_object['design_config']; } public function loadDesignConfig () { @@ -53,9 +55,9 @@ public function getDusterConfig() public function getDesignConfig() { if ($this->design_config == null) { - $this->loadDesignConfig(); + $this->loadConfig(); } - return $this->design_config['design_config']; + return $this->design_config; } public function setDusterConfig($config) diff --git a/config.json b/config.json index fb90ece..2c8959f 100644 --- a/config.json +++ b/config.json @@ -31,6 +31,13 @@ "icon": "fas fa-receipt", "url": "pages/populateData.php", "show-header-and-footer": true + }, + { + "name": "DUSTER: Edit Project", + "key": "dustereditproject", + "icon": "fas fa-pen-to-square", + "url": "pages/editProject.php", + "show-header-and-footer": true } ], "control-center": [ diff --git a/pages/editProject.php b/pages/editProject.php index 4415dec..c964239 100644 --- a/pages/editProject.php +++ b/pages/editProject.php @@ -2,6 +2,7 @@ namespace Stanford\Duster; /** @var $module Duster */ +use Project; use REDCap; require_once $module->getModulePath() . "classes/DusterConfigClass.php"; @@ -12,15 +13,117 @@ $pid = $module->getProjectId(); $project_status = $module->getProjectStatus($pid); $user_rights = $module->getUser()->getRights($pid); +$irb = $module->getProjectIrb($pid); +$duster_config_obj = new DusterConfigClass($pid, $module); +$duster_config = json_decode($duster_config_obj->getDusterConfig(), true); +$design_config = $duster_config_obj->getDesignConfig(); +$has_design_config = $design_config !== NULL; // PHP 8.3 provides json_validate(), which checks if a string contains valid JSON. +$design_config = json_encode($design_config); $editable = $project_status === "DEV" && strlen($user_rights['api_token']) === 32 && $user_rights['api_import'] === '1' - && $user_rights['design'] === '1'; + && $user_rights['design'] === '1' + && $has_design_config === true; -if ($editable === true) { - $irb = $module->getProjectIrb($pid); - $duster_config_obj = new DusterConfigClass($pid, $module); - $design_config = json_encode($duster_config_obj->getDesignConfig()); +/* Check for non-DUSTER fields */ +$project_object = new Project($pid, false); +$existing_forms = $project_object->forms; +$non_duster_fields = []; + +// Researcher-Provided Information +if (isset($existing_forms['researcher_provided_information'])) { + $rp_fields = array_keys($existing_forms['researcher_provided_information']['fields']); + $duster_rp_fields = ['redcap_record_id', 'mrn']; + $duster_rp_fields = array_merge($duster_rp_fields, array_keys($duster_config['rp_info']['rp_dates'])); + $duster_rp_fields[] = "researcher_provided_information_complete"; + $non_duster_rp_fields = array_diff($rp_fields, $duster_rp_fields); + if (!empty($non_duster_rp_fields)) { + $non_duster_fields[] = [ + 'name' => 'researcher_provided_information', + 'label' => 'Researcher-Provided Information', + 'fields' => $non_duster_rp_fields + ]; + } + unset($existing_forms['researcher_provided_information']); +} + +// Demographics +if (isset($existing_forms['demographics'])) { + $demographic_fields = array_keys($existing_forms['demographics']['fields']); + $duster_demographic_fields = array_column($duster_config['demographics'], 'redcap_field_name'); + $duster_demographic_fields[] = "demographics_complete"; + $non_duster_demographic_fields = array_diff($demographic_fields, $duster_demographic_fields); + if (!empty($non_duster_demographic_fields)) { + $non_duster_fields[] = [ + 'name' => 'demographics', + 'label' => 'Demographics', + 'fields' => $non_duster_demographic_fields + ]; + } + unset($existing_forms['demographics']); +} + +// Data Collection Windows +foreach ($duster_config['collection_windows'] as $collection_window) { + $cw_form_name = $collection_window['form_name']; + if (isset($existing_forms[$cw_form_name])) { + $cw_fields = array_keys($existing_forms[$cw_form_name]['fields']); + $timing_fields = [ + $collection_window['timing']['start']['redcap_field_name'], + $collection_window['timing']['end']['redcap_field_name'] + ]; + if ($collection_window['type'] === 'repeating' && isset($collection_window['timing']['repeat_interval'])) { + $module->emLog("REPEATING HERE"); + $timing_fields = array_merge($timing_fields, [ + $cw_form_name, + $collection_window['timing']['repeat_interval']['start_instance']['redcap_field_name'], + $collection_window['timing']['repeat_interval']['end_instance']['redcap_field_name'] + ]); + } + + $score_fields = []; + foreach ($collection_window['data']['scores'] as $score) { + $score_fields[] = $score['redcap_field_name']; + foreach ($score['subscores'] as $subscore) { + $score_fields[] = $subscore['redcap_field_name']; + $score_fields = array_merge( + $score_fields, + array_column($subscore['dependencies'], 'redcap_field_name') + ); + } + } + + $duster_cw_fields = array_merge( + $timing_fields, + array_column($collection_window['event'], 'redcap_field_name'), + array_column($collection_window['data']['labs'], 'redcap_field_name'), + array_column($collection_window['data']['vitals'], 'redcap_field_name'), + array_column($collection_window['data']['outcomes'], 'redcap_field_name'), + $score_fields + ); + $duster_cw_fields[] = $cw_form_name . '_complete'; + + $non_duster_cw_fields = array_diff($cw_fields, $duster_cw_fields); + if (!empty($non_duster_cw_fields)) { + $non_duster_fields[] = [ + 'name' => $cw_form_name, + 'label' => $collection_window['label'], + 'fields' => $non_duster_cw_fields + ]; + } + unset($existing_forms[$cw_form_name]); + } +} + +// non-DUSTER forms +foreach ($existing_forms as $non_duster_form_name=>$non_duster_form) { + if (!empty($non_duster_form['fields'])) { + $non_duster_fields[] = [ + 'name' => $non_duster_form_name, + 'label' => $non_duster_form['menu'], + 'fields' => array_keys($non_duster_form['fields']) + ]; + } } ?> @@ -30,7 +133,8 @@

DUSTER: Edit Project

-

Hitting the button below will launch an application where you may perform the following modifications to your project:

    @@ -40,11 +144,41 @@
  1. Add new clinical variables to pre-existing data collection windows.
+ +

+ WARNING: This REDCap project contains non-DUSTER REDCap fields/forms. +

+

+ The following non-DUSTER REDCap fields may be lost if you decide to edit this DUSTER project: +

+ + +
    + () + +
  1. + +
+ +
+ + + + + + Sorry, you cannot edit this DUSTER project. This project was created before the editing feature was released and cannot be retroactively supported. + @@ -89,6 +223,7 @@ postObj['redcap_project_id'] = ""; postObj['project_irb_number'] = ""; postObj['initial_design'] = ; + postObj['non_duster_fields'] = ; // store URL for REDCap's 'New Project' page postObj['redcap_new_project_url'] = ""; diff --git a/pages/js/duster/new-project/dist/assets/index-66f121cc.js b/pages/js/duster/new-project/dist/assets/index-4102b31f.js similarity index 71% rename from pages/js/duster/new-project/dist/assets/index-66f121cc.js rename to pages/js/duster/new-project/dist/assets/index-4102b31f.js index db937ce..ebaea4f 100644 --- a/pages/js/duster/new-project/dist/assets/index-66f121cc.js +++ b/pages/js/duster/new-project/dist/assets/index-4102b31f.js @@ -1,7 +1,7 @@ -(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const o of document.querySelectorAll('link[rel="modulepreload"]'))r(o);new MutationObserver(o=>{for(const i of o)if(i.type==="childList")for(const a of i.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&r(a)}).observe(document,{childList:!0,subtree:!0});function n(o){const i={};return o.integrity&&(i.integrity=o.integrity),o.referrerPolicy&&(i.referrerPolicy=o.referrerPolicy),o.crossOrigin==="use-credentials"?i.credentials="include":o.crossOrigin==="anonymous"?i.credentials="omit":i.credentials="same-origin",i}function r(o){if(o.ep)return;o.ep=!0;const i=n(o);fetch(o.href,i)}})();function Ta(t,e){const n=Object.create(null),r=t.split(",");for(let o=0;o!!n[o.toLowerCase()]:o=>!!n[o]}const Ke={},Vn=[],It=()=>{},Cp=()=>!1,_p=/^on[^a-z]/,Qi=t=>_p.test(t),Ea=t=>t.startsWith("onUpdate:"),Ze=Object.assign,Da=(t,e)=>{const n=t.indexOf(e);n>-1&&t.splice(n,1)},Sp=Object.prototype.hasOwnProperty,Ae=(t,e)=>Sp.call(t,e),Se=Array.isArray,Hn=t=>eo(t)==="[object Map]",Au=t=>eo(t)==="[object Set]",xe=t=>typeof t=="function",qe=t=>typeof t=="string",Ra=t=>typeof t=="symbol",Ue=t=>t!==null&&typeof t=="object",Mu=t=>Ue(t)&&xe(t.then)&&xe(t.catch),Lu=Object.prototype.toString,eo=t=>Lu.call(t),Op=t=>eo(t).slice(8,-1),Fu=t=>eo(t)==="[object Object]",$a=t=>qe(t)&&t!=="NaN"&&t[0]!=="-"&&""+parseInt(t,10)===t,$i=Ta(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),to=t=>{const e=Object.create(null);return n=>e[n]||(e[n]=t(n))},Pp=/-(\w)/g,jt=to(t=>t.replace(Pp,(e,n)=>n?n.toUpperCase():"")),Ip=/\B([A-Z])/g,En=to(t=>t.replace(Ip,"-$1").toLowerCase()),xn=to(t=>t.charAt(0).toUpperCase()+t.slice(1)),Ai=to(t=>t?`on${xn(t)}`:""),vr=(t,e)=>!Object.is(t,e),Co=(t,e)=>{for(let n=0;n{Object.defineProperty(t,e,{configurable:!0,enumerable:!1,value:n})},kp=t=>{const e=parseFloat(t);return isNaN(e)?t:e},xp=t=>{const e=qe(t)?Number(t):NaN;return isNaN(e)?t:e};let Pl;const Ho=()=>Pl||(Pl=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function qn(t){if(Se(t)){const e={};for(let n=0;n{if(n){const r=n.split(Ep);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}function re(t){let e="";if(qe(t))e=t;else if(Se(t))for(let n=0;nqe(t)?t:t==null?"":Se(t)||Ue(t)&&(t.toString===Lu||!xe(t.toString))?JSON.stringify(t,ju,2):String(t),ju=(t,e)=>e&&e.__v_isRef?ju(t,e.value):Hn(e)?{[`Map(${e.size})`]:[...e.entries()].reduce((n,[r,o])=>(n[`${r} =>`]=o,n),{})}:Au(e)?{[`Set(${e.size})`]:[...e.values()]}:Ue(e)&&!Se(e)&&!Fu(e)?String(e):e;let Ct;class Mp{constructor(e=!1){this.detached=e,this._active=!0,this.effects=[],this.cleanups=[],this.parent=Ct,!e&&Ct&&(this.index=(Ct.scopes||(Ct.scopes=[])).push(this)-1)}get active(){return this._active}run(e){if(this._active){const n=Ct;try{return Ct=this,e()}finally{Ct=n}}}on(){Ct=this}off(){Ct=this.parent}stop(e){if(this._active){let n,r;for(n=0,r=this.effects.length;n{const e=new Set(t);return e.w=0,e.n=0,e},Vu=t=>(t.w&dn)>0,Hu=t=>(t.n&dn)>0,Bp=({deps:t})=>{if(t.length)for(let e=0;e{const{deps:e}=t;if(e.length){let n=0;for(let r=0;r{(c==="length"||c>=u)&&l.push(s)})}else switch(n!==void 0&&l.push(a.get(n)),e){case"add":Se(t)?$a(n)&&l.push(a.get("length")):(l.push(a.get(On)),Hn(t)&&l.push(a.get(Ko)));break;case"delete":Se(t)||(l.push(a.get(On)),Hn(t)&&l.push(a.get(Ko)));break;case"set":Hn(t)&&l.push(a.get(On));break}if(l.length===1)l[0]&&Uo(l[0]);else{const u=[];for(const s of l)s&&u.push(...s);Uo(Aa(u))}}function Uo(t,e){const n=Se(t)?t:[...t];for(const r of n)r.computed&&kl(r);for(const r of n)r.computed||kl(r)}function kl(t,e){(t!==St||t.allowRecurse)&&(t.scheduler?t.scheduler():t.run())}const Vp=Ta("__proto__,__v_isRef,__isVue"),Ku=new Set(Object.getOwnPropertyNames(Symbol).filter(t=>t!=="arguments"&&t!=="caller").map(t=>Symbol[t]).filter(Ra)),Hp=La(),Np=La(!1,!0),zp=La(!0),xl=Kp();function Kp(){const t={};return["includes","indexOf","lastIndexOf"].forEach(e=>{t[e]=function(...n){const r=Me(this);for(let i=0,a=this.length;i{t[e]=function(...n){Yn();const r=Me(this)[e].apply(this,n);return Jn(),r}}),t}function Up(t){const e=Me(this);return dt(e,"has",t),e.hasOwnProperty(t)}function La(t=!1,e=!1){return function(r,o,i){if(o==="__v_isReactive")return!t;if(o==="__v_isReadonly")return t;if(o==="__v_isShallow")return e;if(o==="__v_raw"&&i===(t?e?sf:Yu:e?qu:Gu).get(r))return r;const a=Se(r);if(!t){if(a&&Ae(xl,o))return Reflect.get(xl,o,i);if(o==="hasOwnProperty")return Up}const l=Reflect.get(r,o,i);return(Ra(o)?Ku.has(o):Vp(o))||(t||dt(r,"get",o),e)?l:rt(l)?a&&$a(o)?l:l.value:Ue(l)?t?ja(l):fn(l):l}}const Wp=Uu(),Gp=Uu(!0);function Uu(t=!1){return function(n,r,o,i){let a=n[r];if(Tn(a)&&rt(a)&&!rt(o))return!1;if(!t&&(!Ni(o)&&!Tn(o)&&(a=Me(a),o=Me(o)),!Se(n)&&rt(a)&&!rt(o)))return a.value=o,!0;const l=Se(n)&&$a(r)?Number(r)t,no=t=>Reflect.getPrototypeOf(t);function bi(t,e,n=!1,r=!1){t=t.__v_raw;const o=Me(t),i=Me(e);n||(e!==i&&dt(o,"get",e),dt(o,"get",i));const{has:a}=no(o),l=r?Fa:n?Ha:yr;if(a.call(o,e))return l(t.get(e));if(a.call(o,i))return l(t.get(i));t!==o&&t.get(e)}function wi(t,e=!1){const n=this.__v_raw,r=Me(n),o=Me(t);return e||(t!==o&&dt(r,"has",t),dt(r,"has",o)),t===o?n.has(t):n.has(t)||n.has(o)}function Ci(t,e=!1){return t=t.__v_raw,!e&&dt(Me(t),"iterate",On),Reflect.get(t,"size",t)}function Tl(t){t=Me(t);const e=Me(this);return no(e).has.call(e,t)||(e.add(t),Gt(e,"add",t,t)),this}function El(t,e){e=Me(e);const n=Me(this),{has:r,get:o}=no(n);let i=r.call(n,t);i||(t=Me(t),i=r.call(n,t));const a=o.call(n,t);return n.set(t,e),i?vr(e,a)&&Gt(n,"set",t,e):Gt(n,"add",t,e),this}function Dl(t){const e=Me(this),{has:n,get:r}=no(e);let o=n.call(e,t);o||(t=Me(t),o=n.call(e,t)),r&&r.call(e,t);const i=e.delete(t);return o&&Gt(e,"delete",t,void 0),i}function Rl(){const t=Me(this),e=t.size!==0,n=t.clear();return e&&Gt(t,"clear",void 0,void 0),n}function _i(t,e){return function(r,o){const i=this,a=i.__v_raw,l=Me(a),u=e?Fa:t?Ha:yr;return!t&&dt(l,"iterate",On),a.forEach((s,c)=>r.call(o,u(s),u(c),i))}}function Si(t,e,n){return function(...r){const o=this.__v_raw,i=Me(o),a=Hn(i),l=t==="entries"||t===Symbol.iterator&&a,u=t==="keys"&&a,s=o[t](...r),c=n?Fa:e?Ha:yr;return!e&&dt(i,"iterate",u?Ko:On),{next(){const{value:d,done:m}=s.next();return m?{value:d,done:m}:{value:l?[c(d[0]),c(d[1])]:c(d),done:m}},[Symbol.iterator](){return this}}}}function Zt(t){return function(...e){return t==="delete"?!1:this}}function Qp(){const t={get(i){return bi(this,i)},get size(){return Ci(this)},has:wi,add:Tl,set:El,delete:Dl,clear:Rl,forEach:_i(!1,!1)},e={get(i){return bi(this,i,!1,!0)},get size(){return Ci(this)},has:wi,add:Tl,set:El,delete:Dl,clear:Rl,forEach:_i(!1,!0)},n={get(i){return bi(this,i,!0)},get size(){return Ci(this,!0)},has(i){return wi.call(this,i,!0)},add:Zt("add"),set:Zt("set"),delete:Zt("delete"),clear:Zt("clear"),forEach:_i(!0,!1)},r={get(i){return bi(this,i,!0,!0)},get size(){return Ci(this,!0)},has(i){return wi.call(this,i,!0)},add:Zt("add"),set:Zt("set"),delete:Zt("delete"),clear:Zt("clear"),forEach:_i(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(i=>{t[i]=Si(i,!1,!1),n[i]=Si(i,!0,!1),e[i]=Si(i,!1,!0),r[i]=Si(i,!0,!0)}),[t,n,e,r]}const[ef,tf,nf,rf]=Qp();function Ba(t,e){const n=e?t?rf:nf:t?tf:ef;return(r,o,i)=>o==="__v_isReactive"?!t:o==="__v_isReadonly"?t:o==="__v_raw"?r:Reflect.get(Ae(n,o)&&o in r?n:r,o,i)}const of={get:Ba(!1,!1)},af={get:Ba(!1,!0)},lf={get:Ba(!0,!1)},Gu=new WeakMap,qu=new WeakMap,Yu=new WeakMap,sf=new WeakMap;function uf(t){switch(t){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function cf(t){return t.__v_skip||!Object.isExtensible(t)?0:uf(Op(t))}function fn(t){return Tn(t)?t:Va(t,!1,Wu,of,Gu)}function df(t){return Va(t,!1,Xp,af,qu)}function ja(t){return Va(t,!0,Zp,lf,Yu)}function Va(t,e,n,r,o){if(!Ue(t)||t.__v_raw&&!(e&&t.__v_isReactive))return t;const i=o.get(t);if(i)return i;const a=cf(t);if(a===0)return t;const l=new Proxy(t,a===2?r:n);return o.set(t,l),l}function Pn(t){return Tn(t)?Pn(t.__v_raw):!!(t&&t.__v_isReactive)}function Tn(t){return!!(t&&t.__v_isReadonly)}function Ni(t){return!!(t&&t.__v_isShallow)}function Ju(t){return Pn(t)||Tn(t)}function Me(t){const e=t&&t.__v_raw;return e?Me(e):t}function Zu(t){return Hi(t,"__v_skip",!0),t}const yr=t=>Ue(t)?fn(t):t,Ha=t=>Ue(t)?ja(t):t;function Xu(t){ln&&St&&(t=Me(t),zu(t.dep||(t.dep=Aa())))}function Qu(t,e){t=Me(t);const n=t.dep;n&&Uo(n)}function rt(t){return!!(t&&t.__v_isRef===!0)}function fe(t){return pf(t,!1)}function pf(t,e){return rt(t)?t:new ff(t,e)}class ff{constructor(e,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?e:Me(e),this._value=n?e:yr(e)}get value(){return Xu(this),this._value}set value(e){const n=this.__v_isShallow||Ni(e)||Tn(e);e=n?e:Me(e),vr(e,this._rawValue)&&(this._rawValue=e,this._value=n?e:yr(e),Qu(this))}}function ne(t){return rt(t)?t.value:t}const mf={get:(t,e,n)=>ne(Reflect.get(t,e,n)),set:(t,e,n,r)=>{const o=t[e];return rt(o)&&!rt(n)?(o.value=n,!0):Reflect.set(t,e,n,r)}};function ec(t){return Pn(t)?t:new Proxy(t,mf)}class hf{constructor(e,n,r,o){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this._dirty=!0,this.effect=new Ma(e,()=>{this._dirty||(this._dirty=!0,Qu(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!o,this.__v_isReadonly=r}get value(){const e=Me(this);return Xu(e),(e._dirty||!e._cacheable)&&(e._dirty=!1,e._value=e.effect.run()),e._value}set value(e){this._setter(e)}}function gf(t,e,n=!1){let r,o;const i=xe(t);return i?(r=t,o=It):(r=t.get,o=t.set),new hf(r,o,i||!o,n)}function sn(t,e,n,r){let o;try{o=r?t(...r):t()}catch(i){ro(i,e,n)}return o}function gt(t,e,n,r){if(xe(t)){const i=sn(t,e,n,r);return i&&Mu(i)&&i.catch(a=>{ro(a,e,n)}),i}const o=[];for(let i=0;i>>1;wr(lt[r])Rt&<.splice(e,1)}function wf(t){Se(t)?Nn.push(...t):(!zt||!zt.includes(t,t.allowRecurse?wn+1:wn))&&Nn.push(t),nc()}function $l(t,e=br?Rt+1:0){for(;ewr(n)-wr(r)),wn=0;wnt.id==null?1/0:t.id,Cf=(t,e)=>{const n=wr(t)-wr(e);if(n===0){if(t.pre&&!e.pre)return-1;if(e.pre&&!t.pre)return 1}return n};function ic(t){Wo=!1,br=!0,lt.sort(Cf);const e=It;try{for(Rt=0;Rtqe(f)?f.trim():f)),d&&(o=n.map(kp))}let l,u=r[l=Ai(e)]||r[l=Ai(jt(e))];!u&&i&&(u=r[l=Ai(En(e))]),u&>(u,t,6,o);const s=r[l+"Once"];if(s){if(!t.emitted)t.emitted={};else if(t.emitted[l])return;t.emitted[l]=!0,gt(s,t,6,o)}}function oc(t,e,n=!1){const r=e.emitsCache,o=r.get(t);if(o!==void 0)return o;const i=t.emits;let a={},l=!1;if(!xe(t)){const u=s=>{const c=oc(s,e,!0);c&&(l=!0,Ze(a,c))};!n&&e.mixins.length&&e.mixins.forEach(u),t.extends&&u(t.extends),t.mixins&&t.mixins.forEach(u)}return!i&&!l?(Ue(t)&&r.set(t,null),null):(Se(i)?i.forEach(u=>a[u]=null):Ze(a,i),Ue(t)&&r.set(t,a),a)}function io(t,e){return!t||!Qi(e)?!1:(e=e.slice(2).replace(/Once$/,""),Ae(t,e[0].toLowerCase()+e.slice(1))||Ae(t,En(e))||Ae(t,e))}let at=null,oo=null;function Ki(t){const e=at;return at=t,oo=t&&t.type.__scopeId||null,e}function ac(t){oo=t}function lc(){oo=null}function M(t,e=at,n){if(!e||t._n)return t;const r=(...o)=>{r._d&&Wl(-1);const i=Ki(e);let a;try{a=t(...o)}finally{Ki(i),r._d&&Wl(1)}return a};return r._n=!0,r._c=!0,r._d=!0,r}function _o(t){const{type:e,vnode:n,proxy:r,withProxy:o,props:i,propsOptions:[a],slots:l,attrs:u,emit:s,render:c,renderCache:d,data:m,setupState:f,ctx:y,inheritAttrs:b}=t;let S,_;const I=Ki(t);try{if(n.shapeFlag&4){const T=o||r;S=Dt(c.call(T,T,d,i,f,m,y)),_=u}else{const T=e;S=Dt(T.length>1?T(i,{attrs:u,slots:l,emit:s}):T(i,null)),_=e.props?u:Sf(u)}}catch(T){pr.length=0,ro(T,t,1),S=P(vt)}let V=S;if(_&&b!==!1){const T=Object.keys(_),{shapeFlag:L}=V;T.length&&L&7&&(a&&T.some(Ea)&&(_=Of(_,a)),V=pn(V,_))}return n.dirs&&(V=pn(V),V.dirs=V.dirs?V.dirs.concat(n.dirs):n.dirs),n.transition&&(V.transition=n.transition),S=V,Ki(I),S}const Sf=t=>{let e;for(const n in t)(n==="class"||n==="style"||Qi(n))&&((e||(e={}))[n]=t[n]);return e},Of=(t,e)=>{const n={};for(const r in t)(!Ea(r)||!(r.slice(9)in e))&&(n[r]=t[r]);return n};function Pf(t,e,n){const{props:r,children:o,component:i}=t,{props:a,children:l,patchFlag:u}=e,s=i.emitsOptions;if(e.dirs||e.transition)return!0;if(n&&u>=0){if(u&1024)return!0;if(u&16)return r?Al(r,a,s):!!a;if(u&8){const c=e.dynamicProps;for(let d=0;dt.__isSuspense;function xf(t,e){e&&e.pendingBranch?Se(t)?e.effects.push(...t):e.effects.push(t):wf(t)}function In(t,e){return Ka(t,null,e)}const Oi={};function ut(t,e,n){return Ka(t,e,n)}function Ka(t,e,{immediate:n,deep:r,flush:o,onTrack:i,onTrigger:a}=Ke){var l;const u=Fp()===((l=it)==null?void 0:l.scope)?it:null;let s,c=!1,d=!1;if(rt(t)?(s=()=>t.value,c=Ni(t)):Pn(t)?(s=()=>t,r=!0):Se(t)?(d=!0,c=t.some(T=>Pn(T)||Ni(T)),s=()=>t.map(T=>{if(rt(T))return T.value;if(Pn(T))return Sn(T);if(xe(T))return sn(T,u,2)})):xe(t)?e?s=()=>sn(t,u,2):s=()=>{if(!(u&&u.isUnmounted))return m&&m(),gt(t,u,3,[f])}:s=It,e&&r){const T=s;s=()=>Sn(T())}let m,f=T=>{m=I.onStop=()=>{sn(T,u,4)}},y;if(Or)if(f=It,e?n&>(e,u,3,[s(),d?[]:void 0,f]):s(),o==="sync"){const T=wm();y=T.__watcherHandles||(T.__watcherHandles=[])}else return It;let b=d?new Array(t.length).fill(Oi):Oi;const S=()=>{if(I.active)if(e){const T=I.run();(r||c||(d?T.some((L,ae)=>vr(L,b[ae])):vr(T,b)))&&(m&&m(),gt(e,u,3,[T,b===Oi?void 0:d&&b[0]===Oi?[]:b,f]),b=T)}else I.run()};S.allowRecurse=!!e;let _;o==="sync"?_=S:o==="post"?_=()=>ct(S,u&&u.suspense):(S.pre=!0,u&&(S.id=u.uid),_=()=>za(S));const I=new Ma(s,_);e?n?S():b=I.run():o==="post"?ct(I.run.bind(I),u&&u.suspense):I.run();const V=()=>{I.stop(),u&&u.scope&&Da(u.scope.effects,I)};return y&&y.push(V),V}function Tf(t,e,n){const r=this.proxy,o=qe(t)?t.includes(".")?sc(r,t):()=>r[t]:t.bind(r,r);let i;xe(e)?i=e:(i=e.handler,n=e);const a=it;Kn(this);const l=Ka(o,i.bind(r),n);return a?Kn(a):kn(),l}function sc(t,e){const n=e.split(".");return()=>{let r=t;for(let o=0;o{Sn(n,e)});else if(Fu(t))for(const n in t)Sn(t[n],e);return t}function Oe(t,e){const n=at;if(n===null)return t;const r=po(n)||n.proxy,o=t.dirs||(t.dirs=[]);for(let i=0;i{t.isMounted=!0}),Wa(()=>{t.isUnmounting=!0}),t}const mt=[Function,Array],cc={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:mt,onEnter:mt,onAfterEnter:mt,onEnterCancelled:mt,onBeforeLeave:mt,onLeave:mt,onAfterLeave:mt,onLeaveCancelled:mt,onBeforeAppear:mt,onAppear:mt,onAfterAppear:mt,onAppearCancelled:mt},Ef={name:"BaseTransition",props:cc,setup(t,{slots:e}){const n=co(),r=uc();let o;return()=>{const i=e.default&&Ua(e.default(),!0);if(!i||!i.length)return;let a=i[0];if(i.length>1){for(const b of i)if(b.type!==vt){a=b;break}}const l=Me(t),{mode:u}=l;if(r.isLeaving)return So(a);const s=Ml(a);if(!s)return So(a);const c=Cr(s,l,r,n);_r(s,c);const d=n.subTree,m=d&&Ml(d);let f=!1;const{getTransitionKey:y}=s.type;if(y){const b=y();o===void 0?o=b:b!==o&&(o=b,f=!0)}if(m&&m.type!==vt&&(!Cn(s,m)||f)){const b=Cr(m,l,r,n);if(_r(m,b),u==="out-in")return r.isLeaving=!0,b.afterLeave=()=>{r.isLeaving=!1,n.update.active!==!1&&n.update()},So(a);u==="in-out"&&s.type!==vt&&(b.delayLeave=(S,_,I)=>{const V=dc(r,m);V[String(m.key)]=m,S._leaveCb=()=>{_(),S._leaveCb=void 0,delete c.delayedLeave},c.delayedLeave=I})}return a}}},Df=Ef;function dc(t,e){const{leavingVNodes:n}=t;let r=n.get(e.type);return r||(r=Object.create(null),n.set(e.type,r)),r}function Cr(t,e,n,r){const{appear:o,mode:i,persisted:a=!1,onBeforeEnter:l,onEnter:u,onAfterEnter:s,onEnterCancelled:c,onBeforeLeave:d,onLeave:m,onAfterLeave:f,onLeaveCancelled:y,onBeforeAppear:b,onAppear:S,onAfterAppear:_,onAppearCancelled:I}=e,V=String(t.key),T=dc(n,t),L=(A,te)=>{A&>(A,r,9,te)},ae=(A,te)=>{const se=te[1];L(A,te),Se(A)?A.every(pe=>pe.length<=1)&&se():A.length<=1&&se()},le={mode:i,persisted:a,beforeEnter(A){let te=l;if(!n.isMounted)if(o)te=b||l;else return;A._leaveCb&&A._leaveCb(!0);const se=T[V];se&&Cn(t,se)&&se.el._leaveCb&&se.el._leaveCb(),L(te,[A])},enter(A){let te=u,se=s,pe=c;if(!n.isMounted)if(o)te=S||u,se=_||s,pe=I||c;else return;let F=!1;const D=A._enterCb=Y=>{F||(F=!0,Y?L(pe,[A]):L(se,[A]),le.delayedLeave&&le.delayedLeave(),A._enterCb=void 0)};te?ae(te,[A,D]):D()},leave(A,te){const se=String(t.key);if(A._enterCb&&A._enterCb(!0),n.isUnmounting)return te();L(d,[A]);let pe=!1;const F=A._leaveCb=D=>{pe||(pe=!0,te(),D?L(y,[A]):L(f,[A]),A._leaveCb=void 0,T[se]===t&&delete T[se])};T[se]=t,m?ae(m,[A,F]):F()},clone(A){return Cr(A,e,n,r)}};return le}function So(t){if(ao(t))return t=pn(t),t.children=null,t}function Ml(t){return ao(t)?t.children?t.children[0]:void 0:t}function _r(t,e){t.shapeFlag&6&&t.component?_r(t.component.subTree,e):t.shapeFlag&128?(t.ssContent.transition=e.clone(t.ssContent),t.ssFallback.transition=e.clone(t.ssFallback)):t.transition=e}function Ua(t,e=!1,n){let r=[],o=0;for(let i=0;i1)for(let i=0;iZe({name:t.name},e,{setup:t}))():t}const ur=t=>!!t.type.__asyncLoader,ao=t=>t.type.__isKeepAlive;function Rf(t,e){pc(t,"a",e)}function $f(t,e){pc(t,"da",e)}function pc(t,e,n=it){const r=t.__wdc||(t.__wdc=()=>{let o=n;for(;o;){if(o.isDeactivated)return;o=o.parent}return t()});if(lo(e,r,n),n){let o=n.parent;for(;o&&o.parent;)ao(o.parent.vnode)&&Af(r,e,n,o),o=o.parent}}function Af(t,e,n,r){const o=lo(e,t,r,!0);hc(()=>{Da(r[e],o)},n)}function lo(t,e,n=it,r=!1){if(n){const o=n[t]||(n[t]=[]),i=e.__weh||(e.__weh=(...a)=>{if(n.isUnmounted)return;Yn(),Kn(n);const l=gt(e,n,t,a);return kn(),Jn(),l});return r?o.unshift(i):o.push(i),i}}const Yt=t=>(e,n=it)=>(!Or||t==="sp")&&lo(t,(...r)=>e(...r),n),fc=Yt("bm"),di=Yt("m"),Mf=Yt("bu"),mc=Yt("u"),Wa=Yt("bum"),hc=Yt("um"),Lf=Yt("sp"),Ff=Yt("rtg"),Bf=Yt("rtc");function jf(t,e=it){lo("ec",t,e)}const Ga="components",Vf="directives";function N(t,e){return qa(Ga,t,!0,e)||t}const gc=Symbol.for("v-ndc");function de(t){return qe(t)?qa(Ga,t,!1)||t:t||gc}function Xe(t){return qa(Vf,t)}function qa(t,e,n=!0,r=!1){const o=at||it;if(o){const i=o.type;if(t===Ga){const l=gm(i,!1);if(l&&(l===e||l===jt(e)||l===xn(jt(e))))return i}const a=Ll(o[t]||i[t],e)||Ll(o.appContext[t],e);return!a&&r?i:a}}function Ll(t,e){return t&&(t[e]||t[jt(e)]||t[xn(jt(e))])}function Te(t,e,n,r){let o;const i=n&&n[r];if(Se(t)||qe(t)){o=new Array(t.length);for(let a=0,l=t.length;ae(a,l,void 0,i&&i[l]));else{const a=Object.keys(t);o=new Array(a.length);for(let l=0,u=a.length;l{const i=r.fn(...o);return i&&(i.key=r.key),i}:r.fn)}return t}function Z(t,e,n={},r,o){if(at.isCE||at.parent&&ur(at.parent)&&at.parent.isCE)return e!=="default"&&(n.name=e),P("slot",n,r&&r());let i=t[e];i&&i._c&&(i._d=!1),p();const a=i&&vc(i(n)),l=$(oe,{key:n.key||a&&a.key||`_${e}`},a||(r?r():[]),a&&t._===1?64:-2);return!o&&l.scopeId&&(l.slotScopeIds=[l.scopeId+"-s"]),i&&i._c&&(i._d=!0),l}function vc(t){return t.some(e=>qi(e)?!(e.type===vt||e.type===oe&&!vc(e.children)):!0)?t:null}function Pi(t,e){const n={};for(const r in t)n[e&&/[A-Z]/.test(r)?`on:${r}`:Ai(r)]=t[r];return n}const Go=t=>t?xc(t)?po(t)||t.proxy:Go(t.parent):null,cr=Ze(Object.create(null),{$:t=>t,$el:t=>t.vnode.el,$data:t=>t.data,$props:t=>t.props,$attrs:t=>t.attrs,$slots:t=>t.slots,$refs:t=>t.refs,$parent:t=>Go(t.parent),$root:t=>Go(t.root),$emit:t=>t.emit,$options:t=>Ya(t),$forceUpdate:t=>t.f||(t.f=()=>za(t.update)),$nextTick:t=>t.n||(t.n=zi.bind(t.proxy)),$watch:t=>Tf.bind(t)}),Oo=(t,e)=>t!==Ke&&!t.__isScriptSetup&&Ae(t,e),Hf={get({_:t},e){const{ctx:n,setupState:r,data:o,props:i,accessCache:a,type:l,appContext:u}=t;let s;if(e[0]!=="$"){const f=a[e];if(f!==void 0)switch(f){case 1:return r[e];case 2:return o[e];case 4:return n[e];case 3:return i[e]}else{if(Oo(r,e))return a[e]=1,r[e];if(o!==Ke&&Ae(o,e))return a[e]=2,o[e];if((s=t.propsOptions[0])&&Ae(s,e))return a[e]=3,i[e];if(n!==Ke&&Ae(n,e))return a[e]=4,n[e];qo&&(a[e]=0)}}const c=cr[e];let d,m;if(c)return e==="$attrs"&&dt(t,"get",e),c(t);if((d=l.__cssModules)&&(d=d[e]))return d;if(n!==Ke&&Ae(n,e))return a[e]=4,n[e];if(m=u.config.globalProperties,Ae(m,e))return m[e]},set({_:t},e,n){const{data:r,setupState:o,ctx:i}=t;return Oo(o,e)?(o[e]=n,!0):r!==Ke&&Ae(r,e)?(r[e]=n,!0):Ae(t.props,e)||e[0]==="$"&&e.slice(1)in t?!1:(i[e]=n,!0)},has({_:{data:t,setupState:e,accessCache:n,ctx:r,appContext:o,propsOptions:i}},a){let l;return!!n[a]||t!==Ke&&Ae(t,a)||Oo(e,a)||(l=i[0])&&Ae(l,a)||Ae(r,a)||Ae(cr,a)||Ae(o.config.globalProperties,a)},defineProperty(t,e,n){return n.get!=null?t._.accessCache[e]=0:Ae(n,"value")&&this.set(t,e,n.value,null),Reflect.defineProperty(t,e,n)}};function Fl(t){return Se(t)?t.reduce((e,n)=>(e[n]=null,e),{}):t}let qo=!0;function Nf(t){const e=Ya(t),n=t.proxy,r=t.ctx;qo=!1,e.beforeCreate&&Bl(e.beforeCreate,t,"bc");const{data:o,computed:i,methods:a,watch:l,provide:u,inject:s,created:c,beforeMount:d,mounted:m,beforeUpdate:f,updated:y,activated:b,deactivated:S,beforeDestroy:_,beforeUnmount:I,destroyed:V,unmounted:T,render:L,renderTracked:ae,renderTriggered:le,errorCaptured:A,serverPrefetch:te,expose:se,inheritAttrs:pe,components:F,directives:D,filters:Y}=e;if(s&&zf(s,r,null),a)for(const _e in a){const he=a[_e];xe(he)&&(r[_e]=he.bind(n))}if(o){const _e=o.call(n,n);Ue(_e)&&(t.data=fn(_e))}if(qo=!0,i)for(const _e in i){const he=i[_e],z=xe(he)?he.bind(n,n):xe(he.get)?he.get.bind(n,n):It,H=!xe(he)&&xe(he.set)?he.set.bind(n):It,k=X({get:z,set:H});Object.defineProperty(r,_e,{enumerable:!0,configurable:!0,get:()=>k.value,set:R=>k.value=R})}if(l)for(const _e in l)yc(l[_e],r,n,_e);if(u){const _e=xe(u)?u.call(n):u;Reflect.ownKeys(_e).forEach(he=>{Gi(he,_e[he])})}c&&Bl(c,t,"c");function ce(_e,he){Se(he)?he.forEach(z=>_e(z.bind(n))):he&&_e(he.bind(n))}if(ce(fc,d),ce(di,m),ce(Mf,f),ce(mc,y),ce(Rf,b),ce($f,S),ce(jf,A),ce(Bf,ae),ce(Ff,le),ce(Wa,I),ce(hc,T),ce(Lf,te),Se(se))if(se.length){const _e=t.exposed||(t.exposed={});se.forEach(he=>{Object.defineProperty(_e,he,{get:()=>n[he],set:z=>n[he]=z})})}else t.exposed||(t.exposed={});L&&t.render===It&&(t.render=L),pe!=null&&(t.inheritAttrs=pe),F&&(t.components=F),D&&(t.directives=D)}function zf(t,e,n=It){Se(t)&&(t=Yo(t));for(const r in t){const o=t[r];let i;Ue(o)?"default"in o?i=Ut(o.from||r,o.default,!0):i=Ut(o.from||r):i=Ut(o),rt(i)?Object.defineProperty(e,r,{enumerable:!0,configurable:!0,get:()=>i.value,set:a=>i.value=a}):e[r]=i}}function Bl(t,e,n){gt(Se(t)?t.map(r=>r.bind(e.proxy)):t.bind(e.proxy),e,n)}function yc(t,e,n,r){const o=r.includes(".")?sc(n,r):()=>n[r];if(qe(t)){const i=e[t];xe(i)&&ut(o,i)}else if(xe(t))ut(o,t.bind(n));else if(Ue(t))if(Se(t))t.forEach(i=>yc(i,e,n,r));else{const i=xe(t.handler)?t.handler.bind(n):e[t.handler];xe(i)&&ut(o,i,t)}}function Ya(t){const e=t.type,{mixins:n,extends:r}=e,{mixins:o,optionsCache:i,config:{optionMergeStrategies:a}}=t.appContext,l=i.get(e);let u;return l?u=l:!o.length&&!n&&!r?u=e:(u={},o.length&&o.forEach(s=>Ui(u,s,a,!0)),Ui(u,e,a)),Ue(e)&&i.set(e,u),u}function Ui(t,e,n,r=!1){const{mixins:o,extends:i}=e;i&&Ui(t,i,n,!0),o&&o.forEach(a=>Ui(t,a,n,!0));for(const a in e)if(!(r&&a==="expose")){const l=Kf[a]||n&&n[a];t[a]=l?l(t[a],e[a]):e[a]}return t}const Kf={data:jl,props:Vl,emits:Vl,methods:sr,computed:sr,beforeCreate:st,created:st,beforeMount:st,mounted:st,beforeUpdate:st,updated:st,beforeDestroy:st,beforeUnmount:st,destroyed:st,unmounted:st,activated:st,deactivated:st,errorCaptured:st,serverPrefetch:st,components:sr,directives:sr,watch:Wf,provide:jl,inject:Uf};function jl(t,e){return e?t?function(){return Ze(xe(t)?t.call(this,this):t,xe(e)?e.call(this,this):e)}:e:t}function Uf(t,e){return sr(Yo(t),Yo(e))}function Yo(t){if(Se(t)){const e={};for(let n=0;n1)return n&&xe(e)?e.call(r&&r.proxy):e}}function Yf(t,e,n,r=!1){const o={},i={};Hi(i,uo,1),t.propsDefaults=Object.create(null),wc(t,e,o,i);for(const a in t.propsOptions[0])a in o||(o[a]=void 0);n?t.props=r?o:df(o):t.type.props?t.props=o:t.props=i,t.attrs=i}function Jf(t,e,n,r){const{props:o,attrs:i,vnode:{patchFlag:a}}=t,l=Me(o),[u]=t.propsOptions;let s=!1;if((r||a>0)&&!(a&16)){if(a&8){const c=t.vnode.dynamicProps;for(let d=0;d{u=!0;const[m,f]=Cc(d,e,!0);Ze(a,m),f&&l.push(...f)};!n&&e.mixins.length&&e.mixins.forEach(c),t.extends&&c(t.extends),t.mixins&&t.mixins.forEach(c)}if(!i&&!u)return Ue(t)&&r.set(t,Vn),Vn;if(Se(i))for(let c=0;c-1,f[1]=b<0||y-1||Ae(f,"default"))&&l.push(d)}}}const s=[a,l];return Ue(t)&&r.set(t,s),s}function Hl(t){return t[0]!=="$"}function Nl(t){const e=t&&t.toString().match(/^\s*(function|class) (\w+)/);return e?e[2]:t===null?"null":""}function zl(t,e){return Nl(t)===Nl(e)}function Kl(t,e){return Se(e)?e.findIndex(n=>zl(n,t)):xe(e)&&zl(e,t)?0:-1}const _c=t=>t[0]==="_"||t==="$stable",Ja=t=>Se(t)?t.map(Dt):[Dt(t)],Zf=(t,e,n)=>{if(e._n)return e;const r=M((...o)=>Ja(e(...o)),n);return r._c=!1,r},Sc=(t,e,n)=>{const r=t._ctx;for(const o in t){if(_c(o))continue;const i=t[o];if(xe(i))e[o]=Zf(o,i,r);else if(i!=null){const a=Ja(i);e[o]=()=>a}}},Oc=(t,e)=>{const n=Ja(e);t.slots.default=()=>n},Xf=(t,e)=>{if(t.vnode.shapeFlag&32){const n=e._;n?(t.slots=Me(e),Hi(e,"_",n)):Sc(e,t.slots={})}else t.slots={},e&&Oc(t,e);Hi(t.slots,uo,1)},Qf=(t,e,n)=>{const{vnode:r,slots:o}=t;let i=!0,a=Ke;if(r.shapeFlag&32){const l=e._;l?n&&l===1?i=!1:(Ze(o,e),!n&&l===1&&delete o._):(i=!e.$stable,Sc(e,o)),a=e}else e&&(Oc(t,e),a={default:1});if(i)for(const l in o)!_c(l)&&!(l in a)&&delete o[l]};function Zo(t,e,n,r,o=!1){if(Se(t)){t.forEach((m,f)=>Zo(m,e&&(Se(e)?e[f]:e),n,r,o));return}if(ur(r)&&!o)return;const i=r.shapeFlag&4?po(r.component)||r.component.proxy:r.el,a=o?null:i,{i:l,r:u}=t,s=e&&e.r,c=l.refs===Ke?l.refs={}:l.refs,d=l.setupState;if(s!=null&&s!==u&&(qe(s)?(c[s]=null,Ae(d,s)&&(d[s]=null)):rt(s)&&(s.value=null)),xe(u))sn(u,l,12,[a,c]);else{const m=qe(u),f=rt(u);if(m||f){const y=()=>{if(t.f){const b=m?Ae(d,u)?d[u]:c[u]:u.value;o?Se(b)&&Da(b,i):Se(b)?b.includes(i)||b.push(i):m?(c[u]=[i],Ae(d,u)&&(d[u]=c[u])):(u.value=[i],t.k&&(c[t.k]=u.value))}else m?(c[u]=a,Ae(d,u)&&(d[u]=a)):f&&(u.value=a,t.k&&(c[t.k]=a))};a?(y.id=-1,ct(y,n)):y()}}}const ct=xf;function em(t){return tm(t)}function tm(t,e){const n=Ho();n.__VUE__=!0;const{insert:r,remove:o,patchProp:i,createElement:a,createText:l,createComment:u,setText:s,setElementText:c,parentNode:d,nextSibling:m,setScopeId:f=It,insertStaticContent:y}=t,b=(w,O,E,j=null,U=null,q=null,me=!1,ie=null,ue=!!O.dynamicChildren)=>{if(w===O)return;w&&!Cn(w,O)&&(j=Ie(w),R(w,U,q,!0),w=null),O.patchFlag===-2&&(ue=!1,O.dynamicChildren=null);const{type:Q,ref:be,shapeFlag:ge}=O;switch(Q){case so:S(w,O,E,j);break;case vt:_(w,O,E,j);break;case Mi:w==null&&I(O,E,j,me);break;case oe:F(w,O,E,j,U,q,me,ie,ue);break;default:ge&1?L(w,O,E,j,U,q,me,ie,ue):ge&6?D(w,O,E,j,U,q,me,ie,ue):(ge&64||ge&128)&&Q.process(w,O,E,j,U,q,me,ie,ue,Qe)}be!=null&&U&&Zo(be,w&&w.ref,q,O||w,!O)},S=(w,O,E,j)=>{if(w==null)r(O.el=l(O.children),E,j);else{const U=O.el=w.el;O.children!==w.children&&s(U,O.children)}},_=(w,O,E,j)=>{w==null?r(O.el=u(O.children||""),E,j):O.el=w.el},I=(w,O,E,j)=>{[w.el,w.anchor]=y(w.children,O,E,j,w.el,w.anchor)},V=({el:w,anchor:O},E,j)=>{let U;for(;w&&w!==O;)U=m(w),r(w,E,j),w=U;r(O,E,j)},T=({el:w,anchor:O})=>{let E;for(;w&&w!==O;)E=m(w),o(w),w=E;o(O)},L=(w,O,E,j,U,q,me,ie,ue)=>{me=me||O.type==="svg",w==null?ae(O,E,j,U,q,me,ie,ue):te(w,O,U,q,me,ie,ue)},ae=(w,O,E,j,U,q,me,ie)=>{let ue,Q;const{type:be,props:ge,shapeFlag:we,transition:ke,dirs:Ee}=w;if(ue=w.el=a(w.type,q,ge&&ge.is,ge),we&8?c(ue,w.children):we&16&&A(w.children,ue,null,j,U,q&&be!=="foreignObject",me,ie),Ee&&hn(w,null,j,"created"),le(ue,w,w.scopeId,me,j),ge){for(const He in ge)He!=="value"&&!$i(He)&&i(ue,He,null,ge[He],q,w.children,j,U,Le);"value"in ge&&i(ue,"value",null,ge.value),(Q=ge.onVnodeBeforeMount)&&xt(Q,j,w)}Ee&&hn(w,null,j,"beforeMount");const ze=(!U||U&&!U.pendingBranch)&&ke&&!ke.persisted;ze&&ke.beforeEnter(ue),r(ue,O,E),((Q=ge&&ge.onVnodeMounted)||ze||Ee)&&ct(()=>{Q&&xt(Q,j,w),ze&&ke.enter(ue),Ee&&hn(w,null,j,"mounted")},U)},le=(w,O,E,j,U)=>{if(E&&f(w,E),j)for(let q=0;q{for(let Q=ue;Q{const ie=O.el=w.el;let{patchFlag:ue,dynamicChildren:Q,dirs:be}=O;ue|=w.patchFlag&16;const ge=w.props||Ke,we=O.props||Ke;let ke;E&&gn(E,!1),(ke=we.onVnodeBeforeUpdate)&&xt(ke,E,O,w),be&&hn(O,w,E,"beforeUpdate"),E&&gn(E,!0);const Ee=U&&O.type!=="foreignObject";if(Q?se(w.dynamicChildren,Q,ie,E,j,Ee,q):me||he(w,O,ie,null,E,j,Ee,q,!1),ue>0){if(ue&16)pe(ie,O,ge,we,E,j,U);else if(ue&2&&ge.class!==we.class&&i(ie,"class",null,we.class,U),ue&4&&i(ie,"style",ge.style,we.style,U),ue&8){const ze=O.dynamicProps;for(let He=0;He{ke&&xt(ke,E,O,w),be&&hn(O,w,E,"updated")},j)},se=(w,O,E,j,U,q,me)=>{for(let ie=0;ie{if(E!==j){if(E!==Ke)for(const ie in E)!$i(ie)&&!(ie in j)&&i(w,ie,E[ie],null,me,O.children,U,q,Le);for(const ie in j){if($i(ie))continue;const ue=j[ie],Q=E[ie];ue!==Q&&ie!=="value"&&i(w,ie,Q,ue,me,O.children,U,q,Le)}"value"in j&&i(w,"value",E.value,j.value)}},F=(w,O,E,j,U,q,me,ie,ue)=>{const Q=O.el=w?w.el:l(""),be=O.anchor=w?w.anchor:l("");let{patchFlag:ge,dynamicChildren:we,slotScopeIds:ke}=O;ke&&(ie=ie?ie.concat(ke):ke),w==null?(r(Q,E,j),r(be,E,j),A(O.children,E,be,U,q,me,ie,ue)):ge>0&&ge&64&&we&&w.dynamicChildren?(se(w.dynamicChildren,we,E,U,q,me,ie),(O.key!=null||U&&O===U.subTree)&&Za(w,O,!0)):he(w,O,E,be,U,q,me,ie,ue)},D=(w,O,E,j,U,q,me,ie,ue)=>{O.slotScopeIds=ie,w==null?O.shapeFlag&512?U.ctx.activate(O,E,j,me,ue):Y(O,E,j,U,q,me,ue):ve(w,O,ue)},Y=(w,O,E,j,U,q,me)=>{const ie=w.component=dm(w,j,U);if(ao(w)&&(ie.ctx.renderer=Qe),pm(ie),ie.asyncDep){if(U&&U.registerDep(ie,ce),!w.el){const ue=ie.subTree=P(vt);_(null,ue,O,E)}return}ce(ie,w,O,E,U,q,me)},ve=(w,O,E)=>{const j=O.component=w.component;if(Pf(w,O,E))if(j.asyncDep&&!j.asyncResolved){_e(j,O,E);return}else j.next=O,bf(j.update),j.update();else O.el=w.el,j.vnode=O},ce=(w,O,E,j,U,q,me)=>{const ie=()=>{if(w.isMounted){let{next:be,bu:ge,u:we,parent:ke,vnode:Ee}=w,ze=be,He;gn(w,!1),be?(be.el=Ee.el,_e(w,be,me)):be=Ee,ge&&Co(ge),(He=be.props&&be.props.onVnodeBeforeUpdate)&&xt(He,ke,be,Ee),gn(w,!0);const et=_o(w),wt=w.subTree;w.subTree=et,b(wt,et,d(wt.el),Ie(wt),w,U,q),be.el=et.el,ze===null&&If(w,et.el),we&&ct(we,U),(He=be.props&&be.props.onVnodeUpdated)&&ct(()=>xt(He,ke,be,Ee),U)}else{let be;const{el:ge,props:we}=O,{bm:ke,m:Ee,parent:ze}=w,He=ur(O);if(gn(w,!1),ke&&Co(ke),!He&&(be=we&&we.onVnodeBeforeMount)&&xt(be,ze,O),gn(w,!0),ge&&W){const et=()=>{w.subTree=_o(w),W(ge,w.subTree,w,U,null)};He?O.type.__asyncLoader().then(()=>!w.isUnmounted&&et()):et()}else{const et=w.subTree=_o(w);b(null,et,E,j,w,U,q),O.el=et.el}if(Ee&&ct(Ee,U),!He&&(be=we&&we.onVnodeMounted)){const et=O;ct(()=>xt(be,ze,et),U)}(O.shapeFlag&256||ze&&ur(ze.vnode)&&ze.vnode.shapeFlag&256)&&w.a&&ct(w.a,U),w.isMounted=!0,O=E=j=null}},ue=w.effect=new Ma(ie,()=>za(Q),w.scope),Q=w.update=()=>ue.run();Q.id=w.uid,gn(w,!0),Q()},_e=(w,O,E)=>{O.component=w;const j=w.vnode.props;w.vnode=O,w.next=null,Jf(w,O.props,j,E),Qf(w,O.children,E),Yn(),$l(),Jn()},he=(w,O,E,j,U,q,me,ie,ue=!1)=>{const Q=w&&w.children,be=w?w.shapeFlag:0,ge=O.children,{patchFlag:we,shapeFlag:ke}=O;if(we>0){if(we&128){H(Q,ge,E,j,U,q,me,ie,ue);return}else if(we&256){z(Q,ge,E,j,U,q,me,ie,ue);return}}ke&8?(be&16&&Le(Q,U,q),ge!==Q&&c(E,ge)):be&16?ke&16?H(Q,ge,E,j,U,q,me,ie,ue):Le(Q,U,q,!0):(be&8&&c(E,""),ke&16&&A(ge,E,j,U,q,me,ie,ue))},z=(w,O,E,j,U,q,me,ie,ue)=>{w=w||Vn,O=O||Vn;const Q=w.length,be=O.length,ge=Math.min(Q,be);let we;for(we=0;webe?Le(w,U,q,!0,!1,ge):A(O,E,j,U,q,me,ie,ue,ge)},H=(w,O,E,j,U,q,me,ie,ue)=>{let Q=0;const be=O.length;let ge=w.length-1,we=be-1;for(;Q<=ge&&Q<=we;){const ke=w[Q],Ee=O[Q]=ue?on(O[Q]):Dt(O[Q]);if(Cn(ke,Ee))b(ke,Ee,E,null,U,q,me,ie,ue);else break;Q++}for(;Q<=ge&&Q<=we;){const ke=w[ge],Ee=O[we]=ue?on(O[we]):Dt(O[we]);if(Cn(ke,Ee))b(ke,Ee,E,null,U,q,me,ie,ue);else break;ge--,we--}if(Q>ge){if(Q<=we){const ke=we+1,Ee=kewe)for(;Q<=ge;)R(w[Q],U,q,!0),Q++;else{const ke=Q,Ee=Q,ze=new Map;for(Q=Ee;Q<=we;Q++){const ft=O[Q]=ue?on(O[Q]):Dt(O[Q]);ft.key!=null&&ze.set(ft.key,Q)}let He,et=0;const wt=we-Ee+1;let $n=!1,_l=0;const tr=new Array(wt);for(Q=0;Q=wt){R(ft,U,q,!0);continue}let kt;if(ft.key!=null)kt=ze.get(ft.key);else for(He=Ee;He<=we;He++)if(tr[He-Ee]===0&&Cn(ft,O[He])){kt=He;break}kt===void 0?R(ft,U,q,!0):(tr[kt-Ee]=Q+1,kt>=_l?_l=kt:$n=!0,b(ft,O[kt],E,null,U,q,me,ie,ue),et++)}const Sl=$n?nm(tr):Vn;for(He=Sl.length-1,Q=wt-1;Q>=0;Q--){const ft=Ee+Q,kt=O[ft],Ol=ft+1{const{el:q,type:me,transition:ie,children:ue,shapeFlag:Q}=w;if(Q&6){k(w.component.subTree,O,E,j);return}if(Q&128){w.suspense.move(O,E,j);return}if(Q&64){me.move(w,O,E,Qe);return}if(me===oe){r(q,O,E);for(let ge=0;geie.enter(q),U);else{const{leave:ge,delayLeave:we,afterLeave:ke}=ie,Ee=()=>r(q,O,E),ze=()=>{ge(q,()=>{Ee(),ke&&ke()})};we?we(q,Ee,ze):ze()}else r(q,O,E)},R=(w,O,E,j=!1,U=!1)=>{const{type:q,props:me,ref:ie,children:ue,dynamicChildren:Q,shapeFlag:be,patchFlag:ge,dirs:we}=w;if(ie!=null&&Zo(ie,null,E,w,!0),be&256){O.ctx.deactivate(w);return}const ke=be&1&&we,Ee=!ur(w);let ze;if(Ee&&(ze=me&&me.onVnodeBeforeUnmount)&&xt(ze,O,w),be&6)De(w.component,E,j);else{if(be&128){w.suspense.unmount(E,j);return}ke&&hn(w,null,O,"beforeUnmount"),be&64?w.type.remove(w,O,E,U,Qe,j):Q&&(q!==oe||ge>0&&ge&64)?Le(Q,O,E,!1,!0):(q===oe&&ge&384||!U&&be&16)&&Le(ue,O,E),j&&G(w)}(Ee&&(ze=me&&me.onVnodeUnmounted)||ke)&&ct(()=>{ze&&xt(ze,O,w),ke&&hn(w,null,O,"unmounted")},E)},G=w=>{const{type:O,el:E,anchor:j,transition:U}=w;if(O===oe){Ce(E,j);return}if(O===Mi){T(w);return}const q=()=>{o(E),U&&!U.persisted&&U.afterLeave&&U.afterLeave()};if(w.shapeFlag&1&&U&&!U.persisted){const{leave:me,delayLeave:ie}=U,ue=()=>me(E,q);ie?ie(w.el,q,ue):ue()}else q()},Ce=(w,O)=>{let E;for(;w!==O;)E=m(w),o(w),w=E;o(O)},De=(w,O,E)=>{const{bum:j,scope:U,update:q,subTree:me,um:ie}=w;j&&Co(j),U.stop(),q&&(q.active=!1,R(me,w,O,E)),ie&&ct(ie,O),ct(()=>{w.isUnmounted=!0},O),O&&O.pendingBranch&&!O.isUnmounted&&w.asyncDep&&!w.asyncResolved&&w.suspenseId===O.pendingId&&(O.deps--,O.deps===0&&O.resolve())},Le=(w,O,E,j=!1,U=!1,q=0)=>{for(let me=q;mew.shapeFlag&6?Ie(w.component.subTree):w.shapeFlag&128?w.suspense.next():m(w.anchor||w.el),ot=(w,O,E)=>{w==null?O._vnode&&R(O._vnode,null,null,!0):b(O._vnode||null,w,O,null,null,null,E),$l(),rc(),O._vnode=w},Qe={p:b,um:R,m:k,r:G,mt:Y,mc:A,pc:he,pbc:se,n:Ie,o:t};let ee,W;return e&&([ee,W]=e(Qe)),{render:ot,hydrate:ee,createApp:qf(ot,ee)}}function gn({effect:t,update:e},n){t.allowRecurse=e.allowRecurse=n}function Za(t,e,n=!1){const r=t.children,o=e.children;if(Se(r)&&Se(o))for(let i=0;i>1,t[n[l]]0&&(e[r]=n[i-1]),n[i]=r)}}for(i=n.length,a=n[i-1];i-- >0;)n[i]=a,a=e[a];return n}const rm=t=>t.__isTeleport,dr=t=>t&&(t.disabled||t.disabled===""),Ul=t=>typeof SVGElement<"u"&&t instanceof SVGElement,Xo=(t,e)=>{const n=t&&t.to;return qe(n)?e?e(n):null:n},im={__isTeleport:!0,process(t,e,n,r,o,i,a,l,u,s){const{mc:c,pc:d,pbc:m,o:{insert:f,querySelector:y,createText:b,createComment:S}}=s,_=dr(e.props);let{shapeFlag:I,children:V,dynamicChildren:T}=e;if(t==null){const L=e.el=b(""),ae=e.anchor=b("");f(L,n,r),f(ae,n,r);const le=e.target=Xo(e.props,y),A=e.targetAnchor=b("");le&&(f(A,le),a=a||Ul(le));const te=(se,pe)=>{I&16&&c(V,se,pe,o,i,a,l,u)};_?te(n,ae):le&&te(le,A)}else{e.el=t.el;const L=e.anchor=t.anchor,ae=e.target=t.target,le=e.targetAnchor=t.targetAnchor,A=dr(t.props),te=A?n:ae,se=A?L:le;if(a=a||Ul(ae),T?(m(t.dynamicChildren,T,te,o,i,a,l),Za(t,e,!0)):u||d(t,e,te,se,o,i,a,l,!1),_)A||Ii(e,n,L,s,1);else if((e.props&&e.props.to)!==(t.props&&t.props.to)){const pe=e.target=Xo(e.props,y);pe&&Ii(e,pe,null,s,0)}else A&&Ii(e,ae,le,s,1)}Pc(e)},remove(t,e,n,r,{um:o,o:{remove:i}},a){const{shapeFlag:l,children:u,anchor:s,targetAnchor:c,target:d,props:m}=t;if(d&&i(c),(a||!dr(m))&&(i(s),l&16))for(let f=0;f0?Pt||Vn:null,lm(),Sr>0&&Pt&&Pt.push(t),t}function v(t,e,n,r,o,i){return Ic(g(t,e,n,r,o,i,!0))}function $(t,e,n,r,o){return Ic(P(t,e,n,r,o,!0))}function qi(t){return t?t.__v_isVNode===!0:!1}function Cn(t,e){return t.type===e.type&&t.key===e.key}const uo="__vInternal",kc=({key:t})=>t??null,Li=({ref:t,ref_key:e,ref_for:n})=>(typeof t=="number"&&(t=""+t),t!=null?qe(t)||rt(t)||xe(t)?{i:at,r:t,k:e,f:!!n}:t:null);function g(t,e=null,n=null,r=0,o=null,i=t===oe?0:1,a=!1,l=!1){const u={__v_isVNode:!0,__v_skip:!0,type:t,props:e,key:e&&kc(e),ref:e&&Li(e),scopeId:oo,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:r,dynamicProps:o,dynamicChildren:null,appContext:null,ctx:at};return l?(Qa(u,n),i&128&&t.normalize(u)):n&&(u.shapeFlag|=qe(n)?8:16),Sr>0&&!a&&Pt&&(u.patchFlag>0||i&6)&&u.patchFlag!==32&&Pt.push(u),u}const P=sm;function sm(t,e=null,n=null,r=0,o=null,i=!1){if((!t||t===gc)&&(t=vt),qi(t)){const l=pn(t,e,!0);return n&&Qa(l,n),Sr>0&&!i&&Pt&&(l.shapeFlag&6?Pt[Pt.indexOf(t)]=l:Pt.push(l)),l.patchFlag|=-2,l}if(vm(t)&&(t=t.__vccOpts),e){e=un(e);let{class:l,style:u}=e;l&&!qe(l)&&(e.class=re(l)),Ue(u)&&(Ju(u)&&!Se(u)&&(u=Ze({},u)),e.style=qn(u))}const a=qe(t)?1:kf(t)?128:rm(t)?64:Ue(t)?4:xe(t)?2:0;return g(t,e,n,r,o,a,i,!0)}function un(t){return t?Ju(t)||uo in t?Ze({},t):t:null}function pn(t,e,n=!1){const{props:r,ref:o,patchFlag:i,children:a}=t,l=e?h(r||{},e):r;return{__v_isVNode:!0,__v_skip:!0,type:t.type,props:l,key:l&&kc(l),ref:e&&e.ref?n&&o?Se(o)?o.concat(Li(e)):[o,Li(e)]:Li(e):o,scopeId:t.scopeId,slotScopeIds:t.slotScopeIds,children:a,target:t.target,targetAnchor:t.targetAnchor,staticCount:t.staticCount,shapeFlag:t.shapeFlag,patchFlag:e&&t.type!==oe?i===-1?16:i|16:i,dynamicProps:t.dynamicProps,dynamicChildren:t.dynamicChildren,appContext:t.appContext,dirs:t.dirs,transition:t.transition,component:t.component,suspense:t.suspense,ssContent:t.ssContent&&pn(t.ssContent),ssFallback:t.ssFallback&&pn(t.ssFallback),el:t.el,anchor:t.anchor,ctx:t.ctx,ce:t.ce}}function ye(t=" ",e=0){return P(so,null,t,e)}function Xa(t,e){const n=P(Mi,null,t);return n.staticCount=e,n}function x(t="",e=!1){return e?(p(),$(vt,null,t)):P(vt,null,t)}function Dt(t){return t==null||typeof t=="boolean"?P(vt):Se(t)?P(oe,null,t.slice()):typeof t=="object"?on(t):P(so,null,String(t))}function on(t){return t.el===null&&t.patchFlag!==-1||t.memo?t:pn(t)}function Qa(t,e){let n=0;const{shapeFlag:r}=t;if(e==null)e=null;else if(Se(e))n=16;else if(typeof e=="object")if(r&65){const o=e.default;o&&(o._c&&(o._d=!1),Qa(t,o()),o._c&&(o._d=!0));return}else{n=32;const o=e._;!o&&!(uo in e)?e._ctx=at:o===3&&at&&(at.slots._===1?e._=1:(e._=2,t.patchFlag|=1024))}else xe(e)?(e={default:e,_ctx:at},n=32):(e=String(e),r&64?(n=16,e=[ye(e)]):n=8);t.children=e,t.shapeFlag|=n}function h(...t){const e={};for(let n=0;nit||at;let el,An,Gl="__VUE_INSTANCE_SETTERS__";(An=Ho()[Gl])||(An=Ho()[Gl]=[]),An.push(t=>it=t),el=t=>{An.length>1?An.forEach(e=>e(t)):An[0](t)};const Kn=t=>{el(t),t.scope.on()},kn=()=>{it&&it.scope.off(),el(null)};function xc(t){return t.vnode.shapeFlag&4}let Or=!1;function pm(t,e=!1){Or=e;const{props:n,children:r}=t.vnode,o=xc(t);Yf(t,n,o,e),Xf(t,r);const i=o?fm(t,e):void 0;return Or=!1,i}function fm(t,e){const n=t.type;t.accessCache=Object.create(null),t.proxy=Zu(new Proxy(t.ctx,Hf));const{setup:r}=n;if(r){const o=t.setupContext=r.length>1?hm(t):null;Kn(t),Yn();const i=sn(r,t,0,[t.props,o]);if(Jn(),kn(),Mu(i)){if(i.then(kn,kn),e)return i.then(a=>{ql(t,a,e)}).catch(a=>{ro(a,t,0)});t.asyncDep=i}else ql(t,i,e)}else Tc(t,e)}function ql(t,e,n){xe(e)?t.type.__ssrInlineRender?t.ssrRender=e:t.render=e:Ue(e)&&(t.setupState=ec(e)),Tc(t,n)}let Yl;function Tc(t,e,n){const r=t.type;if(!t.render){if(!e&&Yl&&!r.render){const o=r.template||Ya(t).template;if(o){const{isCustomElement:i,compilerOptions:a}=t.appContext.config,{delimiters:l,compilerOptions:u}=r,s=Ze(Ze({isCustomElement:i,delimiters:l},a),u);r.render=Yl(o,s)}}t.render=r.render||It}Kn(t),Yn(),Nf(t),Jn(),kn()}function mm(t){return t.attrsProxy||(t.attrsProxy=new Proxy(t.attrs,{get(e,n){return dt(t,"get","$attrs"),e[n]}}))}function hm(t){const e=n=>{t.exposed=n||{}};return{get attrs(){return mm(t)},slots:t.slots,emit:t.emit,expose:e}}function po(t){if(t.exposed)return t.exposeProxy||(t.exposeProxy=new Proxy(ec(Zu(t.exposed)),{get(e,n){if(n in e)return e[n];if(n in cr)return cr[n](t)},has(e,n){return n in e||n in cr}}))}function gm(t,e=!0){return xe(t)?t.displayName||t.name:t.name||e&&t.__name}function vm(t){return xe(t)&&"__vccOpts"in t}const X=(t,e)=>gf(t,e,Or);function ym(t,e,n){const r=arguments.length;return r===2?Ue(e)&&!Se(e)?qi(e)?P(t,null,[e]):P(t,e):P(t,null,e):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&qi(n)&&(n=[n]),P(t,e,n))}const bm=Symbol.for("v-scx"),wm=()=>Ut(bm),Cm="3.3.4",_m="http://www.w3.org/2000/svg",_n=typeof document<"u"?document:null,Jl=_n&&_n.createElement("template"),Sm={insert:(t,e,n)=>{e.insertBefore(t,n||null)},remove:t=>{const e=t.parentNode;e&&e.removeChild(t)},createElement:(t,e,n,r)=>{const o=e?_n.createElementNS(_m,t):_n.createElement(t,n?{is:n}:void 0);return t==="select"&&r&&r.multiple!=null&&o.setAttribute("multiple",r.multiple),o},createText:t=>_n.createTextNode(t),createComment:t=>_n.createComment(t),setText:(t,e)=>{t.nodeValue=e},setElementText:(t,e)=>{t.textContent=e},parentNode:t=>t.parentNode,nextSibling:t=>t.nextSibling,querySelector:t=>_n.querySelector(t),setScopeId(t,e){t.setAttribute(e,"")},insertStaticContent(t,e,n,r,o,i){const a=n?n.previousSibling:e.lastChild;if(o&&(o===i||o.nextSibling))for(;e.insertBefore(o.cloneNode(!0),n),!(o===i||!(o=o.nextSibling)););else{Jl.innerHTML=r?`${t}`:t;const l=Jl.content;if(r){const u=l.firstChild;for(;u.firstChild;)l.appendChild(u.firstChild);l.removeChild(u)}e.insertBefore(l,n)}return[a?a.nextSibling:e.firstChild,n?n.previousSibling:e.lastChild]}};function Om(t,e,n){const r=t._vtc;r&&(e=(e?[e,...r]:[...r]).join(" ")),e==null?t.removeAttribute("class"):n?t.setAttribute("class",e):t.className=e}function Pm(t,e,n){const r=t.style,o=qe(n);if(n&&!o){if(e&&!qe(e))for(const i in e)n[i]==null&&Qo(r,i,"");for(const i in n)Qo(r,i,n[i])}else{const i=r.display;o?e!==n&&(r.cssText=n):e&&t.removeAttribute("style"),"_vod"in t&&(r.display=i)}}const Zl=/\s*!important$/;function Qo(t,e,n){if(Se(n))n.forEach(r=>Qo(t,e,r));else if(n==null&&(n=""),e.startsWith("--"))t.setProperty(e,n);else{const r=Im(t,e);Zl.test(n)?t.setProperty(En(r),n.replace(Zl,""),"important"):t[r]=n}}const Xl=["Webkit","Moz","ms"],Po={};function Im(t,e){const n=Po[e];if(n)return n;let r=jt(e);if(r!=="filter"&&r in t)return Po[e]=r;r=xn(r);for(let o=0;oIo||($m.then(()=>Io=0),Io=Date.now());function Mm(t,e){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;gt(Lm(r,n.value),e,5,[r])};return n.value=t,n.attached=Am(),n}function Lm(t,e){if(Se(e)){const n=t.stopImmediatePropagation;return t.stopImmediatePropagation=()=>{n.call(t),t._stopped=!0},e.map(r=>o=>!o._stopped&&r&&r(o))}else return e}const ts=/^on[a-z]/,Fm=(t,e,n,r,o=!1,i,a,l,u)=>{e==="class"?Om(t,r,o):e==="style"?Pm(t,n,r):Qi(e)?Ea(e)||Dm(t,e,n,r,a):(e[0]==="."?(e=e.slice(1),!0):e[0]==="^"?(e=e.slice(1),!1):Bm(t,e,r,o))?xm(t,e,r,i,a,l,u):(e==="true-value"?t._trueValue=r:e==="false-value"&&(t._falseValue=r),km(t,e,r,o))};function Bm(t,e,n,r){return r?!!(e==="innerHTML"||e==="textContent"||e in t&&ts.test(e)&&xe(n)):e==="spellcheck"||e==="draggable"||e==="translate"||e==="form"||e==="list"&&t.tagName==="INPUT"||e==="type"&&t.tagName==="TEXTAREA"||ts.test(e)&&qe(n)?!1:e in t}const Xt="transition",nr="animation",Vt=(t,{slots:e})=>ym(Df,Dc(t),e);Vt.displayName="Transition";const Ec={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},jm=Vt.props=Ze({},cc,Ec),vn=(t,e=[])=>{Se(t)?t.forEach(n=>n(...e)):t&&t(...e)},ns=t=>t?Se(t)?t.some(e=>e.length>1):t.length>1:!1;function Dc(t){const e={};for(const F in t)F in Ec||(e[F]=t[F]);if(t.css===!1)return e;const{name:n="v",type:r,duration:o,enterFromClass:i=`${n}-enter-from`,enterActiveClass:a=`${n}-enter-active`,enterToClass:l=`${n}-enter-to`,appearFromClass:u=i,appearActiveClass:s=a,appearToClass:c=l,leaveFromClass:d=`${n}-leave-from`,leaveActiveClass:m=`${n}-leave-active`,leaveToClass:f=`${n}-leave-to`}=t,y=Vm(o),b=y&&y[0],S=y&&y[1],{onBeforeEnter:_,onEnter:I,onEnterCancelled:V,onLeave:T,onLeaveCancelled:L,onBeforeAppear:ae=_,onAppear:le=I,onAppearCancelled:A=V}=e,te=(F,D,Y)=>{rn(F,D?c:l),rn(F,D?s:a),Y&&Y()},se=(F,D)=>{F._isLeaving=!1,rn(F,d),rn(F,f),rn(F,m),D&&D()},pe=F=>(D,Y)=>{const ve=F?le:I,ce=()=>te(D,F,Y);vn(ve,[D,ce]),rs(()=>{rn(D,F?u:i),Nt(D,F?c:l),ns(ve)||is(D,r,b,ce)})};return Ze(e,{onBeforeEnter(F){vn(_,[F]),Nt(F,i),Nt(F,a)},onBeforeAppear(F){vn(ae,[F]),Nt(F,u),Nt(F,s)},onEnter:pe(!1),onAppear:pe(!0),onLeave(F,D){F._isLeaving=!0;const Y=()=>se(F,D);Nt(F,d),$c(),Nt(F,m),rs(()=>{F._isLeaving&&(rn(F,d),Nt(F,f),ns(T)||is(F,r,S,Y))}),vn(T,[F,Y])},onEnterCancelled(F){te(F,!1),vn(V,[F])},onAppearCancelled(F){te(F,!0),vn(A,[F])},onLeaveCancelled(F){se(F),vn(L,[F])}})}function Vm(t){if(t==null)return null;if(Ue(t))return[ko(t.enter),ko(t.leave)];{const e=ko(t);return[e,e]}}function ko(t){return xp(t)}function Nt(t,e){e.split(/\s+/).forEach(n=>n&&t.classList.add(n)),(t._vtc||(t._vtc=new Set)).add(e)}function rn(t,e){e.split(/\s+/).forEach(r=>r&&t.classList.remove(r));const{_vtc:n}=t;n&&(n.delete(e),n.size||(t._vtc=void 0))}function rs(t){requestAnimationFrame(()=>{requestAnimationFrame(t)})}let Hm=0;function is(t,e,n,r){const o=t._endId=++Hm,i=()=>{o===t._endId&&r()};if(n)return setTimeout(i,n);const{type:a,timeout:l,propCount:u}=Rc(t,e);if(!a)return r();const s=a+"end";let c=0;const d=()=>{t.removeEventListener(s,m),i()},m=f=>{f.target===t&&++c>=u&&d()};setTimeout(()=>{c(n[y]||"").split(", "),o=r(`${Xt}Delay`),i=r(`${Xt}Duration`),a=os(o,i),l=r(`${nr}Delay`),u=r(`${nr}Duration`),s=os(l,u);let c=null,d=0,m=0;e===Xt?a>0&&(c=Xt,d=a,m=i.length):e===nr?s>0&&(c=nr,d=s,m=u.length):(d=Math.max(a,s),c=d>0?a>s?Xt:nr:null,m=c?c===Xt?i.length:u.length:0);const f=c===Xt&&/\b(transform|all)(,|$)/.test(r(`${Xt}Property`).toString());return{type:c,timeout:d,propCount:m,hasTransform:f}}function os(t,e){for(;t.lengthas(n)+as(t[r])))}function as(t){return Number(t.slice(0,-1).replace(",","."))*1e3}function $c(){return document.body.offsetHeight}const Ac=new WeakMap,Mc=new WeakMap,Lc={name:"TransitionGroup",props:Ze({},jm,{tag:String,moveClass:String}),setup(t,{slots:e}){const n=co(),r=uc();let o,i;return mc(()=>{if(!o.length)return;const a=t.moveClass||`${t.name||"v"}-move`;if(!Gm(o[0].el,n.vnode.el,a))return;o.forEach(Km),o.forEach(Um);const l=o.filter(Wm);$c(),l.forEach(u=>{const s=u.el,c=s.style;Nt(s,a),c.transform=c.webkitTransform=c.transitionDuration="";const d=s._moveCb=m=>{m&&m.target!==s||(!m||/transform$/.test(m.propertyName))&&(s.removeEventListener("transitionend",d),s._moveCb=null,rn(s,a))};s.addEventListener("transitionend",d)})}),()=>{const a=Me(t),l=Dc(a);let u=a.tag||oe;o=i,i=e.default?Ua(e.default()):[];for(let s=0;sdelete t.mode;Lc.props;const zm=Lc;function Km(t){const e=t.el;e._moveCb&&e._moveCb(),e._enterCb&&e._enterCb()}function Um(t){Mc.set(t,t.el.getBoundingClientRect())}function Wm(t){const e=Ac.get(t),n=Mc.get(t),r=e.left-n.left,o=e.top-n.top;if(r||o){const i=t.el.style;return i.transform=i.webkitTransform=`translate(${r}px,${o}px)`,i.transitionDuration="0s",t}}function Gm(t,e,n){const r=t.cloneNode();t._vtc&&t._vtc.forEach(a=>{a.split(/\s+/).forEach(l=>l&&r.classList.remove(l))}),n.split(/\s+/).forEach(a=>a&&r.classList.add(a)),r.style.display="none";const o=e.nodeType===1?e:e.parentNode;o.appendChild(r);const{hasTransform:i}=Rc(r);return o.removeChild(r),i}const qm=["ctrl","shift","alt","meta"],Ym={stop:t=>t.stopPropagation(),prevent:t=>t.preventDefault(),self:t=>t.target!==t.currentTarget,ctrl:t=>!t.ctrlKey,shift:t=>!t.shiftKey,alt:t=>!t.altKey,meta:t=>!t.metaKey,left:t=>"button"in t&&t.button!==0,middle:t=>"button"in t&&t.button!==1,right:t=>"button"in t&&t.button!==2,exact:(t,e)=>qm.some(n=>t[`${n}Key`]&&!e.includes(n))},fo=(t,e)=>(n,...r)=>{for(let o=0;on=>{if(!("key"in n))return;const r=En(n.key);if(e.some(o=>o===r||Jm[o]===r))return t(n)},Un={beforeMount(t,{value:e},{transition:n}){t._vod=t.style.display==="none"?"":t.style.display,n&&e?n.beforeEnter(t):rr(t,e)},mounted(t,{value:e},{transition:n}){n&&e&&n.enter(t)},updated(t,{value:e,oldValue:n},{transition:r}){!e!=!n&&(r?e?(r.beforeEnter(t),rr(t,!0),r.enter(t)):r.leave(t,()=>{rr(t,!1)}):rr(t,e))},beforeUnmount(t,{value:e}){rr(t,e)}};function rr(t,e){t.style.display=e?t._vod:"none"}const Zm=Ze({patchProp:Fm},Sm);let ls;function Xm(){return ls||(ls=em(Zm))}const Qm=(...t)=>{const e=Xm().createApp(...t),{mount:n}=e;return e.mount=r=>{const o=eh(r);if(!o)return;const i=e._component;!xe(i)&&!i.render&&!i.template&&(i.template=o.innerHTML),o.innerHTML="";const a=n(o,!1,o instanceof SVGElement);return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),a},e};function eh(t){return qe(t)?document.querySelector(t):t}function xo(t,e){var n=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(!n){if(Array.isArray(t)||(n=tl(t))||e&&t&&typeof t.length=="number"){n&&(t=n);var r=0,o=function(){};return{s:o,n:function(){return r>=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(s){throw s},f:o}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. +(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const o of document.querySelectorAll('link[rel="modulepreload"]'))r(o);new MutationObserver(o=>{for(const i of o)if(i.type==="childList")for(const a of i.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&r(a)}).observe(document,{childList:!0,subtree:!0});function n(o){const i={};return o.integrity&&(i.integrity=o.integrity),o.referrerPolicy&&(i.referrerPolicy=o.referrerPolicy),o.crossOrigin==="use-credentials"?i.credentials="include":o.crossOrigin==="anonymous"?i.credentials="omit":i.credentials="same-origin",i}function r(o){if(o.ep)return;o.ep=!0;const i=n(o);fetch(o.href,i)}})();function xa(t,e){const n=Object.create(null),r=t.split(",");for(let o=0;o!!n[o.toLowerCase()]:o=>!!n[o]}const We={},Vn=[],It=()=>{},Cp=()=>!1,_p=/^on[^a-z]/,Qi=t=>_p.test(t),Ea=t=>t.startsWith("onUpdate:"),Qe=Object.assign,Da=(t,e)=>{const n=t.indexOf(e);n>-1&&t.splice(n,1)},Sp=Object.prototype.hasOwnProperty,Ae=(t,e)=>Sp.call(t,e),_e=Array.isArray,Hn=t=>eo(t)==="[object Map]",Au=t=>eo(t)==="[object Set]",ke=t=>typeof t=="function",Je=t=>typeof t=="string",Ra=t=>typeof t=="symbol",Ge=t=>t!==null&&typeof t=="object",Mu=t=>Ge(t)&&ke(t.then)&&ke(t.catch),Lu=Object.prototype.toString,eo=t=>Lu.call(t),Op=t=>eo(t).slice(8,-1),Fu=t=>eo(t)==="[object Object]",$a=t=>Je(t)&&t!=="NaN"&&t[0]!=="-"&&""+parseInt(t,10)===t,$i=xa(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),to=t=>{const e=Object.create(null);return n=>e[n]||(e[n]=t(n))},Pp=/-(\w)/g,jt=to(t=>t.replace(Pp,(e,n)=>n?n.toUpperCase():"")),Ip=/\B([A-Z])/g,En=to(t=>t.replace(Ip,"-$1").toLowerCase()),Tn=to(t=>t.charAt(0).toUpperCase()+t.slice(1)),Ai=to(t=>t?`on${Tn(t)}`:""),vr=(t,e)=>!Object.is(t,e),Co=(t,e)=>{for(let n=0;n{Object.defineProperty(t,e,{configurable:!0,enumerable:!1,value:n})},kp=t=>{const e=parseFloat(t);return isNaN(e)?t:e},Tp=t=>{const e=Je(t)?Number(t):NaN;return isNaN(e)?t:e};let Pl;const Ho=()=>Pl||(Pl=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function qn(t){if(_e(t)){const e={};for(let n=0;n{if(n){const r=n.split(Ep);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e}function te(t){let e="";if(Je(t))e=t;else if(_e(t))for(let n=0;nJe(t)?t:t==null?"":_e(t)||Ge(t)&&(t.toString===Lu||!ke(t.toString))?JSON.stringify(t,ju,2):String(t),ju=(t,e)=>e&&e.__v_isRef?ju(t,e.value):Hn(e)?{[`Map(${e.size})`]:[...e.entries()].reduce((n,[r,o])=>(n[`${r} =>`]=o,n),{})}:Au(e)?{[`Set(${e.size})`]:[...e.values()]}:Ge(e)&&!_e(e)&&!Fu(e)?String(e):e;let Ct;class Mp{constructor(e=!1){this.detached=e,this._active=!0,this.effects=[],this.cleanups=[],this.parent=Ct,!e&&Ct&&(this.index=(Ct.scopes||(Ct.scopes=[])).push(this)-1)}get active(){return this._active}run(e){if(this._active){const n=Ct;try{return Ct=this,e()}finally{Ct=n}}}on(){Ct=this}off(){Ct=this.parent}stop(e){if(this._active){let n,r;for(n=0,r=this.effects.length;n{const e=new Set(t);return e.w=0,e.n=0,e},Vu=t=>(t.w&dn)>0,Hu=t=>(t.n&dn)>0,Bp=({deps:t})=>{if(t.length)for(let e=0;e{const{deps:e}=t;if(e.length){let n=0;for(let r=0;r{(c==="length"||c>=u)&&l.push(s)})}else switch(n!==void 0&&l.push(a.get(n)),e){case"add":_e(t)?$a(n)&&l.push(a.get("length")):(l.push(a.get(On)),Hn(t)&&l.push(a.get(Ko)));break;case"delete":_e(t)||(l.push(a.get(On)),Hn(t)&&l.push(a.get(Ko)));break;case"set":Hn(t)&&l.push(a.get(On));break}if(l.length===1)l[0]&&Uo(l[0]);else{const u=[];for(const s of l)s&&u.push(...s);Uo(Aa(u))}}function Uo(t,e){const n=_e(t)?t:[...t];for(const r of n)r.computed&&kl(r);for(const r of n)r.computed||kl(r)}function kl(t,e){(t!==St||t.allowRecurse)&&(t.scheduler?t.scheduler():t.run())}const Vp=xa("__proto__,__v_isRef,__isVue"),Ku=new Set(Object.getOwnPropertyNames(Symbol).filter(t=>t!=="arguments"&&t!=="caller").map(t=>Symbol[t]).filter(Ra)),Hp=La(),Np=La(!1,!0),zp=La(!0),Tl=Kp();function Kp(){const t={};return["includes","indexOf","lastIndexOf"].forEach(e=>{t[e]=function(...n){const r=Me(this);for(let i=0,a=this.length;i{t[e]=function(...n){Yn();const r=Me(this)[e].apply(this,n);return Jn(),r}}),t}function Up(t){const e=Me(this);return dt(e,"has",t),e.hasOwnProperty(t)}function La(t=!1,e=!1){return function(r,o,i){if(o==="__v_isReactive")return!t;if(o==="__v_isReadonly")return t;if(o==="__v_isShallow")return e;if(o==="__v_raw"&&i===(t?e?sf:Yu:e?qu:Gu).get(r))return r;const a=_e(r);if(!t){if(a&&Ae(Tl,o))return Reflect.get(Tl,o,i);if(o==="hasOwnProperty")return Up}const l=Reflect.get(r,o,i);return(Ra(o)?Ku.has(o):Vp(o))||(t||dt(r,"get",o),e)?l:it(l)?a&&$a(o)?l:l.value:Ge(l)?t?ja(l):fn(l):l}}const Wp=Uu(),Gp=Uu(!0);function Uu(t=!1){return function(n,r,o,i){let a=n[r];if(xn(a)&&it(a)&&!it(o))return!1;if(!t&&(!Ni(o)&&!xn(o)&&(a=Me(a),o=Me(o)),!_e(n)&&it(a)&&!it(o)))return a.value=o,!0;const l=_e(n)&&$a(r)?Number(r)t,no=t=>Reflect.getPrototypeOf(t);function bi(t,e,n=!1,r=!1){t=t.__v_raw;const o=Me(t),i=Me(e);n||(e!==i&&dt(o,"get",e),dt(o,"get",i));const{has:a}=no(o),l=r?Fa:n?Ha:yr;if(a.call(o,e))return l(t.get(e));if(a.call(o,i))return l(t.get(i));t!==o&&t.get(e)}function wi(t,e=!1){const n=this.__v_raw,r=Me(n),o=Me(t);return e||(t!==o&&dt(r,"has",t),dt(r,"has",o)),t===o?n.has(t):n.has(t)||n.has(o)}function Ci(t,e=!1){return t=t.__v_raw,!e&&dt(Me(t),"iterate",On),Reflect.get(t,"size",t)}function xl(t){t=Me(t);const e=Me(this);return no(e).has.call(e,t)||(e.add(t),Gt(e,"add",t,t)),this}function El(t,e){e=Me(e);const n=Me(this),{has:r,get:o}=no(n);let i=r.call(n,t);i||(t=Me(t),i=r.call(n,t));const a=o.call(n,t);return n.set(t,e),i?vr(e,a)&&Gt(n,"set",t,e):Gt(n,"add",t,e),this}function Dl(t){const e=Me(this),{has:n,get:r}=no(e);let o=n.call(e,t);o||(t=Me(t),o=n.call(e,t)),r&&r.call(e,t);const i=e.delete(t);return o&&Gt(e,"delete",t,void 0),i}function Rl(){const t=Me(this),e=t.size!==0,n=t.clear();return e&&Gt(t,"clear",void 0,void 0),n}function _i(t,e){return function(r,o){const i=this,a=i.__v_raw,l=Me(a),u=e?Fa:t?Ha:yr;return!t&&dt(l,"iterate",On),a.forEach((s,c)=>r.call(o,u(s),u(c),i))}}function Si(t,e,n){return function(...r){const o=this.__v_raw,i=Me(o),a=Hn(i),l=t==="entries"||t===Symbol.iterator&&a,u=t==="keys"&&a,s=o[t](...r),c=n?Fa:e?Ha:yr;return!e&&dt(i,"iterate",u?Ko:On),{next(){const{value:d,done:m}=s.next();return m?{value:d,done:m}:{value:l?[c(d[0]),c(d[1])]:c(d),done:m}},[Symbol.iterator](){return this}}}}function Zt(t){return function(...e){return t==="delete"?!1:this}}function Qp(){const t={get(i){return bi(this,i)},get size(){return Ci(this)},has:wi,add:xl,set:El,delete:Dl,clear:Rl,forEach:_i(!1,!1)},e={get(i){return bi(this,i,!1,!0)},get size(){return Ci(this)},has:wi,add:xl,set:El,delete:Dl,clear:Rl,forEach:_i(!1,!0)},n={get(i){return bi(this,i,!0)},get size(){return Ci(this,!0)},has(i){return wi.call(this,i,!0)},add:Zt("add"),set:Zt("set"),delete:Zt("delete"),clear:Zt("clear"),forEach:_i(!0,!1)},r={get(i){return bi(this,i,!0,!0)},get size(){return Ci(this,!0)},has(i){return wi.call(this,i,!0)},add:Zt("add"),set:Zt("set"),delete:Zt("delete"),clear:Zt("clear"),forEach:_i(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(i=>{t[i]=Si(i,!1,!1),n[i]=Si(i,!0,!1),e[i]=Si(i,!1,!0),r[i]=Si(i,!0,!0)}),[t,n,e,r]}const[ef,tf,nf,rf]=Qp();function Ba(t,e){const n=e?t?rf:nf:t?tf:ef;return(r,o,i)=>o==="__v_isReactive"?!t:o==="__v_isReadonly"?t:o==="__v_raw"?r:Reflect.get(Ae(n,o)&&o in r?n:r,o,i)}const of={get:Ba(!1,!1)},af={get:Ba(!1,!0)},lf={get:Ba(!0,!1)},Gu=new WeakMap,qu=new WeakMap,Yu=new WeakMap,sf=new WeakMap;function uf(t){switch(t){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function cf(t){return t.__v_skip||!Object.isExtensible(t)?0:uf(Op(t))}function fn(t){return xn(t)?t:Va(t,!1,Wu,of,Gu)}function df(t){return Va(t,!1,Xp,af,qu)}function ja(t){return Va(t,!0,Zp,lf,Yu)}function Va(t,e,n,r,o){if(!Ge(t)||t.__v_raw&&!(e&&t.__v_isReactive))return t;const i=o.get(t);if(i)return i;const a=cf(t);if(a===0)return t;const l=new Proxy(t,a===2?r:n);return o.set(t,l),l}function Pn(t){return xn(t)?Pn(t.__v_raw):!!(t&&t.__v_isReactive)}function xn(t){return!!(t&&t.__v_isReadonly)}function Ni(t){return!!(t&&t.__v_isShallow)}function Ju(t){return Pn(t)||xn(t)}function Me(t){const e=t&&t.__v_raw;return e?Me(e):t}function Zu(t){return Hi(t,"__v_skip",!0),t}const yr=t=>Ge(t)?fn(t):t,Ha=t=>Ge(t)?ja(t):t;function Xu(t){ln&&St&&(t=Me(t),zu(t.dep||(t.dep=Aa())))}function Qu(t,e){t=Me(t);const n=t.dep;n&&Uo(n)}function it(t){return!!(t&&t.__v_isRef===!0)}function de(t){return pf(t,!1)}function pf(t,e){return it(t)?t:new ff(t,e)}class ff{constructor(e,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?e:Me(e),this._value=n?e:yr(e)}get value(){return Xu(this),this._value}set value(e){const n=this.__v_isShallow||Ni(e)||xn(e);e=n?e:Me(e),vr(e,this._rawValue)&&(this._rawValue=e,this._value=n?e:yr(e),Qu(this))}}function ee(t){return it(t)?t.value:t}const mf={get:(t,e,n)=>ee(Reflect.get(t,e,n)),set:(t,e,n,r)=>{const o=t[e];return it(o)&&!it(n)?(o.value=n,!0):Reflect.set(t,e,n,r)}};function ec(t){return Pn(t)?t:new Proxy(t,mf)}class hf{constructor(e,n,r,o){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this._dirty=!0,this.effect=new Ma(e,()=>{this._dirty||(this._dirty=!0,Qu(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!o,this.__v_isReadonly=r}get value(){const e=Me(this);return Xu(e),(e._dirty||!e._cacheable)&&(e._dirty=!1,e._value=e.effect.run()),e._value}set value(e){this._setter(e)}}function gf(t,e,n=!1){let r,o;const i=ke(t);return i?(r=t,o=It):(r=t.get,o=t.set),new hf(r,o,i||!o,n)}function sn(t,e,n,r){let o;try{o=r?t(...r):t()}catch(i){ro(i,e,n)}return o}function gt(t,e,n,r){if(ke(t)){const i=sn(t,e,n,r);return i&&Mu(i)&&i.catch(a=>{ro(a,e,n)}),i}const o=[];for(let i=0;i>>1;wr(lt[r])Rt&<.splice(e,1)}function wf(t){_e(t)?Nn.push(...t):(!zt||!zt.includes(t,t.allowRecurse?wn+1:wn))&&Nn.push(t),nc()}function $l(t,e=br?Rt+1:0){for(;ewr(n)-wr(r)),wn=0;wnt.id==null?1/0:t.id,Cf=(t,e)=>{const n=wr(t)-wr(e);if(n===0){if(t.pre&&!e.pre)return-1;if(e.pre&&!t.pre)return 1}return n};function ic(t){Wo=!1,br=!0,lt.sort(Cf);const e=It;try{for(Rt=0;RtJe(f)?f.trim():f)),d&&(o=n.map(kp))}let l,u=r[l=Ai(e)]||r[l=Ai(jt(e))];!u&&i&&(u=r[l=Ai(En(e))]),u&>(u,t,6,o);const s=r[l+"Once"];if(s){if(!t.emitted)t.emitted={};else if(t.emitted[l])return;t.emitted[l]=!0,gt(s,t,6,o)}}function oc(t,e,n=!1){const r=e.emitsCache,o=r.get(t);if(o!==void 0)return o;const i=t.emits;let a={},l=!1;if(!ke(t)){const u=s=>{const c=oc(s,e,!0);c&&(l=!0,Qe(a,c))};!n&&e.mixins.length&&e.mixins.forEach(u),t.extends&&u(t.extends),t.mixins&&t.mixins.forEach(u)}return!i&&!l?(Ge(t)&&r.set(t,null),null):(_e(i)?i.forEach(u=>a[u]=null):Qe(a,i),Ge(t)&&r.set(t,a),a)}function io(t,e){return!t||!Qi(e)?!1:(e=e.slice(2).replace(/Once$/,""),Ae(t,e[0].toLowerCase()+e.slice(1))||Ae(t,En(e))||Ae(t,e))}let at=null,oo=null;function Ki(t){const e=at;return at=t,oo=t&&t.type.__scopeId||null,e}function ac(t){oo=t}function lc(){oo=null}function L(t,e=at,n){if(!e||t._n)return t;const r=(...o)=>{r._d&&Wl(-1);const i=Ki(e);let a;try{a=t(...o)}finally{Ki(i),r._d&&Wl(1)}return a};return r._n=!0,r._c=!0,r._d=!0,r}function _o(t){const{type:e,vnode:n,proxy:r,withProxy:o,props:i,propsOptions:[a],slots:l,attrs:u,emit:s,render:c,renderCache:d,data:m,setupState:f,ctx:y,inheritAttrs:b}=t;let S,_;const I=Ki(t);try{if(n.shapeFlag&4){const x=o||r;S=Dt(c.call(x,x,d,i,f,m,y)),_=u}else{const x=e;S=Dt(x.length>1?x(i,{attrs:u,slots:l,emit:s}):x(i,null)),_=e.props?u:Sf(u)}}catch(x){pr.length=0,ro(x,t,1),S=P(vt)}let z=S;if(_&&b!==!1){const x=Object.keys(_),{shapeFlag:F}=z;x.length&&F&7&&(a&&x.some(Ea)&&(_=Of(_,a)),z=pn(z,_))}return n.dirs&&(z=pn(z),z.dirs=z.dirs?z.dirs.concat(n.dirs):n.dirs),n.transition&&(z.transition=n.transition),S=z,Ki(I),S}const Sf=t=>{let e;for(const n in t)(n==="class"||n==="style"||Qi(n))&&((e||(e={}))[n]=t[n]);return e},Of=(t,e)=>{const n={};for(const r in t)(!Ea(r)||!(r.slice(9)in e))&&(n[r]=t[r]);return n};function Pf(t,e,n){const{props:r,children:o,component:i}=t,{props:a,children:l,patchFlag:u}=e,s=i.emitsOptions;if(e.dirs||e.transition)return!0;if(n&&u>=0){if(u&1024)return!0;if(u&16)return r?Al(r,a,s):!!a;if(u&8){const c=e.dynamicProps;for(let d=0;dt.__isSuspense;function Tf(t,e){e&&e.pendingBranch?_e(t)?e.effects.push(...t):e.effects.push(t):wf(t)}function In(t,e){return Ka(t,null,e)}const Oi={};function ut(t,e,n){return Ka(t,e,n)}function Ka(t,e,{immediate:n,deep:r,flush:o,onTrack:i,onTrigger:a}=We){var l;const u=Fp()===((l=ot)==null?void 0:l.scope)?ot:null;let s,c=!1,d=!1;if(it(t)?(s=()=>t.value,c=Ni(t)):Pn(t)?(s=()=>t,r=!0):_e(t)?(d=!0,c=t.some(x=>Pn(x)||Ni(x)),s=()=>t.map(x=>{if(it(x))return x.value;if(Pn(x))return Sn(x);if(ke(x))return sn(x,u,2)})):ke(t)?e?s=()=>sn(t,u,2):s=()=>{if(!(u&&u.isUnmounted))return m&&m(),gt(t,u,3,[f])}:s=It,e&&r){const x=s;s=()=>Sn(x())}let m,f=x=>{m=I.onStop=()=>{sn(x,u,4)}},y;if(Or)if(f=It,e?n&>(e,u,3,[s(),d?[]:void 0,f]):s(),o==="sync"){const x=wm();y=x.__watcherHandles||(x.__watcherHandles=[])}else return It;let b=d?new Array(t.length).fill(Oi):Oi;const S=()=>{if(I.active)if(e){const x=I.run();(r||c||(d?x.some((F,ie)=>vr(F,b[ie])):vr(x,b)))&&(m&&m(),gt(e,u,3,[x,b===Oi?void 0:d&&b[0]===Oi?[]:b,f]),b=x)}else I.run()};S.allowRecurse=!!e;let _;o==="sync"?_=S:o==="post"?_=()=>ct(S,u&&u.suspense):(S.pre=!0,u&&(S.id=u.uid),_=()=>za(S));const I=new Ma(s,_);e?n?S():b=I.run():o==="post"?ct(I.run.bind(I),u&&u.suspense):I.run();const z=()=>{I.stop(),u&&u.scope&&Da(u.scope.effects,I)};return y&&y.push(z),z}function xf(t,e,n){const r=this.proxy,o=Je(t)?t.includes(".")?sc(r,t):()=>r[t]:t.bind(r,r);let i;ke(e)?i=e:(i=e.handler,n=e);const a=ot;Kn(this);const l=Ka(o,i.bind(r),n);return a?Kn(a):kn(),l}function sc(t,e){const n=e.split(".");return()=>{let r=t;for(let o=0;o{Sn(n,e)});else if(Fu(t))for(const n in t)Sn(t[n],e);return t}function Se(t,e){const n=at;if(n===null)return t;const r=po(n)||n.proxy,o=t.dirs||(t.dirs=[]);for(let i=0;i{t.isMounted=!0}),Wa(()=>{t.isUnmounting=!0}),t}const mt=[Function,Array],cc={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:mt,onEnter:mt,onAfterEnter:mt,onEnterCancelled:mt,onBeforeLeave:mt,onLeave:mt,onAfterLeave:mt,onLeaveCancelled:mt,onBeforeAppear:mt,onAppear:mt,onAfterAppear:mt,onAppearCancelled:mt},Ef={name:"BaseTransition",props:cc,setup(t,{slots:e}){const n=co(),r=uc();let o;return()=>{const i=e.default&&Ua(e.default(),!0);if(!i||!i.length)return;let a=i[0];if(i.length>1){for(const b of i)if(b.type!==vt){a=b;break}}const l=Me(t),{mode:u}=l;if(r.isLeaving)return So(a);const s=Ml(a);if(!s)return So(a);const c=Cr(s,l,r,n);_r(s,c);const d=n.subTree,m=d&&Ml(d);let f=!1;const{getTransitionKey:y}=s.type;if(y){const b=y();o===void 0?o=b:b!==o&&(o=b,f=!0)}if(m&&m.type!==vt&&(!Cn(s,m)||f)){const b=Cr(m,l,r,n);if(_r(m,b),u==="out-in")return r.isLeaving=!0,b.afterLeave=()=>{r.isLeaving=!1,n.update.active!==!1&&n.update()},So(a);u==="in-out"&&s.type!==vt&&(b.delayLeave=(S,_,I)=>{const z=dc(r,m);z[String(m.key)]=m,S._leaveCb=()=>{_(),S._leaveCb=void 0,delete c.delayedLeave},c.delayedLeave=I})}return a}}},Df=Ef;function dc(t,e){const{leavingVNodes:n}=t;let r=n.get(e.type);return r||(r=Object.create(null),n.set(e.type,r)),r}function Cr(t,e,n,r){const{appear:o,mode:i,persisted:a=!1,onBeforeEnter:l,onEnter:u,onAfterEnter:s,onEnterCancelled:c,onBeforeLeave:d,onLeave:m,onAfterLeave:f,onLeaveCancelled:y,onBeforeAppear:b,onAppear:S,onAfterAppear:_,onAppearCancelled:I}=e,z=String(t.key),x=dc(n,t),F=(M,Q)=>{M&>(M,r,9,Q)},ie=(M,Q)=>{const oe=Q[1];F(M,Q),_e(M)?M.every(ue=>ue.length<=1)&&oe():M.length<=1&&oe()},ae={mode:i,persisted:a,beforeEnter(M){let Q=l;if(!n.isMounted)if(o)Q=b||l;else return;M._leaveCb&&M._leaveCb(!0);const oe=x[z];oe&&Cn(t,oe)&&oe.el._leaveCb&&oe.el._leaveCb(),F(Q,[M])},enter(M){let Q=u,oe=s,ue=c;if(!n.isMounted)if(o)Q=S||u,oe=_||s,ue=I||c;else return;let j=!1;const D=M._enterCb=q=>{j||(j=!0,q?F(ue,[M]):F(oe,[M]),ae.delayedLeave&&ae.delayedLeave(),M._enterCb=void 0)};Q?ie(Q,[M,D]):D()},leave(M,Q){const oe=String(t.key);if(M._enterCb&&M._enterCb(!0),n.isUnmounting)return Q();F(d,[M]);let ue=!1;const j=M._leaveCb=D=>{ue||(ue=!0,Q(),D?F(y,[M]):F(f,[M]),M._leaveCb=void 0,x[oe]===t&&delete x[oe])};x[oe]=t,m?ie(m,[M,j]):j()},clone(M){return Cr(M,e,n,r)}};return ae}function So(t){if(ao(t))return t=pn(t),t.children=null,t}function Ml(t){return ao(t)?t.children?t.children[0]:void 0:t}function _r(t,e){t.shapeFlag&6&&t.component?_r(t.component.subTree,e):t.shapeFlag&128?(t.ssContent.transition=e.clone(t.ssContent),t.ssFallback.transition=e.clone(t.ssFallback)):t.transition=e}function Ua(t,e=!1,n){let r=[],o=0;for(let i=0;i1)for(let i=0;iQe({name:t.name},e,{setup:t}))():t}const ur=t=>!!t.type.__asyncLoader,ao=t=>t.type.__isKeepAlive;function Rf(t,e){pc(t,"a",e)}function $f(t,e){pc(t,"da",e)}function pc(t,e,n=ot){const r=t.__wdc||(t.__wdc=()=>{let o=n;for(;o;){if(o.isDeactivated)return;o=o.parent}return t()});if(lo(e,r,n),n){let o=n.parent;for(;o&&o.parent;)ao(o.parent.vnode)&&Af(r,e,n,o),o=o.parent}}function Af(t,e,n,r){const o=lo(e,t,r,!0);hc(()=>{Da(r[e],o)},n)}function lo(t,e,n=ot,r=!1){if(n){const o=n[t]||(n[t]=[]),i=e.__weh||(e.__weh=(...a)=>{if(n.isUnmounted)return;Yn(),Kn(n);const l=gt(e,n,t,a);return kn(),Jn(),l});return r?o.unshift(i):o.push(i),i}}const Yt=t=>(e,n=ot)=>(!Or||t==="sp")&&lo(t,(...r)=>e(...r),n),fc=Yt("bm"),di=Yt("m"),Mf=Yt("bu"),mc=Yt("u"),Wa=Yt("bum"),hc=Yt("um"),Lf=Yt("sp"),Ff=Yt("rtg"),Bf=Yt("rtc");function jf(t,e=ot){lo("ec",t,e)}const Ga="components",Vf="directives";function K(t,e){return qa(Ga,t,!0,e)||t}const gc=Symbol.for("v-ndc");function ce(t){return Je(t)?qa(Ga,t,!1)||t:t||gc}function et(t){return qa(Vf,t)}function qa(t,e,n=!0,r=!1){const o=at||ot;if(o){const i=o.type;if(t===Ga){const l=gm(i,!1);if(l&&(l===e||l===jt(e)||l===Tn(jt(e))))return i}const a=Ll(o[t]||i[t],e)||Ll(o.appContext[t],e);return!a&&r?i:a}}function Ll(t,e){return t&&(t[e]||t[jt(e)]||t[Tn(jt(e))])}function xe(t,e,n,r){let o;const i=n&&n[r];if(_e(t)||Je(t)){o=new Array(t.length);for(let a=0,l=t.length;ae(a,l,void 0,i&&i[l]));else{const a=Object.keys(t);o=new Array(a.length);for(let l=0,u=a.length;l{const i=r.fn(...o);return i&&(i.key=r.key),i}:r.fn)}return t}function J(t,e,n={},r,o){if(at.isCE||at.parent&&ur(at.parent)&&at.parent.isCE)return e!=="default"&&(n.name=e),P("slot",n,r&&r());let i=t[e];i&&i._c&&(i._d=!1),p();const a=i&&vc(i(n)),l=$(ne,{key:n.key||a&&a.key||`_${e}`},a||(r?r():[]),a&&t._===1?64:-2);return!o&&l.scopeId&&(l.slotScopeIds=[l.scopeId+"-s"]),i&&i._c&&(i._d=!0),l}function vc(t){return t.some(e=>qi(e)?!(e.type===vt||e.type===ne&&!vc(e.children)):!0)?t:null}function Pi(t,e){const n={};for(const r in t)n[e&&/[A-Z]/.test(r)?`on:${r}`:Ai(r)]=t[r];return n}const Go=t=>t?Tc(t)?po(t)||t.proxy:Go(t.parent):null,cr=Qe(Object.create(null),{$:t=>t,$el:t=>t.vnode.el,$data:t=>t.data,$props:t=>t.props,$attrs:t=>t.attrs,$slots:t=>t.slots,$refs:t=>t.refs,$parent:t=>Go(t.parent),$root:t=>Go(t.root),$emit:t=>t.emit,$options:t=>Ya(t),$forceUpdate:t=>t.f||(t.f=()=>za(t.update)),$nextTick:t=>t.n||(t.n=zi.bind(t.proxy)),$watch:t=>xf.bind(t)}),Oo=(t,e)=>t!==We&&!t.__isScriptSetup&&Ae(t,e),Hf={get({_:t},e){const{ctx:n,setupState:r,data:o,props:i,accessCache:a,type:l,appContext:u}=t;let s;if(e[0]!=="$"){const f=a[e];if(f!==void 0)switch(f){case 1:return r[e];case 2:return o[e];case 4:return n[e];case 3:return i[e]}else{if(Oo(r,e))return a[e]=1,r[e];if(o!==We&&Ae(o,e))return a[e]=2,o[e];if((s=t.propsOptions[0])&&Ae(s,e))return a[e]=3,i[e];if(n!==We&&Ae(n,e))return a[e]=4,n[e];qo&&(a[e]=0)}}const c=cr[e];let d,m;if(c)return e==="$attrs"&&dt(t,"get",e),c(t);if((d=l.__cssModules)&&(d=d[e]))return d;if(n!==We&&Ae(n,e))return a[e]=4,n[e];if(m=u.config.globalProperties,Ae(m,e))return m[e]},set({_:t},e,n){const{data:r,setupState:o,ctx:i}=t;return Oo(o,e)?(o[e]=n,!0):r!==We&&Ae(r,e)?(r[e]=n,!0):Ae(t.props,e)||e[0]==="$"&&e.slice(1)in t?!1:(i[e]=n,!0)},has({_:{data:t,setupState:e,accessCache:n,ctx:r,appContext:o,propsOptions:i}},a){let l;return!!n[a]||t!==We&&Ae(t,a)||Oo(e,a)||(l=i[0])&&Ae(l,a)||Ae(r,a)||Ae(cr,a)||Ae(o.config.globalProperties,a)},defineProperty(t,e,n){return n.get!=null?t._.accessCache[e]=0:Ae(n,"value")&&this.set(t,e,n.value,null),Reflect.defineProperty(t,e,n)}};function Fl(t){return _e(t)?t.reduce((e,n)=>(e[n]=null,e),{}):t}let qo=!0;function Nf(t){const e=Ya(t),n=t.proxy,r=t.ctx;qo=!1,e.beforeCreate&&Bl(e.beforeCreate,t,"bc");const{data:o,computed:i,methods:a,watch:l,provide:u,inject:s,created:c,beforeMount:d,mounted:m,beforeUpdate:f,updated:y,activated:b,deactivated:S,beforeDestroy:_,beforeUnmount:I,destroyed:z,unmounted:x,render:F,renderTracked:ie,renderTriggered:ae,errorCaptured:M,serverPrefetch:Q,expose:oe,inheritAttrs:ue,components:j,directives:D,filters:q}=e;if(s&&zf(s,r,null),a)for(const ge in a){const me=a[ge];ke(me)&&(r[ge]=me.bind(n))}if(o){const ge=o.call(n,n);Ge(ge)&&(t.data=fn(ge))}if(qo=!0,i)for(const ge in i){const me=i[ge],Ke=ke(me)?me.bind(n,n):ke(me.get)?me.get.bind(n,n):It,V=!ke(me)&&ke(me.set)?me.set.bind(n):It,R=Z({get:Ke,set:V});Object.defineProperty(r,ge,{enumerable:!0,configurable:!0,get:()=>R.value,set:k=>R.value=k})}if(l)for(const ge in l)yc(l[ge],r,n,ge);if(u){const ge=ke(u)?u.call(n):u;Reflect.ownKeys(ge).forEach(me=>{Gi(me,ge[me])})}c&&Bl(c,t,"c");function fe(ge,me){_e(me)?me.forEach(Ke=>ge(Ke.bind(n))):me&&ge(me.bind(n))}if(fe(fc,d),fe(di,m),fe(Mf,f),fe(mc,y),fe(Rf,b),fe($f,S),fe(jf,M),fe(Bf,ie),fe(Ff,ae),fe(Wa,I),fe(hc,x),fe(Lf,Q),_e(oe))if(oe.length){const ge=t.exposed||(t.exposed={});oe.forEach(me=>{Object.defineProperty(ge,me,{get:()=>n[me],set:Ke=>n[me]=Ke})})}else t.exposed||(t.exposed={});F&&t.render===It&&(t.render=F),ue!=null&&(t.inheritAttrs=ue),j&&(t.components=j),D&&(t.directives=D)}function zf(t,e,n=It){_e(t)&&(t=Yo(t));for(const r in t){const o=t[r];let i;Ge(o)?"default"in o?i=Ut(o.from||r,o.default,!0):i=Ut(o.from||r):i=Ut(o),it(i)?Object.defineProperty(e,r,{enumerable:!0,configurable:!0,get:()=>i.value,set:a=>i.value=a}):e[r]=i}}function Bl(t,e,n){gt(_e(t)?t.map(r=>r.bind(e.proxy)):t.bind(e.proxy),e,n)}function yc(t,e,n,r){const o=r.includes(".")?sc(n,r):()=>n[r];if(Je(t)){const i=e[t];ke(i)&&ut(o,i)}else if(ke(t))ut(o,t.bind(n));else if(Ge(t))if(_e(t))t.forEach(i=>yc(i,e,n,r));else{const i=ke(t.handler)?t.handler.bind(n):e[t.handler];ke(i)&&ut(o,i,t)}}function Ya(t){const e=t.type,{mixins:n,extends:r}=e,{mixins:o,optionsCache:i,config:{optionMergeStrategies:a}}=t.appContext,l=i.get(e);let u;return l?u=l:!o.length&&!n&&!r?u=e:(u={},o.length&&o.forEach(s=>Ui(u,s,a,!0)),Ui(u,e,a)),Ge(e)&&i.set(e,u),u}function Ui(t,e,n,r=!1){const{mixins:o,extends:i}=e;i&&Ui(t,i,n,!0),o&&o.forEach(a=>Ui(t,a,n,!0));for(const a in e)if(!(r&&a==="expose")){const l=Kf[a]||n&&n[a];t[a]=l?l(t[a],e[a]):e[a]}return t}const Kf={data:jl,props:Vl,emits:Vl,methods:sr,computed:sr,beforeCreate:st,created:st,beforeMount:st,mounted:st,beforeUpdate:st,updated:st,beforeDestroy:st,beforeUnmount:st,destroyed:st,unmounted:st,activated:st,deactivated:st,errorCaptured:st,serverPrefetch:st,components:sr,directives:sr,watch:Wf,provide:jl,inject:Uf};function jl(t,e){return e?t?function(){return Qe(ke(t)?t.call(this,this):t,ke(e)?e.call(this,this):e)}:e:t}function Uf(t,e){return sr(Yo(t),Yo(e))}function Yo(t){if(_e(t)){const e={};for(let n=0;n1)return n&&ke(e)?e.call(r&&r.proxy):e}}function Yf(t,e,n,r=!1){const o={},i={};Hi(i,uo,1),t.propsDefaults=Object.create(null),wc(t,e,o,i);for(const a in t.propsOptions[0])a in o||(o[a]=void 0);n?t.props=r?o:df(o):t.type.props?t.props=o:t.props=i,t.attrs=i}function Jf(t,e,n,r){const{props:o,attrs:i,vnode:{patchFlag:a}}=t,l=Me(o),[u]=t.propsOptions;let s=!1;if((r||a>0)&&!(a&16)){if(a&8){const c=t.vnode.dynamicProps;for(let d=0;d{u=!0;const[m,f]=Cc(d,e,!0);Qe(a,m),f&&l.push(...f)};!n&&e.mixins.length&&e.mixins.forEach(c),t.extends&&c(t.extends),t.mixins&&t.mixins.forEach(c)}if(!i&&!u)return Ge(t)&&r.set(t,Vn),Vn;if(_e(i))for(let c=0;c-1,f[1]=b<0||y-1||Ae(f,"default"))&&l.push(d)}}}const s=[a,l];return Ge(t)&&r.set(t,s),s}function Hl(t){return t[0]!=="$"}function Nl(t){const e=t&&t.toString().match(/^\s*(function|class) (\w+)/);return e?e[2]:t===null?"null":""}function zl(t,e){return Nl(t)===Nl(e)}function Kl(t,e){return _e(e)?e.findIndex(n=>zl(n,t)):ke(e)&&zl(e,t)?0:-1}const _c=t=>t[0]==="_"||t==="$stable",Ja=t=>_e(t)?t.map(Dt):[Dt(t)],Zf=(t,e,n)=>{if(e._n)return e;const r=L((...o)=>Ja(e(...o)),n);return r._c=!1,r},Sc=(t,e,n)=>{const r=t._ctx;for(const o in t){if(_c(o))continue;const i=t[o];if(ke(i))e[o]=Zf(o,i,r);else if(i!=null){const a=Ja(i);e[o]=()=>a}}},Oc=(t,e)=>{const n=Ja(e);t.slots.default=()=>n},Xf=(t,e)=>{if(t.vnode.shapeFlag&32){const n=e._;n?(t.slots=Me(e),Hi(e,"_",n)):Sc(e,t.slots={})}else t.slots={},e&&Oc(t,e);Hi(t.slots,uo,1)},Qf=(t,e,n)=>{const{vnode:r,slots:o}=t;let i=!0,a=We;if(r.shapeFlag&32){const l=e._;l?n&&l===1?i=!1:(Qe(o,e),!n&&l===1&&delete o._):(i=!e.$stable,Sc(e,o)),a=e}else e&&(Oc(t,e),a={default:1});if(i)for(const l in o)!_c(l)&&!(l in a)&&delete o[l]};function Zo(t,e,n,r,o=!1){if(_e(t)){t.forEach((m,f)=>Zo(m,e&&(_e(e)?e[f]:e),n,r,o));return}if(ur(r)&&!o)return;const i=r.shapeFlag&4?po(r.component)||r.component.proxy:r.el,a=o?null:i,{i:l,r:u}=t,s=e&&e.r,c=l.refs===We?l.refs={}:l.refs,d=l.setupState;if(s!=null&&s!==u&&(Je(s)?(c[s]=null,Ae(d,s)&&(d[s]=null)):it(s)&&(s.value=null)),ke(u))sn(u,l,12,[a,c]);else{const m=Je(u),f=it(u);if(m||f){const y=()=>{if(t.f){const b=m?Ae(d,u)?d[u]:c[u]:u.value;o?_e(b)&&Da(b,i):_e(b)?b.includes(i)||b.push(i):m?(c[u]=[i],Ae(d,u)&&(d[u]=c[u])):(u.value=[i],t.k&&(c[t.k]=u.value))}else m?(c[u]=a,Ae(d,u)&&(d[u]=a)):f&&(u.value=a,t.k&&(c[t.k]=a))};a?(y.id=-1,ct(y,n)):y()}}}const ct=Tf;function em(t){return tm(t)}function tm(t,e){const n=Ho();n.__VUE__=!0;const{insert:r,remove:o,patchProp:i,createElement:a,createText:l,createComment:u,setText:s,setElementText:c,parentNode:d,nextSibling:m,setScopeId:f=It,insertStaticContent:y}=t,b=(w,O,E,N=null,W=null,G=null,pe=!1,re=null,se=!!O.dynamicChildren)=>{if(w===O)return;w&&!Cn(w,O)&&(N=ze(w),k(w,W,G,!0),w=null),O.patchFlag===-2&&(se=!1,O.dynamicChildren=null);const{type:X,ref:we,shapeFlag:he}=O;switch(X){case so:S(w,O,E,N);break;case vt:_(w,O,E,N);break;case Mi:w==null&&I(O,E,N,pe);break;case ne:j(w,O,E,N,W,G,pe,re,se);break;default:he&1?F(w,O,E,N,W,G,pe,re,se):he&6?D(w,O,E,N,W,G,pe,re,se):(he&64||he&128)&&X.process(w,O,E,N,W,G,pe,re,se,Ve)}we!=null&&W&&Zo(we,w&&w.ref,G,O||w,!O)},S=(w,O,E,N)=>{if(w==null)r(O.el=l(O.children),E,N);else{const W=O.el=w.el;O.children!==w.children&&s(W,O.children)}},_=(w,O,E,N)=>{w==null?r(O.el=u(O.children||""),E,N):O.el=w.el},I=(w,O,E,N)=>{[w.el,w.anchor]=y(w.children,O,E,N,w.el,w.anchor)},z=({el:w,anchor:O},E,N)=>{let W;for(;w&&w!==O;)W=m(w),r(w,E,N),w=W;r(O,E,N)},x=({el:w,anchor:O})=>{let E;for(;w&&w!==O;)E=m(w),o(w),w=E;o(O)},F=(w,O,E,N,W,G,pe,re,se)=>{pe=pe||O.type==="svg",w==null?ie(O,E,N,W,G,pe,re,se):Q(w,O,W,G,pe,re,se)},ie=(w,O,E,N,W,G,pe,re)=>{let se,X;const{type:we,props:he,shapeFlag:Ce,transition:Ie,dirs:De}=w;if(se=w.el=a(w.type,G,he&&he.is,he),Ce&8?c(se,w.children):Ce&16&&M(w.children,se,null,N,W,G&&we!=="foreignObject",pe,re),De&&hn(w,null,N,"created"),ae(se,w,w.scopeId,pe,N),he){for(const He in he)He!=="value"&&!$i(He)&&i(se,He,null,he[He],G,w.children,N,W,Ee);"value"in he&&i(se,"value",null,he.value),(X=he.onVnodeBeforeMount)&&Tt(X,N,w)}De&&hn(w,null,N,"beforeMount");const Ue=(!W||W&&!W.pendingBranch)&&Ie&&!Ie.persisted;Ue&&Ie.beforeEnter(se),r(se,O,E),((X=he&&he.onVnodeMounted)||Ue||De)&&ct(()=>{X&&Tt(X,N,w),Ue&&Ie.enter(se),De&&hn(w,null,N,"mounted")},W)},ae=(w,O,E,N,W)=>{if(E&&f(w,E),N)for(let G=0;G{for(let X=se;X{const re=O.el=w.el;let{patchFlag:se,dynamicChildren:X,dirs:we}=O;se|=w.patchFlag&16;const he=w.props||We,Ce=O.props||We;let Ie;E&&gn(E,!1),(Ie=Ce.onVnodeBeforeUpdate)&&Tt(Ie,E,O,w),we&&hn(O,w,E,"beforeUpdate"),E&&gn(E,!0);const De=W&&O.type!=="foreignObject";if(X?oe(w.dynamicChildren,X,re,E,N,De,G):pe||me(w,O,re,null,E,N,De,G,!1),se>0){if(se&16)ue(re,O,he,Ce,E,N,W);else if(se&2&&he.class!==Ce.class&&i(re,"class",null,Ce.class,W),se&4&&i(re,"style",he.style,Ce.style,W),se&8){const Ue=O.dynamicProps;for(let He=0;He{Ie&&Tt(Ie,E,O,w),we&&hn(O,w,E,"updated")},N)},oe=(w,O,E,N,W,G,pe)=>{for(let re=0;re{if(E!==N){if(E!==We)for(const re in E)!$i(re)&&!(re in N)&&i(w,re,E[re],null,pe,O.children,W,G,Ee);for(const re in N){if($i(re))continue;const se=N[re],X=E[re];se!==X&&re!=="value"&&i(w,re,X,se,pe,O.children,W,G,Ee)}"value"in N&&i(w,"value",E.value,N.value)}},j=(w,O,E,N,W,G,pe,re,se)=>{const X=O.el=w?w.el:l(""),we=O.anchor=w?w.anchor:l("");let{patchFlag:he,dynamicChildren:Ce,slotScopeIds:Ie}=O;Ie&&(re=re?re.concat(Ie):Ie),w==null?(r(X,E,N),r(we,E,N),M(O.children,E,we,W,G,pe,re,se)):he>0&&he&64&&Ce&&w.dynamicChildren?(oe(w.dynamicChildren,Ce,E,W,G,pe,re),(O.key!=null||W&&O===W.subTree)&&Za(w,O,!0)):me(w,O,E,we,W,G,pe,re,se)},D=(w,O,E,N,W,G,pe,re,se)=>{O.slotScopeIds=re,w==null?O.shapeFlag&512?W.ctx.activate(O,E,N,pe,se):q(O,E,N,W,G,pe,se):ve(w,O,se)},q=(w,O,E,N,W,G,pe)=>{const re=w.component=dm(w,N,W);if(ao(w)&&(re.ctx.renderer=Ve),pm(re),re.asyncDep){if(W&&W.registerDep(re,fe),!w.el){const se=re.subTree=P(vt);_(null,se,O,E)}return}fe(re,w,O,E,W,G,pe)},ve=(w,O,E)=>{const N=O.component=w.component;if(Pf(w,O,E))if(N.asyncDep&&!N.asyncResolved){ge(N,O,E);return}else N.next=O,bf(N.update),N.update();else O.el=w.el,N.vnode=O},fe=(w,O,E,N,W,G,pe)=>{const re=()=>{if(w.isMounted){let{next:we,bu:he,u:Ce,parent:Ie,vnode:De}=w,Ue=we,He;gn(w,!1),we?(we.el=De.el,ge(w,we,pe)):we=De,he&&Co(he),(He=we.props&&we.props.onVnodeBeforeUpdate)&&Tt(He,Ie,we,De),gn(w,!0);const tt=_o(w),wt=w.subTree;w.subTree=tt,b(wt,tt,d(wt.el),ze(wt),w,W,G),we.el=tt.el,Ue===null&&If(w,tt.el),Ce&&ct(Ce,W),(He=we.props&&we.props.onVnodeUpdated)&&ct(()=>Tt(He,Ie,we,De),W)}else{let we;const{el:he,props:Ce}=O,{bm:Ie,m:De,parent:Ue}=w,He=ur(O);if(gn(w,!1),Ie&&Co(Ie),!He&&(we=Ce&&Ce.onVnodeBeforeMount)&&Tt(we,Ue,O),gn(w,!0),he&&B){const tt=()=>{w.subTree=_o(w),B(he,w.subTree,w,W,null)};He?O.type.__asyncLoader().then(()=>!w.isUnmounted&&tt()):tt()}else{const tt=w.subTree=_o(w);b(null,tt,E,N,w,W,G),O.el=tt.el}if(De&&ct(De,W),!He&&(we=Ce&&Ce.onVnodeMounted)){const tt=O;ct(()=>Tt(we,Ue,tt),W)}(O.shapeFlag&256||Ue&&ur(Ue.vnode)&&Ue.vnode.shapeFlag&256)&&w.a&&ct(w.a,W),w.isMounted=!0,O=E=N=null}},se=w.effect=new Ma(re,()=>za(X),w.scope),X=w.update=()=>se.run();X.id=w.uid,gn(w,!0),X()},ge=(w,O,E)=>{O.component=w;const N=w.vnode.props;w.vnode=O,w.next=null,Jf(w,O.props,N,E),Qf(w,O.children,E),Yn(),$l(),Jn()},me=(w,O,E,N,W,G,pe,re,se=!1)=>{const X=w&&w.children,we=w?w.shapeFlag:0,he=O.children,{patchFlag:Ce,shapeFlag:Ie}=O;if(Ce>0){if(Ce&128){V(X,he,E,N,W,G,pe,re,se);return}else if(Ce&256){Ke(X,he,E,N,W,G,pe,re,se);return}}Ie&8?(we&16&&Ee(X,W,G),he!==X&&c(E,he)):we&16?Ie&16?V(X,he,E,N,W,G,pe,re,se):Ee(X,W,G,!0):(we&8&&c(E,""),Ie&16&&M(he,E,N,W,G,pe,re,se))},Ke=(w,O,E,N,W,G,pe,re,se)=>{w=w||Vn,O=O||Vn;const X=w.length,we=O.length,he=Math.min(X,we);let Ce;for(Ce=0;Cewe?Ee(w,W,G,!0,!1,he):M(O,E,N,W,G,pe,re,se,he)},V=(w,O,E,N,W,G,pe,re,se)=>{let X=0;const we=O.length;let he=w.length-1,Ce=we-1;for(;X<=he&&X<=Ce;){const Ie=w[X],De=O[X]=se?on(O[X]):Dt(O[X]);if(Cn(Ie,De))b(Ie,De,E,null,W,G,pe,re,se);else break;X++}for(;X<=he&&X<=Ce;){const Ie=w[he],De=O[Ce]=se?on(O[Ce]):Dt(O[Ce]);if(Cn(Ie,De))b(Ie,De,E,null,W,G,pe,re,se);else break;he--,Ce--}if(X>he){if(X<=Ce){const Ie=Ce+1,De=IeCe)for(;X<=he;)k(w[X],W,G,!0),X++;else{const Ie=X,De=X,Ue=new Map;for(X=De;X<=Ce;X++){const ft=O[X]=se?on(O[X]):Dt(O[X]);ft.key!=null&&Ue.set(ft.key,X)}let He,tt=0;const wt=Ce-De+1;let $n=!1,_l=0;const tr=new Array(wt);for(X=0;X=wt){k(ft,W,G,!0);continue}let kt;if(ft.key!=null)kt=Ue.get(ft.key);else for(He=De;He<=Ce;He++)if(tr[He-De]===0&&Cn(ft,O[He])){kt=He;break}kt===void 0?k(ft,W,G,!0):(tr[kt-De]=X+1,kt>=_l?_l=kt:$n=!0,b(ft,O[kt],E,null,W,G,pe,re,se),tt++)}const Sl=$n?nm(tr):Vn;for(He=Sl.length-1,X=wt-1;X>=0;X--){const ft=De+X,kt=O[ft],Ol=ft+1{const{el:G,type:pe,transition:re,children:se,shapeFlag:X}=w;if(X&6){R(w.component.subTree,O,E,N);return}if(X&128){w.suspense.move(O,E,N);return}if(X&64){pe.move(w,O,E,Ve);return}if(pe===ne){r(G,O,E);for(let he=0;here.enter(G),W);else{const{leave:he,delayLeave:Ce,afterLeave:Ie}=re,De=()=>r(G,O,E),Ue=()=>{he(G,()=>{De(),Ie&&Ie()})};Ce?Ce(G,De,Ue):Ue()}else r(G,O,E)},k=(w,O,E,N=!1,W=!1)=>{const{type:G,props:pe,ref:re,children:se,dynamicChildren:X,shapeFlag:we,patchFlag:he,dirs:Ce}=w;if(re!=null&&Zo(re,null,E,w,!0),we&256){O.ctx.deactivate(w);return}const Ie=we&1&&Ce,De=!ur(w);let Ue;if(De&&(Ue=pe&&pe.onVnodeBeforeUnmount)&&Tt(Ue,O,w),we&6)Te(w.component,E,N);else{if(we&128){w.suspense.unmount(E,N);return}Ie&&hn(w,null,O,"beforeUnmount"),we&64?w.type.remove(w,O,E,W,Ve,N):X&&(G!==ne||he>0&&he&64)?Ee(X,O,E,!1,!0):(G===ne&&he&384||!W&&we&16)&&Ee(se,O,E),N&&A(w)}(De&&(Ue=pe&&pe.onVnodeUnmounted)||Ie)&&ct(()=>{Ue&&Tt(Ue,O,w),Ie&&hn(w,null,O,"unmounted")},E)},A=w=>{const{type:O,el:E,anchor:N,transition:W}=w;if(O===ne){be(E,N);return}if(O===Mi){x(w);return}const G=()=>{o(E),W&&!W.persisted&&W.afterLeave&&W.afterLeave()};if(w.shapeFlag&1&&W&&!W.persisted){const{leave:pe,delayLeave:re}=W,se=()=>pe(E,G);re?re(w.el,G,se):se()}else G()},be=(w,O)=>{let E;for(;w!==O;)E=m(w),o(w),w=E;o(O)},Te=(w,O,E)=>{const{bum:N,scope:W,update:G,subTree:pe,um:re}=w;N&&Co(N),W.stop(),G&&(G.active=!1,k(pe,w,O,E)),re&&ct(re,O),ct(()=>{w.isUnmounted=!0},O),O&&O.pendingBranch&&!O.isUnmounted&&w.asyncDep&&!w.asyncResolved&&w.suspenseId===O.pendingId&&(O.deps--,O.deps===0&&O.resolve())},Ee=(w,O,E,N=!1,W=!1,G=0)=>{for(let pe=G;pew.shapeFlag&6?ze(w.component.subTree):w.shapeFlag&128?w.suspense.next():m(w.anchor||w.el),Pe=(w,O,E)=>{w==null?O._vnode&&k(O._vnode,null,null,!0):b(O._vnode||null,w,O,null,null,null,E),$l(),rc(),O._vnode=w},Ve={p:b,um:k,m:R,r:A,mt:q,mc:M,pc:me,pbc:oe,n:ze,o:t};let le,B;return e&&([le,B]=e(Ve)),{render:Pe,hydrate:le,createApp:qf(Pe,le)}}function gn({effect:t,update:e},n){t.allowRecurse=e.allowRecurse=n}function Za(t,e,n=!1){const r=t.children,o=e.children;if(_e(r)&&_e(o))for(let i=0;i>1,t[n[l]]0&&(e[r]=n[i-1]),n[i]=r)}}for(i=n.length,a=n[i-1];i-- >0;)n[i]=a,a=e[a];return n}const rm=t=>t.__isTeleport,dr=t=>t&&(t.disabled||t.disabled===""),Ul=t=>typeof SVGElement<"u"&&t instanceof SVGElement,Xo=(t,e)=>{const n=t&&t.to;return Je(n)?e?e(n):null:n},im={__isTeleport:!0,process(t,e,n,r,o,i,a,l,u,s){const{mc:c,pc:d,pbc:m,o:{insert:f,querySelector:y,createText:b,createComment:S}}=s,_=dr(e.props);let{shapeFlag:I,children:z,dynamicChildren:x}=e;if(t==null){const F=e.el=b(""),ie=e.anchor=b("");f(F,n,r),f(ie,n,r);const ae=e.target=Xo(e.props,y),M=e.targetAnchor=b("");ae&&(f(M,ae),a=a||Ul(ae));const Q=(oe,ue)=>{I&16&&c(z,oe,ue,o,i,a,l,u)};_?Q(n,ie):ae&&Q(ae,M)}else{e.el=t.el;const F=e.anchor=t.anchor,ie=e.target=t.target,ae=e.targetAnchor=t.targetAnchor,M=dr(t.props),Q=M?n:ie,oe=M?F:ae;if(a=a||Ul(ie),x?(m(t.dynamicChildren,x,Q,o,i,a,l),Za(t,e,!0)):u||d(t,e,Q,oe,o,i,a,l,!1),_)M||Ii(e,n,F,s,1);else if((e.props&&e.props.to)!==(t.props&&t.props.to)){const ue=e.target=Xo(e.props,y);ue&&Ii(e,ue,null,s,0)}else M&&Ii(e,ie,ae,s,1)}Pc(e)},remove(t,e,n,r,{um:o,o:{remove:i}},a){const{shapeFlag:l,children:u,anchor:s,targetAnchor:c,target:d,props:m}=t;if(d&&i(c),(a||!dr(m))&&(i(s),l&16))for(let f=0;f0?Pt||Vn:null,lm(),Sr>0&&Pt&&Pt.push(t),t}function v(t,e,n,r,o,i){return Ic(g(t,e,n,r,o,i,!0))}function $(t,e,n,r,o){return Ic(P(t,e,n,r,o,!0))}function qi(t){return t?t.__v_isVNode===!0:!1}function Cn(t,e){return t.type===e.type&&t.key===e.key}const uo="__vInternal",kc=({key:t})=>t??null,Li=({ref:t,ref_key:e,ref_for:n})=>(typeof t=="number"&&(t=""+t),t!=null?Je(t)||it(t)||ke(t)?{i:at,r:t,k:e,f:!!n}:t:null);function g(t,e=null,n=null,r=0,o=null,i=t===ne?0:1,a=!1,l=!1){const u={__v_isVNode:!0,__v_skip:!0,type:t,props:e,key:e&&kc(e),ref:e&&Li(e),scopeId:oo,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:r,dynamicProps:o,dynamicChildren:null,appContext:null,ctx:at};return l?(Qa(u,n),i&128&&t.normalize(u)):n&&(u.shapeFlag|=Je(n)?8:16),Sr>0&&!a&&Pt&&(u.patchFlag>0||i&6)&&u.patchFlag!==32&&Pt.push(u),u}const P=sm;function sm(t,e=null,n=null,r=0,o=null,i=!1){if((!t||t===gc)&&(t=vt),qi(t)){const l=pn(t,e,!0);return n&&Qa(l,n),Sr>0&&!i&&Pt&&(l.shapeFlag&6?Pt[Pt.indexOf(t)]=l:Pt.push(l)),l.patchFlag|=-2,l}if(vm(t)&&(t=t.__vccOpts),e){e=un(e);let{class:l,style:u}=e;l&&!Je(l)&&(e.class=te(l)),Ge(u)&&(Ju(u)&&!_e(u)&&(u=Qe({},u)),e.style=qn(u))}const a=Je(t)?1:kf(t)?128:rm(t)?64:Ge(t)?4:ke(t)?2:0;return g(t,e,n,r,o,a,i,!0)}function un(t){return t?Ju(t)||uo in t?Qe({},t):t:null}function pn(t,e,n=!1){const{props:r,ref:o,patchFlag:i,children:a}=t,l=e?h(r||{},e):r;return{__v_isVNode:!0,__v_skip:!0,type:t.type,props:l,key:l&&kc(l),ref:e&&e.ref?n&&o?_e(o)?o.concat(Li(e)):[o,Li(e)]:Li(e):o,scopeId:t.scopeId,slotScopeIds:t.slotScopeIds,children:a,target:t.target,targetAnchor:t.targetAnchor,staticCount:t.staticCount,shapeFlag:t.shapeFlag,patchFlag:e&&t.type!==ne?i===-1?16:i|16:i,dynamicProps:t.dynamicProps,dynamicChildren:t.dynamicChildren,appContext:t.appContext,dirs:t.dirs,transition:t.transition,component:t.component,suspense:t.suspense,ssContent:t.ssContent&&pn(t.ssContent),ssFallback:t.ssFallback&&pn(t.ssFallback),el:t.el,anchor:t.anchor,ctx:t.ctx,ce:t.ce}}function ye(t=" ",e=0){return P(so,null,t,e)}function Xa(t,e){const n=P(Mi,null,t);return n.staticCount=e,n}function T(t="",e=!1){return e?(p(),$(vt,null,t)):P(vt,null,t)}function Dt(t){return t==null||typeof t=="boolean"?P(vt):_e(t)?P(ne,null,t.slice()):typeof t=="object"?on(t):P(so,null,String(t))}function on(t){return t.el===null&&t.patchFlag!==-1||t.memo?t:pn(t)}function Qa(t,e){let n=0;const{shapeFlag:r}=t;if(e==null)e=null;else if(_e(e))n=16;else if(typeof e=="object")if(r&65){const o=e.default;o&&(o._c&&(o._d=!1),Qa(t,o()),o._c&&(o._d=!0));return}else{n=32;const o=e._;!o&&!(uo in e)?e._ctx=at:o===3&&at&&(at.slots._===1?e._=1:(e._=2,t.patchFlag|=1024))}else ke(e)?(e={default:e,_ctx:at},n=32):(e=String(e),r&64?(n=16,e=[ye(e)]):n=8);t.children=e,t.shapeFlag|=n}function h(...t){const e={};for(let n=0;not||at;let el,An,Gl="__VUE_INSTANCE_SETTERS__";(An=Ho()[Gl])||(An=Ho()[Gl]=[]),An.push(t=>ot=t),el=t=>{An.length>1?An.forEach(e=>e(t)):An[0](t)};const Kn=t=>{el(t),t.scope.on()},kn=()=>{ot&&ot.scope.off(),el(null)};function Tc(t){return t.vnode.shapeFlag&4}let Or=!1;function pm(t,e=!1){Or=e;const{props:n,children:r}=t.vnode,o=Tc(t);Yf(t,n,o,e),Xf(t,r);const i=o?fm(t,e):void 0;return Or=!1,i}function fm(t,e){const n=t.type;t.accessCache=Object.create(null),t.proxy=Zu(new Proxy(t.ctx,Hf));const{setup:r}=n;if(r){const o=t.setupContext=r.length>1?hm(t):null;Kn(t),Yn();const i=sn(r,t,0,[t.props,o]);if(Jn(),kn(),Mu(i)){if(i.then(kn,kn),e)return i.then(a=>{ql(t,a,e)}).catch(a=>{ro(a,t,0)});t.asyncDep=i}else ql(t,i,e)}else xc(t,e)}function ql(t,e,n){ke(e)?t.type.__ssrInlineRender?t.ssrRender=e:t.render=e:Ge(e)&&(t.setupState=ec(e)),xc(t,n)}let Yl;function xc(t,e,n){const r=t.type;if(!t.render){if(!e&&Yl&&!r.render){const o=r.template||Ya(t).template;if(o){const{isCustomElement:i,compilerOptions:a}=t.appContext.config,{delimiters:l,compilerOptions:u}=r,s=Qe(Qe({isCustomElement:i,delimiters:l},a),u);r.render=Yl(o,s)}}t.render=r.render||It}Kn(t),Yn(),Nf(t),Jn(),kn()}function mm(t){return t.attrsProxy||(t.attrsProxy=new Proxy(t.attrs,{get(e,n){return dt(t,"get","$attrs"),e[n]}}))}function hm(t){const e=n=>{t.exposed=n||{}};return{get attrs(){return mm(t)},slots:t.slots,emit:t.emit,expose:e}}function po(t){if(t.exposed)return t.exposeProxy||(t.exposeProxy=new Proxy(ec(Zu(t.exposed)),{get(e,n){if(n in e)return e[n];if(n in cr)return cr[n](t)},has(e,n){return n in e||n in cr}}))}function gm(t,e=!0){return ke(t)?t.displayName||t.name:t.name||e&&t.__name}function vm(t){return ke(t)&&"__vccOpts"in t}const Z=(t,e)=>gf(t,e,Or);function ym(t,e,n){const r=arguments.length;return r===2?Ge(e)&&!_e(e)?qi(e)?P(t,null,[e]):P(t,e):P(t,null,e):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&qi(n)&&(n=[n]),P(t,e,n))}const bm=Symbol.for("v-scx"),wm=()=>Ut(bm),Cm="3.3.4",_m="http://www.w3.org/2000/svg",_n=typeof document<"u"?document:null,Jl=_n&&_n.createElement("template"),Sm={insert:(t,e,n)=>{e.insertBefore(t,n||null)},remove:t=>{const e=t.parentNode;e&&e.removeChild(t)},createElement:(t,e,n,r)=>{const o=e?_n.createElementNS(_m,t):_n.createElement(t,n?{is:n}:void 0);return t==="select"&&r&&r.multiple!=null&&o.setAttribute("multiple",r.multiple),o},createText:t=>_n.createTextNode(t),createComment:t=>_n.createComment(t),setText:(t,e)=>{t.nodeValue=e},setElementText:(t,e)=>{t.textContent=e},parentNode:t=>t.parentNode,nextSibling:t=>t.nextSibling,querySelector:t=>_n.querySelector(t),setScopeId(t,e){t.setAttribute(e,"")},insertStaticContent(t,e,n,r,o,i){const a=n?n.previousSibling:e.lastChild;if(o&&(o===i||o.nextSibling))for(;e.insertBefore(o.cloneNode(!0),n),!(o===i||!(o=o.nextSibling)););else{Jl.innerHTML=r?`${t}`:t;const l=Jl.content;if(r){const u=l.firstChild;for(;u.firstChild;)l.appendChild(u.firstChild);l.removeChild(u)}e.insertBefore(l,n)}return[a?a.nextSibling:e.firstChild,n?n.previousSibling:e.lastChild]}};function Om(t,e,n){const r=t._vtc;r&&(e=(e?[e,...r]:[...r]).join(" ")),e==null?t.removeAttribute("class"):n?t.setAttribute("class",e):t.className=e}function Pm(t,e,n){const r=t.style,o=Je(n);if(n&&!o){if(e&&!Je(e))for(const i in e)n[i]==null&&Qo(r,i,"");for(const i in n)Qo(r,i,n[i])}else{const i=r.display;o?e!==n&&(r.cssText=n):e&&t.removeAttribute("style"),"_vod"in t&&(r.display=i)}}const Zl=/\s*!important$/;function Qo(t,e,n){if(_e(n))n.forEach(r=>Qo(t,e,r));else if(n==null&&(n=""),e.startsWith("--"))t.setProperty(e,n);else{const r=Im(t,e);Zl.test(n)?t.setProperty(En(r),n.replace(Zl,""),"important"):t[r]=n}}const Xl=["Webkit","Moz","ms"],Po={};function Im(t,e){const n=Po[e];if(n)return n;let r=jt(e);if(r!=="filter"&&r in t)return Po[e]=r;r=Tn(r);for(let o=0;oIo||($m.then(()=>Io=0),Io=Date.now());function Mm(t,e){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;gt(Lm(r,n.value),e,5,[r])};return n.value=t,n.attached=Am(),n}function Lm(t,e){if(_e(e)){const n=t.stopImmediatePropagation;return t.stopImmediatePropagation=()=>{n.call(t),t._stopped=!0},e.map(r=>o=>!o._stopped&&r&&r(o))}else return e}const ts=/^on[a-z]/,Fm=(t,e,n,r,o=!1,i,a,l,u)=>{e==="class"?Om(t,r,o):e==="style"?Pm(t,n,r):Qi(e)?Ea(e)||Dm(t,e,n,r,a):(e[0]==="."?(e=e.slice(1),!0):e[0]==="^"?(e=e.slice(1),!1):Bm(t,e,r,o))?Tm(t,e,r,i,a,l,u):(e==="true-value"?t._trueValue=r:e==="false-value"&&(t._falseValue=r),km(t,e,r,o))};function Bm(t,e,n,r){return r?!!(e==="innerHTML"||e==="textContent"||e in t&&ts.test(e)&&ke(n)):e==="spellcheck"||e==="draggable"||e==="translate"||e==="form"||e==="list"&&t.tagName==="INPUT"||e==="type"&&t.tagName==="TEXTAREA"||ts.test(e)&&Je(n)?!1:e in t}const Xt="transition",nr="animation",Vt=(t,{slots:e})=>ym(Df,Dc(t),e);Vt.displayName="Transition";const Ec={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},jm=Vt.props=Qe({},cc,Ec),vn=(t,e=[])=>{_e(t)?t.forEach(n=>n(...e)):t&&t(...e)},ns=t=>t?_e(t)?t.some(e=>e.length>1):t.length>1:!1;function Dc(t){const e={};for(const j in t)j in Ec||(e[j]=t[j]);if(t.css===!1)return e;const{name:n="v",type:r,duration:o,enterFromClass:i=`${n}-enter-from`,enterActiveClass:a=`${n}-enter-active`,enterToClass:l=`${n}-enter-to`,appearFromClass:u=i,appearActiveClass:s=a,appearToClass:c=l,leaveFromClass:d=`${n}-leave-from`,leaveActiveClass:m=`${n}-leave-active`,leaveToClass:f=`${n}-leave-to`}=t,y=Vm(o),b=y&&y[0],S=y&&y[1],{onBeforeEnter:_,onEnter:I,onEnterCancelled:z,onLeave:x,onLeaveCancelled:F,onBeforeAppear:ie=_,onAppear:ae=I,onAppearCancelled:M=z}=e,Q=(j,D,q)=>{rn(j,D?c:l),rn(j,D?s:a),q&&q()},oe=(j,D)=>{j._isLeaving=!1,rn(j,d),rn(j,f),rn(j,m),D&&D()},ue=j=>(D,q)=>{const ve=j?ae:I,fe=()=>Q(D,j,q);vn(ve,[D,fe]),rs(()=>{rn(D,j?u:i),Nt(D,j?c:l),ns(ve)||is(D,r,b,fe)})};return Qe(e,{onBeforeEnter(j){vn(_,[j]),Nt(j,i),Nt(j,a)},onBeforeAppear(j){vn(ie,[j]),Nt(j,u),Nt(j,s)},onEnter:ue(!1),onAppear:ue(!0),onLeave(j,D){j._isLeaving=!0;const q=()=>oe(j,D);Nt(j,d),$c(),Nt(j,m),rs(()=>{j._isLeaving&&(rn(j,d),Nt(j,f),ns(x)||is(j,r,S,q))}),vn(x,[j,q])},onEnterCancelled(j){Q(j,!1),vn(z,[j])},onAppearCancelled(j){Q(j,!0),vn(M,[j])},onLeaveCancelled(j){oe(j),vn(F,[j])}})}function Vm(t){if(t==null)return null;if(Ge(t))return[ko(t.enter),ko(t.leave)];{const e=ko(t);return[e,e]}}function ko(t){return Tp(t)}function Nt(t,e){e.split(/\s+/).forEach(n=>n&&t.classList.add(n)),(t._vtc||(t._vtc=new Set)).add(e)}function rn(t,e){e.split(/\s+/).forEach(r=>r&&t.classList.remove(r));const{_vtc:n}=t;n&&(n.delete(e),n.size||(t._vtc=void 0))}function rs(t){requestAnimationFrame(()=>{requestAnimationFrame(t)})}let Hm=0;function is(t,e,n,r){const o=t._endId=++Hm,i=()=>{o===t._endId&&r()};if(n)return setTimeout(i,n);const{type:a,timeout:l,propCount:u}=Rc(t,e);if(!a)return r();const s=a+"end";let c=0;const d=()=>{t.removeEventListener(s,m),i()},m=f=>{f.target===t&&++c>=u&&d()};setTimeout(()=>{c(n[y]||"").split(", "),o=r(`${Xt}Delay`),i=r(`${Xt}Duration`),a=os(o,i),l=r(`${nr}Delay`),u=r(`${nr}Duration`),s=os(l,u);let c=null,d=0,m=0;e===Xt?a>0&&(c=Xt,d=a,m=i.length):e===nr?s>0&&(c=nr,d=s,m=u.length):(d=Math.max(a,s),c=d>0?a>s?Xt:nr:null,m=c?c===Xt?i.length:u.length:0);const f=c===Xt&&/\b(transform|all)(,|$)/.test(r(`${Xt}Property`).toString());return{type:c,timeout:d,propCount:m,hasTransform:f}}function os(t,e){for(;t.lengthas(n)+as(t[r])))}function as(t){return Number(t.slice(0,-1).replace(",","."))*1e3}function $c(){return document.body.offsetHeight}const Ac=new WeakMap,Mc=new WeakMap,Lc={name:"TransitionGroup",props:Qe({},jm,{tag:String,moveClass:String}),setup(t,{slots:e}){const n=co(),r=uc();let o,i;return mc(()=>{if(!o.length)return;const a=t.moveClass||`${t.name||"v"}-move`;if(!Gm(o[0].el,n.vnode.el,a))return;o.forEach(Km),o.forEach(Um);const l=o.filter(Wm);$c(),l.forEach(u=>{const s=u.el,c=s.style;Nt(s,a),c.transform=c.webkitTransform=c.transitionDuration="";const d=s._moveCb=m=>{m&&m.target!==s||(!m||/transform$/.test(m.propertyName))&&(s.removeEventListener("transitionend",d),s._moveCb=null,rn(s,a))};s.addEventListener("transitionend",d)})}),()=>{const a=Me(t),l=Dc(a);let u=a.tag||ne;o=i,i=e.default?Ua(e.default()):[];for(let s=0;sdelete t.mode;Lc.props;const zm=Lc;function Km(t){const e=t.el;e._moveCb&&e._moveCb(),e._enterCb&&e._enterCb()}function Um(t){Mc.set(t,t.el.getBoundingClientRect())}function Wm(t){const e=Ac.get(t),n=Mc.get(t),r=e.left-n.left,o=e.top-n.top;if(r||o){const i=t.el.style;return i.transform=i.webkitTransform=`translate(${r}px,${o}px)`,i.transitionDuration="0s",t}}function Gm(t,e,n){const r=t.cloneNode();t._vtc&&t._vtc.forEach(a=>{a.split(/\s+/).forEach(l=>l&&r.classList.remove(l))}),n.split(/\s+/).forEach(a=>a&&r.classList.add(a)),r.style.display="none";const o=e.nodeType===1?e:e.parentNode;o.appendChild(r);const{hasTransform:i}=Rc(r);return o.removeChild(r),i}const qm=["ctrl","shift","alt","meta"],Ym={stop:t=>t.stopPropagation(),prevent:t=>t.preventDefault(),self:t=>t.target!==t.currentTarget,ctrl:t=>!t.ctrlKey,shift:t=>!t.shiftKey,alt:t=>!t.altKey,meta:t=>!t.metaKey,left:t=>"button"in t&&t.button!==0,middle:t=>"button"in t&&t.button!==1,right:t=>"button"in t&&t.button!==2,exact:(t,e)=>qm.some(n=>t[`${n}Key`]&&!e.includes(n))},fo=(t,e)=>(n,...r)=>{for(let o=0;on=>{if(!("key"in n))return;const r=En(n.key);if(e.some(o=>o===r||Jm[o]===r))return t(n)},Un={beforeMount(t,{value:e},{transition:n}){t._vod=t.style.display==="none"?"":t.style.display,n&&e?n.beforeEnter(t):rr(t,e)},mounted(t,{value:e},{transition:n}){n&&e&&n.enter(t)},updated(t,{value:e,oldValue:n},{transition:r}){!e!=!n&&(r?e?(r.beforeEnter(t),rr(t,!0),r.enter(t)):r.leave(t,()=>{rr(t,!1)}):rr(t,e))},beforeUnmount(t,{value:e}){rr(t,e)}};function rr(t,e){t.style.display=e?t._vod:"none"}const Zm=Qe({patchProp:Fm},Sm);let ls;function Xm(){return ls||(ls=em(Zm))}const Qm=(...t)=>{const e=Xm().createApp(...t),{mount:n}=e;return e.mount=r=>{const o=eh(r);if(!o)return;const i=e._component;!ke(i)&&!i.render&&!i.template&&(i.template=o.innerHTML),o.innerHTML="";const a=n(o,!1,o instanceof SVGElement);return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),a},e};function eh(t){return Je(t)?document.querySelector(t):t}function To(t,e){var n=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(!n){if(Array.isArray(t)||(n=tl(t))||e&&t&&typeof t.length=="number"){n&&(t=n);var r=0,o=function(){};return{s:o,n:function(){return r>=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(s){throw s},f:o}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var i=!0,a=!1,l;return{s:function(){n=n.call(t)},n:function(){var s=n.next();return i=s.done,s},e:function(s){a=!0,l=s},f:function(){try{!i&&n.return!=null&&n.return()}finally{if(a)throw l}}}}function th(t){return ih(t)||rh(t)||tl(t)||nh()}function nh(){throw new TypeError(`Invalid attempt to spread non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function rh(t){if(typeof Symbol<"u"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function ih(t){if(Array.isArray(t))return ea(t)}function fr(t){"@babel/helpers - typeof";return fr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},fr(t)}function To(t,e){return lh(t)||ah(t,e)||tl(t,e)||oh()}function oh(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function tl(t,e){if(t){if(typeof t=="string")return ea(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ea(t,e)}}function ea(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n1&&arguments[1]!==void 0?arguments[1]:{};e&&Object.entries(n).forEach(function(r){var o=To(r,2),i=o[0],a=o[1];return e.style[i]=a})},find:function(e,n){return this.isElement(e)?e.querySelectorAll(n):[]},findSingle:function(e,n){return this.isElement(e)?e.querySelector(n):null},createElement:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(e){var r=document.createElement(e);this.setAttributes(r,n);for(var o=arguments.length,i=new Array(o>2?o-2:0),a=2;a1&&arguments[1]!==void 0?arguments[1]:"",r=arguments.length>2?arguments[2]:void 0;this.isElement(e)&&r!==null&&r!==void 0&&e.setAttribute(n,r)},setAttributes:function(e){var n=this,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(this.isElement(e)){var o=function i(a,l){var u,s,c=e!=null&&(u=e.$attrs)!==null&&u!==void 0&&u[a]?[e==null||(s=e.$attrs)===null||s===void 0?void 0:s[a]]:[];return[l].flat().reduce(function(d,m){if(m!=null){var f=fr(m);if(f==="string"||f==="number")d.push(m);else if(f==="object"){var y=Array.isArray(m)?i(a,m):Object.entries(m).map(function(b){var S=To(b,2),_=S[0],I=S[1];return a==="style"&&(I||I===0)?"".concat(_.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase(),":").concat(I):I?_:void 0});d=y.length?d.concat(y.filter(function(b){return!!b})):d}}return d},c)};Object.entries(r).forEach(function(i){var a=To(i,2),l=a[0],u=a[1];if(u!=null){var s=l.match(/^on(.+)/);s?e.addEventListener(s[1].toLowerCase(),u):l==="p-bind"?n.setAttributes(e,u):(u=l==="class"?th(new Set(o("class",u))).join(" ").trim():l==="style"?o("style",u).join(";").trim():u,(e.$attrs=e.$attrs||{})&&(e.$attrs[l]=u),e.setAttribute(l,u))}})}},getAttribute:function(e,n){if(this.isElement(e)){var r=e.getAttribute(n);return isNaN(r)?r==="true"||r==="false"?r==="true":r:+r}},isAttributeEquals:function(e,n,r){return this.isElement(e)?this.getAttribute(e,n)===r:!1},isAttributeNotEquals:function(e,n,r){return!this.isAttributeEquals(e,n,r)},getHeight:function(e){if(e){var n=e.offsetHeight,r=getComputedStyle(e);return n-=parseFloat(r.paddingTop)+parseFloat(r.paddingBottom)+parseFloat(r.borderTopWidth)+parseFloat(r.borderBottomWidth),n}return 0},getWidth:function(e){if(e){var n=e.offsetWidth,r=getComputedStyle(e);return n-=parseFloat(r.paddingLeft)+parseFloat(r.paddingRight)+parseFloat(r.borderLeftWidth)+parseFloat(r.borderRightWidth),n}return 0},absolutePosition:function(e,n){if(e){var r=e.offsetParent?{width:e.offsetWidth,height:e.offsetHeight}:this.getHiddenElementDimensions(e),o=r.height,i=r.width,a=n.offsetHeight,l=n.offsetWidth,u=n.getBoundingClientRect(),s=this.getWindowScrollTop(),c=this.getWindowScrollLeft(),d=this.getViewport(),m,f;u.top+a+o>d.height?(m=u.top+s-o,e.style.transformOrigin="bottom",m<0&&(m=s)):(m=a+u.top+s,e.style.transformOrigin="top"),u.left+i>d.width?f=Math.max(0,u.left+c+l-i):f=u.left+c,e.style.top=m+"px",e.style.left=f+"px"}},relativePosition:function(e,n){if(e){var r=e.offsetParent?{width:e.offsetWidth,height:e.offsetHeight}:this.getHiddenElementDimensions(e),o=n.offsetHeight,i=n.getBoundingClientRect(),a=this.getViewport(),l,u;i.top+o+r.height>a.height?(l=-1*r.height,e.style.transformOrigin="bottom",i.top+l<0&&(l=-1*i.top)):(l=o,e.style.transformOrigin="top"),r.width>a.width?u=i.left*-1:i.left+r.width>a.width?u=(i.left+r.width-a.width)*-1:u=0,e.style.top=l+"px",e.style.left=u+"px"}},nestedPosition:function(e,n){if(e){var r=e.parentElement,o=this.getOffset(r),i=this.getViewport(),a=e.offsetParent?e.offsetWidth:this.getHiddenElementOuterWidth(e),l=this.getOuterWidth(r.children[0]),u;parseInt(o.left,10)+l+a>i.width-this.calculateScrollbarWidth()?parseInt(o.left,10)1&&arguments[1]!==void 0?arguments[1]:[];return e.parentNode===null?n:this.getParents(e.parentNode,n.concat([e.parentNode]))},getScrollableParents:function(e){var n=[];if(e){var r=this.getParents(e),o=/(auto|scroll)/,i=function(S){try{var _=window.getComputedStyle(S,null);return o.test(_.getPropertyValue("overflow"))||o.test(_.getPropertyValue("overflowX"))||o.test(_.getPropertyValue("overflowY"))}catch{return!1}},a=xo(r),l;try{for(a.s();!(l=a.n()).done;){var u=l.value,s=u.nodeType===1&&u.dataset.scrollselectors;if(s){var c=s.split(","),d=xo(c),m;try{for(d.s();!(m=d.n()).done;){var f=m.value,y=this.findSingle(u,f);y&&i(y)&&n.push(y)}}catch(b){d.e(b)}finally{d.f()}}u.nodeType!==9&&i(u)&&n.push(u)}}catch(b){a.e(b)}finally{a.f()}}return n},getHiddenElementOuterHeight:function(e){if(e){e.style.visibility="hidden",e.style.display="block";var n=e.offsetHeight;return e.style.display="none",e.style.visibility="visible",n}return 0},getHiddenElementOuterWidth:function(e){if(e){e.style.visibility="hidden",e.style.display="block";var n=e.offsetWidth;return e.style.display="none",e.style.visibility="visible",n}return 0},getHiddenElementDimensions:function(e){if(e){var n={};return e.style.visibility="hidden",e.style.display="block",n.width=e.offsetWidth,n.height=e.offsetHeight,e.style.display="none",e.style.visibility="visible",n}return 0},fadeIn:function(e,n){if(e){e.style.opacity=0;var r=+new Date,o=0,i=function a(){o=+e.style.opacity+(new Date().getTime()-r)/n,e.style.opacity=o,r=+new Date,+o<1&&(window.requestAnimationFrame&&requestAnimationFrame(a)||setTimeout(a,16))};i()}},fadeOut:function(e,n){if(e)var r=1,o=50,i=n,a=o/i,l=setInterval(function(){r-=a,r<=0&&(r=0,clearInterval(l)),e.style.opacity=r},o)},getUserAgent:function(){return navigator.userAgent},appendChild:function(e,n){if(this.isElement(n))n.appendChild(e);else if(n.el&&n.elElement)n.elElement.appendChild(e);else throw new Error("Cannot append "+n+" to "+e)},isElement:function(e){return(typeof HTMLElement>"u"?"undefined":fr(HTMLElement))==="object"?e instanceof HTMLElement:e&&fr(e)==="object"&&e!==null&&e.nodeType===1&&typeof e.nodeName=="string"},scrollInView:function(e,n){var r=getComputedStyle(e).getPropertyValue("borderTopWidth"),o=r?parseFloat(r):0,i=getComputedStyle(e).getPropertyValue("paddingTop"),a=i?parseFloat(i):0,l=e.getBoundingClientRect(),u=n.getBoundingClientRect(),s=u.top+document.body.scrollTop-(l.top+document.body.scrollTop)-o-a,c=e.scrollTop,d=e.clientHeight,m=this.getOuterHeight(n);s<0?e.scrollTop=c+s:s+m>d&&(e.scrollTop=c+s-d+m)},clearSelection:function(){if(window.getSelection)window.getSelection().empty?window.getSelection().empty():window.getSelection().removeAllRanges&&window.getSelection().rangeCount>0&&window.getSelection().getRangeAt(0).getClientRects().length>0&&window.getSelection().removeAllRanges();else if(document.selection&&document.selection.empty)try{document.selection.empty()}catch{}},getSelection:function(){return window.getSelection?window.getSelection().toString():document.getSelection?document.getSelection().toString():document.selection?document.selection.createRange().text:null},calculateScrollbarWidth:function(){if(this.calculatedScrollbarWidth!=null)return this.calculatedScrollbarWidth;var e=document.createElement("div");this.addStyles(e,{width:"100px",height:"100px",overflow:"scroll",position:"absolute",top:"-9999px"}),document.body.appendChild(e);var n=e.offsetWidth-e.clientWidth;return document.body.removeChild(e),this.calculatedScrollbarWidth=n,n},calculateBodyScrollbarWidth:function(){return window.innerWidth-document.documentElement.offsetWidth},getBrowser:function(){if(!this.browser){var e=this.resolveUserAgent();this.browser={},e.browser&&(this.browser[e.browser]=!0,this.browser.version=e.version),this.browser.chrome?this.browser.webkit=!0:this.browser.webkit&&(this.browser.safari=!0)}return this.browser},resolveUserAgent:function(){var e=navigator.userAgent.toLowerCase(),n=/(chrome)[ ]([\w.]+)/.exec(e)||/(webkit)[ ]([\w.]+)/.exec(e)||/(opera)(?:.*version|)[ ]([\w.]+)/.exec(e)||/(msie) ([\w.]+)/.exec(e)||e.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(e)||[];return{browser:n[1]||"",version:n[2]||"0"}},isVisible:function(e){return e&&e.offsetParent!=null},invokeElementMethod:function(e,n,r){e[n].apply(e,r)},isExist:function(e){return!!(e!==null&&typeof e<"u"&&e.nodeName&&e.parentNode)},isClient:function(){return!!(typeof window<"u"&&window.document&&window.document.createElement)},focus:function(e,n){e&&document.activeElement!==e&&e.focus(n)},isFocusableElement:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";return this.isElement(e)?e.matches('button:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])'.concat(n,`, +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function rh(t){if(typeof Symbol<"u"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function ih(t){if(Array.isArray(t))return ea(t)}function fr(t){"@babel/helpers - typeof";return fr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},fr(t)}function xo(t,e){return lh(t)||ah(t,e)||tl(t,e)||oh()}function oh(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function tl(t,e){if(t){if(typeof t=="string")return ea(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ea(t,e)}}function ea(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n1&&arguments[1]!==void 0?arguments[1]:{};e&&Object.entries(n).forEach(function(r){var o=xo(r,2),i=o[0],a=o[1];return e.style[i]=a})},find:function(e,n){return this.isElement(e)?e.querySelectorAll(n):[]},findSingle:function(e,n){return this.isElement(e)?e.querySelector(n):null},createElement:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(e){var r=document.createElement(e);this.setAttributes(r,n);for(var o=arguments.length,i=new Array(o>2?o-2:0),a=2;a1&&arguments[1]!==void 0?arguments[1]:"",r=arguments.length>2?arguments[2]:void 0;this.isElement(e)&&r!==null&&r!==void 0&&e.setAttribute(n,r)},setAttributes:function(e){var n=this,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(this.isElement(e)){var o=function i(a,l){var u,s,c=e!=null&&(u=e.$attrs)!==null&&u!==void 0&&u[a]?[e==null||(s=e.$attrs)===null||s===void 0?void 0:s[a]]:[];return[l].flat().reduce(function(d,m){if(m!=null){var f=fr(m);if(f==="string"||f==="number")d.push(m);else if(f==="object"){var y=Array.isArray(m)?i(a,m):Object.entries(m).map(function(b){var S=xo(b,2),_=S[0],I=S[1];return a==="style"&&(I||I===0)?"".concat(_.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase(),":").concat(I):I?_:void 0});d=y.length?d.concat(y.filter(function(b){return!!b})):d}}return d},c)};Object.entries(r).forEach(function(i){var a=xo(i,2),l=a[0],u=a[1];if(u!=null){var s=l.match(/^on(.+)/);s?e.addEventListener(s[1].toLowerCase(),u):l==="p-bind"?n.setAttributes(e,u):(u=l==="class"?th(new Set(o("class",u))).join(" ").trim():l==="style"?o("style",u).join(";").trim():u,(e.$attrs=e.$attrs||{})&&(e.$attrs[l]=u),e.setAttribute(l,u))}})}},getAttribute:function(e,n){if(this.isElement(e)){var r=e.getAttribute(n);return isNaN(r)?r==="true"||r==="false"?r==="true":r:+r}},isAttributeEquals:function(e,n,r){return this.isElement(e)?this.getAttribute(e,n)===r:!1},isAttributeNotEquals:function(e,n,r){return!this.isAttributeEquals(e,n,r)},getHeight:function(e){if(e){var n=e.offsetHeight,r=getComputedStyle(e);return n-=parseFloat(r.paddingTop)+parseFloat(r.paddingBottom)+parseFloat(r.borderTopWidth)+parseFloat(r.borderBottomWidth),n}return 0},getWidth:function(e){if(e){var n=e.offsetWidth,r=getComputedStyle(e);return n-=parseFloat(r.paddingLeft)+parseFloat(r.paddingRight)+parseFloat(r.borderLeftWidth)+parseFloat(r.borderRightWidth),n}return 0},absolutePosition:function(e,n){if(e){var r=e.offsetParent?{width:e.offsetWidth,height:e.offsetHeight}:this.getHiddenElementDimensions(e),o=r.height,i=r.width,a=n.offsetHeight,l=n.offsetWidth,u=n.getBoundingClientRect(),s=this.getWindowScrollTop(),c=this.getWindowScrollLeft(),d=this.getViewport(),m,f;u.top+a+o>d.height?(m=u.top+s-o,e.style.transformOrigin="bottom",m<0&&(m=s)):(m=a+u.top+s,e.style.transformOrigin="top"),u.left+i>d.width?f=Math.max(0,u.left+c+l-i):f=u.left+c,e.style.top=m+"px",e.style.left=f+"px"}},relativePosition:function(e,n){if(e){var r=e.offsetParent?{width:e.offsetWidth,height:e.offsetHeight}:this.getHiddenElementDimensions(e),o=n.offsetHeight,i=n.getBoundingClientRect(),a=this.getViewport(),l,u;i.top+o+r.height>a.height?(l=-1*r.height,e.style.transformOrigin="bottom",i.top+l<0&&(l=-1*i.top)):(l=o,e.style.transformOrigin="top"),r.width>a.width?u=i.left*-1:i.left+r.width>a.width?u=(i.left+r.width-a.width)*-1:u=0,e.style.top=l+"px",e.style.left=u+"px"}},nestedPosition:function(e,n){if(e){var r=e.parentElement,o=this.getOffset(r),i=this.getViewport(),a=e.offsetParent?e.offsetWidth:this.getHiddenElementOuterWidth(e),l=this.getOuterWidth(r.children[0]),u;parseInt(o.left,10)+l+a>i.width-this.calculateScrollbarWidth()?parseInt(o.left,10)1&&arguments[1]!==void 0?arguments[1]:[];return e.parentNode===null?n:this.getParents(e.parentNode,n.concat([e.parentNode]))},getScrollableParents:function(e){var n=[];if(e){var r=this.getParents(e),o=/(auto|scroll)/,i=function(S){try{var _=window.getComputedStyle(S,null);return o.test(_.getPropertyValue("overflow"))||o.test(_.getPropertyValue("overflowX"))||o.test(_.getPropertyValue("overflowY"))}catch{return!1}},a=To(r),l;try{for(a.s();!(l=a.n()).done;){var u=l.value,s=u.nodeType===1&&u.dataset.scrollselectors;if(s){var c=s.split(","),d=To(c),m;try{for(d.s();!(m=d.n()).done;){var f=m.value,y=this.findSingle(u,f);y&&i(y)&&n.push(y)}}catch(b){d.e(b)}finally{d.f()}}u.nodeType!==9&&i(u)&&n.push(u)}}catch(b){a.e(b)}finally{a.f()}}return n},getHiddenElementOuterHeight:function(e){if(e){e.style.visibility="hidden",e.style.display="block";var n=e.offsetHeight;return e.style.display="none",e.style.visibility="visible",n}return 0},getHiddenElementOuterWidth:function(e){if(e){e.style.visibility="hidden",e.style.display="block";var n=e.offsetWidth;return e.style.display="none",e.style.visibility="visible",n}return 0},getHiddenElementDimensions:function(e){if(e){var n={};return e.style.visibility="hidden",e.style.display="block",n.width=e.offsetWidth,n.height=e.offsetHeight,e.style.display="none",e.style.visibility="visible",n}return 0},fadeIn:function(e,n){if(e){e.style.opacity=0;var r=+new Date,o=0,i=function a(){o=+e.style.opacity+(new Date().getTime()-r)/n,e.style.opacity=o,r=+new Date,+o<1&&(window.requestAnimationFrame&&requestAnimationFrame(a)||setTimeout(a,16))};i()}},fadeOut:function(e,n){if(e)var r=1,o=50,i=n,a=o/i,l=setInterval(function(){r-=a,r<=0&&(r=0,clearInterval(l)),e.style.opacity=r},o)},getUserAgent:function(){return navigator.userAgent},appendChild:function(e,n){if(this.isElement(n))n.appendChild(e);else if(n.el&&n.elElement)n.elElement.appendChild(e);else throw new Error("Cannot append "+n+" to "+e)},isElement:function(e){return(typeof HTMLElement>"u"?"undefined":fr(HTMLElement))==="object"?e instanceof HTMLElement:e&&fr(e)==="object"&&e!==null&&e.nodeType===1&&typeof e.nodeName=="string"},scrollInView:function(e,n){var r=getComputedStyle(e).getPropertyValue("borderTopWidth"),o=r?parseFloat(r):0,i=getComputedStyle(e).getPropertyValue("paddingTop"),a=i?parseFloat(i):0,l=e.getBoundingClientRect(),u=n.getBoundingClientRect(),s=u.top+document.body.scrollTop-(l.top+document.body.scrollTop)-o-a,c=e.scrollTop,d=e.clientHeight,m=this.getOuterHeight(n);s<0?e.scrollTop=c+s:s+m>d&&(e.scrollTop=c+s-d+m)},clearSelection:function(){if(window.getSelection)window.getSelection().empty?window.getSelection().empty():window.getSelection().removeAllRanges&&window.getSelection().rangeCount>0&&window.getSelection().getRangeAt(0).getClientRects().length>0&&window.getSelection().removeAllRanges();else if(document.selection&&document.selection.empty)try{document.selection.empty()}catch{}},getSelection:function(){return window.getSelection?window.getSelection().toString():document.getSelection?document.getSelection().toString():document.selection?document.selection.createRange().text:null},calculateScrollbarWidth:function(){if(this.calculatedScrollbarWidth!=null)return this.calculatedScrollbarWidth;var e=document.createElement("div");this.addStyles(e,{width:"100px",height:"100px",overflow:"scroll",position:"absolute",top:"-9999px"}),document.body.appendChild(e);var n=e.offsetWidth-e.clientWidth;return document.body.removeChild(e),this.calculatedScrollbarWidth=n,n},calculateBodyScrollbarWidth:function(){return window.innerWidth-document.documentElement.offsetWidth},getBrowser:function(){if(!this.browser){var e=this.resolveUserAgent();this.browser={},e.browser&&(this.browser[e.browser]=!0,this.browser.version=e.version),this.browser.chrome?this.browser.webkit=!0:this.browser.webkit&&(this.browser.safari=!0)}return this.browser},resolveUserAgent:function(){var e=navigator.userAgent.toLowerCase(),n=/(chrome)[ ]([\w.]+)/.exec(e)||/(webkit)[ ]([\w.]+)/.exec(e)||/(opera)(?:.*version|)[ ]([\w.]+)/.exec(e)||/(msie) ([\w.]+)/.exec(e)||e.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(e)||[];return{browser:n[1]||"",version:n[2]||"0"}},isVisible:function(e){return e&&e.offsetParent!=null},invokeElementMethod:function(e,n,r){e[n].apply(e,r)},isExist:function(e){return!!(e!==null&&typeof e<"u"&&e.nodeName&&e.parentNode)},isClient:function(){return!!(typeof window<"u"&&window.document&&window.document.createElement)},focus:function(e,n){e&&document.activeElement!==e&&e.focus(n)},isFocusableElement:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";return this.isElement(e)?e.matches('button:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])'.concat(n,`, [href][clientHeight][clientWidth]:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])`).concat(n,`, input:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])`).concat(n,`, select:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])`).concat(n,`, @@ -13,13 +13,13 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho select:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])`).concat(n,`, textarea:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])`).concat(n,`, [tabIndex]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])`).concat(n,`, - [contenteditable]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])`).concat(n)),o=[],i=xo(r),a;try{for(i.s();!(a=i.n()).done;){var l=a.value;getComputedStyle(l).display!="none"&&getComputedStyle(l).visibility!="hidden"&&o.push(l)}}catch(u){i.e(u)}finally{i.f()}return o},getFirstFocusableElement:function(e,n){var r=this.getFocusableElements(e,n);return r.length>0?r[0]:null},getLastFocusableElement:function(e,n){var r=this.getFocusableElements(e,n);return r.length>0?r[r.length-1]:null},getNextFocusableElement:function(e,n,r){var o=this.getFocusableElements(e,r),i=o.length>0?o.findIndex(function(l){return l===n}):-1,a=i>-1&&o.length>=i+1?i+1:-1;return a>-1?o[a]:null},getPreviousElementSibling:function(e,n){for(var r=e.previousElementSibling;r;){if(r.matches(n))return r;r=r.previousElementSibling}return null},getNextElementSibling:function(e,n){for(var r=e.nextElementSibling;r;){if(r.matches(n))return r;r=r.nextElementSibling}return null},isClickable:function(e){if(e){var n=e.nodeName,r=e.parentElement&&e.parentElement.nodeName;return n==="INPUT"||n==="TEXTAREA"||n==="BUTTON"||n==="A"||r==="INPUT"||r==="TEXTAREA"||r==="BUTTON"||r==="A"||!!e.closest(".p-button, .p-checkbox, .p-radiobutton")}return!1},applyStyle:function(e,n){if(typeof n=="string")e.style.cssText=n;else for(var r in n)e.style[r]=n[r]},isIOS:function(){return/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream},isAndroid:function(){return/(android)/i.test(navigator.userAgent)},isTouchDevice:function(){return"ontouchstart"in window||navigator.maxTouchPoints>0||navigator.msMaxTouchPoints>0},hasCSSAnimation:function(e){if(e){var n=getComputedStyle(e),r=parseFloat(n.getPropertyValue("animation-duration")||"0");return r>0}return!1},hasCSSTransition:function(e){if(e){var n=getComputedStyle(e),r=parseFloat(n.getPropertyValue("transition-duration")||"0");return r>0}return!1},exportCSV:function(e,n){var r=new Blob([e],{type:"application/csv;charset=utf-8;"});if(window.navigator.msSaveOrOpenBlob)navigator.msSaveOrOpenBlob(r,n+".csv");else{var o=document.createElement("a");o.download!==void 0?(o.setAttribute("href",URL.createObjectURL(r)),o.setAttribute("download",n+".csv"),o.style.display="none",document.body.appendChild(o),o.click(),document.body.removeChild(o)):(e="data:text/csv;charset=utf-8,"+e,window.open(encodeURI(e)))}},blockBodyScroll:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"p-overflow-hidden";document.body.style.setProperty("--scrollbar-width",this.calculateBodyScrollbarWidth()+"px"),this.addClass(document.body,e)},unblockBodyScroll:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"p-overflow-hidden";document.body.style.removeProperty("--scrollbar-width"),this.removeClass(document.body,e)}};function Pr(t){"@babel/helpers - typeof";return Pr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Pr(t)}function sh(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function ss(t,e){for(var n=0;n1&&arguments[1]!==void 0?arguments[1]:function(){};sh(this,t),this.element=e,this.listener=n}return uh(t,[{key:"bindScrollListener",value:function(){this.scrollableParents=C.getScrollableParents(this.element);for(var n=0;n>>0,1)},emit:function(n,r){var o=t.get(n);o&&o.slice().map(function(i){i(r)})}}}function ph(t,e){return hh(t)||mh(t,e)||rl(t,e)||fh()}function fh(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. + [contenteditable]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])`).concat(n)),o=[],i=To(r),a;try{for(i.s();!(a=i.n()).done;){var l=a.value;getComputedStyle(l).display!="none"&&getComputedStyle(l).visibility!="hidden"&&o.push(l)}}catch(u){i.e(u)}finally{i.f()}return o},getFirstFocusableElement:function(e,n){var r=this.getFocusableElements(e,n);return r.length>0?r[0]:null},getLastFocusableElement:function(e,n){var r=this.getFocusableElements(e,n);return r.length>0?r[r.length-1]:null},getNextFocusableElement:function(e,n,r){var o=this.getFocusableElements(e,r),i=o.length>0?o.findIndex(function(l){return l===n}):-1,a=i>-1&&o.length>=i+1?i+1:-1;return a>-1?o[a]:null},getPreviousElementSibling:function(e,n){for(var r=e.previousElementSibling;r;){if(r.matches(n))return r;r=r.previousElementSibling}return null},getNextElementSibling:function(e,n){for(var r=e.nextElementSibling;r;){if(r.matches(n))return r;r=r.nextElementSibling}return null},isClickable:function(e){if(e){var n=e.nodeName,r=e.parentElement&&e.parentElement.nodeName;return n==="INPUT"||n==="TEXTAREA"||n==="BUTTON"||n==="A"||r==="INPUT"||r==="TEXTAREA"||r==="BUTTON"||r==="A"||!!e.closest(".p-button, .p-checkbox, .p-radiobutton")}return!1},applyStyle:function(e,n){if(typeof n=="string")e.style.cssText=n;else for(var r in n)e.style[r]=n[r]},isIOS:function(){return/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream},isAndroid:function(){return/(android)/i.test(navigator.userAgent)},isTouchDevice:function(){return"ontouchstart"in window||navigator.maxTouchPoints>0||navigator.msMaxTouchPoints>0},hasCSSAnimation:function(e){if(e){var n=getComputedStyle(e),r=parseFloat(n.getPropertyValue("animation-duration")||"0");return r>0}return!1},hasCSSTransition:function(e){if(e){var n=getComputedStyle(e),r=parseFloat(n.getPropertyValue("transition-duration")||"0");return r>0}return!1},exportCSV:function(e,n){var r=new Blob([e],{type:"application/csv;charset=utf-8;"});if(window.navigator.msSaveOrOpenBlob)navigator.msSaveOrOpenBlob(r,n+".csv");else{var o=document.createElement("a");o.download!==void 0?(o.setAttribute("href",URL.createObjectURL(r)),o.setAttribute("download",n+".csv"),o.style.display="none",document.body.appendChild(o),o.click(),document.body.removeChild(o)):(e="data:text/csv;charset=utf-8,"+e,window.open(encodeURI(e)))}},blockBodyScroll:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"p-overflow-hidden";document.body.style.setProperty("--scrollbar-width",this.calculateBodyScrollbarWidth()+"px"),this.addClass(document.body,e)},unblockBodyScroll:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"p-overflow-hidden";document.body.style.removeProperty("--scrollbar-width"),this.removeClass(document.body,e)}};function Pr(t){"@babel/helpers - typeof";return Pr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Pr(t)}function sh(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function ss(t,e){for(var n=0;n1&&arguments[1]!==void 0?arguments[1]:function(){};sh(this,t),this.element=e,this.listener=n}return uh(t,[{key:"bindScrollListener",value:function(){this.scrollableParents=C.getScrollableParents(this.element);for(var n=0;n>>0,1)},emit:function(n,r){var o=t.get(n);o&&o.slice().map(function(i){i(r)})}}}function ph(t,e){return hh(t)||mh(t,e)||rl(t,e)||fh()}function fh(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function mh(t,e){var n=t==null?null:typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(n!=null){var r,o,i,a,l=[],u=!0,s=!1;try{if(i=(n=n.call(t)).next,e===0){if(Object(n)!==n)return;u=!1}else for(;!(u=(r=i.call(n)).done)&&(l.push(r.value),l.length!==e);u=!0);}catch(c){s=!0,o=c}finally{try{if(!u&&n.return!=null&&(a=n.return(),Object(a)!==a))return}finally{if(s)throw o}}return l}}function hh(t){if(Array.isArray(t))return t}function us(t){return yh(t)||vh(t)||rl(t)||gh()}function gh(){throw new TypeError(`Invalid attempt to spread non-iterable instance. In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function vh(t){if(typeof Symbol<"u"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function yh(t){if(Array.isArray(t))return ta(t)}function Eo(t,e){var n=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(!n){if(Array.isArray(t)||(n=rl(t))||e&&t&&typeof t.length=="number"){n&&(t=n);var r=0,o=function(){};return{s:o,n:function(){return r>=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(s){throw s},f:o}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var i=!0,a=!1,l;return{s:function(){n=n.call(t)},n:function(){var s=n.next();return i=s.done,s},e:function(s){a=!0,l=s},f:function(){try{!i&&n.return!=null&&n.return()}finally{if(a)throw l}}}}function rl(t,e){if(t){if(typeof t=="string")return ta(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ta(t,e)}}function ta(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n1?n-1:0),o=1;o-1){o.push(l);break}}}catch(d){u.e(d)}finally{u.f()}}}catch(d){i.e(d)}finally{i.f()}}return o},reorderArray:function(e,n,r){e&&n!==r&&(r>=e.length&&(r%=e.length,n%=e.length),e.splice(r,0,e.splice(n,1)[0]))},findIndexInList:function(e,n){var r=-1;if(n){for(var o=0;o0){for(var i=!1,a=0;an){r.splice(a,0,e),i=!0;break}}i||r.push(e)}else r.push(e)},removeAccents:function(e){return e&&e.search(/[\xC0-\xFF]/g)>-1&&(e=e.replace(/[\xC0-\xC5]/g,"A").replace(/[\xC6]/g,"AE").replace(/[\xC7]/g,"C").replace(/[\xC8-\xCB]/g,"E").replace(/[\xCC-\xCF]/g,"I").replace(/[\xD0]/g,"D").replace(/[\xD1]/g,"N").replace(/[\xD2-\xD6\xD8]/g,"O").replace(/[\xD9-\xDC]/g,"U").replace(/[\xDD]/g,"Y").replace(/[\xDE]/g,"P").replace(/[\xE0-\xE5]/g,"a").replace(/[\xE6]/g,"ae").replace(/[\xE7]/g,"c").replace(/[\xE8-\xEB]/g,"e").replace(/[\xEC-\xEF]/g,"i").replace(/[\xF1]/g,"n").replace(/[\xF2-\xF6\xF8]/g,"o").replace(/[\xF9-\xFC]/g,"u").replace(/[\xFE]/g,"p").replace(/[\xFD\xFF]/g,"y")),e},getVNodeProp:function(e,n){var r=e.props;if(r){var o=n.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase(),i=Object.prototype.hasOwnProperty.call(r,o)?o:n;return e.type.extends.props[n].type===Boolean&&r[i]===""?!0:r[i]}return null},toFlatCase:function(e){return this.isString(e)?e.replace(/(-|_)/g,"").toLowerCase():e},toKebabCase:function(e){return this.isString(e)?e.replace(/(_)/g,"-").replace(/[A-Z]/g,function(n,r){return r===0?n:"-"+n.toLowerCase()}).toLowerCase():e},toCapitalCase:function(e){return this.isString(e,{empty:!1})?e[0].toUpperCase()+e.slice(1):e},isEmpty:function(e){return e==null||e===""||Array.isArray(e)&&e.length===0||!(e instanceof Date)&&mr(e)==="object"&&Object.keys(e).length===0},isNotEmpty:function(e){return!this.isEmpty(e)},isFunction:function(e){return!!(e&&e.constructor&&e.call&&e.apply)},isObject:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;return e instanceof Object&&e.constructor===Object&&(n||Object.keys(e).length!==0)},isDate:function(e){return e instanceof Date&&e.constructor===Date},isArray:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;return Array.isArray(e)&&(n||e.length!==0)},isString:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;return typeof e=="string"&&(n||e!=="")},isPrintableCharacter:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";return this.isNotEmpty(e)&&e.length===1&&e.match(/\S| /)},findLast:function(e,n){var r;if(this.isNotEmpty(e))try{r=e.findLast(n)}catch{r=us(e).reverse().find(n)}return r},findLastIndex:function(e,n){var r=-1;if(this.isNotEmpty(e))try{r=e.findLastIndex(n)}catch{r=e.lastIndexOf(us(e).reverse().find(n))}return r},sort:function(e,n){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1,o=arguments.length>3?arguments[3]:void 0,i=arguments.length>4&&arguments[4]!==void 0?arguments[4]:1,a=this.compare(e,n,o,r),l=r;return(this.isEmpty(e)||this.isEmpty(n))&&(l=i===1?r:i),l*a},compare:function(e,n,r){var o=arguments.length>3&&arguments[3]!==void 0?arguments[3]:1,i=-1,a=this.isEmpty(e),l=this.isEmpty(n);return a&&l?i=0:a?i=o:l?i=-o:typeof e=="string"&&typeof n=="string"?i=r(e,n):i=en?1:0,i},localeComparator:function(){return new Intl.Collator(void 0,{numeric:!0}).compare},nestedKeys:function(){var e=this,n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";return Object.entries(n).reduce(function(o,i){var a=ph(i,2),l=a[0],u=a[1],s=r?"".concat(r,".").concat(l):l;return e.isObject(u)?o=o.concat(e.nestedKeys(u,s)):o.push(s),o},[])}},cs=0;function Re(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"pv_id_";return cs++,"".concat(t).concat(cs)}function bh(t){return Sh(t)||_h(t)||Ch(t)||wh()}function wh(){throw new TypeError(`Invalid attempt to spread non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Ch(t,e){if(t){if(typeof t=="string")return na(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return na(t,e)}}function _h(t){if(typeof Symbol<"u"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function Sh(t){if(Array.isArray(t))return na(t)}function na(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n2&&arguments[2]!==void 0?arguments[2]:999,c=o(l,u,s),d=c.value+(c.key===l?0:s)+1;return t.push({key:l,value:d}),d},n=function(l){t=t.filter(function(u){return u.value!==l})},r=function(l,u){return o(l,u).value},o=function(l,u){var s=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0;return bh(t).reverse().find(function(c){return u?!0:c.key===l})||{key:l,value:s}},i=function(l){return l&&parseInt(l.style.zIndex,10)||0};return{get:i,set:function(l,u,s){u&&(u.style.zIndex=String(e(l,!0,s)))},clear:function(l){l&&(n(i(l)),l.style.zIndex="")},getCurrent:function(l){return r(l,!0)}}}var Je=Oh(),nt={STARTS_WITH:"startsWith",CONTAINS:"contains",NOT_CONTAINS:"notContains",ENDS_WITH:"endsWith",EQUALS:"equals",NOT_EQUALS:"notEquals",IN:"in",LESS_THAN:"lt",LESS_THAN_OR_EQUAL_TO:"lte",GREATER_THAN:"gt",GREATER_THAN_OR_EQUAL_TO:"gte",BETWEEN:"between",DATE_IS:"dateIs",DATE_IS_NOT:"dateIsNot",DATE_BEFORE:"dateBefore",DATE_AFTER:"dateAfter"},Yi={AND:"and",OR:"or"};function ds(t,e){var n=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(!n){if(Array.isArray(t)||(n=Ph(t))||e&&t&&typeof t.length=="number"){n&&(t=n);var r=0,o=function(){};return{s:o,n:function(){return r>=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(s){throw s},f:o}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var i=!0,a=!1,l;return{s:function(){n=n.call(t)},n:function(){var s=n.next();return i=s.done,s},e:function(s){a=!0,l=s},f:function(){try{!i&&n.return!=null&&n.return()}finally{if(a)throw l}}}}function Ph(t,e){if(t){if(typeof t=="string")return ps(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ps(t,e)}}function ps(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);nn.getTime():e>n},gte:function(e,n){return n==null?!0:e==null?!1:e.getTime&&n.getTime?e.getTime()>=n.getTime():e>=n},dateIs:function(e,n){return n==null?!0:e==null?!1:e.toDateString()===n.toDateString()},dateIsNot:function(e,n){return n==null?!0:e==null?!1:e.toDateString()!==n.toDateString()},dateBefore:function(e,n){return n==null?!0:e==null?!1:e.getTime()n.getTime()}},register:function(e,n){this.filters[e]=n}};function Ir(t){"@babel/helpers - typeof";return Ir=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ir(t)}function fs(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function Do(t){for(var e=1;e1&&arguments[1]!==void 0?arguments[1]:!0;co()?di(t):e?t():zi(t)}var Lh=0;function Fc(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=fe(!1),r=fe(t),o=fe(null),i=C.isClient()?window.document:void 0,a=e.document,l=a===void 0?i:a,u=e.immediate,s=u===void 0?!0:u,c=e.manual,d=c===void 0?!1:c,m=e.name,f=m===void 0?"style_".concat(++Lh):m,y=e.id,b=y===void 0?void 0:y,S=e.media,_=S===void 0?void 0:S,I=e.nonce,V=I===void 0?void 0:I,T=e.props,L=T===void 0?{}:T,ae=function(){},le=function(se){var pe=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(l){var F=gs(gs({},L),pe),D=F.name||f,Y=F.id||b,ve=F.nonce||V;o.value=l.querySelector('style[data-primevue-style-id="'.concat(D,'"]'))||l.getElementById(Y)||l.createElement("style"),o.value.isConnected||(r.value=se||t,C.setAttributes(o.value,{type:"text/css",id:Y,media:_,nonce:ve}),l.head.appendChild(o.value),C.setAttribute(o.value,"data-primevue-style-id",f),C.setAttributes(o.value,F)),!n.value&&(ae=ut(r,function(ce){o.value.textContent=ce},{immediate:!0}),n.value=!0)}},A=function(){!l||!n.value||(ae(),C.isExist(o.value)&&l.head.removeChild(o.value),n.value=!1)};return s&&!d&&Mh(le),{id:b,name:f,css:r,unload:A,load:le,isLoaded:ja(n)}}function xr(t){"@babel/helpers - typeof";return xr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},xr(t)}function Fh(t,e){return Hh(t)||Vh(t,e)||jh(t,e)||Bh()}function Bh(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function jh(t,e){if(t){if(typeof t=="string")return vs(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return vs(t,e)}}function vs(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);nt.length)&&(e=t.length);for(var n=0,r=new Array(e);n1?n-1:0),o=1;o-1){o.push(l);break}}}catch(d){u.e(d)}finally{u.f()}}}catch(d){i.e(d)}finally{i.f()}}return o},reorderArray:function(e,n,r){e&&n!==r&&(r>=e.length&&(r%=e.length,n%=e.length),e.splice(r,0,e.splice(n,1)[0]))},findIndexInList:function(e,n){var r=-1;if(n){for(var o=0;o0){for(var i=!1,a=0;an){r.splice(a,0,e),i=!0;break}}i||r.push(e)}else r.push(e)},removeAccents:function(e){return e&&e.search(/[\xC0-\xFF]/g)>-1&&(e=e.replace(/[\xC0-\xC5]/g,"A").replace(/[\xC6]/g,"AE").replace(/[\xC7]/g,"C").replace(/[\xC8-\xCB]/g,"E").replace(/[\xCC-\xCF]/g,"I").replace(/[\xD0]/g,"D").replace(/[\xD1]/g,"N").replace(/[\xD2-\xD6\xD8]/g,"O").replace(/[\xD9-\xDC]/g,"U").replace(/[\xDD]/g,"Y").replace(/[\xDE]/g,"P").replace(/[\xE0-\xE5]/g,"a").replace(/[\xE6]/g,"ae").replace(/[\xE7]/g,"c").replace(/[\xE8-\xEB]/g,"e").replace(/[\xEC-\xEF]/g,"i").replace(/[\xF1]/g,"n").replace(/[\xF2-\xF6\xF8]/g,"o").replace(/[\xF9-\xFC]/g,"u").replace(/[\xFE]/g,"p").replace(/[\xFD\xFF]/g,"y")),e},getVNodeProp:function(e,n){var r=e.props;if(r){var o=n.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase(),i=Object.prototype.hasOwnProperty.call(r,o)?o:n;return e.type.extends.props[n].type===Boolean&&r[i]===""?!0:r[i]}return null},toFlatCase:function(e){return this.isString(e)?e.replace(/(-|_)/g,"").toLowerCase():e},toKebabCase:function(e){return this.isString(e)?e.replace(/(_)/g,"-").replace(/[A-Z]/g,function(n,r){return r===0?n:"-"+n.toLowerCase()}).toLowerCase():e},toCapitalCase:function(e){return this.isString(e,{empty:!1})?e[0].toUpperCase()+e.slice(1):e},isEmpty:function(e){return e==null||e===""||Array.isArray(e)&&e.length===0||!(e instanceof Date)&&mr(e)==="object"&&Object.keys(e).length===0},isNotEmpty:function(e){return!this.isEmpty(e)},isFunction:function(e){return!!(e&&e.constructor&&e.call&&e.apply)},isObject:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;return e instanceof Object&&e.constructor===Object&&(n||Object.keys(e).length!==0)},isDate:function(e){return e instanceof Date&&e.constructor===Date},isArray:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;return Array.isArray(e)&&(n||e.length!==0)},isString:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;return typeof e=="string"&&(n||e!=="")},isPrintableCharacter:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"";return this.isNotEmpty(e)&&e.length===1&&e.match(/\S| /)},findLast:function(e,n){var r;if(this.isNotEmpty(e))try{r=e.findLast(n)}catch{r=us(e).reverse().find(n)}return r},findLastIndex:function(e,n){var r=-1;if(this.isNotEmpty(e))try{r=e.findLastIndex(n)}catch{r=e.lastIndexOf(us(e).reverse().find(n))}return r},sort:function(e,n){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1,o=arguments.length>3?arguments[3]:void 0,i=arguments.length>4&&arguments[4]!==void 0?arguments[4]:1,a=this.compare(e,n,o,r),l=r;return(this.isEmpty(e)||this.isEmpty(n))&&(l=i===1?r:i),l*a},compare:function(e,n,r){var o=arguments.length>3&&arguments[3]!==void 0?arguments[3]:1,i=-1,a=this.isEmpty(e),l=this.isEmpty(n);return a&&l?i=0:a?i=o:l?i=-o:typeof e=="string"&&typeof n=="string"?i=r(e,n):i=en?1:0,i},localeComparator:function(){return new Intl.Collator(void 0,{numeric:!0}).compare},nestedKeys:function(){var e=this,n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";return Object.entries(n).reduce(function(o,i){var a=ph(i,2),l=a[0],u=a[1],s=r?"".concat(r,".").concat(l):l;return e.isObject(u)?o=o.concat(e.nestedKeys(u,s)):o.push(s),o},[])}},cs=0;function Re(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"pv_id_";return cs++,"".concat(t).concat(cs)}function bh(t){return Sh(t)||_h(t)||Ch(t)||wh()}function wh(){throw new TypeError(`Invalid attempt to spread non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Ch(t,e){if(t){if(typeof t=="string")return na(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return na(t,e)}}function _h(t){if(typeof Symbol<"u"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function Sh(t){if(Array.isArray(t))return na(t)}function na(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n2&&arguments[2]!==void 0?arguments[2]:999,c=o(l,u,s),d=c.value+(c.key===l?0:s)+1;return t.push({key:l,value:d}),d},n=function(l){t=t.filter(function(u){return u.value!==l})},r=function(l,u){return o(l,u).value},o=function(l,u){var s=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0;return bh(t).reverse().find(function(c){return u?!0:c.key===l})||{key:l,value:s}},i=function(l){return l&&parseInt(l.style.zIndex,10)||0};return{get:i,set:function(l,u,s){u&&(u.style.zIndex=String(e(l,!0,s)))},clear:function(l){l&&(n(i(l)),l.style.zIndex="")},getCurrent:function(l){return r(l,!0)}}}var Xe=Oh(),rt={STARTS_WITH:"startsWith",CONTAINS:"contains",NOT_CONTAINS:"notContains",ENDS_WITH:"endsWith",EQUALS:"equals",NOT_EQUALS:"notEquals",IN:"in",LESS_THAN:"lt",LESS_THAN_OR_EQUAL_TO:"lte",GREATER_THAN:"gt",GREATER_THAN_OR_EQUAL_TO:"gte",BETWEEN:"between",DATE_IS:"dateIs",DATE_IS_NOT:"dateIsNot",DATE_BEFORE:"dateBefore",DATE_AFTER:"dateAfter"},Yi={AND:"and",OR:"or"};function ds(t,e){var n=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(!n){if(Array.isArray(t)||(n=Ph(t))||e&&t&&typeof t.length=="number"){n&&(t=n);var r=0,o=function(){};return{s:o,n:function(){return r>=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(s){throw s},f:o}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var i=!0,a=!1,l;return{s:function(){n=n.call(t)},n:function(){var s=n.next();return i=s.done,s},e:function(s){a=!0,l=s},f:function(){try{!i&&n.return!=null&&n.return()}finally{if(a)throw l}}}}function Ph(t,e){if(t){if(typeof t=="string")return ps(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ps(t,e)}}function ps(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);nn.getTime():e>n},gte:function(e,n){return n==null?!0:e==null?!1:e.getTime&&n.getTime?e.getTime()>=n.getTime():e>=n},dateIs:function(e,n){return n==null?!0:e==null?!1:e.toDateString()===n.toDateString()},dateIsNot:function(e,n){return n==null?!0:e==null?!1:e.toDateString()!==n.toDateString()},dateBefore:function(e,n){return n==null?!0:e==null?!1:e.getTime()n.getTime()}},register:function(e,n){this.filters[e]=n}};function Ir(t){"@babel/helpers - typeof";return Ir=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ir(t)}function fs(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function Do(t){for(var e=1;e1&&arguments[1]!==void 0?arguments[1]:!0;co()?di(t):e?t():zi(t)}var Lh=0;function Fc(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=de(!1),r=de(t),o=de(null),i=C.isClient()?window.document:void 0,a=e.document,l=a===void 0?i:a,u=e.immediate,s=u===void 0?!0:u,c=e.manual,d=c===void 0?!1:c,m=e.name,f=m===void 0?"style_".concat(++Lh):m,y=e.id,b=y===void 0?void 0:y,S=e.media,_=S===void 0?void 0:S,I=e.nonce,z=I===void 0?void 0:I,x=e.props,F=x===void 0?{}:x,ie=function(){},ae=function(oe){var ue=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(l){var j=gs(gs({},F),ue),D=j.name||f,q=j.id||b,ve=j.nonce||z;o.value=l.querySelector('style[data-primevue-style-id="'.concat(D,'"]'))||l.getElementById(q)||l.createElement("style"),o.value.isConnected||(r.value=oe||t,C.setAttributes(o.value,{type:"text/css",id:q,media:_,nonce:ve}),l.head.appendChild(o.value),C.setAttribute(o.value,"data-primevue-style-id",f),C.setAttributes(o.value,j)),!n.value&&(ie=ut(r,function(fe){o.value.textContent=fe},{immediate:!0}),n.value=!0)}},M=function(){!l||!n.value||(ie(),C.isExist(o.value)&&l.head.removeChild(o.value),n.value=!1)};return s&&!d&&Mh(ae),{id:b,name:f,css:r,unload:M,load:ae,isLoaded:ja(n)}}function Tr(t){"@babel/helpers - typeof";return Tr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Tr(t)}function Fh(t,e){return Hh(t)||Vh(t,e)||jh(t,e)||Bh()}function Bh(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function jh(t,e){if(t){if(typeof t=="string")return vs(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return vs(t,e)}}function vs(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n0&&arguments[0]!==void 0?arguments[0]:{};return this.css?Fc(this.css,Ro({name:this.name},e)):{}},getStyleSheet:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(this.css){var r=Object.entries(n).reduce(function(o,i){var a=Fh(i,2),l=a[0],u=a[1];return o.push("".concat(l,'="').concat(u,'"'))&&o},[]).join(" ");return'")}return""},extend:function(e){return Ro(Ro({},this),{},{css:void 0},e)}},qh=` +`,Wh={},Gh={},Be={name:"base",css:Uh,classes:Wh,inlineStyles:Gh,loadStyle:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return this.css?Fc(this.css,Ro({name:this.name},e)):{}},getStyleSheet:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(this.css){var r=Object.entries(n).reduce(function(o,i){var a=Fh(i,2),l=a[0],u=a[1];return o.push("".concat(l,'="').concat(u,'"'))&&o},[]).join(" ");return'")}return""},extend:function(e){return Ro(Ro({},this),{},{css:void 0},e)}},qh=` .p-icon { display: inline-block; } @@ -71,8 +71,8 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho transform: rotate(359deg); } } -`,Yh=je.extend({name:"baseicon",css:qh}),Fe={name:"BaseIcon",props:{label:{type:String,default:void 0},spin:{type:Boolean,default:!1}},beforeMount:function(){var e;Yh.loadStyle({nonce:(e=this.$config)===null||e===void 0||(e=e.csp)===null||e===void 0?void 0:e.nonce})},methods:{pti:function(){var e=B.isEmpty(this.label);return{class:["p-icon",{"p-icon-spin":this.spin}],role:e?void 0:"img","aria-label":e?void 0:this.label,"aria-hidden":e}}},computed:{$config:function(){var e;return(e=this.$primevue)===null||e===void 0?void 0:e.config}}},Zn={name:"ChevronDownIcon",extends:Fe},Jh=g("path",{d:"M7.01744 10.398C6.91269 10.3985 6.8089 10.378 6.71215 10.3379C6.61541 10.2977 6.52766 10.2386 6.45405 10.1641L1.13907 4.84913C1.03306 4.69404 0.985221 4.5065 1.00399 4.31958C1.02276 4.13266 1.10693 3.95838 1.24166 3.82747C1.37639 3.69655 1.55301 3.61742 1.74039 3.60402C1.92777 3.59062 2.11386 3.64382 2.26584 3.75424L7.01744 8.47394L11.769 3.75424C11.9189 3.65709 12.097 3.61306 12.2748 3.62921C12.4527 3.64535 12.6199 3.72073 12.7498 3.84328C12.8797 3.96582 12.9647 4.12842 12.9912 4.30502C13.0177 4.48162 12.9841 4.662 12.8958 4.81724L7.58083 10.1322C7.50996 10.2125 7.42344 10.2775 7.32656 10.3232C7.22968 10.3689 7.12449 10.3944 7.01744 10.398Z",fill:"currentColor"},null,-1),Zh=[Jh];function Xh(t,e,n,r,o,i){return p(),v("svg",h({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),Zh,16)}Zn.render=Xh;var fi={name:"ChevronRightIcon",extends:Fe},Qh=g("path",{d:"M4.38708 13C4.28408 13.0005 4.18203 12.9804 4.08691 12.9409C3.99178 12.9014 3.9055 12.8433 3.83313 12.7701C3.68634 12.6231 3.60388 12.4238 3.60388 12.2161C3.60388 12.0084 3.68634 11.8091 3.83313 11.6622L8.50507 6.99022L3.83313 2.31827C3.69467 2.16968 3.61928 1.97313 3.62287 1.77005C3.62645 1.56698 3.70872 1.37322 3.85234 1.22959C3.99596 1.08597 4.18972 1.00371 4.3928 1.00012C4.59588 0.996539 4.79242 1.07192 4.94102 1.21039L10.1669 6.43628C10.3137 6.58325 10.3962 6.78249 10.3962 6.99022C10.3962 7.19795 10.3137 7.39718 10.1669 7.54416L4.94102 12.7701C4.86865 12.8433 4.78237 12.9014 4.68724 12.9409C4.59212 12.9804 4.49007 13.0005 4.38708 13Z",fill:"currentColor"},null,-1),eg=[Qh];function tg(t,e,n,r,o,i){return p(),v("svg",h({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),eg,16)}fi.render=tg;function Tr(t){"@babel/helpers - typeof";return Tr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Tr(t)}function bs(t,e){return og(t)||ig(t,e)||rg(t,e)||ng()}function ng(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function rg(t,e){if(t){if(typeof t=="string")return ws(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ws(t,e)}}function ws(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n1&&arguments[1]!==void 0?arguments[1]:"",r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},o=B.toFlatCase(n).split("."),i=o.shift();return i?B.isObject(e)?Be._getOptionValue(B.getItemValue(e[Object.keys(e).find(function(a){return B.toFlatCase(a)===i})||""],r),o.join("."),r):void 0:B.getItemValue(e,r)},_getPTValue:function(){var e,n,r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"",a=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},l=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!0,u=function(){var V=Be._getOptionValue.apply(Be,arguments);return B.isString(V)||B.isArray(V)?{class:V}:V},s="data-pc-",c=((e=r.binding)===null||e===void 0||(e=e.value)===null||e===void 0?void 0:e.ptOptions)||((n=r.$config)===null||n===void 0?void 0:n.ptOptions)||{},d=c.mergeSections,m=d===void 0?!0:d,f=c.mergeProps,y=f===void 0?!1:f,b=l?Be._useDefaultPT(r,r.defaultPT(),u,i,a):void 0,S=Be._usePT(r,Be._getPT(o,r.$name),u,i,Ge(Ge({},a),{},{global:b||{}})),_=Ge(Ge({},i==="root"&&ia({},"".concat(s,"name"),B.toFlatCase(r.$name))),{},ia({},"".concat(s,"section"),B.toFlatCase(i)));return m||!m&&S?y?h(b,S,_):Ge(Ge(Ge({},b),S),_):Ge(Ge({},S),_)},_getPT:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"",r=arguments.length>2?arguments[2]:void 0,o=function(a){var l,u=r?r(a):a,s=B.toFlatCase(n);return(l=u==null?void 0:u[s])!==null&&l!==void 0?l:u};return e!=null&&e.hasOwnProperty("_usept")?{_usept:e._usept,originalValue:o(e.originalValue),value:o(e.value)}:o(e)},_usePT:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0,r=arguments.length>2?arguments[2]:void 0,o=arguments.length>3?arguments[3]:void 0,i=arguments.length>4?arguments[4]:void 0,a=function(S){return r(S,o,i)};if(n!=null&&n.hasOwnProperty("_usept")){var l,u=n._usept||((l=e.$config)===null||l===void 0?void 0:l.ptOptions)||{},s=u.mergeSections,c=s===void 0?!0:s,d=u.mergeProps,m=d===void 0?!1:d,f=a(n.originalValue),y=a(n.value);return f===void 0&&y===void 0?void 0:B.isString(y)?y:B.isString(f)?f:c||!c&&y?m?h(f,y):Ge(Ge({},f),y):y}return a(n)},_useDefaultPT:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0,o=arguments.length>3?arguments[3]:void 0,i=arguments.length>4?arguments[4]:void 0;return Be._usePT(e,n,r,o,i)},_hook:function(e,n,r,o,i,a){var l,u,s="on".concat(B.toCapitalCase(n)),c=Be._getConfig(o,i),d=r==null?void 0:r.$instance,m=Be._usePT(d,Be._getPT(o==null||(l=o.value)===null||l===void 0?void 0:l.pt,e),Be._getOptionValue,"hooks.".concat(s)),f=Be._useDefaultPT(d,c==null||(u=c.pt)===null||u===void 0||(u=u.directives)===null||u===void 0?void 0:u[e],Be._getOptionValue,"hooks.".concat(s)),y={el:r,binding:o,vnode:i,prevVnode:a};m==null||m(d,y),f==null||f(d,y)},_extend:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=function(i,a,l,u,s){var c,d;a._$instances=a._$instances||{};var m=Be._getConfig(l,u),f=a._$instances[e]||{},y=B.isEmpty(f)?Ge(Ge({},n),n==null?void 0:n.methods):{};a._$instances[e]=Ge(Ge({},f),{},{$name:e,$host:a,$binding:l,$modifiers:l==null?void 0:l.modifiers,$value:l==null?void 0:l.value,$el:f.$el||a||void 0,$style:Ge({classes:void 0,inlineStyles:void 0,loadStyle:function(){}},n==null?void 0:n.style),$config:m,defaultPT:function(){return Be._getPT(m==null?void 0:m.pt,void 0,function(S){var _;return S==null||(_=S.directives)===null||_===void 0?void 0:_[e]})},isUnstyled:function(){var S,_;return((S=a.$instance)===null||S===void 0||(S=S.$binding)===null||S===void 0||(S=S.value)===null||S===void 0?void 0:S.unstyled)!==void 0?(_=a.$instance)===null||_===void 0||(_=_.$binding)===null||_===void 0||(_=_.value)===null||_===void 0?void 0:_.unstyled:m==null?void 0:m.unstyled},ptm:function(){var S,_=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",I=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return Be._getPTValue(a.$instance,(S=a.$instance)===null||S===void 0||(S=S.$binding)===null||S===void 0||(S=S.value)===null||S===void 0?void 0:S.pt,_,Ge({},I))},ptmo:function(){var S=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},_=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"",I=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};return Be._getPTValue(a.$instance,S,_,I,!1)},cx:function(){var S,_,I=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",V=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return(S=a.$instance)!==null&&S!==void 0&&S.isUnstyled()?void 0:Be._getOptionValue((_=a.$instance)===null||_===void 0||(_=_.$style)===null||_===void 0?void 0:_.classes,I,Ge({},V))},sx:function(){var S,_=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",I=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,V=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};return I?Be._getOptionValue((S=a.$instance)===null||S===void 0||(S=S.$style)===null||S===void 0?void 0:S.inlineStyles,_,Ge({},V)):void 0}},y),a.$instance=a._$instances[e],(c=(d=a.$instance)[i])===null||c===void 0||c.call(d,a,l,u,s),Be._hook(e,i,a,l,u,s)};return{created:function(i,a,l,u){r("created",i,a,l,u)},beforeMount:function(i,a,l,u){var s,c,d,m,f=Be._getConfig(a,l);je.loadStyle(void 0,{nonce:f==null||(s=f.csp)===null||s===void 0?void 0:s.nonce}),!((c=i.$instance)!==null&&c!==void 0&&c.isUnstyled())&&((d=i.$instance)===null||d===void 0||(d=d.$style)===null||d===void 0||d.loadStyle(void 0,{nonce:f==null||(m=f.csp)===null||m===void 0?void 0:m.nonce})),r("beforeMount",i,a,l,u)},mounted:function(i,a,l,u){r("mounted",i,a,l,u)},beforeUpdate:function(i,a,l,u){r("beforeUpdate",i,a,l,u)},updated:function(i,a,l,u){r("updated",i,a,l,u)},beforeUnmount:function(i,a,l,u){r("beforeUnmount",i,a,l,u)},unmounted:function(i,a,l,u){r("unmounted",i,a,l,u)}}},extend:function(){var e=Be._getMeta.apply(Be,arguments),n=bs(e,2),r=n[0],o=n[1];return Ge({extend:function(){var a=Be._getMeta.apply(Be,arguments),l=bs(a,2),u=l[0],s=l[1];return Be.extend(u,Ge(Ge(Ge({},o),o==null?void 0:o.methods),s))}},Be._extend(r,o))}},sg=` +`,Yh=Be.extend({name:"baseicon",css:qh}),Le={name:"BaseIcon",props:{label:{type:String,default:void 0},spin:{type:Boolean,default:!1}},beforeMount:function(){var e;Yh.loadStyle({nonce:(e=this.$config)===null||e===void 0||(e=e.csp)===null||e===void 0?void 0:e.nonce})},methods:{pti:function(){var e=H.isEmpty(this.label);return{class:["p-icon",{"p-icon-spin":this.spin}],role:e?void 0:"img","aria-label":e?void 0:this.label,"aria-hidden":e}}},computed:{$config:function(){var e;return(e=this.$primevue)===null||e===void 0?void 0:e.config}}},Zn={name:"ChevronDownIcon",extends:Le},Jh=g("path",{d:"M7.01744 10.398C6.91269 10.3985 6.8089 10.378 6.71215 10.3379C6.61541 10.2977 6.52766 10.2386 6.45405 10.1641L1.13907 4.84913C1.03306 4.69404 0.985221 4.5065 1.00399 4.31958C1.02276 4.13266 1.10693 3.95838 1.24166 3.82747C1.37639 3.69655 1.55301 3.61742 1.74039 3.60402C1.92777 3.59062 2.11386 3.64382 2.26584 3.75424L7.01744 8.47394L11.769 3.75424C11.9189 3.65709 12.097 3.61306 12.2748 3.62921C12.4527 3.64535 12.6199 3.72073 12.7498 3.84328C12.8797 3.96582 12.9647 4.12842 12.9912 4.30502C13.0177 4.48162 12.9841 4.662 12.8958 4.81724L7.58083 10.1322C7.50996 10.2125 7.42344 10.2775 7.32656 10.3232C7.22968 10.3689 7.12449 10.3944 7.01744 10.398Z",fill:"currentColor"},null,-1),Zh=[Jh];function Xh(t,e,n,r,o,i){return p(),v("svg",h({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),Zh,16)}Zn.render=Xh;var fi={name:"ChevronRightIcon",extends:Le},Qh=g("path",{d:"M4.38708 13C4.28408 13.0005 4.18203 12.9804 4.08691 12.9409C3.99178 12.9014 3.9055 12.8433 3.83313 12.7701C3.68634 12.6231 3.60388 12.4238 3.60388 12.2161C3.60388 12.0084 3.68634 11.8091 3.83313 11.6622L8.50507 6.99022L3.83313 2.31827C3.69467 2.16968 3.61928 1.97313 3.62287 1.77005C3.62645 1.56698 3.70872 1.37322 3.85234 1.22959C3.99596 1.08597 4.18972 1.00371 4.3928 1.00012C4.59588 0.996539 4.79242 1.07192 4.94102 1.21039L10.1669 6.43628C10.3137 6.58325 10.3962 6.78249 10.3962 6.99022C10.3962 7.19795 10.3137 7.39718 10.1669 7.54416L4.94102 12.7701C4.86865 12.8433 4.78237 12.9014 4.68724 12.9409C4.59212 12.9804 4.49007 13.0005 4.38708 13Z",fill:"currentColor"},null,-1),eg=[Qh];function tg(t,e,n,r,o,i){return p(),v("svg",h({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),eg,16)}fi.render=tg;function xr(t){"@babel/helpers - typeof";return xr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},xr(t)}function bs(t,e){return og(t)||ig(t,e)||rg(t,e)||ng()}function ng(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function rg(t,e){if(t){if(typeof t=="string")return ws(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ws(t,e)}}function ws(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n1&&arguments[1]!==void 0?arguments[1]:"",r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},o=H.toFlatCase(n).split("."),i=o.shift();return i?H.isObject(e)?Fe._getOptionValue(H.getItemValue(e[Object.keys(e).find(function(a){return H.toFlatCase(a)===i})||""],r),o.join("."),r):void 0:H.getItemValue(e,r)},_getPTValue:function(){var e,n,r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"",a=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},l=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!0,u=function(){var z=Fe._getOptionValue.apply(Fe,arguments);return H.isString(z)||H.isArray(z)?{class:z}:z},s="data-pc-",c=((e=r.binding)===null||e===void 0||(e=e.value)===null||e===void 0?void 0:e.ptOptions)||((n=r.$config)===null||n===void 0?void 0:n.ptOptions)||{},d=c.mergeSections,m=d===void 0?!0:d,f=c.mergeProps,y=f===void 0?!1:f,b=l?Fe._useDefaultPT(r,r.defaultPT(),u,i,a):void 0,S=Fe._usePT(r,Fe._getPT(o,r.$name),u,i,Ye(Ye({},a),{},{global:b||{}})),_=Ye(Ye({},i==="root"&&ia({},"".concat(s,"name"),H.toFlatCase(r.$name))),{},ia({},"".concat(s,"section"),H.toFlatCase(i)));return m||!m&&S?y?h(b,S,_):Ye(Ye(Ye({},b),S),_):Ye(Ye({},S),_)},_getPT:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"",r=arguments.length>2?arguments[2]:void 0,o=function(a){var l,u=r?r(a):a,s=H.toFlatCase(n);return(l=u==null?void 0:u[s])!==null&&l!==void 0?l:u};return e!=null&&e.hasOwnProperty("_usept")?{_usept:e._usept,originalValue:o(e.originalValue),value:o(e.value)}:o(e)},_usePT:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0,r=arguments.length>2?arguments[2]:void 0,o=arguments.length>3?arguments[3]:void 0,i=arguments.length>4?arguments[4]:void 0,a=function(S){return r(S,o,i)};if(n!=null&&n.hasOwnProperty("_usept")){var l,u=n._usept||((l=e.$config)===null||l===void 0?void 0:l.ptOptions)||{},s=u.mergeSections,c=s===void 0?!0:s,d=u.mergeProps,m=d===void 0?!1:d,f=a(n.originalValue),y=a(n.value);return f===void 0&&y===void 0?void 0:H.isString(y)?y:H.isString(f)?f:c||!c&&y?m?h(f,y):Ye(Ye({},f),y):y}return a(n)},_useDefaultPT:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0,o=arguments.length>3?arguments[3]:void 0,i=arguments.length>4?arguments[4]:void 0;return Fe._usePT(e,n,r,o,i)},_hook:function(e,n,r,o,i,a){var l,u,s="on".concat(H.toCapitalCase(n)),c=Fe._getConfig(o,i),d=r==null?void 0:r.$instance,m=Fe._usePT(d,Fe._getPT(o==null||(l=o.value)===null||l===void 0?void 0:l.pt,e),Fe._getOptionValue,"hooks.".concat(s)),f=Fe._useDefaultPT(d,c==null||(u=c.pt)===null||u===void 0||(u=u.directives)===null||u===void 0?void 0:u[e],Fe._getOptionValue,"hooks.".concat(s)),y={el:r,binding:o,vnode:i,prevVnode:a};m==null||m(d,y),f==null||f(d,y)},_extend:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=function(i,a,l,u,s){var c,d;a._$instances=a._$instances||{};var m=Fe._getConfig(l,u),f=a._$instances[e]||{},y=H.isEmpty(f)?Ye(Ye({},n),n==null?void 0:n.methods):{};a._$instances[e]=Ye(Ye({},f),{},{$name:e,$host:a,$binding:l,$modifiers:l==null?void 0:l.modifiers,$value:l==null?void 0:l.value,$el:f.$el||a||void 0,$style:Ye({classes:void 0,inlineStyles:void 0,loadStyle:function(){}},n==null?void 0:n.style),$config:m,defaultPT:function(){return Fe._getPT(m==null?void 0:m.pt,void 0,function(S){var _;return S==null||(_=S.directives)===null||_===void 0?void 0:_[e]})},isUnstyled:function(){var S,_;return((S=a.$instance)===null||S===void 0||(S=S.$binding)===null||S===void 0||(S=S.value)===null||S===void 0?void 0:S.unstyled)!==void 0?(_=a.$instance)===null||_===void 0||(_=_.$binding)===null||_===void 0||(_=_.value)===null||_===void 0?void 0:_.unstyled:m==null?void 0:m.unstyled},ptm:function(){var S,_=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",I=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return Fe._getPTValue(a.$instance,(S=a.$instance)===null||S===void 0||(S=S.$binding)===null||S===void 0||(S=S.value)===null||S===void 0?void 0:S.pt,_,Ye({},I))},ptmo:function(){var S=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},_=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"",I=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};return Fe._getPTValue(a.$instance,S,_,I,!1)},cx:function(){var S,_,I=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",z=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return(S=a.$instance)!==null&&S!==void 0&&S.isUnstyled()?void 0:Fe._getOptionValue((_=a.$instance)===null||_===void 0||(_=_.$style)===null||_===void 0?void 0:_.classes,I,Ye({},z))},sx:function(){var S,_=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",I=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,z=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};return I?Fe._getOptionValue((S=a.$instance)===null||S===void 0||(S=S.$style)===null||S===void 0?void 0:S.inlineStyles,_,Ye({},z)):void 0}},y),a.$instance=a._$instances[e],(c=(d=a.$instance)[i])===null||c===void 0||c.call(d,a,l,u,s),Fe._hook(e,i,a,l,u,s)};return{created:function(i,a,l,u){r("created",i,a,l,u)},beforeMount:function(i,a,l,u){var s,c,d,m,f=Fe._getConfig(a,l);Be.loadStyle(void 0,{nonce:f==null||(s=f.csp)===null||s===void 0?void 0:s.nonce}),!((c=i.$instance)!==null&&c!==void 0&&c.isUnstyled())&&((d=i.$instance)===null||d===void 0||(d=d.$style)===null||d===void 0||d.loadStyle(void 0,{nonce:f==null||(m=f.csp)===null||m===void 0?void 0:m.nonce})),r("beforeMount",i,a,l,u)},mounted:function(i,a,l,u){r("mounted",i,a,l,u)},beforeUpdate:function(i,a,l,u){r("beforeUpdate",i,a,l,u)},updated:function(i,a,l,u){r("updated",i,a,l,u)},beforeUnmount:function(i,a,l,u){r("beforeUnmount",i,a,l,u)},unmounted:function(i,a,l,u){r("unmounted",i,a,l,u)}}},extend:function(){var e=Fe._getMeta.apply(Fe,arguments),n=bs(e,2),r=n[0],o=n[1];return Ye({extend:function(){var a=Fe._getMeta.apply(Fe,arguments),l=bs(a,2),u=l[0],s=l[1];return Fe.extend(u,Ye(Ye(Ye({},o),o==null?void 0:o.methods),s))}},Fe._extend(r,o))}},sg=` @keyframes ripple { 100% { opacity: 0; @@ -103,7 +103,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho display: none !important; } } -`,ug={root:"p-ink"},cg=je.extend({name:"ripple",css:sg,classes:ug}),dg=Be.extend({style:cg});function pg(t){return gg(t)||hg(t)||mg(t)||fg()}function fg(){throw new TypeError(`Invalid attempt to spread non-iterable instance. +`,ug={root:"p-ink"},cg=Be.extend({name:"ripple",css:sg,classes:ug}),dg=Fe.extend({style:cg});function pg(t){return gg(t)||hg(t)||mg(t)||fg()}function fg(){throw new TypeError(`Invalid attempt to spread non-iterable instance. In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function mg(t,e){if(t){if(typeof t=="string")return oa(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return oa(t,e)}}function hg(t){if(typeof Symbol<"u"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function gg(t){if(Array.isArray(t))return oa(t)}function oa(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n1&&arguments[1]!==void 0?arguments[1]:{};return Fc(e,wg({name:"global"},n))}});function Dr(t){"@babel/helpers - typeof";return Dr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Dr(t)}function Ss(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function We(t){for(var e=1;e1&&arguments[1]!==void 0?arguments[1]:"",r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},o=B.toFlatCase(n).split("."),i=o.shift();return i?B.isObject(e)?this._getOptionValue(B.getItemValue(e[Object.keys(e).find(function(a){return B.toFlatCase(a)===i})||""],r),o.join("."),r):void 0:B.getItemValue(e,r)},_getPTValue:function(){var e,n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"",o=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},i=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!0,a="data-pc-",l=/./g.test(r)&&!!o[r.split(".")[0]],u=this._getPropValue("ptOptions")||((e=this.$config)===null||e===void 0?void 0:e.ptOptions)||{},s=u.mergeSections,c=s===void 0?!0:s,d=u.mergeProps,m=d===void 0?!1:d,f=i?l?this._useGlobalPT(this._getPTClassValue,r,o):this._useDefaultPT(this._getPTClassValue,r,o):void 0,y=l?void 0:this._usePT(this._getPT(n,this.$name),this._getPTClassValue,r,We(We({},o),{},{global:f||{}})),b=r!=="transition"&&We(We({},r==="root"&&aa({},"".concat(a,"name"),B.toFlatCase(this.$.type.name))),{},aa({},"".concat(a,"section"),B.toFlatCase(r)));return c||!c&&y?m?h(f,y,b):We(We(We({},f),y),b):We(We({},y),b)},_getPTClassValue:function(){var e=this._getOptionValue.apply(this,arguments);return B.isString(e)||B.isArray(e)?{class:e}:e},_getPT:function(e){var n=this,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"",o=arguments.length>2?arguments[2]:void 0,i=function(l){var u,s=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,c=o?o(l):l,d=B.toFlatCase(r),m=B.toFlatCase(n.$name);return(u=s?d!==m?c==null?void 0:c[d]:void 0:c==null?void 0:c[d])!==null&&u!==void 0?u:c};return e!=null&&e.hasOwnProperty("_usept")?{_usept:e._usept,originalValue:i(e.originalValue),value:i(e.value)}:i(e,!0)},_usePT:function(e,n,r,o){var i=function(b){return n(b,r,o)};if(e!=null&&e.hasOwnProperty("_usept")){var a,l=e._usept||((a=this.$config)===null||a===void 0?void 0:a.ptOptions)||{},u=l.mergeSections,s=u===void 0?!0:u,c=l.mergeProps,d=c===void 0?!1:c,m=i(e.originalValue),f=i(e.value);return m===void 0&&f===void 0?void 0:B.isString(f)?f:B.isString(m)?m:s||!s&&f?d?h(m,f):We(We({},m),f):f}return i(e)},_useGlobalPT:function(e,n,r){return this._usePT(this.globalPT,e,n,r)},_useDefaultPT:function(e,n,r){return this._usePT(this.defaultPT,e,n,r)},ptm:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this._getPTValue(this.pt,e,We(We({},this.$params),n))},ptmo:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"",r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};return this._getPTValue(e,n,We({instance:this},r),!1)},cx:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.isUnstyled?void 0:this._getOptionValue(this.$style.classes,e,We(We({},this.$params),n))},sx:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(n){var o=this._getOptionValue(this.$style.inlineStyles,e,We(We({},this.$params),r)),i=this._getOptionValue($o.inlineStyles,e,We(We({},this.$params),r));return[i,o]}}},computed:{globalPT:function(){var e,n=this;return this._getPT((e=this.$config)===null||e===void 0?void 0:e.pt,void 0,function(r){return B.getItemValue(r,{instance:n})})},defaultPT:function(){var e,n=this;return this._getPT((e=this.$config)===null||e===void 0?void 0:e.pt,void 0,function(r){return n._getOptionValue(r,n.$name,We({},n.$params))||B.getItemValue(r,We({},n.$params))})},isUnstyled:function(){var e;return this.unstyled!==void 0?this.unstyled:(e=this.$config)===null||e===void 0?void 0:e.unstyled},$params:function(){return{instance:this,props:this.$props,state:this.$data,parentInstance:this.$parentInstance}},$style:function(){return We(We({classes:void 0,inlineStyles:void 0,loadStyle:function(){},loadCustomStyle:function(){}},(this._getHostInstance(this)||{}).$style),this.$options.style)},$config:function(){var e;return(e=this.$primevue)===null||e===void 0?void 0:e.config},$name:function(){return this.$options.hostName||this.$.type.name}}},Dg={name:"BaseAccordion",extends:Pe,props:{multiple:{type:Boolean,default:!1},activeIndex:{type:[Number,Array],default:null},lazy:{type:Boolean,default:!1},expandIcon:{type:String,default:void 0},collapseIcon:{type:String,default:void 0},tabindex:{type:Number,default:0},selectOnFocus:{type:Boolean,default:!1}},style:bg,provide:function(){return{$parentInstance:this}}},Bc={name:"Accordion",extends:Dg,emits:["update:activeIndex","tab-open","tab-close","tab-click"],data:function(){return{id:this.$attrs.id,d_activeIndex:this.activeIndex}},watch:{"$attrs.id":function(e){this.id=e||Re()},activeIndex:function(e){this.d_activeIndex=e}},mounted:function(){this.id=this.id||Re()},methods:{isAccordionTab:function(e){return e.type.name==="AccordionTab"},isTabActive:function(e){return this.multiple?this.d_activeIndex&&this.d_activeIndex.includes(e):this.d_activeIndex===e},getTabProp:function(e,n){return e.props?e.props[n]:void 0},getKey:function(e,n){return this.getTabProp(e,"header")||n},getTabHeaderActionId:function(e){return"".concat(this.id,"_").concat(e,"_header_action")},getTabContentId:function(e){return"".concat(this.id,"_").concat(e,"_content")},getTabPT:function(e,n,r){var o=this.tabs.length,i={props:e.props||{},parent:{props:this.$props,state:this.$data},context:{index:r,count:o,first:r===0,last:r===o-1,active:this.isTabActive(r)}};return h(this.ptm("tab.".concat(n),{tab:i}),this.ptm("accordiontab.".concat(n),{accordiontab:i}),this.ptm("accordiontab.".concat(n),i),this.ptmo(this.getTabProp(e,"pt"),n,i))},onTabClick:function(e,n,r){this.changeActiveIndex(e,n,r),this.$emit("tab-click",{originalEvent:e,index:r})},onTabKeyDown:function(e,n,r){switch(e.code){case"ArrowDown":this.onTabArrowDownKey(e);break;case"ArrowUp":this.onTabArrowUpKey(e);break;case"Home":this.onTabHomeKey(e);break;case"End":this.onTabEndKey(e);break;case"Enter":case"Space":this.onTabEnterKey(e,n,r);break}},onTabArrowDownKey:function(e){var n=this.findNextHeaderAction(e.target.parentElement.parentElement);n?this.changeFocusedTab(e,n):this.onTabHomeKey(e),e.preventDefault()},onTabArrowUpKey:function(e){var n=this.findPrevHeaderAction(e.target.parentElement.parentElement);n?this.changeFocusedTab(e,n):this.onTabEndKey(e),e.preventDefault()},onTabHomeKey:function(e){var n=this.findFirstHeaderAction();this.changeFocusedTab(e,n),e.preventDefault()},onTabEndKey:function(e){var n=this.findLastHeaderAction();this.changeFocusedTab(e,n),e.preventDefault()},onTabEnterKey:function(e,n,r){this.changeActiveIndex(e,n,r),e.preventDefault()},findNextHeaderAction:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,r=n?e:e.nextElementSibling,o=C.findSingle(r,'[data-pc-section="header"]');return o?C.getAttribute(o,"data-p-disabled")?this.findNextHeaderAction(o.parentElement):C.findSingle(o,'[data-pc-section="headeraction"]'):null},findPrevHeaderAction:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,r=n?e:e.previousElementSibling,o=C.findSingle(r,'[data-pc-section="header"]');return o?C.getAttribute(o,"data-p-disabled")?this.findPrevHeaderAction(o.parentElement):C.findSingle(o,'[data-pc-section="headeraction"]'):null},findFirstHeaderAction:function(){return this.findNextHeaderAction(this.$el.firstElementChild,!0)},findLastHeaderAction:function(){return this.findPrevHeaderAction(this.$el.lastElementChild,!0)},changeActiveIndex:function(e,n,r){if(!this.getTabProp(n,"disabled")){var o=this.isTabActive(r),i=o?"tab-close":"tab-open";this.multiple?o?this.d_activeIndex=this.d_activeIndex.filter(function(a){return a!==r}):this.d_activeIndex?this.d_activeIndex.push(r):this.d_activeIndex=[r]:this.d_activeIndex=this.d_activeIndex===r?null:r,this.$emit("update:activeIndex",this.d_activeIndex),this.$emit(i,{originalEvent:e,index:r})}},changeFocusedTab:function(e,n){if(n&&(C.focus(n),this.selectOnFocus)){var r=parseInt(n.parentElement.parentElement.dataset.pcIndex,10),o=this.tabs[r];this.changeActiveIndex(e,o,r)}}},computed:{tabs:function(){var e=this;return this.$slots.default().reduce(function(n,r){return e.isAccordionTab(r)?n.push(r):r.children&&r.children instanceof Array&&r.children.forEach(function(o){e.isAccordionTab(o)&&n.push(o)}),n},[])}},components:{ChevronDownIcon:Zn,ChevronRightIcon:fi},directives:{ripple:pt}};function Rr(t){"@babel/helpers - typeof";return Rr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Rr(t)}function Os(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function Mn(t){for(var e=1;e1&&arguments[1]!==void 0?arguments[1]:{};return Fc(e,wg({name:"global"},n))}});function Dr(t){"@babel/helpers - typeof";return Dr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Dr(t)}function Ss(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function qe(t){for(var e=1;e1&&arguments[1]!==void 0?arguments[1]:"",r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},o=H.toFlatCase(n).split("."),i=o.shift();return i?H.isObject(e)?this._getOptionValue(H.getItemValue(e[Object.keys(e).find(function(a){return H.toFlatCase(a)===i})||""],r),o.join("."),r):void 0:H.getItemValue(e,r)},_getPTValue:function(){var e,n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"",o=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},i=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!0,a="data-pc-",l=/./g.test(r)&&!!o[r.split(".")[0]],u=this._getPropValue("ptOptions")||((e=this.$config)===null||e===void 0?void 0:e.ptOptions)||{},s=u.mergeSections,c=s===void 0?!0:s,d=u.mergeProps,m=d===void 0?!1:d,f=i?l?this._useGlobalPT(this._getPTClassValue,r,o):this._useDefaultPT(this._getPTClassValue,r,o):void 0,y=l?void 0:this._usePT(this._getPT(n,this.$name),this._getPTClassValue,r,qe(qe({},o),{},{global:f||{}})),b=r!=="transition"&&qe(qe({},r==="root"&&aa({},"".concat(a,"name"),H.toFlatCase(this.$.type.name))),{},aa({},"".concat(a,"section"),H.toFlatCase(r)));return c||!c&&y?m?h(f,y,b):qe(qe(qe({},f),y),b):qe(qe({},y),b)},_getPTClassValue:function(){var e=this._getOptionValue.apply(this,arguments);return H.isString(e)||H.isArray(e)?{class:e}:e},_getPT:function(e){var n=this,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"",o=arguments.length>2?arguments[2]:void 0,i=function(l){var u,s=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,c=o?o(l):l,d=H.toFlatCase(r),m=H.toFlatCase(n.$name);return(u=s?d!==m?c==null?void 0:c[d]:void 0:c==null?void 0:c[d])!==null&&u!==void 0?u:c};return e!=null&&e.hasOwnProperty("_usept")?{_usept:e._usept,originalValue:i(e.originalValue),value:i(e.value)}:i(e,!0)},_usePT:function(e,n,r,o){var i=function(b){return n(b,r,o)};if(e!=null&&e.hasOwnProperty("_usept")){var a,l=e._usept||((a=this.$config)===null||a===void 0?void 0:a.ptOptions)||{},u=l.mergeSections,s=u===void 0?!0:u,c=l.mergeProps,d=c===void 0?!1:c,m=i(e.originalValue),f=i(e.value);return m===void 0&&f===void 0?void 0:H.isString(f)?f:H.isString(m)?m:s||!s&&f?d?h(m,f):qe(qe({},m),f):f}return i(e)},_useGlobalPT:function(e,n,r){return this._usePT(this.globalPT,e,n,r)},_useDefaultPT:function(e,n,r){return this._usePT(this.defaultPT,e,n,r)},ptm:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this._getPTValue(this.pt,e,qe(qe({},this.$params),n))},ptmo:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"",r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};return this._getPTValue(e,n,qe({instance:this},r),!1)},cx:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.isUnstyled?void 0:this._getOptionValue(this.$style.classes,e,qe(qe({},this.$params),n))},sx:function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"",n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(n){var o=this._getOptionValue(this.$style.inlineStyles,e,qe(qe({},this.$params),r)),i=this._getOptionValue($o.inlineStyles,e,qe(qe({},this.$params),r));return[i,o]}}},computed:{globalPT:function(){var e,n=this;return this._getPT((e=this.$config)===null||e===void 0?void 0:e.pt,void 0,function(r){return H.getItemValue(r,{instance:n})})},defaultPT:function(){var e,n=this;return this._getPT((e=this.$config)===null||e===void 0?void 0:e.pt,void 0,function(r){return n._getOptionValue(r,n.$name,qe({},n.$params))||H.getItemValue(r,qe({},n.$params))})},isUnstyled:function(){var e;return this.unstyled!==void 0?this.unstyled:(e=this.$config)===null||e===void 0?void 0:e.unstyled},$params:function(){return{instance:this,props:this.$props,state:this.$data,parentInstance:this.$parentInstance}},$style:function(){return qe(qe({classes:void 0,inlineStyles:void 0,loadStyle:function(){},loadCustomStyle:function(){}},(this._getHostInstance(this)||{}).$style),this.$options.style)},$config:function(){var e;return(e=this.$primevue)===null||e===void 0?void 0:e.config},$name:function(){return this.$options.hostName||this.$.type.name}}},Dg={name:"BaseAccordion",extends:Oe,props:{multiple:{type:Boolean,default:!1},activeIndex:{type:[Number,Array],default:null},lazy:{type:Boolean,default:!1},expandIcon:{type:String,default:void 0},collapseIcon:{type:String,default:void 0},tabindex:{type:Number,default:0},selectOnFocus:{type:Boolean,default:!1}},style:bg,provide:function(){return{$parentInstance:this}}},Bc={name:"Accordion",extends:Dg,emits:["update:activeIndex","tab-open","tab-close","tab-click"],data:function(){return{id:this.$attrs.id,d_activeIndex:this.activeIndex}},watch:{"$attrs.id":function(e){this.id=e||Re()},activeIndex:function(e){this.d_activeIndex=e}},mounted:function(){this.id=this.id||Re()},methods:{isAccordionTab:function(e){return e.type.name==="AccordionTab"},isTabActive:function(e){return this.multiple?this.d_activeIndex&&this.d_activeIndex.includes(e):this.d_activeIndex===e},getTabProp:function(e,n){return e.props?e.props[n]:void 0},getKey:function(e,n){return this.getTabProp(e,"header")||n},getTabHeaderActionId:function(e){return"".concat(this.id,"_").concat(e,"_header_action")},getTabContentId:function(e){return"".concat(this.id,"_").concat(e,"_content")},getTabPT:function(e,n,r){var o=this.tabs.length,i={props:e.props||{},parent:{props:this.$props,state:this.$data},context:{index:r,count:o,first:r===0,last:r===o-1,active:this.isTabActive(r)}};return h(this.ptm("tab.".concat(n),{tab:i}),this.ptm("accordiontab.".concat(n),{accordiontab:i}),this.ptm("accordiontab.".concat(n),i),this.ptmo(this.getTabProp(e,"pt"),n,i))},onTabClick:function(e,n,r){this.changeActiveIndex(e,n,r),this.$emit("tab-click",{originalEvent:e,index:r})},onTabKeyDown:function(e,n,r){switch(e.code){case"ArrowDown":this.onTabArrowDownKey(e);break;case"ArrowUp":this.onTabArrowUpKey(e);break;case"Home":this.onTabHomeKey(e);break;case"End":this.onTabEndKey(e);break;case"Enter":case"Space":this.onTabEnterKey(e,n,r);break}},onTabArrowDownKey:function(e){var n=this.findNextHeaderAction(e.target.parentElement.parentElement);n?this.changeFocusedTab(e,n):this.onTabHomeKey(e),e.preventDefault()},onTabArrowUpKey:function(e){var n=this.findPrevHeaderAction(e.target.parentElement.parentElement);n?this.changeFocusedTab(e,n):this.onTabEndKey(e),e.preventDefault()},onTabHomeKey:function(e){var n=this.findFirstHeaderAction();this.changeFocusedTab(e,n),e.preventDefault()},onTabEndKey:function(e){var n=this.findLastHeaderAction();this.changeFocusedTab(e,n),e.preventDefault()},onTabEnterKey:function(e,n,r){this.changeActiveIndex(e,n,r),e.preventDefault()},findNextHeaderAction:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,r=n?e:e.nextElementSibling,o=C.findSingle(r,'[data-pc-section="header"]');return o?C.getAttribute(o,"data-p-disabled")?this.findNextHeaderAction(o.parentElement):C.findSingle(o,'[data-pc-section="headeraction"]'):null},findPrevHeaderAction:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,r=n?e:e.previousElementSibling,o=C.findSingle(r,'[data-pc-section="header"]');return o?C.getAttribute(o,"data-p-disabled")?this.findPrevHeaderAction(o.parentElement):C.findSingle(o,'[data-pc-section="headeraction"]'):null},findFirstHeaderAction:function(){return this.findNextHeaderAction(this.$el.firstElementChild,!0)},findLastHeaderAction:function(){return this.findPrevHeaderAction(this.$el.lastElementChild,!0)},changeActiveIndex:function(e,n,r){if(!this.getTabProp(n,"disabled")){var o=this.isTabActive(r),i=o?"tab-close":"tab-open";this.multiple?o?this.d_activeIndex=this.d_activeIndex.filter(function(a){return a!==r}):this.d_activeIndex?this.d_activeIndex.push(r):this.d_activeIndex=[r]:this.d_activeIndex=this.d_activeIndex===r?null:r,this.$emit("update:activeIndex",this.d_activeIndex),this.$emit(i,{originalEvent:e,index:r})}},changeFocusedTab:function(e,n){if(n&&(C.focus(n),this.selectOnFocus)){var r=parseInt(n.parentElement.parentElement.dataset.pcIndex,10),o=this.tabs[r];this.changeActiveIndex(e,o,r)}}},computed:{tabs:function(){var e=this;return this.$slots.default().reduce(function(n,r){return e.isAccordionTab(r)?n.push(r):r.children&&r.children instanceof Array&&r.children.forEach(function(o){e.isAccordionTab(o)&&n.push(o)}),n},[])}},components:{ChevronDownIcon:Zn,ChevronRightIcon:fi},directives:{ripple:pt}};function Rr(t){"@babel/helpers - typeof";return Rr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Rr(t)}function Os(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function Mn(t){for(var e=1;e1,"p-datepicker-monthpicker":o.currentView==="month","p-datepicker-yearpicker":o.currentView==="year","p-datepicker-touch-ui":r.touchUI,"p-input-filled":n.$primevue.config.inputStyle==="filled","p-ripple-disabled":n.$primevue.config.ripple===!1}]},groupContainer:"p-datepicker-group-container",group:"p-datepicker-group",header:"p-datepicker-header",previousButton:"p-datepicker-prev p-link",previousIcon:"p-datepicker-prev-icon",title:"p-datepicker-title",monthTitle:"p-datepicker-month p-link",yearTitle:"p-datepicker-year p-link",decadeTitle:"p-datepicker-decade",nextButton:"p-datepicker-next p-link",nextIcon:"p-datepicker-next-icon",container:"p-datepicker-calendar-container",table:"p-datepicker-calendar",weekHeader:"p-datepicker-weekheader p-disabled",weekNumber:"p-datepicker-weeknumber",weekLabelContainer:"p-disabled",day:function(e){var n=e.date;return[{"p-datepicker-other-month":n.otherMonth,"p-datepicker-today":n.today}]},dayLabel:function(e){var n=e.instance,r=e.date;return[{"p-highlight":n.isSelected(r)&&r.selectable,"p-disabled":!r.selectable}]},monthPicker:"p-monthpicker",month:function(e){var n=e.instance,r=e.month,o=e.index;return["p-monthpicker-month",{"p-highlight":n.isMonthSelected(o),"p-disabled":!r.selectable}]},yearPicker:"p-yearpicker",year:function(e){var n=e.instance,r=e.year;return["p-yearpicker-year",{"p-highlight":n.isYearSelected(r.value),"p-disabled":!r.selectable}]},timePicker:"p-timepicker",hourPicker:"p-hour-picker",incrementButton:"p-link",decrementButton:"p-link",separatorContainer:"p-separator",minutePicker:"p-minute-picker",secondPicker:"p-second-picker",ampmPicker:"p-ampm-picker",buttonbar:"p-datepicker-buttonbar",todayButton:"p-button-text",clearButton:"p-button-text"},Cv=je.extend({name:"calendar",css:yv,classes:wv,inlineStyles:bv}),_v={name:"BaseCalendar",extends:Pe,props:{modelValue:null,selectionMode:{type:String,default:"single"},dateFormat:{type:String,default:null},inline:{type:Boolean,default:!1},showOtherMonths:{type:Boolean,default:!0},selectOtherMonths:{type:Boolean,default:!1},showIcon:{type:Boolean,default:!1},icon:{type:String,default:void 0},previousIcon:{type:String,default:void 0},nextIcon:{type:String,default:void 0},incrementIcon:{type:String,default:void 0},decrementIcon:{type:String,default:void 0},numberOfMonths:{type:Number,default:1},responsiveOptions:Array,view:{type:String,default:"date"},touchUI:{type:Boolean,default:!1},monthNavigator:{type:Boolean,default:!1},yearNavigator:{type:Boolean,default:!1},yearRange:{type:String,default:null},minDate:{type:Date,value:null},maxDate:{type:Date,value:null},disabledDates:{type:Array,value:null},disabledDays:{type:Array,value:null},maxDateCount:{type:Number,value:null},showOnFocus:{type:Boolean,default:!0},autoZIndex:{type:Boolean,default:!0},baseZIndex:{type:Number,default:0},showButtonBar:{type:Boolean,default:!1},shortYearCutoff:{type:String,default:"+10"},showTime:{type:Boolean,default:!1},timeOnly:{type:Boolean,default:!1},hourFormat:{type:String,default:"24"},stepHour:{type:Number,default:1},stepMinute:{type:Number,default:1},stepSecond:{type:Number,default:1},showSeconds:{type:Boolean,default:!1},hideOnDateTimeSelect:{type:Boolean,default:!1},hideOnRangeSelection:{type:Boolean,default:!1},timeSeparator:{type:String,default:":"},showWeek:{type:Boolean,default:!1},manualInput:{type:Boolean,default:!0},appendTo:{type:String,default:"body"},disabled:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},placeholder:{type:String,default:null},id:{type:String,default:null},inputId:{type:String,default:null},inputClass:{type:[String,Object],default:null},inputStyle:{type:Object,default:null},inputProps:{type:null,default:null},panelClass:{type:[String,Object],default:null},panelStyle:{type:Object,default:null},panelProps:{type:null,default:null},"aria-labelledby":{type:String,default:null},"aria-label":{type:String,default:null}},style:Cv,provide:function(){return{$parentInstance:this}}};function la(t){"@babel/helpers - typeof";return la=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},la(t)}function Ao(t){return Pv(t)||Ov(t)||zc(t)||Sv()}function Sv(){throw new TypeError(`Invalid attempt to spread non-iterable instance. +`,bv={root:function(e){var n=e.props;return{position:n.appendTo==="self"?"relative":void 0}}},wv={root:function(e){var n=e.props,r=e.state;return["p-calendar p-component p-inputwrapper",{"p-calendar-w-btn":n.showIcon,"p-calendar-timeonly":n.timeOnly,"p-calendar-disabled":n.disabled,"p-inputwrapper-filled":n.modelValue,"p-inputwrapper-focus":r.focused,"p-focus":r.focused||r.overlayVisible}]},input:"p-inputtext p-component",dropdownButton:"p-datepicker-trigger",panel:function(e){var n=e.instance,r=e.props,o=e.state;return["p-datepicker p-component",{"p-datepicker-inline":r.inline,"p-disabled":r.disabled,"p-datepicker-timeonly":r.timeOnly,"p-datepicker-multiple-month":r.numberOfMonths>1,"p-datepicker-monthpicker":o.currentView==="month","p-datepicker-yearpicker":o.currentView==="year","p-datepicker-touch-ui":r.touchUI,"p-input-filled":n.$primevue.config.inputStyle==="filled","p-ripple-disabled":n.$primevue.config.ripple===!1}]},groupContainer:"p-datepicker-group-container",group:"p-datepicker-group",header:"p-datepicker-header",previousButton:"p-datepicker-prev p-link",previousIcon:"p-datepicker-prev-icon",title:"p-datepicker-title",monthTitle:"p-datepicker-month p-link",yearTitle:"p-datepicker-year p-link",decadeTitle:"p-datepicker-decade",nextButton:"p-datepicker-next p-link",nextIcon:"p-datepicker-next-icon",container:"p-datepicker-calendar-container",table:"p-datepicker-calendar",weekHeader:"p-datepicker-weekheader p-disabled",weekNumber:"p-datepicker-weeknumber",weekLabelContainer:"p-disabled",day:function(e){var n=e.date;return[{"p-datepicker-other-month":n.otherMonth,"p-datepicker-today":n.today}]},dayLabel:function(e){var n=e.instance,r=e.date;return[{"p-highlight":n.isSelected(r)&&r.selectable,"p-disabled":!r.selectable}]},monthPicker:"p-monthpicker",month:function(e){var n=e.instance,r=e.month,o=e.index;return["p-monthpicker-month",{"p-highlight":n.isMonthSelected(o),"p-disabled":!r.selectable}]},yearPicker:"p-yearpicker",year:function(e){var n=e.instance,r=e.year;return["p-yearpicker-year",{"p-highlight":n.isYearSelected(r.value),"p-disabled":!r.selectable}]},timePicker:"p-timepicker",hourPicker:"p-hour-picker",incrementButton:"p-link",decrementButton:"p-link",separatorContainer:"p-separator",minutePicker:"p-minute-picker",secondPicker:"p-second-picker",ampmPicker:"p-ampm-picker",buttonbar:"p-datepicker-buttonbar",todayButton:"p-button-text",clearButton:"p-button-text"},Cv=Be.extend({name:"calendar",css:yv,classes:wv,inlineStyles:bv}),_v={name:"BaseCalendar",extends:Oe,props:{modelValue:null,selectionMode:{type:String,default:"single"},dateFormat:{type:String,default:null},inline:{type:Boolean,default:!1},showOtherMonths:{type:Boolean,default:!0},selectOtherMonths:{type:Boolean,default:!1},showIcon:{type:Boolean,default:!1},icon:{type:String,default:void 0},previousIcon:{type:String,default:void 0},nextIcon:{type:String,default:void 0},incrementIcon:{type:String,default:void 0},decrementIcon:{type:String,default:void 0},numberOfMonths:{type:Number,default:1},responsiveOptions:Array,view:{type:String,default:"date"},touchUI:{type:Boolean,default:!1},monthNavigator:{type:Boolean,default:!1},yearNavigator:{type:Boolean,default:!1},yearRange:{type:String,default:null},minDate:{type:Date,value:null},maxDate:{type:Date,value:null},disabledDates:{type:Array,value:null},disabledDays:{type:Array,value:null},maxDateCount:{type:Number,value:null},showOnFocus:{type:Boolean,default:!0},autoZIndex:{type:Boolean,default:!0},baseZIndex:{type:Number,default:0},showButtonBar:{type:Boolean,default:!1},shortYearCutoff:{type:String,default:"+10"},showTime:{type:Boolean,default:!1},timeOnly:{type:Boolean,default:!1},hourFormat:{type:String,default:"24"},stepHour:{type:Number,default:1},stepMinute:{type:Number,default:1},stepSecond:{type:Number,default:1},showSeconds:{type:Boolean,default:!1},hideOnDateTimeSelect:{type:Boolean,default:!1},hideOnRangeSelection:{type:Boolean,default:!1},timeSeparator:{type:String,default:":"},showWeek:{type:Boolean,default:!1},manualInput:{type:Boolean,default:!0},appendTo:{type:String,default:"body"},disabled:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},placeholder:{type:String,default:null},id:{type:String,default:null},inputId:{type:String,default:null},inputClass:{type:[String,Object],default:null},inputStyle:{type:Object,default:null},inputProps:{type:null,default:null},panelClass:{type:[String,Object],default:null},panelStyle:{type:Object,default:null},panelProps:{type:null,default:null},"aria-labelledby":{type:String,default:null},"aria-label":{type:String,default:null}},style:Cv,provide:function(){return{$parentInstance:this}}};function la(t){"@babel/helpers - typeof";return la=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},la(t)}function Ao(t){return Pv(t)||Ov(t)||zc(t)||Sv()}function Sv(){throw new TypeError(`Invalid attempt to spread non-iterable instance. In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Ov(t){if(typeof Symbol<"u"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function Pv(t){if(Array.isArray(t))return sa(t)}function Mo(t,e){var n=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(!n){if(Array.isArray(t)||(n=zc(t))||e&&t&&typeof t.length=="number"){n&&(t=n);var r=0,o=function(){};return{s:o,n:function(){return r>=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(s){throw s},f:o}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var i=!0,a=!1,l;return{s:function(){n=n.call(t)},n:function(){var s=n.next();return i=s.done,s},e:function(s){a=!0,l=s},f:function(){try{!i&&n.return!=null&&n.return()}finally{if(a)throw l}}}}function zc(t,e){if(t){if(typeof t=="string")return sa(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return sa(t,e)}}function sa(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n=i.getTime()}return o},getFirstDayOfMonthIndex:function(e,n){var r=new Date;r.setDate(1),r.setMonth(e),r.setFullYear(n);var o=r.getDay()+this.sundayIndex;return o>=7?o-7:o},getDaysCountInMonth:function(e,n){return 32-this.daylightSavingAdjust(new Date(n,e,32)).getDate()},getDaysCountInPrevMonth:function(e,n){var r=this.getPreviousMonthAndYear(e,n);return this.getDaysCountInMonth(r.month,r.year)},getPreviousMonthAndYear:function(e,n){var r,o;return e===0?(r=11,o=n-1):(r=e-1,o=n),{month:r,year:o}},getNextMonthAndYear:function(e,n){var r,o;return e===11?(r=0,o=n+1):(r=e+1,o=n),{month:r,year:o}},daylightSavingAdjust:function(e){return e?(e.setHours(e.getHours()>12?e.getHours()+2:0),e):null},isToday:function(e,n,r,o){return e.getDate()===n&&e.getMonth()===r&&e.getFullYear()===o},isSelectable:function(e,n,r,o){var i=!0,a=!0,l=!0,u=!0;return o&&!this.selectOtherMonths?!1:(this.minDate&&(this.minDate.getFullYear()>r||this.minDate.getFullYear()===r&&(this.minDate.getMonth()>n||this.minDate.getMonth()===n&&this.minDate.getDate()>e))&&(i=!1),this.maxDate&&(this.maxDate.getFullYear()11,n>=12?n=n==12?12:n-12:n=n==0?12:n),this.currentHour=Math.floor(n/this.stepHour)*this.stepHour,this.currentMinute=Math.floor(e.getMinutes()/this.stepMinute)*this.stepMinute,this.currentSecond=Math.floor(e.getSeconds()/this.stepSecond)*this.stepSecond},bindOutsideClickListener:function(){var e=this;this.outsideClickListener||(this.outsideClickListener=function(n){e.overlayVisible&&e.isOutsideClicked(n)&&(e.overlayVisible=!1)},document.addEventListener("mousedown",this.outsideClickListener))},unbindOutsideClickListener:function(){this.outsideClickListener&&(document.removeEventListener("mousedown",this.outsideClickListener),this.outsideClickListener=null)},bindScrollListener:function(){var e=this;this.scrollHandler||(this.scrollHandler=new pi(this.$refs.container,function(){e.overlayVisible&&(e.overlayVisible=!1)})),this.scrollHandler.bindScrollListener()},unbindScrollListener:function(){this.scrollHandler&&this.scrollHandler.unbindScrollListener()},bindResizeListener:function(){var e=this;this.resizeListener||(this.resizeListener=function(){e.overlayVisible&&!C.isTouchDevice()&&(e.overlayVisible=!1)},window.addEventListener("resize",this.resizeListener))},unbindResizeListener:function(){this.resizeListener&&(window.removeEventListener("resize",this.resizeListener),this.resizeListener=null)},isOutsideClicked:function(e){return!(this.$el.isSameNode(e.target)||this.isNavIconClicked(e)||this.$el.contains(e.target)||this.overlay&&this.overlay.contains(e.target))},isNavIconClicked:function(e){return this.previousButton&&(this.previousButton.isSameNode(e.target)||this.previousButton.contains(e.target))||this.nextButton&&(this.nextButton.isSameNode(e.target)||this.nextButton.contains(e.target))},alignOverlay:function(){this.touchUI?this.enableModality():this.overlay&&(this.appendTo==="self"||this.inline?C.relativePosition(this.overlay,this.$el):(this.view==="date"?(this.overlay.style.width=C.getOuterWidth(this.overlay)+"px",this.overlay.style.minWidth=C.getOuterWidth(this.$el)+"px"):this.overlay.style.width=C.getOuterWidth(this.$el)+"px",C.absolutePosition(this.overlay,this.$el)))},onButtonClick:function(){this.isEnabled()&&(this.overlayVisible?this.overlayVisible=!1:(this.input.focus(),this.overlayVisible=!0))},isDateDisabled:function(e,n,r){if(this.disabledDates){var o=Mo(this.disabledDates),i;try{for(o.s();!(i=o.n()).done;){var a=i.value;if(a.getFullYear()===r&&a.getMonth()===n&&a.getDate()===e)return!0}}catch(l){o.e(l)}finally{o.f()}}return!1},isDayDisabled:function(e,n,r){if(this.disabledDays){var o=new Date(r,n,e),i=o.getDay();return this.disabledDays.indexOf(i)!==-1}return!1},onMonthDropdownChange:function(e){this.currentMonth=parseInt(e),this.$emit("month-change",{month:this.currentMonth+1,year:this.currentYear})},onYearDropdownChange:function(e){this.currentYear=parseInt(e),this.$emit("year-change",{month:this.currentMonth+1,year:this.currentYear})},onDateSelect:function(e,n){var r=this;if(!(this.disabled||!n.selectable)){if(C.find(this.overlay,'table td span:not([data-p-disabled="true"])').forEach(function(i){return i.tabIndex=-1}),e&&e.currentTarget.focus(),this.isMultipleSelection()&&this.isSelected(n)){var o=this.modelValue.filter(function(i){return!r.isDateEquals(i,n)});this.updateModel(o)}else this.shouldSelectDate(n)&&(n.otherMonth?(this.currentMonth=n.month,this.currentYear=n.year,this.selectDate(n)):this.selectDate(n));this.isSingleSelection()&&(!this.showTime||this.hideOnDateTimeSelect)&&setTimeout(function(){r.input&&r.input.focus(),r.overlayVisible=!1},150)}},selectDate:function(e){var n=this,r=new Date(e.year,e.month,e.day);this.showTime&&(this.hourFormat==="12"&&this.pm&&this.currentHour!=12?r.setHours(this.currentHour+12):r.setHours(this.currentHour),r.setMinutes(this.currentMinute),r.setSeconds(this.currentSecond)),this.minDate&&this.minDate>r&&(r=this.minDate,this.currentHour=r.getHours(),this.currentMinute=r.getMinutes(),this.currentSecond=r.getSeconds()),this.maxDate&&this.maxDate=i.getTime()?a=r:(i=r,a=null),o=[i,a]}else o=[r,null];o!==null&&this.updateModel(o),this.isRangeSelection()&&this.hideOnRangeSelection&&o[1]!==null&&setTimeout(function(){n.overlayVisible=!1},150),this.$emit("date-select",r)},updateModel:function(e){this.$emit("update:modelValue",e)},shouldSelectDate:function(){return this.isMultipleSelection()&&this.maxDateCount!=null?this.maxDateCount>(this.modelValue?this.modelValue.length:0):!0},isSingleSelection:function(){return this.selectionMode==="single"},isRangeSelection:function(){return this.selectionMode==="range"},isMultipleSelection:function(){return this.selectionMode==="multiple"},formatValue:function(e){if(typeof e=="string")return e;var n="";if(e)try{if(this.isSingleSelection())n=this.formatDateTime(e);else if(this.isMultipleSelection())for(var r=0;r11&&r!==12&&(r-=12),this.hourFormat==="12"?n+=r===0?12:r<10?"0"+r:r:n+=r<10?"0"+r:r,n+=":",n+=o<10?"0"+o:o,this.showSeconds&&(n+=":",n+=i<10?"0"+i:i),this.hourFormat==="12"&&(n+=e.getHours()>11?" ".concat(this.$primevue.config.locale.pm):" ".concat(this.$primevue.config.locale.am)),n},onTodayButtonClick:function(e){var n=new Date,r={day:n.getDate(),month:n.getMonth(),year:n.getFullYear(),otherMonth:n.getMonth()!==this.currentMonth||n.getFullYear()!==this.currentYear,today:!0,selectable:!0};this.onDateSelect(null,r),this.$emit("today-click",n),e.preventDefault()},onClearButtonClick:function(e){this.updateModel(null),this.overlayVisible=!1,this.$emit("clear-click",e),e.preventDefault()},onTimePickerElementMouseDown:function(e,n,r){this.isEnabled()&&(this.repeat(e,null,n,r),e.preventDefault())},onTimePickerElementMouseUp:function(e){this.isEnabled()&&(this.clearTimePickerTimer(),this.updateModelTime(),e.preventDefault())},onTimePickerElementMouseLeave:function(){this.clearTimePickerTimer()},repeat:function(e,n,r,o){var i=this,a=n||500;switch(this.clearTimePickerTimer(),this.timePickerTimer=setTimeout(function(){i.repeat(e,100,r,o)},a),r){case 0:o===1?this.incrementHour(e):this.decrementHour(e);break;case 1:o===1?this.incrementMinute(e):this.decrementMinute(e);break;case 2:o===1?this.incrementSecond(e):this.decrementSecond(e);break}},convertTo24Hour:function(e,n){return this.hourFormat=="12"?e===12?n?12:0:n?e+12:e:e},validateTime:function(e,n,r,o){var i=this.isComparable()?this.modelValue:this.viewDate,a=this.convertTo24Hour(e,o);this.isRangeSelection()&&(i=this.modelValue[1]||this.modelValue[0]),this.isMultipleSelection()&&(i=this.modelValue[this.modelValue.length-1]);var l=i?i.toDateString():null;return!(this.minDate&&l&&this.minDate.toDateString()===l&&(this.minDate.getHours()>a||this.minDate.getHours()===a&&(this.minDate.getMinutes()>n||this.minDate.getMinutes()===n&&this.minDate.getSeconds()>r))||this.maxDate&&l&&this.maxDate.toDateString()===l&&(this.maxDate.getHours()=24?r-24:r:this.hourFormat=="12"&&(n<12&&r>11&&(o=!this.pm),r=r>=13?r-12:r),this.validateTime(r,this.currentMinute,this.currentSecond,o)&&(this.currentHour=r,this.pm=o),e.preventDefault()},decrementHour:function(e){var n=this.currentHour-this.stepHour,r=this.pm;this.hourFormat=="24"?n=n<0?24+n:n:this.hourFormat=="12"&&(this.currentHour===12&&(r=!this.pm),n=n<=0?12+n:n),this.validateTime(n,this.currentMinute,this.currentSecond,r)&&(this.currentHour=n,this.pm=r),e.preventDefault()},incrementMinute:function(e){var n=this.currentMinute+Number(this.stepMinute);this.validateTime(this.currentHour,n,this.currentSecond,this.pm)&&(this.currentMinute=n>59?n-60:n),e.preventDefault()},decrementMinute:function(e){var n=this.currentMinute-this.stepMinute;n=n<0?60+n:n,this.validateTime(this.currentHour,n,this.currentSecond,this.pm)&&(this.currentMinute=n),e.preventDefault()},incrementSecond:function(e){var n=this.currentSecond+Number(this.stepSecond);this.validateTime(this.currentHour,this.currentMinute,n,this.pm)&&(this.currentSecond=n>59?n-60:n),e.preventDefault()},decrementSecond:function(e){var n=this.currentSecond-this.stepSecond;n=n<0?60+n:n,this.validateTime(this.currentHour,this.currentMinute,n,this.pm)&&(this.currentSecond=n),e.preventDefault()},updateModelTime:function(){var e=this;this.timePickerChange=!0;var n=this.isComparable()?this.modelValue:this.viewDate;this.isRangeSelection()&&(n=this.modelValue[1]||this.modelValue[0]),this.isMultipleSelection()&&(n=this.modelValue[this.modelValue.length-1]),n=n?new Date(n.getTime()):new Date,this.hourFormat=="12"?this.currentHour===12?n.setHours(this.pm?12:0):n.setHours(this.pm?this.currentHour+12:this.currentHour):n.setHours(this.currentHour),n.setMinutes(this.currentMinute),n.setSeconds(this.currentSecond),this.isRangeSelection()&&(this.modelValue[1]?n=[this.modelValue[0],n]:n=[n,null]),this.isMultipleSelection()&&(n=[].concat(Ao(this.modelValue.slice(0,-1)),[n])),this.updateModel(n),this.$emit("date-select",n),setTimeout(function(){return e.timePickerChange=!1},0)},toggleAMPM:function(e){var n=this.validateTime(this.currentHour,this.currentMinute,this.currentSecond,!this.pm);!n&&(this.maxDate||this.minDate)||(this.pm=!this.pm,this.updateModelTime(),e.preventDefault())},clearTimePickerTimer:function(){this.timePickerTimer&&clearInterval(this.timePickerTimer)},onMonthSelect:function(e,n){n.month;var r=n.index;this.view==="month"?this.onDateSelect(e,{year:this.currentYear,month:r,day:1,selectable:!0}):(this.currentMonth=r,this.currentView="date",this.$emit("month-change",{month:this.currentMonth+1,year:this.currentYear})),setTimeout(this.updateFocus,0)},onYearSelect:function(e,n){this.view==="year"?this.onDateSelect(e,{year:n.value,month:0,day:1,selectable:!0}):(this.currentYear=n.value,this.currentView="month",this.$emit("year-change",{month:this.currentMonth+1,year:this.currentYear})),setTimeout(this.updateFocus,0)},enableModality:function(){var e=this;this.mask||(this.mask=document.createElement("div"),this.mask.style.zIndex=String(parseInt(this.overlay.style.zIndex,10)-1),this.mask.setAttribute("data-pc-section","datepicker-mask"),!this.isUnstyled&&C.addMultipleClasses(this.mask,"p-datepicker-mask p-datepicker-mask-scrollblocker p-component-overlay p-component-overlay-enter"),this.maskClickListener=function(){e.overlayVisible=!1},this.mask.addEventListener("click",this.maskClickListener),document.body.appendChild(this.mask),C.blockBodyScroll())},disableModality:function(){var e=this;this.mask&&(this.isUnstyled?this.destroyMask():(C.addClass(this.mask,"p-component-overlay-leave"),this.mask.addEventListener("animationend",function(){e.destroyMask()})))},destroyMask:function(){this.mask.removeEventListener("click",this.maskClickListener),this.maskClickListener=null,document.body.removeChild(this.mask),this.mask=null;for(var e=document.body.children,n,r=0;r1&&e[1]>e[0]),r},parseValue:function(e){if(!e||e.trim().length===0)return null;var n;if(this.isSingleSelection())n=this.parseDateTime(e);else if(this.isMultipleSelection()){var r=e.split(",");n=[];var o=Mo(r),i;try{for(o.s();!(i=o.n()).done;){var a=i.value;n.push(this.parseDateTime(a.trim()))}}catch(s){o.e(s)}finally{o.f()}}else if(this.isRangeSelection()){var l=e.split(" - ");n=[];for(var u=0;u23||a>59||this.hourFormat=="12"&&i>12||this.showSeconds&&(isNaN(l)||l>59))throw"Invalid time";return this.hourFormat=="12"&&i!==12&&this.pm?i+=12:this.hourFormat=="12"&&i==12&&!this.pm&&(i=0),{hour:i,minute:a,second:l}},parseDate:function(e,n){if(n==null||e==null)throw"Invalid arguments";if(e=la(e)==="object"?e.toString():e+"",e==="")return null;var r,o,i,a=0,l=typeof this.shortYearCutoff!="string"?this.shortYearCutoff:new Date().getFullYear()%100+parseInt(this.shortYearCutoff,10),u=-1,s=-1,c=-1,d=-1,m=!1,f,y=function(V){var T=r+1-1){s=1,c=d;do{if(o=this.getDaysCountInMonth(u,s-1),c<=o)break;s++,c-=o}while(!0)}if(f=this.daylightSavingAdjust(new Date(u,s-1,c)),f.getFullYear()!==u||f.getMonth()+1!==s||f.getDate()!==c)throw"Invalid date";return f},getWeekNumber:function(e){var n=new Date(e.getTime());n.setDate(n.getDate()+4-(n.getDay()||7));var r=n.getTime();return n.setMonth(0),n.setDate(1),Math.floor(Math.round((r-n.getTime())/864e5)/7)+1},onDateCellKeydown:function(e,n,r){var o=e.currentTarget,i=o.parentElement,a=C.index(i);switch(e.code){case"ArrowDown":{o.tabIndex="-1";var l=i.parentElement.nextElementSibling;if(l){var u=C.index(i.parentElement),s=Array.from(i.parentElement.parentElement.children),c=s.slice(u+1),d=c.find(function(_e){var he=_e.children[a].children[0];return!C.getAttribute(he,"data-p-disabled")});if(d){var m=d.children[a].children[0];m.tabIndex="0",m.focus()}else this.navigationState={backward:!1},this.navForward(e)}else this.navigationState={backward:!1},this.navForward(e);e.preventDefault();break}case"ArrowUp":{if(o.tabIndex="-1",e.altKey)this.overlayVisible=!1,this.focused=!0;else{var f=i.parentElement.previousElementSibling;if(f){var y=C.index(i.parentElement),b=Array.from(i.parentElement.parentElement.children),S=b.slice(0,y).reverse(),_=S.find(function(_e){var he=_e.children[a].children[0];return!C.getAttribute(he,"data-p-disabled")});if(_){var I=_.children[a].children[0];I.tabIndex="0",I.focus()}else this.navigationState={backward:!0},this.navBackward(e)}else this.navigationState={backward:!0},this.navBackward(e)}e.preventDefault();break}case"ArrowLeft":{o.tabIndex="-1";var V=i.previousElementSibling;if(V){var T=Array.from(i.parentElement.children),L=T.slice(0,a).reverse(),ae=L.find(function(_e){var he=_e.children[0];return!C.getAttribute(he,"data-p-disabled")});if(ae){var le=ae.children[0];le.tabIndex="0",le.focus()}else this.navigateToMonth(e,!0,r)}else this.navigateToMonth(e,!0,r);e.preventDefault();break}case"ArrowRight":{o.tabIndex="-1";var A=i.nextElementSibling;if(A){var te=Array.from(i.parentElement.children),se=te.slice(a+1),pe=se.find(function(_e){var he=_e.children[0];return!C.getAttribute(he,"data-p-disabled")});if(pe){var F=pe.children[0];F.tabIndex="0",F.focus()}else this.navigateToMonth(e,!1,r)}else this.navigateToMonth(e,!1,r);e.preventDefault();break}case"Enter":case"Space":{this.onDateSelect(e,n),e.preventDefault();break}case"Escape":{this.overlayVisible=!1,e.preventDefault();break}case"Tab":{this.inline||this.trapFocus(e);break}case"Home":{o.tabIndex="-1";var D=i.parentElement,Y=D.children[0].children[0];C.getAttribute(Y,"data-p-disabled")?this.navigateToMonth(e,!0,r):(Y.tabIndex="0",Y.focus()),e.preventDefault();break}case"End":{o.tabIndex="-1";var ve=i.parentElement,ce=ve.children[ve.children.length-1].children[0];C.getAttribute(ce,"data-p-disabled")?this.navigateToMonth(e,!1,r):(ce.tabIndex="0",ce.focus()),e.preventDefault();break}case"PageUp":{o.tabIndex="-1",e.shiftKey?(this.navigationState={backward:!0},this.navBackward(e)):this.navigateToMonth(e,!0,r),e.preventDefault();break}case"PageDown":{o.tabIndex="-1",e.shiftKey?(this.navigationState={backward:!1},this.navForward(e)):this.navigateToMonth(e,!1,r),e.preventDefault();break}}},navigateToMonth:function(e,n,r){if(n)if(this.numberOfMonths===1||r===0)this.navigationState={backward:!0},this.navBackward(e);else{var o=this.overlay.children[r-1],i=C.find(o,'table td span:not([data-p-disabled="true"]):not([data-p-ink="true"])'),a=i[i.length-1];a.tabIndex="0",a.focus()}else if(this.numberOfMonths===1||r===this.numberOfMonths-1)this.navigationState={backward:!1},this.navForward(e);else{var l=this.overlay.children[r+1],u=C.findSingle(l,'table td span:not([data-p-disabled="true"]):not([data-p-ink="true"])');u.tabIndex="0",u.focus()}},onMonthCellKeydown:function(e,n){var r=e.currentTarget;switch(e.code){case"ArrowUp":case"ArrowDown":{r.tabIndex="-1";var o=r.parentElement.children,i=C.index(r),a=o[e.code==="ArrowDown"?i+3:i-3];a&&(a.tabIndex="0",a.focus()),e.preventDefault();break}case"ArrowLeft":{r.tabIndex="-1";var l=r.previousElementSibling;l?(l.tabIndex="0",l.focus()):(this.navigationState={backward:!0},this.navBackward(e)),e.preventDefault();break}case"ArrowRight":{r.tabIndex="-1";var u=r.nextElementSibling;u?(u.tabIndex="0",u.focus()):(this.navigationState={backward:!1},this.navForward(e)),e.preventDefault();break}case"PageUp":{if(e.shiftKey)return;this.navigationState={backward:!0},this.navBackward(e);break}case"PageDown":{if(e.shiftKey)return;this.navigationState={backward:!1},this.navForward(e);break}case"Enter":case"Space":{this.onMonthSelect(e,n),e.preventDefault();break}case"Escape":{this.overlayVisible=!1,e.preventDefault();break}case"Tab":{this.trapFocus(e);break}}},onYearCellKeydown:function(e,n){var r=e.currentTarget;switch(e.code){case"ArrowUp":case"ArrowDown":{r.tabIndex="-1";var o=r.parentElement.children,i=C.index(r),a=o[e.code==="ArrowDown"?i+2:i-2];a&&(a.tabIndex="0",a.focus()),e.preventDefault();break}case"ArrowLeft":{r.tabIndex="-1";var l=r.previousElementSibling;l?(l.tabIndex="0",l.focus()):(this.navigationState={backward:!0},this.navBackward(e)),e.preventDefault();break}case"ArrowRight":{r.tabIndex="-1";var u=r.nextElementSibling;u?(u.tabIndex="0",u.focus()):(this.navigationState={backward:!1},this.navForward(e)),e.preventDefault();break}case"PageUp":{if(e.shiftKey)return;this.navigationState={backward:!0},this.navBackward(e);break}case"PageDown":{if(e.shiftKey)return;this.navigationState={backward:!1},this.navForward(e);break}case"Enter":case"Space":{this.onYearSelect(e,n),e.preventDefault();break}case"Escape":{this.overlayVisible=!1,e.preventDefault();break}case"Tab":{this.trapFocus(e);break}}},updateFocus:function(){var e;if(this.navigationState){if(this.navigationState.button)this.initFocusableCell(),this.navigationState.backward?this.previousButton.focus():this.nextButton.focus();else{if(this.navigationState.backward){var n;this.currentView==="month"?n=C.find(this.overlay,'[data-pc-section="monthpicker"] [data-pc-section="month"]:not([data-p-disabled="true"])'):this.currentView==="year"?n=C.find(this.overlay,'[data-pc-section="yearpicker"] [data-pc-section="year"]:not([data-p-disabled="true"])'):n=C.find(this.overlay,'table td span:not([data-p-disabled="true"]):not([data-p-ink="true"])'),n&&n.length>0&&(e=n[n.length-1])}else this.currentView==="month"?e=C.findSingle(this.overlay,'[data-pc-section="monthpicker"] [data-pc-section="month"]:not([data-p-disabled="true"])'):this.currentView==="year"?e=C.findSingle(this.overlay,'[data-pc-section="yearpicker"] [data-pc-section="year"]:not([data-p-disabled="true"])'):e=C.findSingle(this.overlay,'table td span:not([data-p-disabled="true"]):not([data-p-ink="true"])');e&&(e.tabIndex="0",e.focus())}this.navigationState=null}else this.initFocusableCell()},initFocusableCell:function(){var e;if(this.currentView==="month"){var n=C.find(this.overlay,'[data-pc-section="monthpicker"] [data-pc-section="month"]'),r=C.findSingle(this.overlay,'[data-pc-section="monthpicker"] [data-pc-section="month"][data-p-highlight="true"]');n.forEach(function(l){return l.tabIndex=-1}),e=r||n[0]}else if(this.currentView==="year"){var o=C.find(this.overlay,'[data-pc-section="yearpicker"] [data-pc-section="year"]'),i=C.findSingle(this.overlay,'[data-pc-section="yearpicker"] [data-pc-section="year"][data-p-highlight="true"]');o.forEach(function(l){return l.tabIndex=-1}),e=i||o[0]}else if(e=C.findSingle(this.overlay,'span[data-p-highlight="true"]'),!e){var a=C.findSingle(this.overlay,'td.p-datepicker-today span:not([data-p-disabled="true"]):not([data-p-ink="true"])');a?e=a:e=C.findSingle(this.overlay,'.p-datepicker-calendar td span:not([data-p-disabled="true"]):not([data-p-ink="true"])')}e&&(e.tabIndex="0",!this.inline&&(!this.navigationState||!this.navigationState.button)&&!this.timePickerChange&&(this.manualInput||e.focus()),this.preventFocus=!1)},trapFocus:function(e){e.preventDefault();var n=C.getFocusableElements(this.overlay);if(n&&n.length>0)if(!document.activeElement)n[0].focus();else{var r=n.indexOf(document.activeElement);if(e.shiftKey)r===-1||r===0?n[n.length-1].focus():n[r-1].focus();else if(r===-1)if(this.timeOnly)n[0].focus();else{for(var o=null,i=0;i1&&this.responsiveOptions&&!this.isUnstyled){if(!this.responsiveStyleElement){var e;this.responsiveStyleElement=document.createElement("style"),this.responsiveStyleElement.type="text/css",C.setAttribute(this.responsiveStyleElement,"nonce",(e=this.$primevue)===null||e===void 0||(e=e.config)===null||e===void 0||(e=e.csp)===null||e===void 0?void 0:e.nonce),document.body.appendChild(this.responsiveStyleElement)}var n="";if(this.responsiveOptions)for(var r=ObjectUtils.localeComparator(),o=Ao(this.responsiveOptions).filter(function(d){return!!(d.breakpoint&&d.numMonths)}).sort(function(d,m){return-1*r(d.breakpoint,m.breakpoint)}),i=0;it.length)&&(e=t.length);for(var n=0,r=new Array(e);n=i.getTime()}return o},getFirstDayOfMonthIndex:function(e,n){var r=new Date;r.setDate(1),r.setMonth(e),r.setFullYear(n);var o=r.getDay()+this.sundayIndex;return o>=7?o-7:o},getDaysCountInMonth:function(e,n){return 32-this.daylightSavingAdjust(new Date(n,e,32)).getDate()},getDaysCountInPrevMonth:function(e,n){var r=this.getPreviousMonthAndYear(e,n);return this.getDaysCountInMonth(r.month,r.year)},getPreviousMonthAndYear:function(e,n){var r,o;return e===0?(r=11,o=n-1):(r=e-1,o=n),{month:r,year:o}},getNextMonthAndYear:function(e,n){var r,o;return e===11?(r=0,o=n+1):(r=e+1,o=n),{month:r,year:o}},daylightSavingAdjust:function(e){return e?(e.setHours(e.getHours()>12?e.getHours()+2:0),e):null},isToday:function(e,n,r,o){return e.getDate()===n&&e.getMonth()===r&&e.getFullYear()===o},isSelectable:function(e,n,r,o){var i=!0,a=!0,l=!0,u=!0;return o&&!this.selectOtherMonths?!1:(this.minDate&&(this.minDate.getFullYear()>r||this.minDate.getFullYear()===r&&(this.minDate.getMonth()>n||this.minDate.getMonth()===n&&this.minDate.getDate()>e))&&(i=!1),this.maxDate&&(this.maxDate.getFullYear()11,n>=12?n=n==12?12:n-12:n=n==0?12:n),this.currentHour=Math.floor(n/this.stepHour)*this.stepHour,this.currentMinute=Math.floor(e.getMinutes()/this.stepMinute)*this.stepMinute,this.currentSecond=Math.floor(e.getSeconds()/this.stepSecond)*this.stepSecond},bindOutsideClickListener:function(){var e=this;this.outsideClickListener||(this.outsideClickListener=function(n){e.overlayVisible&&e.isOutsideClicked(n)&&(e.overlayVisible=!1)},document.addEventListener("mousedown",this.outsideClickListener))},unbindOutsideClickListener:function(){this.outsideClickListener&&(document.removeEventListener("mousedown",this.outsideClickListener),this.outsideClickListener=null)},bindScrollListener:function(){var e=this;this.scrollHandler||(this.scrollHandler=new pi(this.$refs.container,function(){e.overlayVisible&&(e.overlayVisible=!1)})),this.scrollHandler.bindScrollListener()},unbindScrollListener:function(){this.scrollHandler&&this.scrollHandler.unbindScrollListener()},bindResizeListener:function(){var e=this;this.resizeListener||(this.resizeListener=function(){e.overlayVisible&&!C.isTouchDevice()&&(e.overlayVisible=!1)},window.addEventListener("resize",this.resizeListener))},unbindResizeListener:function(){this.resizeListener&&(window.removeEventListener("resize",this.resizeListener),this.resizeListener=null)},isOutsideClicked:function(e){return!(this.$el.isSameNode(e.target)||this.isNavIconClicked(e)||this.$el.contains(e.target)||this.overlay&&this.overlay.contains(e.target))},isNavIconClicked:function(e){return this.previousButton&&(this.previousButton.isSameNode(e.target)||this.previousButton.contains(e.target))||this.nextButton&&(this.nextButton.isSameNode(e.target)||this.nextButton.contains(e.target))},alignOverlay:function(){this.touchUI?this.enableModality():this.overlay&&(this.appendTo==="self"||this.inline?C.relativePosition(this.overlay,this.$el):(this.view==="date"?(this.overlay.style.width=C.getOuterWidth(this.overlay)+"px",this.overlay.style.minWidth=C.getOuterWidth(this.$el)+"px"):this.overlay.style.width=C.getOuterWidth(this.$el)+"px",C.absolutePosition(this.overlay,this.$el)))},onButtonClick:function(){this.isEnabled()&&(this.overlayVisible?this.overlayVisible=!1:(this.input.focus(),this.overlayVisible=!0))},isDateDisabled:function(e,n,r){if(this.disabledDates){var o=Mo(this.disabledDates),i;try{for(o.s();!(i=o.n()).done;){var a=i.value;if(a.getFullYear()===r&&a.getMonth()===n&&a.getDate()===e)return!0}}catch(l){o.e(l)}finally{o.f()}}return!1},isDayDisabled:function(e,n,r){if(this.disabledDays){var o=new Date(r,n,e),i=o.getDay();return this.disabledDays.indexOf(i)!==-1}return!1},onMonthDropdownChange:function(e){this.currentMonth=parseInt(e),this.$emit("month-change",{month:this.currentMonth+1,year:this.currentYear})},onYearDropdownChange:function(e){this.currentYear=parseInt(e),this.$emit("year-change",{month:this.currentMonth+1,year:this.currentYear})},onDateSelect:function(e,n){var r=this;if(!(this.disabled||!n.selectable)){if(C.find(this.overlay,'table td span:not([data-p-disabled="true"])').forEach(function(i){return i.tabIndex=-1}),e&&e.currentTarget.focus(),this.isMultipleSelection()&&this.isSelected(n)){var o=this.modelValue.filter(function(i){return!r.isDateEquals(i,n)});this.updateModel(o)}else this.shouldSelectDate(n)&&(n.otherMonth?(this.currentMonth=n.month,this.currentYear=n.year,this.selectDate(n)):this.selectDate(n));this.isSingleSelection()&&(!this.showTime||this.hideOnDateTimeSelect)&&setTimeout(function(){r.input&&r.input.focus(),r.overlayVisible=!1},150)}},selectDate:function(e){var n=this,r=new Date(e.year,e.month,e.day);this.showTime&&(this.hourFormat==="12"&&this.pm&&this.currentHour!=12?r.setHours(this.currentHour+12):r.setHours(this.currentHour),r.setMinutes(this.currentMinute),r.setSeconds(this.currentSecond)),this.minDate&&this.minDate>r&&(r=this.minDate,this.currentHour=r.getHours(),this.currentMinute=r.getMinutes(),this.currentSecond=r.getSeconds()),this.maxDate&&this.maxDate=i.getTime()?a=r:(i=r,a=null),o=[i,a]}else o=[r,null];o!==null&&this.updateModel(o),this.isRangeSelection()&&this.hideOnRangeSelection&&o[1]!==null&&setTimeout(function(){n.overlayVisible=!1},150),this.$emit("date-select",r)},updateModel:function(e){this.$emit("update:modelValue",e)},shouldSelectDate:function(){return this.isMultipleSelection()&&this.maxDateCount!=null?this.maxDateCount>(this.modelValue?this.modelValue.length:0):!0},isSingleSelection:function(){return this.selectionMode==="single"},isRangeSelection:function(){return this.selectionMode==="range"},isMultipleSelection:function(){return this.selectionMode==="multiple"},formatValue:function(e){if(typeof e=="string")return e;var n="";if(e)try{if(this.isSingleSelection())n=this.formatDateTime(e);else if(this.isMultipleSelection())for(var r=0;r11&&r!==12&&(r-=12),this.hourFormat==="12"?n+=r===0?12:r<10?"0"+r:r:n+=r<10?"0"+r:r,n+=":",n+=o<10?"0"+o:o,this.showSeconds&&(n+=":",n+=i<10?"0"+i:i),this.hourFormat==="12"&&(n+=e.getHours()>11?" ".concat(this.$primevue.config.locale.pm):" ".concat(this.$primevue.config.locale.am)),n},onTodayButtonClick:function(e){var n=new Date,r={day:n.getDate(),month:n.getMonth(),year:n.getFullYear(),otherMonth:n.getMonth()!==this.currentMonth||n.getFullYear()!==this.currentYear,today:!0,selectable:!0};this.onDateSelect(null,r),this.$emit("today-click",n),e.preventDefault()},onClearButtonClick:function(e){this.updateModel(null),this.overlayVisible=!1,this.$emit("clear-click",e),e.preventDefault()},onTimePickerElementMouseDown:function(e,n,r){this.isEnabled()&&(this.repeat(e,null,n,r),e.preventDefault())},onTimePickerElementMouseUp:function(e){this.isEnabled()&&(this.clearTimePickerTimer(),this.updateModelTime(),e.preventDefault())},onTimePickerElementMouseLeave:function(){this.clearTimePickerTimer()},repeat:function(e,n,r,o){var i=this,a=n||500;switch(this.clearTimePickerTimer(),this.timePickerTimer=setTimeout(function(){i.repeat(e,100,r,o)},a),r){case 0:o===1?this.incrementHour(e):this.decrementHour(e);break;case 1:o===1?this.incrementMinute(e):this.decrementMinute(e);break;case 2:o===1?this.incrementSecond(e):this.decrementSecond(e);break}},convertTo24Hour:function(e,n){return this.hourFormat=="12"?e===12?n?12:0:n?e+12:e:e},validateTime:function(e,n,r,o){var i=this.isComparable()?this.modelValue:this.viewDate,a=this.convertTo24Hour(e,o);this.isRangeSelection()&&(i=this.modelValue[1]||this.modelValue[0]),this.isMultipleSelection()&&(i=this.modelValue[this.modelValue.length-1]);var l=i?i.toDateString():null;return!(this.minDate&&l&&this.minDate.toDateString()===l&&(this.minDate.getHours()>a||this.minDate.getHours()===a&&(this.minDate.getMinutes()>n||this.minDate.getMinutes()===n&&this.minDate.getSeconds()>r))||this.maxDate&&l&&this.maxDate.toDateString()===l&&(this.maxDate.getHours()=24?r-24:r:this.hourFormat=="12"&&(n<12&&r>11&&(o=!this.pm),r=r>=13?r-12:r),this.validateTime(r,this.currentMinute,this.currentSecond,o)&&(this.currentHour=r,this.pm=o),e.preventDefault()},decrementHour:function(e){var n=this.currentHour-this.stepHour,r=this.pm;this.hourFormat=="24"?n=n<0?24+n:n:this.hourFormat=="12"&&(this.currentHour===12&&(r=!this.pm),n=n<=0?12+n:n),this.validateTime(n,this.currentMinute,this.currentSecond,r)&&(this.currentHour=n,this.pm=r),e.preventDefault()},incrementMinute:function(e){var n=this.currentMinute+Number(this.stepMinute);this.validateTime(this.currentHour,n,this.currentSecond,this.pm)&&(this.currentMinute=n>59?n-60:n),e.preventDefault()},decrementMinute:function(e){var n=this.currentMinute-this.stepMinute;n=n<0?60+n:n,this.validateTime(this.currentHour,n,this.currentSecond,this.pm)&&(this.currentMinute=n),e.preventDefault()},incrementSecond:function(e){var n=this.currentSecond+Number(this.stepSecond);this.validateTime(this.currentHour,this.currentMinute,n,this.pm)&&(this.currentSecond=n>59?n-60:n),e.preventDefault()},decrementSecond:function(e){var n=this.currentSecond-this.stepSecond;n=n<0?60+n:n,this.validateTime(this.currentHour,this.currentMinute,n,this.pm)&&(this.currentSecond=n),e.preventDefault()},updateModelTime:function(){var e=this;this.timePickerChange=!0;var n=this.isComparable()?this.modelValue:this.viewDate;this.isRangeSelection()&&(n=this.modelValue[1]||this.modelValue[0]),this.isMultipleSelection()&&(n=this.modelValue[this.modelValue.length-1]),n=n?new Date(n.getTime()):new Date,this.hourFormat=="12"?this.currentHour===12?n.setHours(this.pm?12:0):n.setHours(this.pm?this.currentHour+12:this.currentHour):n.setHours(this.currentHour),n.setMinutes(this.currentMinute),n.setSeconds(this.currentSecond),this.isRangeSelection()&&(this.modelValue[1]?n=[this.modelValue[0],n]:n=[n,null]),this.isMultipleSelection()&&(n=[].concat(Ao(this.modelValue.slice(0,-1)),[n])),this.updateModel(n),this.$emit("date-select",n),setTimeout(function(){return e.timePickerChange=!1},0)},toggleAMPM:function(e){var n=this.validateTime(this.currentHour,this.currentMinute,this.currentSecond,!this.pm);!n&&(this.maxDate||this.minDate)||(this.pm=!this.pm,this.updateModelTime(),e.preventDefault())},clearTimePickerTimer:function(){this.timePickerTimer&&clearInterval(this.timePickerTimer)},onMonthSelect:function(e,n){n.month;var r=n.index;this.view==="month"?this.onDateSelect(e,{year:this.currentYear,month:r,day:1,selectable:!0}):(this.currentMonth=r,this.currentView="date",this.$emit("month-change",{month:this.currentMonth+1,year:this.currentYear})),setTimeout(this.updateFocus,0)},onYearSelect:function(e,n){this.view==="year"?this.onDateSelect(e,{year:n.value,month:0,day:1,selectable:!0}):(this.currentYear=n.value,this.currentView="month",this.$emit("year-change",{month:this.currentMonth+1,year:this.currentYear})),setTimeout(this.updateFocus,0)},enableModality:function(){var e=this;this.mask||(this.mask=document.createElement("div"),this.mask.style.zIndex=String(parseInt(this.overlay.style.zIndex,10)-1),this.mask.setAttribute("data-pc-section","datepicker-mask"),!this.isUnstyled&&C.addMultipleClasses(this.mask,"p-datepicker-mask p-datepicker-mask-scrollblocker p-component-overlay p-component-overlay-enter"),this.maskClickListener=function(){e.overlayVisible=!1},this.mask.addEventListener("click",this.maskClickListener),document.body.appendChild(this.mask),C.blockBodyScroll())},disableModality:function(){var e=this;this.mask&&(this.isUnstyled?this.destroyMask():(C.addClass(this.mask,"p-component-overlay-leave"),this.mask.addEventListener("animationend",function(){e.destroyMask()})))},destroyMask:function(){this.mask.removeEventListener("click",this.maskClickListener),this.maskClickListener=null,document.body.removeChild(this.mask),this.mask=null;for(var e=document.body.children,n,r=0;r1&&e[1]>e[0]),r},parseValue:function(e){if(!e||e.trim().length===0)return null;var n;if(this.isSingleSelection())n=this.parseDateTime(e);else if(this.isMultipleSelection()){var r=e.split(",");n=[];var o=Mo(r),i;try{for(o.s();!(i=o.n()).done;){var a=i.value;n.push(this.parseDateTime(a.trim()))}}catch(s){o.e(s)}finally{o.f()}}else if(this.isRangeSelection()){var l=e.split(" - ");n=[];for(var u=0;u23||a>59||this.hourFormat=="12"&&i>12||this.showSeconds&&(isNaN(l)||l>59))throw"Invalid time";return this.hourFormat=="12"&&i!==12&&this.pm?i+=12:this.hourFormat=="12"&&i==12&&!this.pm&&(i=0),{hour:i,minute:a,second:l}},parseDate:function(e,n){if(n==null||e==null)throw"Invalid arguments";if(e=la(e)==="object"?e.toString():e+"",e==="")return null;var r,o,i,a=0,l=typeof this.shortYearCutoff!="string"?this.shortYearCutoff:new Date().getFullYear()%100+parseInt(this.shortYearCutoff,10),u=-1,s=-1,c=-1,d=-1,m=!1,f,y=function(z){var x=r+1-1){s=1,c=d;do{if(o=this.getDaysCountInMonth(u,s-1),c<=o)break;s++,c-=o}while(!0)}if(f=this.daylightSavingAdjust(new Date(u,s-1,c)),f.getFullYear()!==u||f.getMonth()+1!==s||f.getDate()!==c)throw"Invalid date";return f},getWeekNumber:function(e){var n=new Date(e.getTime());n.setDate(n.getDate()+4-(n.getDay()||7));var r=n.getTime();return n.setMonth(0),n.setDate(1),Math.floor(Math.round((r-n.getTime())/864e5)/7)+1},onDateCellKeydown:function(e,n,r){var o=e.currentTarget,i=o.parentElement,a=C.index(i);switch(e.code){case"ArrowDown":{o.tabIndex="-1";var l=i.parentElement.nextElementSibling;if(l){var u=C.index(i.parentElement),s=Array.from(i.parentElement.parentElement.children),c=s.slice(u+1),d=c.find(function(ge){var me=ge.children[a].children[0];return!C.getAttribute(me,"data-p-disabled")});if(d){var m=d.children[a].children[0];m.tabIndex="0",m.focus()}else this.navigationState={backward:!1},this.navForward(e)}else this.navigationState={backward:!1},this.navForward(e);e.preventDefault();break}case"ArrowUp":{if(o.tabIndex="-1",e.altKey)this.overlayVisible=!1,this.focused=!0;else{var f=i.parentElement.previousElementSibling;if(f){var y=C.index(i.parentElement),b=Array.from(i.parentElement.parentElement.children),S=b.slice(0,y).reverse(),_=S.find(function(ge){var me=ge.children[a].children[0];return!C.getAttribute(me,"data-p-disabled")});if(_){var I=_.children[a].children[0];I.tabIndex="0",I.focus()}else this.navigationState={backward:!0},this.navBackward(e)}else this.navigationState={backward:!0},this.navBackward(e)}e.preventDefault();break}case"ArrowLeft":{o.tabIndex="-1";var z=i.previousElementSibling;if(z){var x=Array.from(i.parentElement.children),F=x.slice(0,a).reverse(),ie=F.find(function(ge){var me=ge.children[0];return!C.getAttribute(me,"data-p-disabled")});if(ie){var ae=ie.children[0];ae.tabIndex="0",ae.focus()}else this.navigateToMonth(e,!0,r)}else this.navigateToMonth(e,!0,r);e.preventDefault();break}case"ArrowRight":{o.tabIndex="-1";var M=i.nextElementSibling;if(M){var Q=Array.from(i.parentElement.children),oe=Q.slice(a+1),ue=oe.find(function(ge){var me=ge.children[0];return!C.getAttribute(me,"data-p-disabled")});if(ue){var j=ue.children[0];j.tabIndex="0",j.focus()}else this.navigateToMonth(e,!1,r)}else this.navigateToMonth(e,!1,r);e.preventDefault();break}case"Enter":case"Space":{this.onDateSelect(e,n),e.preventDefault();break}case"Escape":{this.overlayVisible=!1,e.preventDefault();break}case"Tab":{this.inline||this.trapFocus(e);break}case"Home":{o.tabIndex="-1";var D=i.parentElement,q=D.children[0].children[0];C.getAttribute(q,"data-p-disabled")?this.navigateToMonth(e,!0,r):(q.tabIndex="0",q.focus()),e.preventDefault();break}case"End":{o.tabIndex="-1";var ve=i.parentElement,fe=ve.children[ve.children.length-1].children[0];C.getAttribute(fe,"data-p-disabled")?this.navigateToMonth(e,!1,r):(fe.tabIndex="0",fe.focus()),e.preventDefault();break}case"PageUp":{o.tabIndex="-1",e.shiftKey?(this.navigationState={backward:!0},this.navBackward(e)):this.navigateToMonth(e,!0,r),e.preventDefault();break}case"PageDown":{o.tabIndex="-1",e.shiftKey?(this.navigationState={backward:!1},this.navForward(e)):this.navigateToMonth(e,!1,r),e.preventDefault();break}}},navigateToMonth:function(e,n,r){if(n)if(this.numberOfMonths===1||r===0)this.navigationState={backward:!0},this.navBackward(e);else{var o=this.overlay.children[r-1],i=C.find(o,'table td span:not([data-p-disabled="true"]):not([data-p-ink="true"])'),a=i[i.length-1];a.tabIndex="0",a.focus()}else if(this.numberOfMonths===1||r===this.numberOfMonths-1)this.navigationState={backward:!1},this.navForward(e);else{var l=this.overlay.children[r+1],u=C.findSingle(l,'table td span:not([data-p-disabled="true"]):not([data-p-ink="true"])');u.tabIndex="0",u.focus()}},onMonthCellKeydown:function(e,n){var r=e.currentTarget;switch(e.code){case"ArrowUp":case"ArrowDown":{r.tabIndex="-1";var o=r.parentElement.children,i=C.index(r),a=o[e.code==="ArrowDown"?i+3:i-3];a&&(a.tabIndex="0",a.focus()),e.preventDefault();break}case"ArrowLeft":{r.tabIndex="-1";var l=r.previousElementSibling;l?(l.tabIndex="0",l.focus()):(this.navigationState={backward:!0},this.navBackward(e)),e.preventDefault();break}case"ArrowRight":{r.tabIndex="-1";var u=r.nextElementSibling;u?(u.tabIndex="0",u.focus()):(this.navigationState={backward:!1},this.navForward(e)),e.preventDefault();break}case"PageUp":{if(e.shiftKey)return;this.navigationState={backward:!0},this.navBackward(e);break}case"PageDown":{if(e.shiftKey)return;this.navigationState={backward:!1},this.navForward(e);break}case"Enter":case"Space":{this.onMonthSelect(e,n),e.preventDefault();break}case"Escape":{this.overlayVisible=!1,e.preventDefault();break}case"Tab":{this.trapFocus(e);break}}},onYearCellKeydown:function(e,n){var r=e.currentTarget;switch(e.code){case"ArrowUp":case"ArrowDown":{r.tabIndex="-1";var o=r.parentElement.children,i=C.index(r),a=o[e.code==="ArrowDown"?i+2:i-2];a&&(a.tabIndex="0",a.focus()),e.preventDefault();break}case"ArrowLeft":{r.tabIndex="-1";var l=r.previousElementSibling;l?(l.tabIndex="0",l.focus()):(this.navigationState={backward:!0},this.navBackward(e)),e.preventDefault();break}case"ArrowRight":{r.tabIndex="-1";var u=r.nextElementSibling;u?(u.tabIndex="0",u.focus()):(this.navigationState={backward:!1},this.navForward(e)),e.preventDefault();break}case"PageUp":{if(e.shiftKey)return;this.navigationState={backward:!0},this.navBackward(e);break}case"PageDown":{if(e.shiftKey)return;this.navigationState={backward:!1},this.navForward(e);break}case"Enter":case"Space":{this.onYearSelect(e,n),e.preventDefault();break}case"Escape":{this.overlayVisible=!1,e.preventDefault();break}case"Tab":{this.trapFocus(e);break}}},updateFocus:function(){var e;if(this.navigationState){if(this.navigationState.button)this.initFocusableCell(),this.navigationState.backward?this.previousButton.focus():this.nextButton.focus();else{if(this.navigationState.backward){var n;this.currentView==="month"?n=C.find(this.overlay,'[data-pc-section="monthpicker"] [data-pc-section="month"]:not([data-p-disabled="true"])'):this.currentView==="year"?n=C.find(this.overlay,'[data-pc-section="yearpicker"] [data-pc-section="year"]:not([data-p-disabled="true"])'):n=C.find(this.overlay,'table td span:not([data-p-disabled="true"]):not([data-p-ink="true"])'),n&&n.length>0&&(e=n[n.length-1])}else this.currentView==="month"?e=C.findSingle(this.overlay,'[data-pc-section="monthpicker"] [data-pc-section="month"]:not([data-p-disabled="true"])'):this.currentView==="year"?e=C.findSingle(this.overlay,'[data-pc-section="yearpicker"] [data-pc-section="year"]:not([data-p-disabled="true"])'):e=C.findSingle(this.overlay,'table td span:not([data-p-disabled="true"]):not([data-p-ink="true"])');e&&(e.tabIndex="0",e.focus())}this.navigationState=null}else this.initFocusableCell()},initFocusableCell:function(){var e;if(this.currentView==="month"){var n=C.find(this.overlay,'[data-pc-section="monthpicker"] [data-pc-section="month"]'),r=C.findSingle(this.overlay,'[data-pc-section="monthpicker"] [data-pc-section="month"][data-p-highlight="true"]');n.forEach(function(l){return l.tabIndex=-1}),e=r||n[0]}else if(this.currentView==="year"){var o=C.find(this.overlay,'[data-pc-section="yearpicker"] [data-pc-section="year"]'),i=C.findSingle(this.overlay,'[data-pc-section="yearpicker"] [data-pc-section="year"][data-p-highlight="true"]');o.forEach(function(l){return l.tabIndex=-1}),e=i||o[0]}else if(e=C.findSingle(this.overlay,'span[data-p-highlight="true"]'),!e){var a=C.findSingle(this.overlay,'td.p-datepicker-today span:not([data-p-disabled="true"]):not([data-p-ink="true"])');a?e=a:e=C.findSingle(this.overlay,'.p-datepicker-calendar td span:not([data-p-disabled="true"]):not([data-p-ink="true"])')}e&&(e.tabIndex="0",!this.inline&&(!this.navigationState||!this.navigationState.button)&&!this.timePickerChange&&(this.manualInput||e.focus()),this.preventFocus=!1)},trapFocus:function(e){e.preventDefault();var n=C.getFocusableElements(this.overlay);if(n&&n.length>0)if(!document.activeElement)n[0].focus();else{var r=n.indexOf(document.activeElement);if(e.shiftKey)r===-1||r===0?n[n.length-1].focus():n[r-1].focus();else if(r===-1)if(this.timeOnly)n[0].focus();else{for(var o=null,i=0;i1&&this.responsiveOptions&&!this.isUnstyled){if(!this.responsiveStyleElement){var e;this.responsiveStyleElement=document.createElement("style"),this.responsiveStyleElement.type="text/css",C.setAttribute(this.responsiveStyleElement,"nonce",(e=this.$primevue)===null||e===void 0||(e=e.config)===null||e===void 0||(e=e.csp)===null||e===void 0?void 0:e.nonce),document.body.appendChild(this.responsiveStyleElement)}var n="";if(this.responsiveOptions)for(var r=ObjectUtils.localeComparator(),o=Ao(this.responsiveOptions).filter(function(d){return!!(d.breakpoint&&d.numMonths)}).sort(function(d,m){return-1*r(d.breakpoint,m.breakpoint)}),i=0;in?this.minDate:n},inputFieldValue:function(){return this.formatValue(this.modelValue)},months:function(){for(var e=[],n=0;n11&&(r=r%11-1,o=o+1);for(var i=[],a=this.getFirstDayOfMonthIndex(r,o),l=this.getDaysCountInMonth(r,o),u=this.getDaysCountInPrevMonth(r,o),s=1,c=new Date,d=[],m=Math.ceil((l+a)/7),f=0;fl){var T=this.getNextMonthAndYear(r,o);y.push({day:s-l,month:T.month,year:T.year,otherMonth:!0,today:this.isToday(c,s-l,T.month,T.year),selectable:this.isSelectable(s-l,T.month,T.year,!0)})}else y.push({day:s,month:r,year:o,today:this.isToday(c,s,r,o),selectable:this.isSelectable(s,r,o,!1)});s++}this.showWeek&&d.push(this.getWeekNumber(new Date(y[0].year,y[0].month,y[0].day))),i.push(y)}e.push({month:r,year:o,dates:i,weekNumbers:d})}return e},weekDays:function(){for(var e=[],n=this.$primevue.config.locale.firstDayOfWeek,r=0;r<7;r++)e.push(this.$primevue.config.locale.dayNamesMin[n]),n=n==6?0:++n;return e},ticksTo1970:function(){return((1970-1)*365+Math.floor(1970/4)-Math.floor(1970/100)+Math.floor(1970/400))*24*60*60*1e7},sundayIndex:function(){return this.$primevue.config.locale.firstDayOfWeek>0?7-this.$primevue.config.locale.firstDayOfWeek:0},datePattern:function(){return this.dateFormat||this.$primevue.config.locale.dateFormat},yearOptions:function(){if(this.yearRange){var e=this,n=this.yearRange.split(":"),r=parseInt(n[0]),o=parseInt(n[1]),i=[];this.currentYearo&&(e.currentYear=r);for(var a=r;a<=o;a++)i.push(a);return i}else return null},monthPickerValues:function(){for(var e=this,n=[],r=function(a){if(e.minDate){var l=e.minDate.getMonth(),u=e.minDate.getFullYear();if(e.currentYearc||e.currentYear===c&&a>s)return!1}return!0},o=0;o<=11;o++)n.push({value:this.$primevue.config.locale.monthNamesShort[o],selectable:r(o)});return n},yearPickerValues:function(){for(var e=this,n=[],r=this.currentYear-this.currentYear%10,o=function(l){return!(e.minDate&&e.minDate.getFullYear()>l||e.maxDate&&e.maxDate.getFullYear()1||this.disabled},panelId:function(){return Re()+"_panel"}},components:{CalendarButton:Dn,Portal:Rn,CalendarIcon:Vc,ChevronLeftIcon:Hc,ChevronRightIcon:fi,ChevronUpIcon:Nc,ChevronDownIcon:Zn},directives:{ripple:pt}};function Ar(t){"@babel/helpers - typeof";return Ar=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ar(t)}function Ps(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function ki(t){for(var e=1;et.length)&&(e=t.length);for(var n=0,r=new Array(e);nn?this.minDate:n},inputFieldValue:function(){return this.formatValue(this.modelValue)},months:function(){for(var e=[],n=0;n11&&(r=r%11-1,o=o+1);for(var i=[],a=this.getFirstDayOfMonthIndex(r,o),l=this.getDaysCountInMonth(r,o),u=this.getDaysCountInPrevMonth(r,o),s=1,c=new Date,d=[],m=Math.ceil((l+a)/7),f=0;fl){var x=this.getNextMonthAndYear(r,o);y.push({day:s-l,month:x.month,year:x.year,otherMonth:!0,today:this.isToday(c,s-l,x.month,x.year),selectable:this.isSelectable(s-l,x.month,x.year,!0)})}else y.push({day:s,month:r,year:o,today:this.isToday(c,s,r,o),selectable:this.isSelectable(s,r,o,!1)});s++}this.showWeek&&d.push(this.getWeekNumber(new Date(y[0].year,y[0].month,y[0].day))),i.push(y)}e.push({month:r,year:o,dates:i,weekNumbers:d})}return e},weekDays:function(){for(var e=[],n=this.$primevue.config.locale.firstDayOfWeek,r=0;r<7;r++)e.push(this.$primevue.config.locale.dayNamesMin[n]),n=n==6?0:++n;return e},ticksTo1970:function(){return((1970-1)*365+Math.floor(1970/4)-Math.floor(1970/100)+Math.floor(1970/400))*24*60*60*1e7},sundayIndex:function(){return this.$primevue.config.locale.firstDayOfWeek>0?7-this.$primevue.config.locale.firstDayOfWeek:0},datePattern:function(){return this.dateFormat||this.$primevue.config.locale.dateFormat},yearOptions:function(){if(this.yearRange){var e=this,n=this.yearRange.split(":"),r=parseInt(n[0]),o=parseInt(n[1]),i=[];this.currentYearo&&(e.currentYear=r);for(var a=r;a<=o;a++)i.push(a);return i}else return null},monthPickerValues:function(){for(var e=this,n=[],r=function(a){if(e.minDate){var l=e.minDate.getMonth(),u=e.minDate.getFullYear();if(e.currentYearc||e.currentYear===c&&a>s)return!1}return!0},o=0;o<=11;o++)n.push({value:this.$primevue.config.locale.monthNamesShort[o],selectable:r(o)});return n},yearPickerValues:function(){for(var e=this,n=[],r=this.currentYear-this.currentYear%10,o=function(l){return!(e.minDate&&e.minDate.getFullYear()>l||e.maxDate&&e.maxDate.getFullYear()1||this.disabled},panelId:function(){return Re()+"_panel"}},components:{CalendarButton:Dn,Portal:Rn,CalendarIcon:Vc,ChevronLeftIcon:Hc,ChevronRightIcon:fi,ChevronUpIcon:Nc,ChevronDownIcon:Zn},directives:{ripple:pt}};function Ar(t){"@babel/helpers - typeof";return Ar=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ar(t)}function Ps(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function ki(t){for(var e=1;et.length)&&(e=t.length);for(var n=0,r=new Array(e);nt.length)&&(e=t.length);for(var n=0,r=new Array(e);nt.length)&&(e=t.length);for(var n=0,r=new Array(e);n1&&arguments[1]!==void 0?arguments[1]:"auto",o=this.isBoth(),i=this.isHorizontal(),a=this.first,l=this.calculateNumItems(),u=l.numToleratedItems,s=this.getContentPosition(),c=this.itemSize,d=function(){var _=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,I=arguments.length>1?arguments[1]:void 0;return _<=I?0:_},m=function(_,I,V){return _*I+V},f=function(){var _=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,I=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return n.scrollTo({left:_,top:I,behavior:r})},y=o?{rows:0,cols:0}:0,b=!1;o?(y={rows:d(e[0],u[0]),cols:d(e[1],u[1])},f(m(y.cols,c[1],s.left),m(y.rows,c[0],s.top)),b=y.rows!==a.rows||y.cols!==a.cols):(y=d(e,u),i?f(m(y,c,s.left),0):f(0,m(y,c,s.top)),b=y!==a),this.isRangeChanged=b,this.first=y},scrollInView:function(e,n){var r=this,o=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"auto";if(n){var i=this.isBoth(),a=this.isHorizontal(),l=this.getRenderedRange(),u=l.first,s=l.viewport,c=function(){var S=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,_=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return r.scrollTo({left:S,top:_,behavior:o})},d=n==="to-start",m=n==="to-end";if(d){if(i)s.first.rows-u.rows>e[0]?c(s.first.cols*this.itemSize[1],(s.first.rows-1)*this.itemSize[0]):s.first.cols-u.cols>e[1]&&c((s.first.cols-1)*this.itemSize[1],s.first.rows*this.itemSize[0]);else if(s.first-u>e){var f=(s.first-1)*this.itemSize;a?c(f,0):c(0,f)}}else if(m){if(i)s.last.rows-u.rows<=e[0]+1?c(s.first.cols*this.itemSize[1],(s.first.rows+1)*this.itemSize[0]):s.last.cols-u.cols<=e[1]+1&&c((s.first.cols+1)*this.itemSize[1],s.first.rows*this.itemSize[0]);else if(s.last-u<=e+1){var y=(s.first+1)*this.itemSize;a?c(y,0):c(0,y)}}}else this.scrollToIndex(e,o)},getRenderedRange:function(){var e=function(d,m){return Math.floor(d/(m||d))},n=this.first,r=0;if(this.element){var o=this.isBoth(),i=this.isHorizontal(),a=this.element.scrollTop,l=a.scrollTop,u=a.scrollLeft;if(o)n={rows:e(l,this.itemSize[0]),cols:e(u,this.itemSize[1])},r={rows:n.rows+this.numItemsInViewport.rows,cols:n.cols+this.numItemsInViewport.cols};else{var s=i?u:l;n=e(s,this.itemSize),r=n+this.numItemsInViewport}}return{first:this.first,last:this.last,viewport:{first:n,last:r}}},calculateNumItems:function(){var e=this.isBoth(),n=this.isHorizontal(),r=this.itemSize,o=this.getContentPosition(),i=this.element?this.element.offsetWidth-o.left:0,a=this.element?this.element.offsetHeight-o.top:0,l=function(m,f){return Math.ceil(m/(f||m))},u=function(m){return Math.ceil(m/2)},s=e?{rows:l(a,r[0]),cols:l(i,r[1])}:l(n?i:a,r),c=this.d_numToleratedItems||(e?[u(s.rows),u(s.cols)]:u(s));return{numItemsInViewport:s,numToleratedItems:c}},calculateOptions:function(){var e=this,n=this.isBoth(),r=this.first,o=this.calculateNumItems(),i=o.numItemsInViewport,a=o.numToleratedItems,l=function(c,d,m){var f=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1;return e.getLast(c+d+(c0&&arguments[0]!==void 0?arguments[0]:0,n=arguments.length>1?arguments[1]:void 0;return this.items?Math.min(n?(this.columns||this.items[0]).length:this.items.length,e):0},getContentPosition:function(){if(this.content){var e=getComputedStyle(this.content),n=parseFloat(e.paddingLeft)+Math.max(parseFloat(e.left)||0,0),r=parseFloat(e.paddingRight)+Math.max(parseFloat(e.right)||0,0),o=parseFloat(e.paddingTop)+Math.max(parseFloat(e.top)||0,0),i=parseFloat(e.paddingBottom)+Math.max(parseFloat(e.bottom)||0,0);return{left:n,right:r,top:o,bottom:i,x:n+r,y:o+i}}return{left:0,right:0,top:0,bottom:0,x:0,y:0}},setSize:function(){var e=this;if(this.element){var n=this.isBoth(),r=this.isHorizontal(),o=this.element.parentElement,i=this.scrollWidth||"".concat(this.element.offsetWidth||o.offsetWidth,"px"),a=this.scrollHeight||"".concat(this.element.offsetHeight||o.offsetHeight,"px"),l=function(s,c){return e.element.style[s]=c};n||r?(l("height",a),l("width",i)):l("height",a)}},setSpacerSize:function(){var e=this,n=this.items;if(n){var r=this.isBoth(),o=this.isHorizontal(),i=this.getContentPosition(),a=function(u,s,c){var d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0;return e.spacerStyle=or(or({},e.spacerStyle),Xc({},"".concat(u),(s||[]).length*c+d+"px"))};r?(a("height",n,this.itemSize[0],i.y),a("width",this.columns||n[1],this.itemSize[1],i.x)):o?a("width",this.columns||n,this.itemSize,i.x):a("height",n,this.itemSize,i.y)}},setContentPosition:function(e){var n=this;if(this.content&&!this.appendOnly){var r=this.isBoth(),o=this.isHorizontal(),i=e?e.first:this.first,a=function(c,d){return c*d},l=function(){var c=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,d=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return n.contentStyle=or(or({},n.contentStyle),{transform:"translate3d(".concat(c,"px, ").concat(d,"px, 0)")})};if(r)l(a(i.cols,this.itemSize[1]),a(i.rows,this.itemSize[0]));else{var u=a(i,this.itemSize);o?l(u,0):l(0,u)}}},onScrollPositionChange:function(e){var n=this,r=e.target,o=this.isBoth(),i=this.isHorizontal(),a=this.getContentPosition(),l=function(pe,F){return pe?pe>F?pe-F:pe:0},u=function(pe,F){return Math.floor(pe/(F||pe))},s=function(pe,F,D,Y,ve,ce){return pe<=ve?ve:ce?D-Y-ve:F+ve-1},c=function(pe,F,D,Y,ve,ce,_e){return pe<=ce?0:Math.max(0,_e?peF?D:pe-2*ce)},d=function(pe,F,D,Y,ve,ce){var _e=F+Y+2*ve;return pe>=ve&&(_e+=ve+1),n.getLast(_e,ce)},m=l(r.scrollTop,a.top),f=l(r.scrollLeft,a.left),y=o?{rows:0,cols:0}:0,b=this.last,S=!1,_=this.lastScrollPos;if(o){var I=this.lastScrollPos.top<=m,V=this.lastScrollPos.left<=f;if(!this.appendOnly||this.appendOnly&&(I||V)){var T={rows:u(m,this.itemSize[0]),cols:u(f,this.itemSize[1])},L={rows:s(T.rows,this.first.rows,this.last.rows,this.numItemsInViewport.rows,this.d_numToleratedItems[0],I),cols:s(T.cols,this.first.cols,this.last.cols,this.numItemsInViewport.cols,this.d_numToleratedItems[1],V)};y={rows:c(T.rows,L.rows,this.first.rows,this.last.rows,this.numItemsInViewport.rows,this.d_numToleratedItems[0],I),cols:c(T.cols,L.cols,this.first.cols,this.last.cols,this.numItemsInViewport.cols,this.d_numToleratedItems[1],V)},b={rows:d(T.rows,y.rows,this.last.rows,this.numItemsInViewport.rows,this.d_numToleratedItems[0]),cols:d(T.cols,y.cols,this.last.cols,this.numItemsInViewport.cols,this.d_numToleratedItems[1],!0)},S=y.rows!==this.first.rows||b.rows!==this.last.rows||y.cols!==this.first.cols||b.cols!==this.last.cols||this.isRangeChanged,_={top:m,left:f}}}else{var ae=i?f:m,le=this.lastScrollPos<=ae;if(!this.appendOnly||this.appendOnly&&le){var A=u(ae,this.itemSize),te=s(A,this.first,this.last,this.numItemsInViewport,this.d_numToleratedItems,le);y=c(A,te,this.first,this.last,this.numItemsInViewport,this.d_numToleratedItems,le),b=d(A,y,this.last,this.numItemsInViewport,this.d_numToleratedItems),S=y!==this.first||b!==this.last||this.isRangeChanged,_=ae}}return{first:y,last:b,isRangeChanged:S,scrollPos:_}},onScrollChange:function(e){var n=this.onScrollPositionChange(e),r=n.first,o=n.last,i=n.isRangeChanged,a=n.scrollPos;if(i){var l={first:r,last:o};if(this.setContentPosition(l),this.first=r,this.last=o,this.lastScrollPos=a,this.$emit("scroll-index-change",l),this.lazy&&this.isPageChanged(r)){var u={first:this.step?Math.min(this.getPageByFirst(r)*this.step,this.items.length-this.step):r,last:Math.min(this.step?(this.getPageByFirst(r)+1)*this.step:o,this.items.length)},s=this.lazyLoadState.first!==u.first||this.lazyLoadState.last!==u.last;s&&this.$emit("lazy-load",u),this.lazyLoadState=u}}},onScroll:function(e){var n=this;if(this.$emit("scroll",e),this.delay&&this.isPageChanged()){if(this.scrollTimeout&&clearTimeout(this.scrollTimeout),!this.d_loading&&this.showLoader){var r=this.onScrollPositionChange(e),o=r.isRangeChanged,i=o||(this.step?this.isPageChanged():!1);i&&(this.d_loading=!0)}this.scrollTimeout=setTimeout(function(){n.onScrollChange(e),n.d_loading&&n.showLoader&&(!n.lazy||n.loading===void 0)&&(n.d_loading=!1,n.page=n.getPageByFirst())},this.delay)}else this.onScrollChange(e)},onResize:function(){var e=this;this.resizeTimeout&&clearTimeout(this.resizeTimeout),this.resizeTimeout=setTimeout(function(){if(C.isVisible(e.element)){var n=e.isBoth(),r=e.isVertical(),o=e.isHorizontal(),i=[C.getWidth(e.element),C.getHeight(e.element)],a=i[0],l=i[1],u=a!==e.defaultWidth,s=l!==e.defaultHeight,c=n?u||s:o?u:r?s:!1;c&&(e.d_numToleratedItems=e.numToleratedItems,e.defaultWidth=a,e.defaultHeight=l,e.defaultContentWidth=C.getWidth(e.content),e.defaultContentHeight=C.getHeight(e.content),e.init())}},this.resizeDelay)},bindResizeListener:function(){this.resizeListener||(this.resizeListener=this.onResize.bind(this),window.addEventListener("resize",this.resizeListener),window.addEventListener("orientationchange",this.resizeListener))},unbindResizeListener:function(){this.resizeListener&&(window.removeEventListener("resize",this.resizeListener),window.removeEventListener("orientationchange",this.resizeListener),this.resizeListener=null)},getOptions:function(e){var n=(this.items||[]).length,r=this.isBoth()?this.first.rows+e:this.first+e;return{index:r,count:n,first:r===0,last:r===n-1,even:r%2===0,odd:r%2!==0}},getLoaderOptions:function(e,n){var r=this.loaderArr.length;return or({index:e,count:r,first:e===0,last:e===r-1,even:e%2===0,odd:e%2!==0},n)},getPageByFirst:function(e){return Math.floor(((e??this.first)+this.d_numToleratedItems*4)/(this.step||1))},isPageChanged:function(e){return this.step?this.page!==this.getPageByFirst(e??this.first):!0},setContentEl:function(e){this.content=e||this.content||C.findSingle(this.element,'[data-pc-section="content"]')},elementRef:function(e){this.element=e},contentRef:function(e){this.content=e}},computed:{containerClass:function(){return["p-virtualscroller",this.class,{"p-virtualscroller-inline":this.inline,"p-virtualscroller-both p-both-scroll":this.isBoth(),"p-virtualscroller-horizontal p-horizontal-scroll":this.isHorizontal()}]},contentClass:function(){return["p-virtualscroller-content",{"p-virtualscroller-loading":this.d_loading}]},loaderClass:function(){return["p-virtualscroller-loader",{"p-component-overlay":!this.$slots.loader}]},loadedItems:function(){var e=this;return this.items&&!this.d_loading?this.isBoth()?this.items.slice(this.appendOnly?0:this.first.rows,this.last.rows).map(function(n){return e.columns?n:n.slice(e.appendOnly?0:e.first.cols,e.last.cols)}):this.isHorizontal()&&this.columns?this.items:this.items.slice(this.appendOnly?0:this.first,this.last):[]},loadedRows:function(){return this.d_loading?this.loaderDisabled?this.loaderArr:[]:this.loadedItems},loadedColumns:function(){if(this.columns){var e=this.isBoth(),n=this.isHorizontal();if(e||n)return this.d_loading&&this.loaderDisabled?e?this.loaderArr[0]:this.loaderArr:this.columns.slice(e?this.first.cols:this.first,e?this.last.cols:this.last)}return this.columns}},components:{SpinnerIcon:mi}},Q1=["tabindex"];function eb(t,e,n,r,o,i){var a=N("SpinnerIcon");return t.disabled?(p(),v(oe,{key:1},[Z(t.$slots,"default"),Z(t.$slots,"content",{items:t.items,rows:t.items,columns:i.loadedColumns})],64)):(p(),v("div",h({key:0,ref:i.elementRef,class:i.containerClass,tabindex:t.tabindex,style:t.style,onScroll:e[0]||(e[0]=function(){return i.onScroll&&i.onScroll.apply(i,arguments)})},t.ptm("root"),{"data-pc-name":"virtualscroller"}),[Z(t.$slots,"content",{styleClass:i.contentClass,items:i.loadedItems,getItemOptions:i.getOptions,loading:o.d_loading,getLoaderOptions:i.getLoaderOptions,itemSize:t.itemSize,rows:i.loadedRows,columns:i.loadedColumns,contentRef:i.contentRef,spacerStyle:o.spacerStyle,contentStyle:o.contentStyle,vertical:i.isVertical(),horizontal:i.isHorizontal(),both:i.isBoth()},function(){return[g("div",h({ref:i.contentRef,class:i.contentClass,style:o.contentStyle},t.ptm("content")),[(p(!0),v(oe,null,Te(i.loadedItems,function(l,u){return Z(t.$slots,"item",{key:u,item:l,options:i.getOptions(u)})}),128))],16)]}),t.showSpacer?(p(),v("div",h({key:0,class:"p-virtualscroller-spacer",style:o.spacerStyle},t.ptm("spacer")),null,16)):x("",!0),!t.loaderDisabled&&t.showLoader&&o.d_loading?(p(),v("div",h({key:1,class:i.loaderClass},t.ptm("loader")),[t.$slots&&t.$slots.loader?(p(!0),v(oe,{key:0},Te(o.loaderArr,function(l,u){return Z(t.$slots,"loader",{key:u,options:i.getLoaderOptions(u,i.isBoth()&&{numCols:t.d_numItemsInViewport.cols})})}),128)):x("",!0),Z(t.$slots,"loadingicon",{},function(){return[P(a,h({spin:"",class:"p-virtualscroller-loading-icon"},t.ptm("loadingIcon")),null,16)]})],16)):x("",!0)],16,Q1))}ll.render=eb;var tb=` +`,Es=Be.extend({name:"virtualscroller",css:Y1}),J1={name:"BaseVirtualScroller",extends:Oe,props:{id:{type:String,default:null},style:null,class:null,items:{type:Array,default:null},itemSize:{type:[Number,Array],default:0},scrollHeight:null,scrollWidth:null,orientation:{type:String,default:"vertical"},numToleratedItems:{type:Number,default:null},delay:{type:Number,default:0},resizeDelay:{type:Number,default:10},lazy:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},loaderDisabled:{type:Boolean,default:!1},columns:{type:Array,default:null},loading:{type:Boolean,default:!1},showSpacer:{type:Boolean,default:!0},showLoader:{type:Boolean,default:!1},tabindex:{type:Number,default:0},inline:{type:Boolean,default:!1},step:{type:Number,default:0},appendOnly:{type:Boolean,default:!1},autoSize:{type:Boolean,default:!1}},style:Es,provide:function(){return{$parentInstance:this}},beforeMount:function(){Es.loadStyle()}};function Nr(t){"@babel/helpers - typeof";return Nr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Nr(t)}function Ds(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function or(t){for(var e=1;e1&&arguments[1]!==void 0?arguments[1]:"auto",o=this.isBoth(),i=this.isHorizontal(),a=this.first,l=this.calculateNumItems(),u=l.numToleratedItems,s=this.getContentPosition(),c=this.itemSize,d=function(){var _=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,I=arguments.length>1?arguments[1]:void 0;return _<=I?0:_},m=function(_,I,z){return _*I+z},f=function(){var _=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,I=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return n.scrollTo({left:_,top:I,behavior:r})},y=o?{rows:0,cols:0}:0,b=!1;o?(y={rows:d(e[0],u[0]),cols:d(e[1],u[1])},f(m(y.cols,c[1],s.left),m(y.rows,c[0],s.top)),b=y.rows!==a.rows||y.cols!==a.cols):(y=d(e,u),i?f(m(y,c,s.left),0):f(0,m(y,c,s.top)),b=y!==a),this.isRangeChanged=b,this.first=y},scrollInView:function(e,n){var r=this,o=arguments.length>2&&arguments[2]!==void 0?arguments[2]:"auto";if(n){var i=this.isBoth(),a=this.isHorizontal(),l=this.getRenderedRange(),u=l.first,s=l.viewport,c=function(){var S=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,_=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return r.scrollTo({left:S,top:_,behavior:o})},d=n==="to-start",m=n==="to-end";if(d){if(i)s.first.rows-u.rows>e[0]?c(s.first.cols*this.itemSize[1],(s.first.rows-1)*this.itemSize[0]):s.first.cols-u.cols>e[1]&&c((s.first.cols-1)*this.itemSize[1],s.first.rows*this.itemSize[0]);else if(s.first-u>e){var f=(s.first-1)*this.itemSize;a?c(f,0):c(0,f)}}else if(m){if(i)s.last.rows-u.rows<=e[0]+1?c(s.first.cols*this.itemSize[1],(s.first.rows+1)*this.itemSize[0]):s.last.cols-u.cols<=e[1]+1&&c((s.first.cols+1)*this.itemSize[1],s.first.rows*this.itemSize[0]);else if(s.last-u<=e+1){var y=(s.first+1)*this.itemSize;a?c(y,0):c(0,y)}}}else this.scrollToIndex(e,o)},getRenderedRange:function(){var e=function(d,m){return Math.floor(d/(m||d))},n=this.first,r=0;if(this.element){var o=this.isBoth(),i=this.isHorizontal(),a=this.element.scrollTop,l=a.scrollTop,u=a.scrollLeft;if(o)n={rows:e(l,this.itemSize[0]),cols:e(u,this.itemSize[1])},r={rows:n.rows+this.numItemsInViewport.rows,cols:n.cols+this.numItemsInViewport.cols};else{var s=i?u:l;n=e(s,this.itemSize),r=n+this.numItemsInViewport}}return{first:this.first,last:this.last,viewport:{first:n,last:r}}},calculateNumItems:function(){var e=this.isBoth(),n=this.isHorizontal(),r=this.itemSize,o=this.getContentPosition(),i=this.element?this.element.offsetWidth-o.left:0,a=this.element?this.element.offsetHeight-o.top:0,l=function(m,f){return Math.ceil(m/(f||m))},u=function(m){return Math.ceil(m/2)},s=e?{rows:l(a,r[0]),cols:l(i,r[1])}:l(n?i:a,r),c=this.d_numToleratedItems||(e?[u(s.rows),u(s.cols)]:u(s));return{numItemsInViewport:s,numToleratedItems:c}},calculateOptions:function(){var e=this,n=this.isBoth(),r=this.first,o=this.calculateNumItems(),i=o.numItemsInViewport,a=o.numToleratedItems,l=function(c,d,m){var f=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1;return e.getLast(c+d+(c0&&arguments[0]!==void 0?arguments[0]:0,n=arguments.length>1?arguments[1]:void 0;return this.items?Math.min(n?(this.columns||this.items[0]).length:this.items.length,e):0},getContentPosition:function(){if(this.content){var e=getComputedStyle(this.content),n=parseFloat(e.paddingLeft)+Math.max(parseFloat(e.left)||0,0),r=parseFloat(e.paddingRight)+Math.max(parseFloat(e.right)||0,0),o=parseFloat(e.paddingTop)+Math.max(parseFloat(e.top)||0,0),i=parseFloat(e.paddingBottom)+Math.max(parseFloat(e.bottom)||0,0);return{left:n,right:r,top:o,bottom:i,x:n+r,y:o+i}}return{left:0,right:0,top:0,bottom:0,x:0,y:0}},setSize:function(){var e=this;if(this.element){var n=this.isBoth(),r=this.isHorizontal(),o=this.element.parentElement,i=this.scrollWidth||"".concat(this.element.offsetWidth||o.offsetWidth,"px"),a=this.scrollHeight||"".concat(this.element.offsetHeight||o.offsetHeight,"px"),l=function(s,c){return e.element.style[s]=c};n||r?(l("height",a),l("width",i)):l("height",a)}},setSpacerSize:function(){var e=this,n=this.items;if(n){var r=this.isBoth(),o=this.isHorizontal(),i=this.getContentPosition(),a=function(u,s,c){var d=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0;return e.spacerStyle=or(or({},e.spacerStyle),Xc({},"".concat(u),(s||[]).length*c+d+"px"))};r?(a("height",n,this.itemSize[0],i.y),a("width",this.columns||n[1],this.itemSize[1],i.x)):o?a("width",this.columns||n,this.itemSize,i.x):a("height",n,this.itemSize,i.y)}},setContentPosition:function(e){var n=this;if(this.content&&!this.appendOnly){var r=this.isBoth(),o=this.isHorizontal(),i=e?e.first:this.first,a=function(c,d){return c*d},l=function(){var c=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,d=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return n.contentStyle=or(or({},n.contentStyle),{transform:"translate3d(".concat(c,"px, ").concat(d,"px, 0)")})};if(r)l(a(i.cols,this.itemSize[1]),a(i.rows,this.itemSize[0]));else{var u=a(i,this.itemSize);o?l(u,0):l(0,u)}}},onScrollPositionChange:function(e){var n=this,r=e.target,o=this.isBoth(),i=this.isHorizontal(),a=this.getContentPosition(),l=function(ue,j){return ue?ue>j?ue-j:ue:0},u=function(ue,j){return Math.floor(ue/(j||ue))},s=function(ue,j,D,q,ve,fe){return ue<=ve?ve:fe?D-q-ve:j+ve-1},c=function(ue,j,D,q,ve,fe,ge){return ue<=fe?0:Math.max(0,ge?uej?D:ue-2*fe)},d=function(ue,j,D,q,ve,fe){var ge=j+q+2*ve;return ue>=ve&&(ge+=ve+1),n.getLast(ge,fe)},m=l(r.scrollTop,a.top),f=l(r.scrollLeft,a.left),y=o?{rows:0,cols:0}:0,b=this.last,S=!1,_=this.lastScrollPos;if(o){var I=this.lastScrollPos.top<=m,z=this.lastScrollPos.left<=f;if(!this.appendOnly||this.appendOnly&&(I||z)){var x={rows:u(m,this.itemSize[0]),cols:u(f,this.itemSize[1])},F={rows:s(x.rows,this.first.rows,this.last.rows,this.numItemsInViewport.rows,this.d_numToleratedItems[0],I),cols:s(x.cols,this.first.cols,this.last.cols,this.numItemsInViewport.cols,this.d_numToleratedItems[1],z)};y={rows:c(x.rows,F.rows,this.first.rows,this.last.rows,this.numItemsInViewport.rows,this.d_numToleratedItems[0],I),cols:c(x.cols,F.cols,this.first.cols,this.last.cols,this.numItemsInViewport.cols,this.d_numToleratedItems[1],z)},b={rows:d(x.rows,y.rows,this.last.rows,this.numItemsInViewport.rows,this.d_numToleratedItems[0]),cols:d(x.cols,y.cols,this.last.cols,this.numItemsInViewport.cols,this.d_numToleratedItems[1],!0)},S=y.rows!==this.first.rows||b.rows!==this.last.rows||y.cols!==this.first.cols||b.cols!==this.last.cols||this.isRangeChanged,_={top:m,left:f}}}else{var ie=i?f:m,ae=this.lastScrollPos<=ie;if(!this.appendOnly||this.appendOnly&&ae){var M=u(ie,this.itemSize),Q=s(M,this.first,this.last,this.numItemsInViewport,this.d_numToleratedItems,ae);y=c(M,Q,this.first,this.last,this.numItemsInViewport,this.d_numToleratedItems,ae),b=d(M,y,this.last,this.numItemsInViewport,this.d_numToleratedItems),S=y!==this.first||b!==this.last||this.isRangeChanged,_=ie}}return{first:y,last:b,isRangeChanged:S,scrollPos:_}},onScrollChange:function(e){var n=this.onScrollPositionChange(e),r=n.first,o=n.last,i=n.isRangeChanged,a=n.scrollPos;if(i){var l={first:r,last:o};if(this.setContentPosition(l),this.first=r,this.last=o,this.lastScrollPos=a,this.$emit("scroll-index-change",l),this.lazy&&this.isPageChanged(r)){var u={first:this.step?Math.min(this.getPageByFirst(r)*this.step,this.items.length-this.step):r,last:Math.min(this.step?(this.getPageByFirst(r)+1)*this.step:o,this.items.length)},s=this.lazyLoadState.first!==u.first||this.lazyLoadState.last!==u.last;s&&this.$emit("lazy-load",u),this.lazyLoadState=u}}},onScroll:function(e){var n=this;if(this.$emit("scroll",e),this.delay&&this.isPageChanged()){if(this.scrollTimeout&&clearTimeout(this.scrollTimeout),!this.d_loading&&this.showLoader){var r=this.onScrollPositionChange(e),o=r.isRangeChanged,i=o||(this.step?this.isPageChanged():!1);i&&(this.d_loading=!0)}this.scrollTimeout=setTimeout(function(){n.onScrollChange(e),n.d_loading&&n.showLoader&&(!n.lazy||n.loading===void 0)&&(n.d_loading=!1,n.page=n.getPageByFirst())},this.delay)}else this.onScrollChange(e)},onResize:function(){var e=this;this.resizeTimeout&&clearTimeout(this.resizeTimeout),this.resizeTimeout=setTimeout(function(){if(C.isVisible(e.element)){var n=e.isBoth(),r=e.isVertical(),o=e.isHorizontal(),i=[C.getWidth(e.element),C.getHeight(e.element)],a=i[0],l=i[1],u=a!==e.defaultWidth,s=l!==e.defaultHeight,c=n?u||s:o?u:r?s:!1;c&&(e.d_numToleratedItems=e.numToleratedItems,e.defaultWidth=a,e.defaultHeight=l,e.defaultContentWidth=C.getWidth(e.content),e.defaultContentHeight=C.getHeight(e.content),e.init())}},this.resizeDelay)},bindResizeListener:function(){this.resizeListener||(this.resizeListener=this.onResize.bind(this),window.addEventListener("resize",this.resizeListener),window.addEventListener("orientationchange",this.resizeListener))},unbindResizeListener:function(){this.resizeListener&&(window.removeEventListener("resize",this.resizeListener),window.removeEventListener("orientationchange",this.resizeListener),this.resizeListener=null)},getOptions:function(e){var n=(this.items||[]).length,r=this.isBoth()?this.first.rows+e:this.first+e;return{index:r,count:n,first:r===0,last:r===n-1,even:r%2===0,odd:r%2!==0}},getLoaderOptions:function(e,n){var r=this.loaderArr.length;return or({index:e,count:r,first:e===0,last:e===r-1,even:e%2===0,odd:e%2!==0},n)},getPageByFirst:function(e){return Math.floor(((e??this.first)+this.d_numToleratedItems*4)/(this.step||1))},isPageChanged:function(e){return this.step?this.page!==this.getPageByFirst(e??this.first):!0},setContentEl:function(e){this.content=e||this.content||C.findSingle(this.element,'[data-pc-section="content"]')},elementRef:function(e){this.element=e},contentRef:function(e){this.content=e}},computed:{containerClass:function(){return["p-virtualscroller",this.class,{"p-virtualscroller-inline":this.inline,"p-virtualscroller-both p-both-scroll":this.isBoth(),"p-virtualscroller-horizontal p-horizontal-scroll":this.isHorizontal()}]},contentClass:function(){return["p-virtualscroller-content",{"p-virtualscroller-loading":this.d_loading}]},loaderClass:function(){return["p-virtualscroller-loader",{"p-component-overlay":!this.$slots.loader}]},loadedItems:function(){var e=this;return this.items&&!this.d_loading?this.isBoth()?this.items.slice(this.appendOnly?0:this.first.rows,this.last.rows).map(function(n){return e.columns?n:n.slice(e.appendOnly?0:e.first.cols,e.last.cols)}):this.isHorizontal()&&this.columns?this.items:this.items.slice(this.appendOnly?0:this.first,this.last):[]},loadedRows:function(){return this.d_loading?this.loaderDisabled?this.loaderArr:[]:this.loadedItems},loadedColumns:function(){if(this.columns){var e=this.isBoth(),n=this.isHorizontal();if(e||n)return this.d_loading&&this.loaderDisabled?e?this.loaderArr[0]:this.loaderArr:this.columns.slice(e?this.first.cols:this.first,e?this.last.cols:this.last)}return this.columns}},components:{SpinnerIcon:mi}},Q1=["tabindex"];function eb(t,e,n,r,o,i){var a=K("SpinnerIcon");return t.disabled?(p(),v(ne,{key:1},[J(t.$slots,"default"),J(t.$slots,"content",{items:t.items,rows:t.items,columns:i.loadedColumns})],64)):(p(),v("div",h({key:0,ref:i.elementRef,class:i.containerClass,tabindex:t.tabindex,style:t.style,onScroll:e[0]||(e[0]=function(){return i.onScroll&&i.onScroll.apply(i,arguments)})},t.ptm("root"),{"data-pc-name":"virtualscroller"}),[J(t.$slots,"content",{styleClass:i.contentClass,items:i.loadedItems,getItemOptions:i.getOptions,loading:o.d_loading,getLoaderOptions:i.getLoaderOptions,itemSize:t.itemSize,rows:i.loadedRows,columns:i.loadedColumns,contentRef:i.contentRef,spacerStyle:o.spacerStyle,contentStyle:o.contentStyle,vertical:i.isVertical(),horizontal:i.isHorizontal(),both:i.isBoth()},function(){return[g("div",h({ref:i.contentRef,class:i.contentClass,style:o.contentStyle},t.ptm("content")),[(p(!0),v(ne,null,xe(i.loadedItems,function(l,u){return J(t.$slots,"item",{key:u,item:l,options:i.getOptions(u)})}),128))],16)]}),t.showSpacer?(p(),v("div",h({key:0,class:"p-virtualscroller-spacer",style:o.spacerStyle},t.ptm("spacer")),null,16)):T("",!0),!t.loaderDisabled&&t.showLoader&&o.d_loading?(p(),v("div",h({key:1,class:i.loaderClass},t.ptm("loader")),[t.$slots&&t.$slots.loader?(p(!0),v(ne,{key:0},xe(o.loaderArr,function(l,u){return J(t.$slots,"loader",{key:u,options:i.getLoaderOptions(u,i.isBoth()&&{numCols:t.d_numItemsInViewport.cols})})}),128)):T("",!0),J(t.$slots,"loadingicon",{},function(){return[P(a,h({spin:"",class:"p-virtualscroller-loading-icon"},t.ptm("loadingIcon")),null,16)]})],16)):T("",!0)],16,Q1))}ll.render=eb;var tb=` @layer primevue { .p-dropdown { display: inline-flex; @@ -944,8 +944,8 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho width: 1%; } } -`,nb={root:function(e){var n=e.instance,r=e.props,o=e.state;return["p-dropdown p-component p-inputwrapper",{"p-disabled":r.disabled,"p-dropdown-clearable":r.showClear&&!r.disabled,"p-focus":o.focused,"p-inputwrapper-filled":n.hasSelectedOption,"p-inputwrapper-focus":o.focused||o.overlayVisible,"p-overlay-open":o.overlayVisible}]},input:function(e){var n=e.instance,r=e.props;return["p-dropdown-label p-inputtext",{"p-placeholder":!r.editable&&n.label===r.placeholder,"p-dropdown-label-empty":!r.editable&&!n.$slots.value&&(n.label==="p-emptylabel"||n.label.length===0)}]},clearIcon:"p-dropdown-clear-icon",trigger:"p-dropdown-trigger",loadingicon:"p-dropdown-trigger-icon",dropdownIcon:"p-dropdown-trigger-icon",panel:function(e){var n=e.instance;return["p-dropdown-panel p-component",{"p-input-filled":n.$primevue.config.inputStyle==="filled","p-ripple-disabled":n.$primevue.config.ripple===!1}]},header:"p-dropdown-header",filterContainer:"p-dropdown-filter-container",filterInput:"p-dropdown-filter p-inputtext p-component",filterIcon:"p-dropdown-filter-icon",wrapper:"p-dropdown-items-wrapper",list:"p-dropdown-items",itemGroup:"p-dropdown-item-group",item:function(e){var n=e.instance,r=e.state,o=e.option,i=e.focusedOption;return["p-dropdown-item",{"p-highlight":n.isSelected(o),"p-focus":r.focusedOptionIndex===i,"p-disabled":n.isOptionDisabled(o)}]},emptyMessage:"p-dropdown-empty-message"},rb=je.extend({name:"dropdown",css:tb,classes:nb}),ib={name:"BaseDropdown",extends:Pe,props:{modelValue:null,options:Array,optionLabel:[String,Function],optionValue:[String,Function],optionDisabled:[String,Function],optionGroupLabel:[String,Function],optionGroupChildren:[String,Function],scrollHeight:{type:String,default:"200px"},filter:Boolean,filterPlaceholder:String,filterLocale:String,filterMatchMode:{type:String,default:"contains"},filterFields:{type:Array,default:null},editable:Boolean,placeholder:{type:String,default:null},disabled:{type:Boolean,default:!1},dataKey:null,showClear:{type:Boolean,default:!1},inputId:{type:String,default:null},inputClass:{type:[String,Object],default:null},inputStyle:{type:Object,default:null},inputProps:{type:null,default:null},panelClass:{type:[String,Object],default:null},panelStyle:{type:Object,default:null},panelProps:{type:null,default:null},filterInputProps:{type:null,default:null},clearIconProps:{type:null,default:null},appendTo:{type:String,default:"body"},loading:{type:Boolean,default:!1},clearIcon:{type:String,default:void 0},dropdownIcon:{type:String,default:void 0},filterIcon:{type:String,default:void 0},loadingIcon:{type:String,default:void 0},resetFilterOnHide:{type:Boolean,default:!1},virtualScrollerOptions:{type:Object,default:null},autoOptionFocus:{type:Boolean,default:!0},autoFilterFocus:{type:Boolean,default:!1},selectOnFocus:{type:Boolean,default:!1},filterMessage:{type:String,default:null},selectionMessage:{type:String,default:null},emptySelectionMessage:{type:String,default:null},emptyFilterMessage:{type:String,default:null},emptyMessage:{type:String,default:null},tabindex:{type:Number,default:0},"aria-label":{type:String,default:null},"aria-labelledby":{type:String,default:null}},style:rb,provide:function(){return{$parentInstance:this}}};function zr(t){"@babel/helpers - typeof";return zr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},zr(t)}function ob(t){return ub(t)||sb(t)||lb(t)||ab()}function ab(){throw new TypeError(`Invalid attempt to spread non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function lb(t,e){if(t){if(typeof t=="string")return da(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return da(t,e)}}function sb(t){if(typeof Symbol<"u"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function ub(t){if(Array.isArray(t))return da(t)}function da(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n2&&arguments[2]!==void 0?arguments[2]:!0,o=this.getOptionValue(n);this.updateModel(e,o),r&&this.hide(!0)},onOptionMouseMove:function(e,n){this.focusOnHover&&this.changeFocusedOptionIndex(e,n)},onFilterChange:function(e){var n=e.target.value;this.filterValue=n,this.focusedOptionIndex=-1,this.$emit("filter",{originalEvent:e,value:n}),!this.virtualScrollerDisabled&&this.virtualScroller.scrollToIndex(0)},onFilterKeyDown:function(e){switch(e.code){case"ArrowDown":this.onArrowDownKey(e);break;case"ArrowUp":this.onArrowUpKey(e,!0);break;case"ArrowLeft":case"ArrowRight":this.onArrowLeftKey(e,!0);break;case"Home":this.onHomeKey(e,!0);break;case"End":this.onEndKey(e,!0);break;case"Enter":this.onEnterKey(e);break;case"Escape":this.onEscapeKey(e);break;case"Tab":this.onTabKey(e,!0);break}},onFilterBlur:function(){this.focusedOptionIndex=-1},onFilterUpdated:function(){this.overlayVisible&&this.alignOverlay()},onOverlayClick:function(e){At.emit("overlay-click",{originalEvent:e,target:this.$el})},onOverlayKeyDown:function(e){switch(e.code){case"Escape":this.onEscapeKey(e);break}},onDeleteKey:function(e){this.showClear&&(this.updateModel(e,null),e.preventDefault())},onArrowDownKey:function(e){var n=this.focusedOptionIndex!==-1?this.findNextOptionIndex(this.focusedOptionIndex):this.findFirstFocusedOptionIndex();this.changeFocusedOptionIndex(e,n),!this.overlayVisible&&this.show(),e.preventDefault()},onArrowUpKey:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;if(e.altKey&&!n)this.focusedOptionIndex!==-1&&this.onOptionSelect(e,this.visibleOptions[this.focusedOptionIndex]),this.overlayVisible&&this.hide(),e.preventDefault();else{var r=this.focusedOptionIndex!==-1?this.findPrevOptionIndex(this.focusedOptionIndex):this.findLastFocusedOptionIndex();this.changeFocusedOptionIndex(e,r),!this.overlayVisible&&this.show(),e.preventDefault()}},onArrowLeftKey:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;n&&(this.focusedOptionIndex=-1)},onHomeKey:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;n?(e.currentTarget.setSelectionRange(0,0),this.focusedOptionIndex=-1):(this.changeFocusedOptionIndex(e,this.findFirstOptionIndex()),!this.overlayVisible&&this.show()),e.preventDefault()},onEndKey:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;if(n){var r=e.currentTarget,o=r.value.length;r.setSelectionRange(o,o),this.focusedOptionIndex=-1}else this.changeFocusedOptionIndex(e,this.findLastOptionIndex()),!this.overlayVisible&&this.show();e.preventDefault()},onPageUpKey:function(e){this.scrollInView(0),e.preventDefault()},onPageDownKey:function(e){this.scrollInView(this.visibleOptions.length-1),e.preventDefault()},onEnterKey:function(e){this.overlayVisible?(this.focusedOptionIndex!==-1&&this.onOptionSelect(e,this.visibleOptions[this.focusedOptionIndex]),this.hide()):this.onArrowDownKey(e),e.preventDefault()},onSpaceKey:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;!n&&this.onEnterKey(e)},onEscapeKey:function(e){this.overlayVisible&&this.hide(!0),e.preventDefault()},onTabKey:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;n||(this.overlayVisible&&this.hasFocusableElements()?(C.focus(this.$refs.firstHiddenFocusableElementOnOverlay),e.preventDefault()):(this.focusedOptionIndex!==-1&&this.onOptionSelect(e,this.visibleOptions[this.focusedOptionIndex]),this.overlayVisible&&this.hide(this.filter)))},onBackspaceKey:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;n&&!this.overlayVisible&&this.show()},onOverlayEnter:function(e){Je.set("overlay",e,this.$primevue.config.zIndex.overlay),C.addStyles(e,{position:"absolute",top:"0",left:"0"}),this.alignOverlay(),this.scrollInView(),this.autoFilterFocus&&C.focus(this.$refs.filterInput)},onOverlayAfterEnter:function(){this.bindOutsideClickListener(),this.bindScrollListener(),this.bindResizeListener(),this.$emit("show")},onOverlayLeave:function(){this.unbindOutsideClickListener(),this.unbindScrollListener(),this.unbindResizeListener(),this.$emit("hide"),this.overlay=null},onOverlayAfterLeave:function(e){Je.clear(e)},alignOverlay:function(){this.appendTo==="self"?C.relativePosition(this.overlay,this.$el):(this.overlay.style.minWidth=C.getOuterWidth(this.$el)+"px",C.absolutePosition(this.overlay,this.$el))},bindOutsideClickListener:function(){var e=this;this.outsideClickListener||(this.outsideClickListener=function(n){e.overlayVisible&&e.overlay&&!e.$el.contains(n.target)&&!e.overlay.contains(n.target)&&e.hide()},document.addEventListener("click",this.outsideClickListener))},unbindOutsideClickListener:function(){this.outsideClickListener&&(document.removeEventListener("click",this.outsideClickListener),this.outsideClickListener=null)},bindScrollListener:function(){var e=this;this.scrollHandler||(this.scrollHandler=new pi(this.$refs.container,function(){e.overlayVisible&&e.hide()})),this.scrollHandler.bindScrollListener()},unbindScrollListener:function(){this.scrollHandler&&this.scrollHandler.unbindScrollListener()},bindResizeListener:function(){var e=this;this.resizeListener||(this.resizeListener=function(){e.overlayVisible&&!C.isTouchDevice()&&e.hide()},window.addEventListener("resize",this.resizeListener))},unbindResizeListener:function(){this.resizeListener&&(window.removeEventListener("resize",this.resizeListener),this.resizeListener=null)},hasFocusableElements:function(){return C.getFocusableElements(this.overlay,':not([data-p-hidden-focusable="true"])').length>0},isOptionMatched:function(e){return this.isValidOption(e)&&this.getOptionLabel(e).toLocaleLowerCase(this.filterLocale).startsWith(this.searchValue.toLocaleLowerCase(this.filterLocale))},isValidOption:function(e){return B.isNotEmpty(e)&&!(this.isOptionDisabled(e)||this.isOptionGroup(e))},isValidSelectedOption:function(e){return this.isValidOption(e)&&this.isSelected(e)},isSelected:function(e){return this.isValidOption(e)&&B.equals(this.modelValue,this.getOptionValue(e),this.equalityKey)},findFirstOptionIndex:function(){var e=this;return this.visibleOptions.findIndex(function(n){return e.isValidOption(n)})},findLastOptionIndex:function(){var e=this;return B.findLastIndex(this.visibleOptions,function(n){return e.isValidOption(n)})},findNextOptionIndex:function(e){var n=this,r=e-1?r+e+1:e},findPrevOptionIndex:function(e){var n=this,r=e>0?B.findLastIndex(this.visibleOptions.slice(0,e),function(o){return n.isValidOption(o)}):-1;return r>-1?r:e},findSelectedOptionIndex:function(){var e=this;return this.hasSelectedOption?this.visibleOptions.findIndex(function(n){return e.isValidSelectedOption(n)}):-1},findFirstFocusedOptionIndex:function(){var e=this.findSelectedOptionIndex();return e<0?this.findFirstOptionIndex():e},findLastFocusedOptionIndex:function(){var e=this.findSelectedOptionIndex();return e<0?this.findLastOptionIndex():e},searchOptions:function(e,n){var r=this;this.searchValue=(this.searchValue||"")+n;var o=-1,i=!1;return this.focusedOptionIndex!==-1?(o=this.visibleOptions.slice(this.focusedOptionIndex).findIndex(function(a){return r.isOptionMatched(a)}),o=o===-1?this.visibleOptions.slice(0,this.focusedOptionIndex).findIndex(function(a){return r.isOptionMatched(a)}):o+this.focusedOptionIndex):o=this.visibleOptions.findIndex(function(a){return r.isOptionMatched(a)}),o!==-1&&(i=!0),o===-1&&this.focusedOptionIndex===-1&&(o=this.findFirstFocusedOptionIndex()),o!==-1&&this.changeFocusedOptionIndex(e,o),this.searchTimeout&&clearTimeout(this.searchTimeout),this.searchTimeout=setTimeout(function(){r.searchValue="",r.searchTimeout=null},500),i},changeFocusedOptionIndex:function(e,n){this.focusedOptionIndex!==n&&(this.focusedOptionIndex=n,this.scrollInView(),this.selectOnFocus&&this.onOptionSelect(e,this.visibleOptions[n],!1))},scrollInView:function(){var e=this,n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:-1,r=n!==-1?"".concat(this.id,"_").concat(n):this.focusedOptionId,o=C.findSingle(this.list,'li[id="'.concat(r,'"]'));o?o.scrollIntoView&&o.scrollIntoView({block:"nearest",inline:"start"}):this.virtualScrollerDisabled||setTimeout(function(){e.virtualScroller&&e.virtualScroller.scrollToIndex(n!==-1?n:e.focusedOptionIndex)},0)},autoUpdateModel:function(){this.selectOnFocus&&this.autoOptionFocus&&!this.hasSelectedOption&&(this.focusedOptionIndex=this.findFirstFocusedOptionIndex(),this.onOptionSelect(null,this.visibleOptions[this.focusedOptionIndex],!1))},updateModel:function(e,n){this.$emit("update:modelValue",n),this.$emit("change",{originalEvent:e,value:n})},flatOptions:function(e){var n=this;return(e||[]).reduce(function(r,o,i){r.push({optionGroup:o,group:!0,index:i});var a=n.getOptionGroupChildren(o);return a&&a.forEach(function(l){return r.push(l)}),r},[])},overlayRef:function(e){this.overlay=e},listRef:function(e,n){this.list=e,n&&n(e)},virtualScrollerRef:function(e){this.virtualScroller=e}},computed:{visibleOptions:function(){var e=this,n=this.optionGroupLabel?this.flatOptions(this.options):this.options||[];if(this.filterValue){var r=ra.filter(n,this.searchFields,this.filterValue,this.filterMatchMode,this.filterLocale);if(this.optionGroupLabel){var o=this.options||[],i=[];return o.forEach(function(a){var l=e.getOptionGroupChildren(a),u=l.filter(function(s){return r.includes(s)});u.length>0&&i.push($s($s({},a),{},Qc({},typeof e.optionGroupChildren=="string"?e.optionGroupChildren:"items",ob(u))))}),this.flatOptions(i)}return r}return n},hasSelectedOption:function(){return B.isNotEmpty(this.modelValue)},label:function(){var e=this.findSelectedOptionIndex();return e!==-1?this.getOptionLabel(this.visibleOptions[e]):this.placeholder||"p-emptylabel"},editableInputValue:function(){var e=this.findSelectedOptionIndex();return e!==-1?this.getOptionLabel(this.visibleOptions[e]):this.modelValue||""},equalityKey:function(){return this.optionValue?null:this.dataKey},searchFields:function(){return this.filterFields||[this.optionLabel]},filterResultMessageText:function(){return B.isNotEmpty(this.visibleOptions)?this.filterMessageText.replaceAll("{0}",this.visibleOptions.length):this.emptyFilterMessageText},filterMessageText:function(){return this.filterMessage||this.$primevue.config.locale.searchMessage||""},emptyFilterMessageText:function(){return this.emptyFilterMessage||this.$primevue.config.locale.emptySearchMessage||this.$primevue.config.locale.emptyFilterMessage||""},emptyMessageText:function(){return this.emptyMessage||this.$primevue.config.locale.emptyMessage||""},selectionMessageText:function(){return this.selectionMessage||this.$primevue.config.locale.selectionMessage||""},emptySelectionMessageText:function(){return this.emptySelectionMessage||this.$primevue.config.locale.emptySelectionMessage||""},selectedMessageText:function(){return this.hasSelectedOption?this.selectionMessageText.replaceAll("{0}","1"):this.emptySelectionMessageText},focusedOptionId:function(){return this.focusedOptionIndex!==-1?"".concat(this.id,"_").concat(this.focusedOptionIndex):null},ariaSetSize:function(){var e=this;return this.visibleOptions.filter(function(n){return!e.isOptionGroup(n)}).length},virtualScrollerDisabled:function(){return!this.virtualScrollerOptions}},directives:{ripple:pt},components:{VirtualScroller:ll,Portal:Rn,TimesIcon:Xn,ChevronDownIcon:Zn,SpinnerIcon:mi,FilterIcon:al}};function Kr(t){"@babel/helpers - typeof";return Kr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Kr(t)}function As(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function Tt(t){for(var e=1;e0},ptmParams:function(){return{context:{filled:this.filled,disabled:this.$attrs.disabled||this.$attrs.disabled===""}}}}},Rb=["value"];function $b(t,e,n,r,o,i){return p(),v("input",h({class:t.cx("root"),value:t.modelValue,onInput:e[0]||(e[0]=function(){return i.onInput&&i.onInput.apply(i,arguments)})},t.ptm("root",i.ptmParams),{"data-pc-name":"inputtext"}),null,16,Rb)}sl.render=$b;var Ab=` +`,nb={root:function(e){var n=e.instance,r=e.props,o=e.state;return["p-dropdown p-component p-inputwrapper",{"p-disabled":r.disabled,"p-dropdown-clearable":r.showClear&&!r.disabled,"p-focus":o.focused,"p-inputwrapper-filled":n.hasSelectedOption,"p-inputwrapper-focus":o.focused||o.overlayVisible,"p-overlay-open":o.overlayVisible}]},input:function(e){var n=e.instance,r=e.props;return["p-dropdown-label p-inputtext",{"p-placeholder":!r.editable&&n.label===r.placeholder,"p-dropdown-label-empty":!r.editable&&!n.$slots.value&&(n.label==="p-emptylabel"||n.label.length===0)}]},clearIcon:"p-dropdown-clear-icon",trigger:"p-dropdown-trigger",loadingicon:"p-dropdown-trigger-icon",dropdownIcon:"p-dropdown-trigger-icon",panel:function(e){var n=e.instance;return["p-dropdown-panel p-component",{"p-input-filled":n.$primevue.config.inputStyle==="filled","p-ripple-disabled":n.$primevue.config.ripple===!1}]},header:"p-dropdown-header",filterContainer:"p-dropdown-filter-container",filterInput:"p-dropdown-filter p-inputtext p-component",filterIcon:"p-dropdown-filter-icon",wrapper:"p-dropdown-items-wrapper",list:"p-dropdown-items",itemGroup:"p-dropdown-item-group",item:function(e){var n=e.instance,r=e.state,o=e.option,i=e.focusedOption;return["p-dropdown-item",{"p-highlight":n.isSelected(o),"p-focus":r.focusedOptionIndex===i,"p-disabled":n.isOptionDisabled(o)}]},emptyMessage:"p-dropdown-empty-message"},rb=Be.extend({name:"dropdown",css:tb,classes:nb}),ib={name:"BaseDropdown",extends:Oe,props:{modelValue:null,options:Array,optionLabel:[String,Function],optionValue:[String,Function],optionDisabled:[String,Function],optionGroupLabel:[String,Function],optionGroupChildren:[String,Function],scrollHeight:{type:String,default:"200px"},filter:Boolean,filterPlaceholder:String,filterLocale:String,filterMatchMode:{type:String,default:"contains"},filterFields:{type:Array,default:null},editable:Boolean,placeholder:{type:String,default:null},disabled:{type:Boolean,default:!1},dataKey:null,showClear:{type:Boolean,default:!1},inputId:{type:String,default:null},inputClass:{type:[String,Object],default:null},inputStyle:{type:Object,default:null},inputProps:{type:null,default:null},panelClass:{type:[String,Object],default:null},panelStyle:{type:Object,default:null},panelProps:{type:null,default:null},filterInputProps:{type:null,default:null},clearIconProps:{type:null,default:null},appendTo:{type:String,default:"body"},loading:{type:Boolean,default:!1},clearIcon:{type:String,default:void 0},dropdownIcon:{type:String,default:void 0},filterIcon:{type:String,default:void 0},loadingIcon:{type:String,default:void 0},resetFilterOnHide:{type:Boolean,default:!1},virtualScrollerOptions:{type:Object,default:null},autoOptionFocus:{type:Boolean,default:!0},autoFilterFocus:{type:Boolean,default:!1},selectOnFocus:{type:Boolean,default:!1},filterMessage:{type:String,default:null},selectionMessage:{type:String,default:null},emptySelectionMessage:{type:String,default:null},emptyFilterMessage:{type:String,default:null},emptyMessage:{type:String,default:null},tabindex:{type:Number,default:0},"aria-label":{type:String,default:null},"aria-labelledby":{type:String,default:null}},style:rb,provide:function(){return{$parentInstance:this}}};function zr(t){"@babel/helpers - typeof";return zr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},zr(t)}function ob(t){return ub(t)||sb(t)||lb(t)||ab()}function ab(){throw new TypeError(`Invalid attempt to spread non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function lb(t,e){if(t){if(typeof t=="string")return da(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return da(t,e)}}function sb(t){if(typeof Symbol<"u"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function ub(t){if(Array.isArray(t))return da(t)}function da(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n2&&arguments[2]!==void 0?arguments[2]:!0,o=this.getOptionValue(n);this.updateModel(e,o),r&&this.hide(!0)},onOptionMouseMove:function(e,n){this.focusOnHover&&this.changeFocusedOptionIndex(e,n)},onFilterChange:function(e){var n=e.target.value;this.filterValue=n,this.focusedOptionIndex=-1,this.$emit("filter",{originalEvent:e,value:n}),!this.virtualScrollerDisabled&&this.virtualScroller.scrollToIndex(0)},onFilterKeyDown:function(e){switch(e.code){case"ArrowDown":this.onArrowDownKey(e);break;case"ArrowUp":this.onArrowUpKey(e,!0);break;case"ArrowLeft":case"ArrowRight":this.onArrowLeftKey(e,!0);break;case"Home":this.onHomeKey(e,!0);break;case"End":this.onEndKey(e,!0);break;case"Enter":this.onEnterKey(e);break;case"Escape":this.onEscapeKey(e);break;case"Tab":this.onTabKey(e,!0);break}},onFilterBlur:function(){this.focusedOptionIndex=-1},onFilterUpdated:function(){this.overlayVisible&&this.alignOverlay()},onOverlayClick:function(e){At.emit("overlay-click",{originalEvent:e,target:this.$el})},onOverlayKeyDown:function(e){switch(e.code){case"Escape":this.onEscapeKey(e);break}},onDeleteKey:function(e){this.showClear&&(this.updateModel(e,null),e.preventDefault())},onArrowDownKey:function(e){var n=this.focusedOptionIndex!==-1?this.findNextOptionIndex(this.focusedOptionIndex):this.findFirstFocusedOptionIndex();this.changeFocusedOptionIndex(e,n),!this.overlayVisible&&this.show(),e.preventDefault()},onArrowUpKey:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;if(e.altKey&&!n)this.focusedOptionIndex!==-1&&this.onOptionSelect(e,this.visibleOptions[this.focusedOptionIndex]),this.overlayVisible&&this.hide(),e.preventDefault();else{var r=this.focusedOptionIndex!==-1?this.findPrevOptionIndex(this.focusedOptionIndex):this.findLastFocusedOptionIndex();this.changeFocusedOptionIndex(e,r),!this.overlayVisible&&this.show(),e.preventDefault()}},onArrowLeftKey:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;n&&(this.focusedOptionIndex=-1)},onHomeKey:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;n?(e.currentTarget.setSelectionRange(0,0),this.focusedOptionIndex=-1):(this.changeFocusedOptionIndex(e,this.findFirstOptionIndex()),!this.overlayVisible&&this.show()),e.preventDefault()},onEndKey:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;if(n){var r=e.currentTarget,o=r.value.length;r.setSelectionRange(o,o),this.focusedOptionIndex=-1}else this.changeFocusedOptionIndex(e,this.findLastOptionIndex()),!this.overlayVisible&&this.show();e.preventDefault()},onPageUpKey:function(e){this.scrollInView(0),e.preventDefault()},onPageDownKey:function(e){this.scrollInView(this.visibleOptions.length-1),e.preventDefault()},onEnterKey:function(e){this.overlayVisible?(this.focusedOptionIndex!==-1&&this.onOptionSelect(e,this.visibleOptions[this.focusedOptionIndex]),this.hide()):this.onArrowDownKey(e),e.preventDefault()},onSpaceKey:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;!n&&this.onEnterKey(e)},onEscapeKey:function(e){this.overlayVisible&&this.hide(!0),e.preventDefault()},onTabKey:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;n||(this.overlayVisible&&this.hasFocusableElements()?(C.focus(this.$refs.firstHiddenFocusableElementOnOverlay),e.preventDefault()):(this.focusedOptionIndex!==-1&&this.onOptionSelect(e,this.visibleOptions[this.focusedOptionIndex]),this.overlayVisible&&this.hide(this.filter)))},onBackspaceKey:function(e){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;n&&!this.overlayVisible&&this.show()},onOverlayEnter:function(e){Xe.set("overlay",e,this.$primevue.config.zIndex.overlay),C.addStyles(e,{position:"absolute",top:"0",left:"0"}),this.alignOverlay(),this.scrollInView(),this.autoFilterFocus&&C.focus(this.$refs.filterInput)},onOverlayAfterEnter:function(){this.bindOutsideClickListener(),this.bindScrollListener(),this.bindResizeListener(),this.$emit("show")},onOverlayLeave:function(){this.unbindOutsideClickListener(),this.unbindScrollListener(),this.unbindResizeListener(),this.$emit("hide"),this.overlay=null},onOverlayAfterLeave:function(e){Xe.clear(e)},alignOverlay:function(){this.appendTo==="self"?C.relativePosition(this.overlay,this.$el):(this.overlay.style.minWidth=C.getOuterWidth(this.$el)+"px",C.absolutePosition(this.overlay,this.$el))},bindOutsideClickListener:function(){var e=this;this.outsideClickListener||(this.outsideClickListener=function(n){e.overlayVisible&&e.overlay&&!e.$el.contains(n.target)&&!e.overlay.contains(n.target)&&e.hide()},document.addEventListener("click",this.outsideClickListener))},unbindOutsideClickListener:function(){this.outsideClickListener&&(document.removeEventListener("click",this.outsideClickListener),this.outsideClickListener=null)},bindScrollListener:function(){var e=this;this.scrollHandler||(this.scrollHandler=new pi(this.$refs.container,function(){e.overlayVisible&&e.hide()})),this.scrollHandler.bindScrollListener()},unbindScrollListener:function(){this.scrollHandler&&this.scrollHandler.unbindScrollListener()},bindResizeListener:function(){var e=this;this.resizeListener||(this.resizeListener=function(){e.overlayVisible&&!C.isTouchDevice()&&e.hide()},window.addEventListener("resize",this.resizeListener))},unbindResizeListener:function(){this.resizeListener&&(window.removeEventListener("resize",this.resizeListener),this.resizeListener=null)},hasFocusableElements:function(){return C.getFocusableElements(this.overlay,':not([data-p-hidden-focusable="true"])').length>0},isOptionMatched:function(e){return this.isValidOption(e)&&this.getOptionLabel(e).toLocaleLowerCase(this.filterLocale).startsWith(this.searchValue.toLocaleLowerCase(this.filterLocale))},isValidOption:function(e){return H.isNotEmpty(e)&&!(this.isOptionDisabled(e)||this.isOptionGroup(e))},isValidSelectedOption:function(e){return this.isValidOption(e)&&this.isSelected(e)},isSelected:function(e){return this.isValidOption(e)&&H.equals(this.modelValue,this.getOptionValue(e),this.equalityKey)},findFirstOptionIndex:function(){var e=this;return this.visibleOptions.findIndex(function(n){return e.isValidOption(n)})},findLastOptionIndex:function(){var e=this;return H.findLastIndex(this.visibleOptions,function(n){return e.isValidOption(n)})},findNextOptionIndex:function(e){var n=this,r=e-1?r+e+1:e},findPrevOptionIndex:function(e){var n=this,r=e>0?H.findLastIndex(this.visibleOptions.slice(0,e),function(o){return n.isValidOption(o)}):-1;return r>-1?r:e},findSelectedOptionIndex:function(){var e=this;return this.hasSelectedOption?this.visibleOptions.findIndex(function(n){return e.isValidSelectedOption(n)}):-1},findFirstFocusedOptionIndex:function(){var e=this.findSelectedOptionIndex();return e<0?this.findFirstOptionIndex():e},findLastFocusedOptionIndex:function(){var e=this.findSelectedOptionIndex();return e<0?this.findLastOptionIndex():e},searchOptions:function(e,n){var r=this;this.searchValue=(this.searchValue||"")+n;var o=-1,i=!1;return this.focusedOptionIndex!==-1?(o=this.visibleOptions.slice(this.focusedOptionIndex).findIndex(function(a){return r.isOptionMatched(a)}),o=o===-1?this.visibleOptions.slice(0,this.focusedOptionIndex).findIndex(function(a){return r.isOptionMatched(a)}):o+this.focusedOptionIndex):o=this.visibleOptions.findIndex(function(a){return r.isOptionMatched(a)}),o!==-1&&(i=!0),o===-1&&this.focusedOptionIndex===-1&&(o=this.findFirstFocusedOptionIndex()),o!==-1&&this.changeFocusedOptionIndex(e,o),this.searchTimeout&&clearTimeout(this.searchTimeout),this.searchTimeout=setTimeout(function(){r.searchValue="",r.searchTimeout=null},500),i},changeFocusedOptionIndex:function(e,n){this.focusedOptionIndex!==n&&(this.focusedOptionIndex=n,this.scrollInView(),this.selectOnFocus&&this.onOptionSelect(e,this.visibleOptions[n],!1))},scrollInView:function(){var e=this,n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:-1,r=n!==-1?"".concat(this.id,"_").concat(n):this.focusedOptionId,o=C.findSingle(this.list,'li[id="'.concat(r,'"]'));o?o.scrollIntoView&&o.scrollIntoView({block:"nearest",inline:"start"}):this.virtualScrollerDisabled||setTimeout(function(){e.virtualScroller&&e.virtualScroller.scrollToIndex(n!==-1?n:e.focusedOptionIndex)},0)},autoUpdateModel:function(){this.selectOnFocus&&this.autoOptionFocus&&!this.hasSelectedOption&&(this.focusedOptionIndex=this.findFirstFocusedOptionIndex(),this.onOptionSelect(null,this.visibleOptions[this.focusedOptionIndex],!1))},updateModel:function(e,n){this.$emit("update:modelValue",n),this.$emit("change",{originalEvent:e,value:n})},flatOptions:function(e){var n=this;return(e||[]).reduce(function(r,o,i){r.push({optionGroup:o,group:!0,index:i});var a=n.getOptionGroupChildren(o);return a&&a.forEach(function(l){return r.push(l)}),r},[])},overlayRef:function(e){this.overlay=e},listRef:function(e,n){this.list=e,n&&n(e)},virtualScrollerRef:function(e){this.virtualScroller=e}},computed:{visibleOptions:function(){var e=this,n=this.optionGroupLabel?this.flatOptions(this.options):this.options||[];if(this.filterValue){var r=ra.filter(n,this.searchFields,this.filterValue,this.filterMatchMode,this.filterLocale);if(this.optionGroupLabel){var o=this.options||[],i=[];return o.forEach(function(a){var l=e.getOptionGroupChildren(a),u=l.filter(function(s){return r.includes(s)});u.length>0&&i.push($s($s({},a),{},Qc({},typeof e.optionGroupChildren=="string"?e.optionGroupChildren:"items",ob(u))))}),this.flatOptions(i)}return r}return n},hasSelectedOption:function(){return H.isNotEmpty(this.modelValue)},label:function(){var e=this.findSelectedOptionIndex();return e!==-1?this.getOptionLabel(this.visibleOptions[e]):this.placeholder||"p-emptylabel"},editableInputValue:function(){var e=this.findSelectedOptionIndex();return e!==-1?this.getOptionLabel(this.visibleOptions[e]):this.modelValue||""},equalityKey:function(){return this.optionValue?null:this.dataKey},searchFields:function(){return this.filterFields||[this.optionLabel]},filterResultMessageText:function(){return H.isNotEmpty(this.visibleOptions)?this.filterMessageText.replaceAll("{0}",this.visibleOptions.length):this.emptyFilterMessageText},filterMessageText:function(){return this.filterMessage||this.$primevue.config.locale.searchMessage||""},emptyFilterMessageText:function(){return this.emptyFilterMessage||this.$primevue.config.locale.emptySearchMessage||this.$primevue.config.locale.emptyFilterMessage||""},emptyMessageText:function(){return this.emptyMessage||this.$primevue.config.locale.emptyMessage||""},selectionMessageText:function(){return this.selectionMessage||this.$primevue.config.locale.selectionMessage||""},emptySelectionMessageText:function(){return this.emptySelectionMessage||this.$primevue.config.locale.emptySelectionMessage||""},selectedMessageText:function(){return this.hasSelectedOption?this.selectionMessageText.replaceAll("{0}","1"):this.emptySelectionMessageText},focusedOptionId:function(){return this.focusedOptionIndex!==-1?"".concat(this.id,"_").concat(this.focusedOptionIndex):null},ariaSetSize:function(){var e=this;return this.visibleOptions.filter(function(n){return!e.isOptionGroup(n)}).length},virtualScrollerDisabled:function(){return!this.virtualScrollerOptions}},directives:{ripple:pt},components:{VirtualScroller:ll,Portal:Rn,TimesIcon:Xn,ChevronDownIcon:Zn,SpinnerIcon:mi,FilterIcon:al}};function Kr(t){"@babel/helpers - typeof";return Kr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Kr(t)}function As(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function xt(t){for(var e=1;e0},ptmParams:function(){return{context:{filled:this.filled,disabled:this.$attrs.disabled||this.$attrs.disabled===""}}}}},Rb=["value"];function $b(t,e,n,r,o,i){return p(),v("input",h({class:t.cx("root"),value:t.modelValue,onInput:e[0]||(e[0]=function(){return i.onInput&&i.onInput.apply(i,arguments)})},t.ptm("root",i.ptmParams),{"data-pc-name":"inputtext"}),null,16,Rb)}sl.render=$b;var Ab=` @layer primevue { .p-inputnumber { display: inline-flex; @@ -1048,8 +1048,8 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho width: 100%; } } -`,Mb={root:function(e){var n=e.instance,r=e.props;return["p-inputnumber p-component p-inputwrapper",{"p-inputwrapper-filled":n.filled,"p-inputwrapper-focus":n.focused,"p-inputnumber-buttons-stacked":r.showButtons&&r.buttonLayout==="stacked","p-inputnumber-buttons-horizontal":r.showButtons&&r.buttonLayout==="horizontal","p-inputnumber-buttons-vertical":r.showButtons&&r.buttonLayout==="vertical"}]},input:"p-inputnumber-input",buttonGroup:"p-inputnumber-button-group",incrementButton:function(e){var n=e.instance,r=e.props;return["p-inputnumber-button p-inputnumber-button-up",{"p-disabled":r.showButtons&&r.max!==null&&n.maxBoundry()}]},decrementButton:function(e){var n=e.instance,r=e.props;return["p-inputnumber-button p-inputnumber-button-down",{"p-disabled":r.showButtons&&r.min!==null&&n.minBoundry()}]}},Lb=je.extend({name:"inputnumber",css:Ab,classes:Mb}),Fb={name:"BaseInputNumber",extends:Pe,props:{modelValue:{type:Number,default:null},format:{type:Boolean,default:!0},showButtons:{type:Boolean,default:!1},buttonLayout:{type:String,default:"stacked"},incrementButtonClass:{type:String,default:null},decrementButtonClass:{type:String,default:null},incrementButtonIcon:{type:String,default:void 0},decrementButtonIcon:{type:String,default:void 0},locale:{type:String,default:void 0},localeMatcher:{type:String,default:void 0},mode:{type:String,default:"decimal"},prefix:{type:String,default:null},suffix:{type:String,default:null},currency:{type:String,default:void 0},currencyDisplay:{type:String,default:void 0},useGrouping:{type:Boolean,default:!0},minFractionDigits:{type:Number,default:void 0},maxFractionDigits:{type:Number,default:void 0},min:{type:Number,default:null},max:{type:Number,default:null},step:{type:Number,default:1},allowEmpty:{type:Boolean,default:!0},highlightOnFocus:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},placeholder:{type:String,default:null},inputId:{type:String,default:null},inputClass:{type:[String,Object],default:null},inputStyle:{type:Object,default:null},inputProps:{type:null,default:null},incrementButtonProps:{type:null,default:null},decrementButtonProps:{type:null,default:null},"aria-labelledby":{type:String,default:null},"aria-label":{type:String,default:null}},style:Lb,provide:function(){return{$parentInstance:this}}};function Ur(t){"@babel/helpers - typeof";return Ur=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ur(t)}function Ms(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function Ls(t){for(var e=1;et.length)&&(e=t.length);for(var n=0,r=new Array(e);n0&&n>u){var d=this.isDecimalMode()&&(this.minFractionDigits||0)0?i:""):i=o.slice(0,n-1)+o.slice(n)}this.updateValue(e,i,null,"delete-single")}else i=this.deleteRange(o,n,r),this.updateValue(e,i,null,"delete-range");break}case"Delete":if(e.preventDefault(),n===r){var m=o.charAt(n),f=this.getDecimalCharIndexes(o),y=f.decimalCharIndex,b=f.decimalCharIndexWithoutPrefix;if(this.isNumeralChar(m)){var S=this.getDecimalLength(o);if(this._group.test(m))this._group.lastIndex=0,i=o.slice(0,n)+o.slice(n+2);else if(this._decimal.test(m))this._decimal.lastIndex=0,S?this.$refs.input.$el.setSelectionRange(n+1,n+1):i=o.slice(0,n)+o.slice(n+1);else if(y>0&&n>y){var _=this.isDecimalMode()&&(this.minFractionDigits||0)0?i:""):i=o.slice(0,n)+o.slice(n+1)}this.updateValue(e,i,null,"delete-back-single")}else i=this.deleteRange(o,n,r),this.updateValue(e,i,null,"delete-range");break;case"Home":this.min&&(this.updateModel(e,this.min),e.preventDefault());break;case"End":this.max&&(this.updateModel(e,this.max),e.preventDefault());break}}},onInputKeyPress:function(e){if(!this.readonly){e.preventDefault();var n=e.which||e.keyCode,r=String.fromCharCode(n),o=this.isDecimalSign(r),i=this.isMinusSign(r);(48<=n&&n<=57||i||o)&&this.insert(e,r,{isDecimalSign:o,isMinusSign:i})}},onPaste:function(e){e.preventDefault();var n=(e.clipboardData||window.clipboardData).getData("Text");if(n){var r=this.parseValue(n);r!=null&&this.insert(e,r.toString())}},allowMinusSign:function(){return this.min===null||this.min<0},isMinusSign:function(e){return this._minusSign.test(e)||e==="-"?(this._minusSign.lastIndex=0,!0):!1},isDecimalSign:function(e){return this._decimal.test(e)?(this._decimal.lastIndex=0,!0):!1},isDecimalMode:function(){return this.mode==="decimal"},getDecimalCharIndexes:function(e){var n=e.search(this._decimal);this._decimal.lastIndex=0;var r=e.replace(this._prefix,"").trim().replace(/\s/g,"").replace(this._currency,""),o=r.search(this._decimal);return this._decimal.lastIndex=0,{decimalCharIndex:n,decimalCharIndexWithoutPrefix:o}},getCharIndexes:function(e){var n=e.search(this._decimal);this._decimal.lastIndex=0;var r=e.search(this._minusSign);this._minusSign.lastIndex=0;var o=e.search(this._suffix);this._suffix.lastIndex=0;var i=e.search(this._currency);return this._currency.lastIndex=0,{decimalCharIndex:n,minusCharIndex:r,suffixCharIndex:o,currencyCharIndex:i}},insert:function(e,n){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{isDecimalSign:!1,isMinusSign:!1},o=n.search(this._minusSign);if(this._minusSign.lastIndex=0,!(!this.allowMinusSign()&&o!==-1)){var i=this.$refs.input.$el.selectionStart,a=this.$refs.input.$el.selectionEnd,l=this.$refs.input.$el.value.trim(),u=this.getCharIndexes(l),s=u.decimalCharIndex,c=u.minusCharIndex,d=u.suffixCharIndex,m=u.currencyCharIndex,f;if(r.isMinusSign)i===0&&(f=l,(c===-1||a!==0)&&(f=this.insertText(l,n,0,a)),this.updateValue(e,f,n,"insert"));else if(r.isDecimalSign)s>0&&i===s?this.updateValue(e,l,n,"insert"):s>i&&s0&&i>s){if(i+n.length-(s+1)<=y){var S=m>=i?m-1:d>=i?d:l.length;f=l.slice(0,i)+n+l.slice(i+n.length,S)+l.slice(S),this.updateValue(e,f,n,b)}}else f=this.insertText(l,n,i,a),this.updateValue(e,f,n,b)}}},insertText:function(e,n,r,o){var i=n==="."?n:n.split(".");if(i.length===2){var a=e.slice(r,o).search(this._decimal);return this._decimal.lastIndex=0,a>0?e.slice(0,r)+this.formatValue(n)+e.slice(o):e||this.formatValue(n)}else return o-r===e.length?this.formatValue(n):r===0?n+e.slice(o):o===e.length?e.slice(0,r)+n:e.slice(0,r)+n+e.slice(o)},deleteRange:function(e,n,r){var o;return r-n===e.length?o="":n===0?o=e.slice(r):r===e.length?o=e.slice(0,n):o=e.slice(0,n)+e.slice(r),o},initCursor:function(){var e=this.$refs.input.$el.selectionStart,n=this.$refs.input.$el.value,r=n.length,o=null,i=(this.prefixChar||"").length;n=n.replace(this._prefix,""),e=e-i;var a=n.charAt(e);if(this.isNumeralChar(a))return e+i;for(var l=e-1;l>=0;)if(a=n.charAt(l),this.isNumeralChar(a)){o=l+i;break}else l--;if(o!==null)this.$refs.input.$el.setSelectionRange(o+1,o+1);else{for(l=e;lthis.max?this.max:e},updateInput:function(e,n,r,o){n=n||"";var i=this.$refs.input.$el.value,a=this.formatValue(e),l=i.length;if(a!==o&&(a=this.concatValues(a,o)),l===0){this.$refs.input.$el.value=a,this.$refs.input.$el.setSelectionRange(0,0);var u=this.initCursor(),s=u+n.length;this.$refs.input.$el.setSelectionRange(s,s)}else{var c=this.$refs.input.$el.selectionStart,d=this.$refs.input.$el.selectionEnd;this.$refs.input.$el.value=a;var m=a.length;if(r==="range-insert"){var f=this.parseValue((i||"").slice(0,c)),y=f!==null?f.toString():"",b=y.split("").join("(".concat(this.groupChar,")?")),S=new RegExp(b,"g");S.test(a);var _=n.split("").join("(".concat(this.groupChar,")?")),I=new RegExp(_,"g");I.test(a.slice(S.lastIndex)),d=S.lastIndex+I.lastIndex,this.$refs.input.$el.setSelectionRange(d,d)}else if(m===l)r==="insert"||r==="delete-back-single"?this.$refs.input.$el.setSelectionRange(d+1,d+1):r==="delete-single"?this.$refs.input.$el.setSelectionRange(d-1,d-1):(r==="delete-range"||r==="spin")&&this.$refs.input.$el.setSelectionRange(d,d);else if(r==="delete-back-single"){var V=i.charAt(d-1),T=i.charAt(d),L=l-m,ae=this._group.test(T);ae&&L===1?d+=1:!ae&&this.isNumeralChar(V)&&(d+=-1*L+1),this._group.lastIndex=0,this.$refs.input.$el.setSelectionRange(d,d)}else if(i==="-"&&r==="insert"){this.$refs.input.$el.setSelectionRange(0,0);var le=this.initCursor(),A=le+n.length+1;this.$refs.input.$el.setSelectionRange(A,A)}else d=d+(m-l),this.$refs.input.$el.setSelectionRange(d,d)}this.$refs.input.$el.setAttribute("aria-valuenow",e)},concatValues:function(e,n){if(e&&n){var r=n.search(this._decimal);return this._decimal.lastIndex=0,this.suffixChar?r!==-1?e.replace(this.suffixChar,"").split(this._decimal)[0]+n.replace(this.suffixChar,"").slice(r)+this.suffixChar:e:r!==-1?e.split(this._decimal)[0]+n.slice(r):e}return e},getDecimalLength:function(e){if(e){var n=e.split(this._decimal);if(n.length===2)return n[1].replace(this._suffix,"").trim().replace(/\s/g,"").replace(this._currency,"").length}return 0},updateModel:function(e,n){this.d_modelValue=n,this.$emit("update:modelValue",n)},onInputFocus:function(e){this.focused=!0,!this.disabled&&!this.readonly&&this.$refs.input.$el.value!==C.getSelection()&&this.highlightOnFocus&&e.target.select(),this.$emit("focus",e)},onInputBlur:function(e){this.focused=!1;var n=e.target,r=this.validateValue(this.parseValue(n.value));this.$emit("blur",{originalEvent:e,value:n.value}),n.value=this.formatValue(r),n.setAttribute("aria-valuenow",r),this.updateModel(e,r)},clearTimer:function(){this.timer&&clearInterval(this.timer)},maxBoundry:function(){return this.d_modelValue>=this.max},minBoundry:function(){return this.d_modelValue<=this.min}},computed:{filled:function(){return this.modelValue!=null&&this.modelValue.toString().length>0},upButtonListeners:function(){var e=this;return{mousedown:function(r){return e.onUpButtonMouseDown(r)},mouseup:function(r){return e.onUpButtonMouseUp(r)},mouseleave:function(r){return e.onUpButtonMouseLeave(r)},keydown:function(r){return e.onUpButtonKeyDown(r)},keyup:function(r){return e.onUpButtonKeyUp(r)}}},downButtonListeners:function(){var e=this;return{mousedown:function(r){return e.onDownButtonMouseDown(r)},mouseup:function(r){return e.onDownButtonMouseUp(r)},mouseleave:function(r){return e.onDownButtonMouseLeave(r)},keydown:function(r){return e.onDownButtonKeyDown(r)},keyup:function(r){return e.onDownButtonKeyUp(r)}}},formattedValue:function(){var e=!this.modelValue&&!this.allowEmpty?0:this.modelValue;return this.formatValue(e)},getFormatter:function(){return this.numberFormat}},components:{INInputText:sl,INButton:Dn,AngleUpIcon:td,AngleDownIcon:ed}};function Wr(t){"@babel/helpers - typeof";return Wr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Wr(t)}function Fs(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function Et(t){for(var e=1;e0?this.first+1:0).replace("{last}",Math.min(this.first+this.rows,this.totalRecords)).replace("{rows}",this.rows).replace("{totalRecords}",this.totalRecords);return e}}};function a0(t,e,n,r,o,i){return p(),v("span",h({class:t.cx("current")},t.ptm("current")),J(i.text),17)}od.render=a0;var ad={name:"FirstPageLink",hostName:"Paginator",extends:Pe,props:{template:{type:Function,default:null}},methods:{getPTOptions:function(e){return this.ptm(e,{context:{disabled:this.$attrs.disabled}})}},components:{AngleDoubleLeftIcon:Zc},directives:{ripple:pt}};function l0(t,e,n,r,o,i){var a=Xe("ripple");return Oe((p(),v("button",h({class:t.cx("firstPageButton"),type:"button"},i.getPTOptions("firstPageButton"),{"data-pc-group-section":"pagebutton"}),[(p(),$(de(n.template||"AngleDoubleLeftIcon"),h({class:t.cx("firstPageIcon")},i.getPTOptions("firstPageIcon")),null,16,["class"]))],16)),[[a]])}ad.render=l0;var ld={name:"JumpToPageDropdown",hostName:"Paginator",extends:Pe,emits:["page-change"],props:{page:Number,pageCount:Number,disabled:Boolean,templates:null},methods:{onChange:function(e){this.$emit("page-change",e)}},computed:{pageOptions:function(){for(var e=[],n=0;nt.length)&&(e=t.length);for(var n=0,r=new Array(e);n0&&n>u){var d=this.isDecimalMode()&&(this.minFractionDigits||0)0?i:""):i=o.slice(0,n-1)+o.slice(n)}this.updateValue(e,i,null,"delete-single")}else i=this.deleteRange(o,n,r),this.updateValue(e,i,null,"delete-range");break}case"Delete":if(e.preventDefault(),n===r){var m=o.charAt(n),f=this.getDecimalCharIndexes(o),y=f.decimalCharIndex,b=f.decimalCharIndexWithoutPrefix;if(this.isNumeralChar(m)){var S=this.getDecimalLength(o);if(this._group.test(m))this._group.lastIndex=0,i=o.slice(0,n)+o.slice(n+2);else if(this._decimal.test(m))this._decimal.lastIndex=0,S?this.$refs.input.$el.setSelectionRange(n+1,n+1):i=o.slice(0,n)+o.slice(n+1);else if(y>0&&n>y){var _=this.isDecimalMode()&&(this.minFractionDigits||0)0?i:""):i=o.slice(0,n)+o.slice(n+1)}this.updateValue(e,i,null,"delete-back-single")}else i=this.deleteRange(o,n,r),this.updateValue(e,i,null,"delete-range");break;case"Home":this.min&&(this.updateModel(e,this.min),e.preventDefault());break;case"End":this.max&&(this.updateModel(e,this.max),e.preventDefault());break}}},onInputKeyPress:function(e){if(!this.readonly){e.preventDefault();var n=e.which||e.keyCode,r=String.fromCharCode(n),o=this.isDecimalSign(r),i=this.isMinusSign(r);(48<=n&&n<=57||i||o)&&this.insert(e,r,{isDecimalSign:o,isMinusSign:i})}},onPaste:function(e){e.preventDefault();var n=(e.clipboardData||window.clipboardData).getData("Text");if(n){var r=this.parseValue(n);r!=null&&this.insert(e,r.toString())}},allowMinusSign:function(){return this.min===null||this.min<0},isMinusSign:function(e){return this._minusSign.test(e)||e==="-"?(this._minusSign.lastIndex=0,!0):!1},isDecimalSign:function(e){return this._decimal.test(e)?(this._decimal.lastIndex=0,!0):!1},isDecimalMode:function(){return this.mode==="decimal"},getDecimalCharIndexes:function(e){var n=e.search(this._decimal);this._decimal.lastIndex=0;var r=e.replace(this._prefix,"").trim().replace(/\s/g,"").replace(this._currency,""),o=r.search(this._decimal);return this._decimal.lastIndex=0,{decimalCharIndex:n,decimalCharIndexWithoutPrefix:o}},getCharIndexes:function(e){var n=e.search(this._decimal);this._decimal.lastIndex=0;var r=e.search(this._minusSign);this._minusSign.lastIndex=0;var o=e.search(this._suffix);this._suffix.lastIndex=0;var i=e.search(this._currency);return this._currency.lastIndex=0,{decimalCharIndex:n,minusCharIndex:r,suffixCharIndex:o,currencyCharIndex:i}},insert:function(e,n){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{isDecimalSign:!1,isMinusSign:!1},o=n.search(this._minusSign);if(this._minusSign.lastIndex=0,!(!this.allowMinusSign()&&o!==-1)){var i=this.$refs.input.$el.selectionStart,a=this.$refs.input.$el.selectionEnd,l=this.$refs.input.$el.value.trim(),u=this.getCharIndexes(l),s=u.decimalCharIndex,c=u.minusCharIndex,d=u.suffixCharIndex,m=u.currencyCharIndex,f;if(r.isMinusSign)i===0&&(f=l,(c===-1||a!==0)&&(f=this.insertText(l,n,0,a)),this.updateValue(e,f,n,"insert"));else if(r.isDecimalSign)s>0&&i===s?this.updateValue(e,l,n,"insert"):s>i&&s0&&i>s){if(i+n.length-(s+1)<=y){var S=m>=i?m-1:d>=i?d:l.length;f=l.slice(0,i)+n+l.slice(i+n.length,S)+l.slice(S),this.updateValue(e,f,n,b)}}else f=this.insertText(l,n,i,a),this.updateValue(e,f,n,b)}}},insertText:function(e,n,r,o){var i=n==="."?n:n.split(".");if(i.length===2){var a=e.slice(r,o).search(this._decimal);return this._decimal.lastIndex=0,a>0?e.slice(0,r)+this.formatValue(n)+e.slice(o):e||this.formatValue(n)}else return o-r===e.length?this.formatValue(n):r===0?n+e.slice(o):o===e.length?e.slice(0,r)+n:e.slice(0,r)+n+e.slice(o)},deleteRange:function(e,n,r){var o;return r-n===e.length?o="":n===0?o=e.slice(r):r===e.length?o=e.slice(0,n):o=e.slice(0,n)+e.slice(r),o},initCursor:function(){var e=this.$refs.input.$el.selectionStart,n=this.$refs.input.$el.value,r=n.length,o=null,i=(this.prefixChar||"").length;n=n.replace(this._prefix,""),e=e-i;var a=n.charAt(e);if(this.isNumeralChar(a))return e+i;for(var l=e-1;l>=0;)if(a=n.charAt(l),this.isNumeralChar(a)){o=l+i;break}else l--;if(o!==null)this.$refs.input.$el.setSelectionRange(o+1,o+1);else{for(l=e;lthis.max?this.max:e},updateInput:function(e,n,r,o){n=n||"";var i=this.$refs.input.$el.value,a=this.formatValue(e),l=i.length;if(a!==o&&(a=this.concatValues(a,o)),l===0){this.$refs.input.$el.value=a,this.$refs.input.$el.setSelectionRange(0,0);var u=this.initCursor(),s=u+n.length;this.$refs.input.$el.setSelectionRange(s,s)}else{var c=this.$refs.input.$el.selectionStart,d=this.$refs.input.$el.selectionEnd;this.$refs.input.$el.value=a;var m=a.length;if(r==="range-insert"){var f=this.parseValue((i||"").slice(0,c)),y=f!==null?f.toString():"",b=y.split("").join("(".concat(this.groupChar,")?")),S=new RegExp(b,"g");S.test(a);var _=n.split("").join("(".concat(this.groupChar,")?")),I=new RegExp(_,"g");I.test(a.slice(S.lastIndex)),d=S.lastIndex+I.lastIndex,this.$refs.input.$el.setSelectionRange(d,d)}else if(m===l)r==="insert"||r==="delete-back-single"?this.$refs.input.$el.setSelectionRange(d+1,d+1):r==="delete-single"?this.$refs.input.$el.setSelectionRange(d-1,d-1):(r==="delete-range"||r==="spin")&&this.$refs.input.$el.setSelectionRange(d,d);else if(r==="delete-back-single"){var z=i.charAt(d-1),x=i.charAt(d),F=l-m,ie=this._group.test(x);ie&&F===1?d+=1:!ie&&this.isNumeralChar(z)&&(d+=-1*F+1),this._group.lastIndex=0,this.$refs.input.$el.setSelectionRange(d,d)}else if(i==="-"&&r==="insert"){this.$refs.input.$el.setSelectionRange(0,0);var ae=this.initCursor(),M=ae+n.length+1;this.$refs.input.$el.setSelectionRange(M,M)}else d=d+(m-l),this.$refs.input.$el.setSelectionRange(d,d)}this.$refs.input.$el.setAttribute("aria-valuenow",e)},concatValues:function(e,n){if(e&&n){var r=n.search(this._decimal);return this._decimal.lastIndex=0,this.suffixChar?r!==-1?e.replace(this.suffixChar,"").split(this._decimal)[0]+n.replace(this.suffixChar,"").slice(r)+this.suffixChar:e:r!==-1?e.split(this._decimal)[0]+n.slice(r):e}return e},getDecimalLength:function(e){if(e){var n=e.split(this._decimal);if(n.length===2)return n[1].replace(this._suffix,"").trim().replace(/\s/g,"").replace(this._currency,"").length}return 0},updateModel:function(e,n){this.d_modelValue=n,this.$emit("update:modelValue",n)},onInputFocus:function(e){this.focused=!0,!this.disabled&&!this.readonly&&this.$refs.input.$el.value!==C.getSelection()&&this.highlightOnFocus&&e.target.select(),this.$emit("focus",e)},onInputBlur:function(e){this.focused=!1;var n=e.target,r=this.validateValue(this.parseValue(n.value));this.$emit("blur",{originalEvent:e,value:n.value}),n.value=this.formatValue(r),n.setAttribute("aria-valuenow",r),this.updateModel(e,r)},clearTimer:function(){this.timer&&clearInterval(this.timer)},maxBoundry:function(){return this.d_modelValue>=this.max},minBoundry:function(){return this.d_modelValue<=this.min}},computed:{filled:function(){return this.modelValue!=null&&this.modelValue.toString().length>0},upButtonListeners:function(){var e=this;return{mousedown:function(r){return e.onUpButtonMouseDown(r)},mouseup:function(r){return e.onUpButtonMouseUp(r)},mouseleave:function(r){return e.onUpButtonMouseLeave(r)},keydown:function(r){return e.onUpButtonKeyDown(r)},keyup:function(r){return e.onUpButtonKeyUp(r)}}},downButtonListeners:function(){var e=this;return{mousedown:function(r){return e.onDownButtonMouseDown(r)},mouseup:function(r){return e.onDownButtonMouseUp(r)},mouseleave:function(r){return e.onDownButtonMouseLeave(r)},keydown:function(r){return e.onDownButtonKeyDown(r)},keyup:function(r){return e.onDownButtonKeyUp(r)}}},formattedValue:function(){var e=!this.modelValue&&!this.allowEmpty?0:this.modelValue;return this.formatValue(e)},getFormatter:function(){return this.numberFormat}},components:{INInputText:sl,INButton:Dn,AngleUpIcon:td,AngleDownIcon:ed}};function Wr(t){"@babel/helpers - typeof";return Wr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Wr(t)}function Fs(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function Et(t){for(var e=1;e0?this.first+1:0).replace("{last}",Math.min(this.first+this.rows,this.totalRecords)).replace("{rows}",this.rows).replace("{totalRecords}",this.totalRecords);return e}}};function a0(t,e,n,r,o,i){return p(),v("span",h({class:t.cx("current")},t.ptm("current")),Y(i.text),17)}od.render=a0;var ad={name:"FirstPageLink",hostName:"Paginator",extends:Oe,props:{template:{type:Function,default:null}},methods:{getPTOptions:function(e){return this.ptm(e,{context:{disabled:this.$attrs.disabled}})}},components:{AngleDoubleLeftIcon:Zc},directives:{ripple:pt}};function l0(t,e,n,r,o,i){var a=et("ripple");return Se((p(),v("button",h({class:t.cx("firstPageButton"),type:"button"},i.getPTOptions("firstPageButton"),{"data-pc-group-section":"pagebutton"}),[(p(),$(ce(n.template||"AngleDoubleLeftIcon"),h({class:t.cx("firstPageIcon")},i.getPTOptions("firstPageIcon")),null,16,["class"]))],16)),[[a]])}ad.render=l0;var ld={name:"JumpToPageDropdown",hostName:"Paginator",extends:Oe,emits:["page-change"],props:{page:Number,pageCount:Number,disabled:Boolean,templates:null},methods:{onChange:function(e){this.$emit("page-change",e)}},computed:{pageOptions:function(){for(var e=[],n=0;nt.length)&&(e=t.length);for(var n=0,r=new Array(e);n0&&e&&this.d_first>=e&&this.changePage(this.pageCount-1)}},mounted:function(){this.setPaginatorAttribute(),this.createStyle()},methods:{changePage:function(e){var n=this.pageCount;if(e>=0&&e=0&&g0(this.$refs.paginator).forEach(function(n){n.setAttribute(e.attributeSelector,"")})},getAriaLabel:function(e){return this.$primevue.config.locale.aria?this.$primevue.config.locale.aria[e]:void 0}},computed:{templateItems:function(){var e={};if(this.hasBreakpoints()){e=this.template,e.default||(e.default="FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink RowsPerPageDropdown");for(var n in e)e[n]=this.template[n].split(" ").map(function(r){return r.trim()});return e}return e.default=this.template.split(" ").map(function(r){return r.trim()}),e},page:function(){return Math.floor(this.d_first/this.d_rows)},pageCount:function(){return Math.ceil(this.totalRecords/this.d_rows)},isFirstPage:function(){return this.page===0},isLastPage:function(){return this.page===this.pageCount-1},calculatePageLinkBoundaries:function(){var e=this.pageCount,n=Math.min(this.pageLinkSize,e),r=Math.max(0,Math.ceil(this.page-n/2)),o=Math.min(e-1,r+n-1),i=this.pageLinkSize-(o-r+1);return r=Math.max(0,r-i),[r,o]},pageLinks:function(){for(var e=[],n=this.calculatePageLinkBoundaries,r=n[0],o=n[1],i=r;i<=o;i++)e.push(i+1);return e},currentState:function(){return{page:this.page,first:this.d_first,rows:this.d_rows}},empty:function(){return this.pageCount===0},currentPage:function(){return this.pageCount>0?this.page+1:0},attributeSelector:function(){return Re()}},components:{CurrentPageReport:od,FirstPageLink:ad,LastPageLink:ud,NextPageLink:cd,PageLinks:dd,PrevPageLink:pd,RowsPerPageDropdown:fd,JumpToPageDropdown:ld,JumpToPageInput:sd}};function S0(t,e,n,r,o,i){var a=N("FirstPageLink"),l=N("PrevPageLink"),u=N("NextPageLink"),s=N("LastPageLink"),c=N("PageLinks"),d=N("CurrentPageReport"),m=N("RowsPerPageDropdown"),f=N("JumpToPageDropdown"),y=N("JumpToPageInput");return t.alwaysShow||i.pageLinks&&i.pageLinks.length>1?(p(),v("nav",Lt(h({key:0},t.ptm("paginatorWrapper"))),[(p(!0),v(oe,null,Te(i.templateItems,function(b,S){return p(),v("div",h({key:S,ref_for:!0,ref:"paginator",class:t.cx("paginator",{key:S})},t.ptm("root"),{"data-pc-name":"paginator"}),[t.$slots.start?(p(),v("div",h({key:0,class:t.cx("start")},t.ptm("start")),[Z(t.$slots,"start",{state:i.currentState})],16)):x("",!0),(p(!0),v(oe,null,Te(b,function(_){return p(),v(oe,{key:_},[_==="FirstPageLink"?(p(),$(a,{key:0,"aria-label":i.getAriaLabel("firstPageLabel"),template:t.$slots.firstpagelinkicon,onClick:e[0]||(e[0]=function(I){return i.changePageToFirst(I)}),disabled:i.isFirstPage||i.empty,unstyled:t.unstyled,pt:t.pt},null,8,["aria-label","template","disabled","unstyled","pt"])):_==="PrevPageLink"?(p(),$(l,{key:1,"aria-label":i.getAriaLabel("prevPageLabel"),template:t.$slots.prevpagelinkicon,onClick:e[1]||(e[1]=function(I){return i.changePageToPrev(I)}),disabled:i.isFirstPage||i.empty,unstyled:t.unstyled,pt:t.pt},null,8,["aria-label","template","disabled","unstyled","pt"])):_==="NextPageLink"?(p(),$(u,{key:2,"aria-label":i.getAriaLabel("nextPageLabel"),template:t.$slots.nextpagelinkicon,onClick:e[2]||(e[2]=function(I){return i.changePageToNext(I)}),disabled:i.isLastPage||i.empty,unstyled:t.unstyled,pt:t.pt},null,8,["aria-label","template","disabled","unstyled","pt"])):_==="LastPageLink"?(p(),$(s,{key:3,"aria-label":i.getAriaLabel("lastPageLabel"),template:t.$slots.lastpagelinkicon,onClick:e[3]||(e[3]=function(I){return i.changePageToLast(I)}),disabled:i.isLastPage||i.empty,unstyled:t.unstyled,pt:t.pt},null,8,["aria-label","template","disabled","unstyled","pt"])):_==="PageLinks"?(p(),$(c,{key:4,"aria-label":i.getAriaLabel("pageLabel"),value:i.pageLinks,page:i.page,onClick:e[4]||(e[4]=function(I){return i.changePageLink(I)}),pt:t.pt},null,8,["aria-label","value","page","pt"])):_==="CurrentPageReport"?(p(),$(d,{key:5,"aria-live":"polite",template:t.currentPageReportTemplate,currentPage:i.currentPage,page:i.page,pageCount:i.pageCount,first:o.d_first,rows:o.d_rows,totalRecords:t.totalRecords,unstyled:t.unstyled,pt:t.pt},null,8,["template","currentPage","page","pageCount","first","rows","totalRecords","unstyled","pt"])):_==="RowsPerPageDropdown"&&t.rowsPerPageOptions?(p(),$(m,{key:6,"aria-label":i.getAriaLabel("rowsPerPageLabel"),rows:o.d_rows,options:t.rowsPerPageOptions,onRowsChange:e[5]||(e[5]=function(I){return i.onRowChange(I)}),disabled:i.empty,templates:t.$slots,unstyled:t.unstyled,pt:t.pt},null,8,["aria-label","rows","options","disabled","templates","unstyled","pt"])):_==="JumpToPageDropdown"?(p(),$(f,{key:7,"aria-label":i.getAriaLabel("jumpToPageDropdownLabel"),page:i.page,pageCount:i.pageCount,onPageChange:e[6]||(e[6]=function(I){return i.changePage(I)}),disabled:i.empty,templates:t.$slots,unstyled:t.unstyled,pt:t.pt},null,8,["aria-label","page","pageCount","disabled","templates","unstyled","pt"])):_==="JumpToPageInput"?(p(),$(y,{key:8,page:i.currentPage,onPageChange:e[7]||(e[7]=function(I){return i.changePage(I)}),disabled:i.empty,unstyled:t.unstyled,pt:t.pt},null,8,["page","disabled","unstyled","pt"])):x("",!0)],64)}),128)),t.$slots.end?(p(),v("div",h({key:1,class:t.cx("end")},t.ptm("end")),[Z(t.$slots,"end",{state:i.currentState})],16)):x("",!0)],16)}),128))],16)):x("",!0)}hd.render=S0;var O0=` + `)}this.styleElement.innerHTML=r}},hasBreakpoints:function(){return fa(this.template)==="object"},setPaginatorAttribute:function(){var e=this;this.$refs.paginator&&this.$refs.paginator.length>=0&&g0(this.$refs.paginator).forEach(function(n){n.setAttribute(e.attributeSelector,"")})},getAriaLabel:function(e){return this.$primevue.config.locale.aria?this.$primevue.config.locale.aria[e]:void 0}},computed:{templateItems:function(){var e={};if(this.hasBreakpoints()){e=this.template,e.default||(e.default="FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink RowsPerPageDropdown");for(var n in e)e[n]=this.template[n].split(" ").map(function(r){return r.trim()});return e}return e.default=this.template.split(" ").map(function(r){return r.trim()}),e},page:function(){return Math.floor(this.d_first/this.d_rows)},pageCount:function(){return Math.ceil(this.totalRecords/this.d_rows)},isFirstPage:function(){return this.page===0},isLastPage:function(){return this.page===this.pageCount-1},calculatePageLinkBoundaries:function(){var e=this.pageCount,n=Math.min(this.pageLinkSize,e),r=Math.max(0,Math.ceil(this.page-n/2)),o=Math.min(e-1,r+n-1),i=this.pageLinkSize-(o-r+1);return r=Math.max(0,r-i),[r,o]},pageLinks:function(){for(var e=[],n=this.calculatePageLinkBoundaries,r=n[0],o=n[1],i=r;i<=o;i++)e.push(i+1);return e},currentState:function(){return{page:this.page,first:this.d_first,rows:this.d_rows}},empty:function(){return this.pageCount===0},currentPage:function(){return this.pageCount>0?this.page+1:0},attributeSelector:function(){return Re()}},components:{CurrentPageReport:od,FirstPageLink:ad,LastPageLink:ud,NextPageLink:cd,PageLinks:dd,PrevPageLink:pd,RowsPerPageDropdown:fd,JumpToPageDropdown:ld,JumpToPageInput:sd}};function S0(t,e,n,r,o,i){var a=K("FirstPageLink"),l=K("PrevPageLink"),u=K("NextPageLink"),s=K("LastPageLink"),c=K("PageLinks"),d=K("CurrentPageReport"),m=K("RowsPerPageDropdown"),f=K("JumpToPageDropdown"),y=K("JumpToPageInput");return t.alwaysShow||i.pageLinks&&i.pageLinks.length>1?(p(),v("nav",Lt(h({key:0},t.ptm("paginatorWrapper"))),[(p(!0),v(ne,null,xe(i.templateItems,function(b,S){return p(),v("div",h({key:S,ref_for:!0,ref:"paginator",class:t.cx("paginator",{key:S})},t.ptm("root"),{"data-pc-name":"paginator"}),[t.$slots.start?(p(),v("div",h({key:0,class:t.cx("start")},t.ptm("start")),[J(t.$slots,"start",{state:i.currentState})],16)):T("",!0),(p(!0),v(ne,null,xe(b,function(_){return p(),v(ne,{key:_},[_==="FirstPageLink"?(p(),$(a,{key:0,"aria-label":i.getAriaLabel("firstPageLabel"),template:t.$slots.firstpagelinkicon,onClick:e[0]||(e[0]=function(I){return i.changePageToFirst(I)}),disabled:i.isFirstPage||i.empty,unstyled:t.unstyled,pt:t.pt},null,8,["aria-label","template","disabled","unstyled","pt"])):_==="PrevPageLink"?(p(),$(l,{key:1,"aria-label":i.getAriaLabel("prevPageLabel"),template:t.$slots.prevpagelinkicon,onClick:e[1]||(e[1]=function(I){return i.changePageToPrev(I)}),disabled:i.isFirstPage||i.empty,unstyled:t.unstyled,pt:t.pt},null,8,["aria-label","template","disabled","unstyled","pt"])):_==="NextPageLink"?(p(),$(u,{key:2,"aria-label":i.getAriaLabel("nextPageLabel"),template:t.$slots.nextpagelinkicon,onClick:e[2]||(e[2]=function(I){return i.changePageToNext(I)}),disabled:i.isLastPage||i.empty,unstyled:t.unstyled,pt:t.pt},null,8,["aria-label","template","disabled","unstyled","pt"])):_==="LastPageLink"?(p(),$(s,{key:3,"aria-label":i.getAriaLabel("lastPageLabel"),template:t.$slots.lastpagelinkicon,onClick:e[3]||(e[3]=function(I){return i.changePageToLast(I)}),disabled:i.isLastPage||i.empty,unstyled:t.unstyled,pt:t.pt},null,8,["aria-label","template","disabled","unstyled","pt"])):_==="PageLinks"?(p(),$(c,{key:4,"aria-label":i.getAriaLabel("pageLabel"),value:i.pageLinks,page:i.page,onClick:e[4]||(e[4]=function(I){return i.changePageLink(I)}),pt:t.pt},null,8,["aria-label","value","page","pt"])):_==="CurrentPageReport"?(p(),$(d,{key:5,"aria-live":"polite",template:t.currentPageReportTemplate,currentPage:i.currentPage,page:i.page,pageCount:i.pageCount,first:o.d_first,rows:o.d_rows,totalRecords:t.totalRecords,unstyled:t.unstyled,pt:t.pt},null,8,["template","currentPage","page","pageCount","first","rows","totalRecords","unstyled","pt"])):_==="RowsPerPageDropdown"&&t.rowsPerPageOptions?(p(),$(m,{key:6,"aria-label":i.getAriaLabel("rowsPerPageLabel"),rows:o.d_rows,options:t.rowsPerPageOptions,onRowsChange:e[5]||(e[5]=function(I){return i.onRowChange(I)}),disabled:i.empty,templates:t.$slots,unstyled:t.unstyled,pt:t.pt},null,8,["aria-label","rows","options","disabled","templates","unstyled","pt"])):_==="JumpToPageDropdown"?(p(),$(f,{key:7,"aria-label":i.getAriaLabel("jumpToPageDropdownLabel"),page:i.page,pageCount:i.pageCount,onPageChange:e[6]||(e[6]=function(I){return i.changePage(I)}),disabled:i.empty,templates:t.$slots,unstyled:t.unstyled,pt:t.pt},null,8,["aria-label","page","pageCount","disabled","templates","unstyled","pt"])):_==="JumpToPageInput"?(p(),$(y,{key:8,page:i.currentPage,onPageChange:e[7]||(e[7]=function(I){return i.changePage(I)}),disabled:i.empty,unstyled:t.unstyled,pt:t.pt},null,8,["page","disabled","unstyled","pt"])):T("",!0)],64)}),128)),t.$slots.end?(p(),v("div",h({key:1,class:t.cx("end")},t.ptm("end")),[J(t.$slots,"end",{state:i.currentState})],16)):T("",!0)],16)}),128))],16)):T("",!0)}hd.render=S0;var O0=` @layer primevue { .p-datatable { position: relative; @@ -1308,28 +1308,28 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho left: 0; } } -`,P0={root:function(e){var n=e.instance,r=e.props;return["p-datatable p-component",{"p-datatable-hoverable-rows":r.rowHover||r.selectionMode,"p-datatable-resizable":r.resizableColumns,"p-datatable-resizable-fit":r.resizableColumns&&r.columnResizeMode==="fit","p-datatable-scrollable":r.scrollable,"p-datatable-flex-scrollable":r.scrollable&&r.scrollHeight==="flex","p-datatable-responsive-stack":r.responsiveLayout==="stack","p-datatable-responsive-scroll":r.responsiveLayout==="scroll","p-datatable-striped":r.stripedRows,"p-datatable-gridlines":r.showGridlines,"p-datatable-grouped-header":n.headerColumnGroup!=null,"p-datatable-grouped-footer":n.footerColumnGroup!=null,"p-datatable-sm":r.size==="small","p-datatable-lg":r.size==="large"}]},loadingOverlay:"p-datatable-loading-overlay p-component-overlay",loadingIcon:"p-datatable-loading-icon",header:"p-datatable-header",paginator:function(e){var n=e.instance;return n.paginatorTop?"p-paginator-top":n.paginatorBottom?"p-paginator-bottom":""},wrapper:"p-datatable-wrapper",table:function(e){var n=e.props;return["p-datatable-table",{"p-datatable-scrollable-table":n.scrollable,"p-datatable-resizable-table":n.resizableColumns,"p-datatable-resizable-table-fit":n.resizableColumns&&n.columnResizeMode==="fit"}]},thead:"p-datatable-thead",headerCell:function(e){var n=e.instance,r=e.props,o=e.column;return o&&!n.columnProp(o,"hidden")&&(r.rowGroupMode!=="subheader"||r.groupRowsBy!==n.columnProp(o,"field"))?["p-filter-column",{"p-frozen-column":n.columnProp(o,"frozen")}]:[{"p-sortable-column":n.columnProp("sortable"),"p-resizable-column":n.resizableColumns,"p-highlight":n.isColumnSorted(),"p-filter-column":r.filterColumn,"p-frozen-column":n.columnProp("frozen"),"p-reorderable-column":r.reorderableColumns}]},columnResizer:"p-column-resizer",headerContent:"p-column-header-content",headerTitle:"p-column-title",sortIcon:"p-sortable-column-icon",sortBadge:"p-sortable-column-badge",headerCheckboxWrapper:function(e){var n=e.instance;return["p-checkbox p-component",{"p-checkbox-focused":n.focused,"p-disabled":n.disabled}]},headerCheckbox:function(e){var n=e.instance;return["p-checkbox-box p-component",{"p-highlight":n.checked,"p-disabled":n.disabled,"p-focus":n.focused}]},headerCheckboxIcon:"p-checkbox-icon",columnFilter:function(e){var n=e.props;return["p-column-filter p-fluid",{"p-column-filter-row":n.display==="row","p-column-filter-menu":n.display==="menu"}]},filterInput:"p-fluid p-column-filter-element",filterMenuButton:function(e){var n=e.instance;return["p-column-filter-menu-button p-link",{"p-column-filter-menu-button-open":n.overlayVisible,"p-column-filter-menu-button-active":n.hasFilter()}]},headerFilterClearButton:function(e){var n=e.instance;return["p-column-filter-clear-button p-link",{"p-hidden-space":!n.hasRowFilter()}]},filterOverlay:function(e){var n=e.instance,r=e.props;return[{"p-column-filter-overlay p-component p-fluid":!0,"p-column-filter-overlay-menu":r.display==="menu","p-input-filled":n.$primevue.config.inputStyle==="filled","p-ripple-disabled":n.$primevue.config.ripple===!1}]},filterRowItems:"p-column-filter-row-items",filterRowItem:function(e){var n=e.instance,r=e.matchMode;return["p-column-filter-row-item",{"p-highlight":r&&n.isRowMatchModeSelected(r.value)}]},filterSeparator:"p-column-filter-separator",filterOperator:"p-column-filter-operator",filterOperatorDropdown:"p-column-filter-operator-dropdown",filterConstraints:"p-column-filter-constraints",filterConstraint:"p-column-filter-constraint",filterMatchModeDropdown:"p-column-filter-matchmode-dropdown",filterRemoveButton:"p-column-filter-remove-button p-button-text p-button-danger p-button-sm",filterAddRule:"p-column-filter-add-rule",filterAddRuleButton:"p-column-filter-add-button p-button-text p-button-sm",filterButtonbar:"p-column-filter-buttonbar",filterClearButton:"p-button-outlined p-button-sm",filterApplyButton:"p-button-sm",tbody:function(e){var n=e.props;return n.frozenRow?"p-datatable-tbody p-datatable-frozen-tbody":"p-datatable-tbody"},rowgroupHeader:"p-rowgroup-header",rowGroupToggler:"p-row-toggler p-link",rowGroupTogglerIcon:"p-row-toggler-icon",row:function(e){var n=e.instance,r=e.props,o=e.rowData,i=[];return r.selectionMode&&i.push("p-selectable-row"),r.selection&&i.push({"p-highlight":n.isSelected(o)}),r.contextMenuSelection&&i.push({"p-highlight-contextmenu":n.isSelectedWithContextMenu(o)}),i},rowExpansion:"p-datatable-row-expansion",rowgroupFooter:"p-rowgroup-footer",emptyMessage:"p-datatable-emptymessage",bodyCell:function(e){var n=e.instance;return[{"p-selection-column":n.columnProp("selectionMode")!=null,"p-editable-column":n.isEditable(),"p-cell-editing":n.d_editing,"p-frozen-column":n.columnProp("frozen")}]},columnTitle:"p-column-title",rowReorderIcon:"p-datatable-reorderablerow-handle",rowToggler:"p-row-toggler p-link",rowTogglerIcon:"p-row-toggler-icon",rowEditorInitButton:"p-row-editor-init p-link",rowEditorInitIcon:"p-row-editor-init-icon",rowEditorSaveButton:"p-row-editor-save p-link",rowEditorSaveIcon:"p-row-editor-save-icon",rowEditorCancelButton:"p-row-editor-cancel p-link",rowEditorCancelIcon:"p-row-editor-cancel-icon",checkboxWrapper:function(e){var n=e.instance;return["p-checkbox p-component",{"p-checkbox-focused":n.focused}]},checkbox:function(e){var n=e.instance;return["p-checkbox-box p-component",{"p-highlight":n.checked,"p-disabled":n.$attrs.disabled,"p-focus":n.focused}]},checkboxIcon:"p-checkbox-icon",radiobuttonWrapper:function(e){var n=e.instance;return["p-radiobutton p-component",{"p-radiobutton-focused":n.focused}]},radiobutton:function(e){var n=e.instance;return["p-radiobutton-box p-component",{"p-highlight":n.checked,"p-disabled":n.$attrs.disabled,"p-focus":n.focused}]},radiobuttonIcon:"p-radiobutton-icon",tfoot:"p-datatable-tfoot",footerCell:function(e){var n=e.instance;return[{"p-frozen-column":n.columnProp("frozen")}]},virtualScrollerSpacer:"p-datatable-virtualscroller-spacer",footer:"p-datatable-footer",resizeHelper:"p-column-resizer-helper",reorderIndicatorUp:"p-datatable-reorder-indicator-up",reorderIndicatorDown:"p-datatable-reorder-indicator-down"},I0={wrapper:{overflow:"auto"},thead:{position:"sticky"},tfoot:{position:"sticky"}},k0=je.extend({name:"datatable",css:O0,classes:P0,inlineStyles:I0}),gd={name:"BarsIcon",extends:Fe},x0=g("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M13.3226 3.6129H0.677419C0.497757 3.6129 0.325452 3.54152 0.198411 3.41448C0.0713707 3.28744 0 3.11514 0 2.93548C0 2.75581 0.0713707 2.58351 0.198411 2.45647C0.325452 2.32943 0.497757 2.25806 0.677419 2.25806H13.3226C13.5022 2.25806 13.6745 2.32943 13.8016 2.45647C13.9286 2.58351 14 2.75581 14 2.93548C14 3.11514 13.9286 3.28744 13.8016 3.41448C13.6745 3.54152 13.5022 3.6129 13.3226 3.6129ZM13.3226 7.67741H0.677419C0.497757 7.67741 0.325452 7.60604 0.198411 7.479C0.0713707 7.35196 0 7.17965 0 6.99999C0 6.82033 0.0713707 6.64802 0.198411 6.52098C0.325452 6.39394 0.497757 6.32257 0.677419 6.32257H13.3226C13.5022 6.32257 13.6745 6.39394 13.8016 6.52098C13.9286 6.64802 14 6.82033 14 6.99999C14 7.17965 13.9286 7.35196 13.8016 7.479C13.6745 7.60604 13.5022 7.67741 13.3226 7.67741ZM0.677419 11.7419H13.3226C13.5022 11.7419 13.6745 11.6706 13.8016 11.5435C13.9286 11.4165 14 11.2442 14 11.0645C14 10.8848 13.9286 10.7125 13.8016 10.5855C13.6745 10.4585 13.5022 10.3871 13.3226 10.3871H0.677419C0.497757 10.3871 0.325452 10.4585 0.198411 10.5855C0.0713707 10.7125 0 10.8848 0 11.0645C0 11.2442 0.0713707 11.4165 0.198411 11.5435C0.325452 11.6706 0.497757 11.7419 0.677419 11.7419Z",fill:"currentColor"},null,-1),T0=[x0];function E0(t,e,n,r,o,i){return p(),v("svg",h({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),T0,16)}gd.render=E0;var vd={name:"PencilIcon",extends:Fe,computed:{pathId:function(){return"pv_icon_clip_".concat(Re())}}},D0=["clipPath"],R0=g("path",{d:"M0.609628 13.959C0.530658 13.9599 0.452305 13.9451 0.379077 13.9156C0.305849 13.8861 0.239191 13.8424 0.18294 13.787C0.118447 13.7234 0.0688234 13.6464 0.0376166 13.5614C0.00640987 13.4765 -0.00560954 13.3857 0.00241768 13.2956L0.25679 10.1501C0.267698 10.0041 0.331934 9.86709 0.437312 9.76516L9.51265 0.705715C10.0183 0.233014 10.6911 -0.0203041 11.3835 0.00127367C12.0714 0.00660201 12.7315 0.27311 13.2298 0.746671C13.7076 1.23651 13.9824 1.88848 13.9992 2.57201C14.0159 3.25554 13.7733 3.92015 13.32 4.4327L4.23648 13.5331C4.13482 13.6342 4.0017 13.6978 3.85903 13.7133L0.667067 14L0.609628 13.959ZM1.43018 10.4696L1.25787 12.714L3.50619 12.5092L12.4502 3.56444C12.6246 3.35841 12.7361 3.10674 12.7714 2.83933C12.8067 2.57193 12.7644 2.30002 12.6495 2.05591C12.5346 1.8118 12.3519 1.60575 12.1231 1.46224C11.8943 1.31873 11.6291 1.2438 11.3589 1.24633C11.1813 1.23508 11.0033 1.25975 10.8355 1.31887C10.6677 1.37798 10.5136 1.47033 10.3824 1.59036L1.43018 10.4696Z",fill:"currentColor"},null,-1),$0=[R0],A0=["id"],M0=g("rect",{width:"14",height:"14",fill:"white"},null,-1),L0=[M0];function F0(t,e,n,r,o,i){return p(),v("svg",h({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),[g("g",{clipPath:"url(#".concat(i.pathId,")")},$0,8,D0),g("defs",null,[g("clipPath",{id:"".concat(i.pathId)},L0,8,A0)])],16)}vd.render=F0;var B0={},j0=Be.extend({style:B0}),cl=j0.extend("focustrap",{mounted:function(e,n){var r=n.value||{},o=r.disabled;o||(this.createHiddenFocusableElements(e,n),this.bind(e,n),this.autoFocus(e,n)),e.setAttribute("data-pd-focustrap",!0),this.$el=e},updated:function(e,n){var r=n.value||{},o=r.disabled;o&&this.unbind(e)},unmounted:function(e){this.unbind(e)},methods:{getComputedSelector:function(e){return':not(.p-hidden-focusable):not([data-p-hidden-focusable="true"])'.concat(e??"")},bind:function(e,n){var r=this,o=n.value||{},i=o.onFocusIn,a=o.onFocusOut;e.$_pfocustrap_mutationobserver=new MutationObserver(function(l){l.forEach(function(u){if(u.type==="childList"&&!e.contains(document.activeElement)){var s=function c(d){var m=C.isFocusableElement(d)?C.isFocusableElement(d,r.getComputedSelector(e.$_pfocustrap_focusableselector))?d:C.getFirstFocusableElement(e,r.getComputedSelector(e.$_pfocustrap_focusableselector)):C.getFirstFocusableElement(d);return B.isNotEmpty(m)?m:c(d.nextSibling)};C.focus(s(u.nextSibling))}})}),e.$_pfocustrap_mutationobserver.disconnect(),e.$_pfocustrap_mutationobserver.observe(e,{childList:!0}),e.$_pfocustrap_focusinlistener=function(l){return i&&i(l)},e.$_pfocustrap_focusoutlistener=function(l){return a&&a(l)},e.addEventListener("focusin",e.$_pfocustrap_focusinlistener),e.addEventListener("focusout",e.$_pfocustrap_focusoutlistener)},unbind:function(e){e.$_pfocustrap_mutationobserver&&e.$_pfocustrap_mutationobserver.disconnect(),e.$_pfocustrap_focusinlistener&&e.removeEventListener("focusin",e.$_pfocustrap_focusinlistener)&&(e.$_pfocustrap_focusinlistener=null),e.$_pfocustrap_focusoutlistener&&e.removeEventListener("focusout",e.$_pfocustrap_focusoutlistener)&&(e.$_pfocustrap_focusoutlistener=null)},autoFocus:function(e,n){var r=n.value||{},o=r.autoFocusSelector,i=o===void 0?"":o,a=r.firstFocusableSelector,l=a===void 0?"":a,u=r.autoFocus,s=u===void 0?!1:u,c=C.getFirstFocusableElement(e,"[autofocus]".concat(this.getComputedSelector(i)));s&&!c&&(c=C.getFirstFocusableElement(e,this.getComputedSelector(l))),C.focus(c)},onFirstHiddenElementFocus:function(e){var n,r=e.currentTarget,o=e.relatedTarget,i=o===r.$_pfocustrap_lasthiddenfocusableelement||!((n=this.$el)!==null&&n!==void 0&&n.contains(o))?C.getFirstFocusableElement(r.parentElement,this.getComputedSelector(r.$_pfocustrap_focusableselector)):r.$_pfocustrap_lasthiddenfocusableelement;C.focus(i)},onLastHiddenElementFocus:function(e){var n,r=e.currentTarget,o=e.relatedTarget,i=o===r.$_pfocustrap_firsthiddenfocusableelement||!((n=this.$el)!==null&&n!==void 0&&n.contains(o))?C.getLastFocusableElement(r.parentElement,this.getComputedSelector(r.$_pfocustrap_focusableselector)):r.$_pfocustrap_firsthiddenfocusableelement;C.focus(i)},createHiddenFocusableElements:function(e,n){var r=this,o=n.value||{},i=o.tabIndex,a=i===void 0?0:i,l=o.firstFocusableSelector,u=l===void 0?"":l,s=o.lastFocusableSelector,c=s===void 0?"":s,d=function(b){return C.createElement("span",{class:"p-hidden-accessible p-hidden-focusable",tabIndex:a,role:"presentation","aria-hidden":!0,"data-p-hidden-accessible":!0,"data-p-hidden-focusable":!0,onFocus:b==null?void 0:b.bind(r)})},m=d(this.onFirstHiddenElementFocus),f=d(this.onLastHiddenElementFocus);m.$_pfocustrap_lasthiddenfocusableelement=f,m.$_pfocustrap_focusableselector=u,m.setAttribute("data-pc-section","firstfocusableelement"),f.$_pfocustrap_firsthiddenfocusableelement=m,f.$_pfocustrap_focusableselector=c,f.setAttribute("data-pc-section","lastfocusableelement"),e.prepend(m),e.append(f)}}}),yd={name:"FilterSlashIcon",extends:Fe,computed:{pathId:function(){return"pv_icon_clip_".concat(Re())}}},V0=["clipPath"],H0=g("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M13.4994 0.0920138C13.5967 0.151519 13.6758 0.236453 13.7283 0.337647C13.7807 0.439133 13.8031 0.553448 13.7929 0.667208C13.7827 0.780968 13.7403 0.889466 13.6707 0.98L11.406 4.06823C11.3099 4.19928 11.1656 4.28679 11.005 4.3115C10.8444 4.33621 10.6805 4.2961 10.5495 4.2C10.4184 4.1039 10.3309 3.95967 10.3062 3.79905C10.2815 3.63843 10.3216 3.47458 10.4177 3.34353L11.9412 1.23529H7.41184C7.24803 1.23529 7.09093 1.17022 6.97509 1.05439C6.85926 0.938558 6.79419 0.781457 6.79419 0.617647C6.79419 0.453837 6.85926 0.296736 6.97509 0.180905C7.09093 0.0650733 7.24803 0 7.41184 0H13.1765C13.2905 0.000692754 13.4022 0.0325088 13.4994 0.0920138ZM4.20008 0.181168H4.24126L13.2013 9.03411C13.3169 9.14992 13.3819 9.3069 13.3819 9.47058C13.3819 9.63426 13.3169 9.79124 13.2013 9.90705C13.1445 9.96517 13.0766 10.0112 13.0016 10.0423C12.9266 10.0735 12.846 10.0891 12.7648 10.0882C12.6836 10.0886 12.6032 10.0728 12.5283 10.0417C12.4533 10.0106 12.3853 9.96479 12.3283 9.90705L9.3142 6.92587L9.26479 6.99999V13.3823C9.26265 13.5455 9.19689 13.7014 9.08152 13.8167C8.96615 13.9321 8.81029 13.9979 8.64714 14H5.35302C5.18987 13.9979 5.03401 13.9321 4.91864 13.8167C4.80327 13.7014 4.73751 13.5455 4.73537 13.3823V6.99999L0.329492 1.02117C0.259855 0.930634 0.21745 0.822137 0.207241 0.708376C0.197031 0.594616 0.21944 0.480301 0.271844 0.378815C0.324343 0.277621 0.403484 0.192687 0.500724 0.133182C0.597964 0.073677 0.709609 0.041861 0.823609 0.0411682H3.86243C3.92448 0.0461551 3.9855 0.060022 4.04361 0.0823446C4.10037 0.10735 4.15311 0.140655 4.20008 0.181168ZM8.02949 6.79411C8.02884 6.66289 8.07235 6.53526 8.15302 6.43176L8.42478 6.05293L3.55773 1.23529H2.0589L5.84714 6.43176C5.92781 6.53526 5.97132 6.66289 5.97067 6.79411V12.7647H8.02949V6.79411Z",fill:"currentColor"},null,-1),N0=[H0],z0=["id"],K0=g("rect",{width:"14",height:"14",fill:"white"},null,-1),U0=[K0];function W0(t,e,n,r,o,i){return p(),v("svg",h({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),[g("g",{clipPath:"url(#".concat(i.pathId,")")},N0,8,V0),g("defs",null,[g("clipPath",{id:"".concat(i.pathId)},U0,8,z0)])],16)}yd.render=W0;var dl={name:"PlusIcon",extends:Fe,computed:{pathId:function(){return"pv_icon_clip_".concat(Re())}}},G0=["clipPath"],q0=g("path",{d:"M7.67742 6.32258V0.677419C7.67742 0.497757 7.60605 0.325452 7.47901 0.198411C7.35197 0.0713707 7.17966 0 7 0C6.82034 0 6.64803 0.0713707 6.52099 0.198411C6.39395 0.325452 6.32258 0.497757 6.32258 0.677419V6.32258H0.677419C0.497757 6.32258 0.325452 6.39395 0.198411 6.52099C0.0713707 6.64803 0 6.82034 0 7C0 7.17966 0.0713707 7.35197 0.198411 7.47901C0.325452 7.60605 0.497757 7.67742 0.677419 7.67742H6.32258V13.3226C6.32492 13.5015 6.39704 13.6725 6.52358 13.799C6.65012 13.9255 6.82106 13.9977 7 14C7.17966 14 7.35197 13.9286 7.47901 13.8016C7.60605 13.6745 7.67742 13.5022 7.67742 13.3226V7.67742H13.3226C13.5022 7.67742 13.6745 7.60605 13.8016 7.47901C13.9286 7.35197 14 7.17966 14 7C13.9977 6.82106 13.9255 6.65012 13.799 6.52358C13.6725 6.39704 13.5015 6.32492 13.3226 6.32258H7.67742Z",fill:"currentColor"},null,-1),Y0=[q0],J0=["id"],Z0=g("rect",{width:"14",height:"14",fill:"white"},null,-1),X0=[Z0];function Q0(t,e,n,r,o,i){return p(),v("svg",h({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),[g("g",{clipPath:"url(#".concat(i.pathId,")")},Y0,8,G0),g("defs",null,[g("clipPath",{id:"".concat(i.pathId)},X0,8,J0)])],16)}dl.render=Q0;var bd={name:"TrashIcon",extends:Fe,computed:{pathId:function(){return"pv_icon_clip_".concat(Re())}}},ew=["clipPath"],tw=g("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M3.44802 13.9955H10.552C10.8056 14.0129 11.06 13.9797 11.3006 13.898C11.5412 13.8163 11.7632 13.6877 11.9537 13.5196C12.1442 13.3515 12.2995 13.1473 12.4104 12.9188C12.5213 12.6903 12.5858 12.442 12.6 12.1884V4.36041H13.4C13.5591 4.36041 13.7117 4.29722 13.8243 4.18476C13.9368 4.07229 14 3.91976 14 3.76071C14 3.60166 13.9368 3.44912 13.8243 3.33666C13.7117 3.22419 13.5591 3.16101 13.4 3.16101H12.0537C12.0203 3.1557 11.9863 3.15299 11.952 3.15299C11.9178 3.15299 11.8838 3.1557 11.8503 3.16101H11.2285C11.2421 3.10893 11.2487 3.05513 11.248 3.00106V1.80966C11.2171 1.30262 10.9871 0.828306 10.608 0.48989C10.229 0.151475 9.73159 -0.0236625 9.22402 0.00257442H4.77602C4.27251 -0.0171866 3.78126 0.160868 3.40746 0.498617C3.03365 0.836366 2.807 1.30697 2.77602 1.80966V3.00106C2.77602 3.0556 2.78346 3.10936 2.79776 3.16101H0.6C0.521207 3.16101 0.443185 3.17652 0.37039 3.20666C0.297595 3.2368 0.231451 3.28097 0.175736 3.33666C0.120021 3.39235 0.0758251 3.45846 0.0456722 3.53121C0.0155194 3.60397 0 3.68196 0 3.76071C0 3.83946 0.0155194 3.91744 0.0456722 3.9902C0.0758251 4.06296 0.120021 4.12907 0.175736 4.18476C0.231451 4.24045 0.297595 4.28462 0.37039 4.31476C0.443185 4.3449 0.521207 4.36041 0.6 4.36041H1.40002V12.1884C1.41426 12.442 1.47871 12.6903 1.58965 12.9188C1.7006 13.1473 1.85582 13.3515 2.04633 13.5196C2.23683 13.6877 2.45882 13.8163 2.69944 13.898C2.94005 13.9797 3.1945 14.0129 3.44802 13.9955ZM2.60002 4.36041H11.304V12.1884C11.304 12.5163 10.952 12.7961 10.504 12.7961H3.40002C2.97602 12.7961 2.60002 12.5163 2.60002 12.1884V4.36041ZM3.95429 3.16101C3.96859 3.10936 3.97602 3.0556 3.97602 3.00106V1.80966C3.97602 1.48183 4.33602 1.20197 4.77602 1.20197H9.24802C9.66403 1.20197 10.048 1.48183 10.048 1.80966V3.00106C10.0473 3.05515 10.054 3.10896 10.0678 3.16101H3.95429ZM5.57571 10.997C5.41731 10.995 5.26597 10.9311 5.15395 10.8191C5.04193 10.7071 4.97808 10.5558 4.97601 10.3973V6.77517C4.97601 6.61612 5.0392 6.46359 5.15166 6.35112C5.26413 6.23866 5.41666 6.17548 5.57571 6.17548C5.73476 6.17548 5.8873 6.23866 5.99976 6.35112C6.11223 6.46359 6.17541 6.61612 6.17541 6.77517V10.3894C6.17647 10.4688 6.16174 10.5476 6.13208 10.6213C6.10241 10.695 6.05841 10.762 6.00261 10.8186C5.94682 10.8751 5.88035 10.92 5.80707 10.9506C5.73378 10.9813 5.65514 10.9971 5.57571 10.997ZM7.99968 10.8214C8.11215 10.9339 8.26468 10.997 8.42373 10.997C8.58351 10.9949 8.73604 10.93 8.84828 10.8163C8.96052 10.7025 9.02345 10.5491 9.02343 10.3894V6.77517C9.02343 6.61612 8.96025 6.46359 8.84778 6.35112C8.73532 6.23866 8.58278 6.17548 8.42373 6.17548C8.26468 6.17548 8.11215 6.23866 7.99968 6.35112C7.88722 6.46359 7.82404 6.61612 7.82404 6.77517V10.3973C7.82404 10.5564 7.88722 10.7089 7.99968 10.8214Z",fill:"currentColor"},null,-1),nw=[tw],rw=["id"],iw=g("rect",{width:"14",height:"14",fill:"white"},null,-1),ow=[iw];function aw(t,e,n,r,o,i){return p(),v("svg",h({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),[g("g",{clipPath:"url(#".concat(i.pathId,")")},nw,8,ew),g("defs",null,[g("clipPath",{id:"".concat(i.pathId)},ow,8,rw)])],16)}bd.render=aw;var ha={name:"SortAltIcon",extends:Fe,computed:{pathId:function(){return"pv_icon_clip_".concat(Re())}}},lw=["clipPath"],sw=g("path",{d:"M5.64515 3.61291C5.47353 3.61291 5.30192 3.54968 5.16644 3.4142L3.38708 1.63484L1.60773 3.4142C1.34579 3.67613 0.912244 3.67613 0.650309 3.4142C0.388374 3.15226 0.388374 2.71871 0.650309 2.45678L2.90837 0.198712C3.17031 -0.0632236 3.60386 -0.0632236 3.86579 0.198712L6.12386 2.45678C6.38579 2.71871 6.38579 3.15226 6.12386 3.4142C5.98837 3.54968 5.81676 3.61291 5.64515 3.61291Z",fill:"currentColor"},null,-1),uw=g("path",{d:"M3.38714 14C3.01681 14 2.70972 13.6929 2.70972 13.3226V0.677419C2.70972 0.307097 3.01681 0 3.38714 0C3.75746 0 4.06456 0.307097 4.06456 0.677419V13.3226C4.06456 13.6929 3.75746 14 3.38714 14Z",fill:"currentColor"},null,-1),cw=g("path",{d:"M10.6129 14C10.4413 14 10.2697 13.9368 10.1342 13.8013L7.87611 11.5432C7.61418 11.2813 7.61418 10.8477 7.87611 10.5858C8.13805 10.3239 8.5716 10.3239 8.83353 10.5858L10.6129 12.3652L12.3922 10.5858C12.6542 10.3239 13.0877 10.3239 13.3497 10.5858C13.6116 10.8477 13.6116 11.2813 13.3497 11.5432L11.0916 13.8013C10.9561 13.9368 10.7845 14 10.6129 14Z",fill:"currentColor"},null,-1),dw=g("path",{d:"M10.6129 14C10.2426 14 9.93552 13.6929 9.93552 13.3226V0.677419C9.93552 0.307097 10.2426 0 10.6129 0C10.9833 0 11.2904 0.307097 11.2904 0.677419V13.3226C11.2904 13.6929 10.9832 14 10.6129 14Z",fill:"currentColor"},null,-1),pw=[sw,uw,cw,dw],fw=["id"],mw=g("rect",{width:"14",height:"14",fill:"white"},null,-1),hw=[mw];function gw(t,e,n,r,o,i){return p(),v("svg",h({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),[g("g",{clipPath:"url(#".concat(i.pathId,")")},pw,8,lw),g("defs",null,[g("clipPath",{id:"".concat(i.pathId)},hw,8,fw)])],16)}ha.render=gw;var ga={name:"SortAmountDownIcon",extends:Fe,computed:{pathId:function(){return"pv_icon_clip_".concat(Re())}}},vw=["clipPath"],yw=Xa('',6),bw=[yw],ww=["id"],Cw=g("rect",{width:"14",height:"14",fill:"white"},null,-1),_w=[Cw];function Sw(t,e,n,r,o,i){return p(),v("svg",h({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),[g("g",{clipPath:"url(#".concat(i.pathId,")")},bw,8,vw),g("defs",null,[g("clipPath",{id:"".concat(i.pathId)},_w,8,ww)])],16)}ga.render=Sw;var va={name:"SortAmountUpAltIcon",extends:Fe,computed:{pathId:function(){return"pv_icon_clip_".concat(Re())}}},Ow=["clipPath"],Pw=Xa('',6),Iw=[Pw],kw=["id"],xw=g("rect",{width:"14",height:"14",fill:"white"},null,-1),Tw=[xw];function Ew(t,e,n,r,o,i){return p(),v("svg",h({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),[g("g",{clipPath:"url(#".concat(i.pathId,")")},Iw,8,Ow),g("defs",null,[g("clipPath",{id:"".concat(i.pathId)},Tw,8,kw)])],16)}va.render=Ew;var Dw={name:"BaseDataTable",extends:Pe,props:{value:{type:Array,default:null},dataKey:{type:[String,Function],default:null},rows:{type:Number,default:0},first:{type:Number,default:0},totalRecords:{type:Number,default:0},paginator:{type:Boolean,default:!1},paginatorPosition:{type:String,default:"bottom"},alwaysShowPaginator:{type:Boolean,default:!0},paginatorTemplate:{type:[Object,String],default:"FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink RowsPerPageDropdown"},pageLinkSize:{type:Number,default:5},rowsPerPageOptions:{type:Array,default:null},currentPageReportTemplate:{type:String,default:"({currentPage} of {totalPages})"},lazy:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},loadingIcon:{type:String,default:void 0},sortField:{type:[String,Function],default:null},sortOrder:{type:Number,default:null},defaultSortOrder:{type:Number,default:1},nullSortOrder:{type:Number,default:1},multiSortMeta:{type:Array,default:null},sortMode:{type:String,default:"single"},removableSort:{type:Boolean,default:!1},filters:{type:Object,default:null},filterDisplay:{type:String,default:null},globalFilterFields:{type:Array,default:null},filterLocale:{type:String,default:void 0},selection:{type:[Array,Object],default:null},selectionMode:{type:String,default:null},compareSelectionBy:{type:String,default:"deepEquals"},metaKeySelection:{type:Boolean,default:!0},contextMenu:{type:Boolean,default:!1},contextMenuSelection:{type:Object,default:null},selectAll:{type:Boolean,default:null},rowHover:{type:Boolean,default:!1},csvSeparator:{type:String,default:","},exportFilename:{type:String,default:"download"},exportFunction:{type:Function,default:null},resizableColumns:{type:Boolean,default:!1},columnResizeMode:{type:String,default:"fit"},reorderableColumns:{type:Boolean,default:!1},expandedRows:{type:Array,default:null},expandedRowIcon:{type:String,default:void 0},collapsedRowIcon:{type:String,default:void 0},rowGroupMode:{type:String,default:null},groupRowsBy:{type:[Array,String,Function],default:null},expandableRowGroups:{type:Boolean,default:!1},expandedRowGroups:{type:Array,default:null},stateStorage:{type:String,default:"session"},stateKey:{type:String,default:null},editMode:{type:String,default:null},editingRows:{type:Array,default:null},rowClass:{type:null,default:null},rowStyle:{type:null,default:null},scrollable:{type:Boolean,default:!1},virtualScrollerOptions:{type:Object,default:null},scrollHeight:{type:String,default:null},frozenValue:{type:Array,default:null},responsiveLayout:{type:String,default:"scroll"},breakpoint:{type:String,default:"960px"},showGridlines:{type:Boolean,default:!1},stripedRows:{type:Boolean,default:!1},size:{type:String,default:null},tableStyle:{type:null,default:null},tableClass:{type:String,default:null},tableProps:{type:null,default:null},filterInputProps:{type:null,default:null}},style:k0,provide:function(){return{$parentInstance:this}}},wd={name:"RowCheckbox",hostName:"DataTable",extends:Pe,emits:["change"],props:{value:null,checked:null,column:null,rowCheckboxIconTemplate:{type:Function,default:null},index:{type:Number,default:null}},data:function(){return{focused:!1}},methods:{getColumnPT:function(e){var n={props:this.column.props,parent:{props:this.$props,state:this.$data},context:{index:this.index,checked:this.checked,focused:this.focused,disabled:this.$attrs.disabled}};return h(this.ptm("column.".concat(e),{column:n}),this.ptm("column.".concat(e),n),this.ptmo(this.getColumnProp(),e,n))},getColumnProp:function(){return this.column.props&&this.column.props.pt?this.column.props.pt:void 0},onClick:function(e){this.$attrs.disabled||(this.$emit("change",{originalEvent:e,data:this.value}),C.focus(this.$refs.input)),e.preventDefault()},onFocus:function(){this.focused=!0},onBlur:function(){this.focused=!1},onKeydown:function(e){switch(e.code){case"Space":{this.onClick(e);break}}}},computed:{checkboxAriaLabel:function(){return this.$primevue.config.locale.aria?this.checked?this.$primevue.config.locale.aria.selectRow:this.$primevue.config.locale.aria.unselectRow:void 0}},components:{CheckIcon:qt}},Rw=["checked","disabled","tabindex","aria-label"];function $w(t,e,n,r,o,i){var a=N("CheckIcon");return p(),v("div",h({class:t.cx("checkboxWrapper"),onClick:e[3]||(e[3]=function(){return i.onClick&&i.onClick.apply(i,arguments)})},i.getColumnPT("checkboxWrapper")),[g("div",h({class:"p-hidden-accessible"},i.getColumnPT("hiddenInputWrapper"),{"data-p-hidden-accessible":!0}),[g("input",h({ref:"input",type:"checkbox",checked:n.checked,disabled:t.$attrs.disabled,tabindex:t.$attrs.disabled?null:"0","aria-label":i.checkboxAriaLabel,onFocus:e[0]||(e[0]=function(l){return i.onFocus(l)}),onBlur:e[1]||(e[1]=function(l){return i.onBlur(l)}),onKeydown:e[2]||(e[2]=function(){return i.onKeydown&&i.onKeydown.apply(i,arguments)})},i.getColumnPT("hiddenInput")),null,16,Rw)],16),g("div",h({ref:"box",class:t.cx("checkbox")},i.getColumnPT("checkbox")),[n.rowCheckboxIconTemplate?(p(),$(de(n.rowCheckboxIconTemplate),{key:0,checked:n.checked,class:re(t.cx("checkboxIcon"))},null,8,["checked","class"])):!n.rowCheckboxIconTemplate&&n.checked?(p(),$(a,h({key:1,class:t.cx("checkboxIcon")},i.getColumnPT("checkboxIcon")),null,16,["class"])):x("",!0)],16)],16)}wd.render=$w;var Cd={name:"RowRadioButton",hostName:"DataTable",extends:Pe,inheritAttrs:!1,emits:["change"],props:{value:null,checked:null,name:null,column:null,index:{type:Number,default:null}},data:function(){return{focused:!1}},methods:{getColumnPT:function(e){var n={props:this.column.props,parent:{props:this.$props,state:this.$data},context:{index:this.index,checked:this.checked,focused:this.focused,disabled:this.$attrs.disabled}};return h(this.ptm("column.".concat(e),{column:n}),this.ptm("column.".concat(e),n),this.ptmo(this.getColumnProp(),e,n))},getColumnProp:function(){return this.column.props&&this.column.props.pt?this.column.props.pt:void 0},onClick:function(e){this.disabled||this.checked||(this.$emit("change",{originalEvent:e,data:this.value}),C.focus(this.$refs.input))},onFocus:function(){this.focused=!0},onBlur:function(){this.focused=!1}}},Aw=["checked","disabled","name"];function Mw(t,e,n,r,o,i){return p(),v("div",h({class:t.cx("radiobuttonWrapper"),onClick:e[3]||(e[3]=function(){return i.onClick&&i.onClick.apply(i,arguments)})},i.getColumnPT("radiobuttonWrapper")),[g("div",h({class:"p-hidden-accessible"},i.getColumnPT("hiddenInputWrapper"),{"data-p-hidden-accessible":!0}),[g("input",h({ref:"input",type:"radio",checked:n.checked,disabled:t.$attrs.disabled,name:n.name,tabindex:"0",onFocus:e[0]||(e[0]=function(a){return i.onFocus(a)}),onBlur:e[1]||(e[1]=function(a){return i.onBlur(a)}),onKeydown:e[2]||(e[2]=Ve(fo(function(){return i.onClick&&i.onClick.apply(i,arguments)},["prevent"]),["space"]))},i.getColumnPT("hiddenInput")),null,16,Aw)],16),g("div",h({ref:"box",class:t.cx("radiobutton")},i.getColumnPT("radiobutton")),[g("div",h({class:t.cx("radiobuttonIcon")},i.getColumnPT("radiobuttonIcon")),null,16)],16)],16)}Cd.render=Mw;var _d={name:"BodyCell",hostName:"DataTable",extends:Pe,emits:["cell-edit-init","cell-edit-complete","cell-edit-cancel","row-edit-init","row-edit-save","row-edit-cancel","row-toggle","radio-change","checkbox-change","editing-meta-change"],props:{rowData:{type:Object,default:null},column:{type:Object,default:null},frozenRow:{type:Boolean,default:!1},rowIndex:{type:Number,default:null},index:{type:Number,default:null},isRowExpanded:{type:Boolean,default:!1},selected:{type:Boolean,default:!1},editing:{type:Boolean,default:!1},editingMeta:{type:Object,default:null},editMode:{type:String,default:null},responsiveLayout:{type:String,default:"stack"},virtualScrollerContentProps:{type:Object,default:null},ariaControls:{type:String,default:null},name:{type:String,default:null},expandedRowIcon:{type:String,default:null},collapsedRowIcon:{type:String,default:null}},documentEditListener:null,selfClick:!1,overlayEventListener:null,data:function(){return{d_editing:this.editing,styleObject:{}}},watch:{editing:function(e){this.d_editing=e},"$data.d_editing":function(e){this.$emit("editing-meta-change",{data:this.rowData,field:this.field||"field_".concat(this.index),index:this.rowIndex,editing:e})}},mounted:function(){this.columnProp("frozen")&&this.updateStickyPosition()},updated:function(){var e=this;this.columnProp("frozen")&&this.updateStickyPosition(),this.d_editing&&(this.editMode==="cell"||this.editMode==="row"&&this.columnProp("rowEditor"))&&setTimeout(function(){var n=C.getFirstFocusableElement(e.$el);n&&n.focus()},1)},beforeUnmount:function(){this.overlayEventListener&&(At.off("overlay-click",this.overlayEventListener),this.overlayEventListener=null)},methods:{columnProp:function(e){return B.getVNodeProp(this.column,e)},getColumnPT:function(e){var n,r,o={props:this.column.props,parent:{props:this.$props,state:this.$data},context:{index:this.index,size:(n=this.$parentInstance)===null||n===void 0||(n=n.$parentInstance)===null||n===void 0?void 0:n.size,showGridlines:(r=this.$parentInstance)===null||r===void 0||(r=r.$parentInstance)===null||r===void 0?void 0:r.showGridlines}};return h(this.ptm("column.".concat(e),{column:o}),this.ptm("column.".concat(e),o),this.ptmo(this.getColumnProp(),e,o))},getColumnProp:function(){return this.column.props&&this.column.props.pt?this.column.props.pt:void 0},resolveFieldData:function(){return B.resolveFieldData(this.rowData,this.field)},toggleRow:function(e){this.$emit("row-toggle",{originalEvent:e,data:this.rowData})},toggleRowWithRadio:function(e,n){this.$emit("radio-change",{originalEvent:e.originalEvent,index:n,data:e.data})},toggleRowWithCheckbox:function(e,n){this.$emit("checkbox-change",{originalEvent:e.originalEvent,index:n,data:e.data})},isEditable:function(){return this.column.children&&this.column.children.editor!=null},bindDocumentEditListener:function(){var e=this;this.documentEditListener||(this.documentEditListener=function(n){e.selfClick||e.completeEdit(n,"outside"),e.selfClick=!1},document.addEventListener("click",this.documentEditListener))},unbindDocumentEditListener:function(){this.documentEditListener&&(document.removeEventListener("click",this.documentEditListener),this.documentEditListener=null,this.selfClick=!1)},switchCellToViewMode:function(){this.d_editing=!1,this.unbindDocumentEditListener(),At.off("overlay-click",this.overlayEventListener),this.overlayEventListener=null},onClick:function(e){var n=this;this.editMode==="cell"&&this.isEditable()&&(this.selfClick=!0,this.d_editing||(this.d_editing=!0,this.bindDocumentEditListener(),this.$emit("cell-edit-init",{originalEvent:e,data:this.rowData,field:this.field,index:this.rowIndex}),this.overlayEventListener=function(r){n.$el&&n.$el.contains(r.target)&&(n.selfClick=!0)},At.on("overlay-click",this.overlayEventListener)))},completeEdit:function(e,n){var r={originalEvent:e,data:this.rowData,newData:this.editingRowData,value:this.rowData[this.field],newValue:this.editingRowData[this.field],field:this.field,index:this.rowIndex,type:n,defaultPrevented:!1,preventDefault:function(){this.defaultPrevented=!0}};this.$emit("cell-edit-complete",r),r.defaultPrevented||this.switchCellToViewMode()},onKeyDown:function(e){if(this.editMode==="cell")switch(e.code){case"Enter":case"NumpadEnter":this.completeEdit(e,"enter");break;case"Escape":this.switchCellToViewMode(),this.$emit("cell-edit-cancel",{originalEvent:e,data:this.rowData,field:this.field,index:this.rowIndex});break;case"Tab":this.completeEdit(e,"tab"),e.shiftKey?this.moveToPreviousCell(e):this.moveToNextCell(e);break}},moveToPreviousCell:function(e){var n=this.findCell(e.target),r=this.findPreviousEditableColumn(n);r&&(C.invokeElementMethod(r,"click"),e.preventDefault())},moveToNextCell:function(e){var n=this.findCell(e.target),r=this.findNextEditableColumn(n);r&&(C.invokeElementMethod(r,"click"),e.preventDefault())},findCell:function(e){if(e){for(var n=e;n&&!C.getAttribute(n,"data-p-cell-editing");)n=n.parentElement;return n}else return null},findPreviousEditableColumn:function(e){var n=e.previousElementSibling;if(!n){var r=e.parentElement.previousElementSibling;r&&(n=r.lastElementChild)}return n?C.getAttribute(n,"data-p-editable-column")?n:this.findPreviousEditableColumn(n):null},findNextEditableColumn:function(e){var n=e.nextElementSibling;if(!n){var r=e.parentElement.nextElementSibling;r&&(n=r.firstElementChild)}return n?C.getAttribute(n,"data-p-editable-column")?n:this.findNextEditableColumn(n):null},isEditingCellValid:function(){return C.find(this.$el,".p-invalid").length===0},onRowEditInit:function(e){this.$emit("row-edit-init",{originalEvent:e,data:this.rowData,newData:this.editingRowData,field:this.field,index:this.rowIndex})},onRowEditSave:function(e){this.$emit("row-edit-save",{originalEvent:e,data:this.rowData,newData:this.editingRowData,field:this.field,index:this.rowIndex})},onRowEditCancel:function(e){this.$emit("row-edit-cancel",{originalEvent:e,data:this.rowData,newData:this.editingRowData,field:this.field,index:this.rowIndex})},editorInitCallback:function(e){this.$emit("row-edit-init",{originalEvent:e,data:this.rowData,newData:this.editingRowData,field:this.field,index:this.rowIndex})},editorSaveCallback:function(e){this.editMode==="row"?this.$emit("row-edit-save",{originalEvent:e,data:this.rowData,newData:this.editingRowData,field:this.field,index:this.rowIndex}):this.completeEdit(e,"enter")},editorCancelCallback:function(e){this.editMode==="row"?this.$emit("row-edit-cancel",{originalEvent:e,data:this.rowData,newData:this.editingRowData,field:this.field,index:this.rowIndex}):(this.switchCellToViewMode(),this.$emit("cell-edit-cancel",{originalEvent:e,data:this.rowData,field:this.field,index:this.rowIndex}))},updateStickyPosition:function(){if(this.columnProp("frozen")){var e=this.columnProp("alignFrozen");if(e==="right"){var n=0,r=C.getNextElementSibling(this.$el,'[data-p-frozen-column="true"]');r&&(n=C.getOuterWidth(r)+parseFloat(r.style.right||0)),this.styleObject.right=n+"px"}else{var o=0,i=C.getPreviousElementSibling(this.$el,'[data-p-frozen-column="true"]');i&&(o=C.getOuterWidth(i)+parseFloat(i.style.left||0)),this.styleObject.left=o+"px"}}},getVirtualScrollerProp:function(e){return this.virtualScrollerContentProps?this.virtualScrollerContentProps[e]:null}},computed:{editingRowData:function(){return this.editingMeta[this.rowIndex]?this.editingMeta[this.rowIndex].data:this.rowData},field:function(){return this.columnProp("field")},containerClass:function(){return[this.columnProp("bodyClass"),this.columnProp("class"),this.cx("bodyCell")]},containerStyle:function(){var e=this.columnProp("bodyStyle"),n=this.columnProp("style");return this.columnProp("frozen")?[n,e,this.styleObject]:[n,e]},loading:function(){return this.getVirtualScrollerProp("loading")},loadingOptions:function(){var e=this.getVirtualScrollerProp("getLoaderOptions");return e&&e(this.rowIndex,{cellIndex:this.index,cellFirst:this.index===0,cellLast:this.index===this.getVirtualScrollerProp("columns").length-1,cellEven:this.index%2===0,cellOdd:this.index%2!==0,column:this.column,field:this.field})},expandButtonAriaLabel:function(){return this.$primevue.config.locale.aria?this.isRowExpanded?this.$primevue.config.locale.aria.expandRow:this.$primevue.config.locale.aria.collapseRow:void 0},initButtonAriaLabel:function(){return this.$primevue.config.locale.aria?this.$primevue.config.locale.aria.editRow:void 0},saveButtonAriaLabel:function(){return this.$primevue.config.locale.aria?this.$primevue.config.locale.aria.saveEdit:void 0},cancelButtonAriaLabel:function(){return this.$primevue.config.locale.aria?this.$primevue.config.locale.aria.cancelEdit:void 0}},components:{DTRadioButton:Cd,DTCheckbox:wd,ChevronDownIcon:Zn,ChevronRightIcon:fi,BarsIcon:gd,PencilIcon:vd,CheckIcon:qt,TimesIcon:Xn},directives:{ripple:pt}};function Gr(t){"@babel/helpers - typeof";return Gr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Gr(t)}function js(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function Ei(t){for(var e=1;e-1:this.groupRowsBy===e.props.field:!1},isRowEditing:function(e){return e&&this.editingRows?this.dataKey?this.editingRowKeys?this.editingRowKeys[B.resolveFieldData(e,this.dataKey)]!==void 0:!1:this.findIndex(e,this.editingRows)>-1:!1},isRowExpanded:function(e){return e&&this.expandedRows?this.dataKey?this.expandedRowKeys?this.expandedRowKeys[B.resolveFieldData(e,this.dataKey)]!==void 0:!1:this.findIndex(e,this.expandedRows)>-1:!1},isRowGroupExpanded:function(e){if(this.expandableRowGroups&&this.expandedRowGroups){var n=B.resolveFieldData(e,this.groupRowsBy);return this.expandedRowGroups.indexOf(n)>-1}return!1},isSelected:function(e){return e&&this.selection?this.dataKey?this.selectionKeys?this.selectionKeys[B.resolveFieldData(e,this.dataKey)]!==void 0:!1:this.selection instanceof Array?this.findIndexInSelection(e)>-1:this.equals(e,this.selection):!1},isSelectedWithContextMenu:function(e){return e&&this.contextMenuSelection?this.equals(e,this.contextMenuSelection,this.dataKey):!1},findIndexInSelection:function(e){return this.findIndex(e,this.selection)},findIndex:function(e,n){var r=-1;if(n&&n.length){for(var o=0;o',6),bw=[yw],ww=["id"],Cw=g("rect",{width:"14",height:"14",fill:"white"},null,-1),_w=[Cw];function Sw(t,e,n,r,o,i){return p(),v("svg",h({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),[g("g",{clipPath:"url(#".concat(i.pathId,")")},bw,8,vw),g("defs",null,[g("clipPath",{id:"".concat(i.pathId)},_w,8,ww)])],16)}ga.render=Sw;var va={name:"SortAmountUpAltIcon",extends:Le,computed:{pathId:function(){return"pv_icon_clip_".concat(Re())}}},Ow=["clipPath"],Pw=Xa('',6),Iw=[Pw],kw=["id"],Tw=g("rect",{width:"14",height:"14",fill:"white"},null,-1),xw=[Tw];function Ew(t,e,n,r,o,i){return p(),v("svg",h({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},t.pti()),[g("g",{clipPath:"url(#".concat(i.pathId,")")},Iw,8,Ow),g("defs",null,[g("clipPath",{id:"".concat(i.pathId)},xw,8,kw)])],16)}va.render=Ew;var Dw={name:"BaseDataTable",extends:Oe,props:{value:{type:Array,default:null},dataKey:{type:[String,Function],default:null},rows:{type:Number,default:0},first:{type:Number,default:0},totalRecords:{type:Number,default:0},paginator:{type:Boolean,default:!1},paginatorPosition:{type:String,default:"bottom"},alwaysShowPaginator:{type:Boolean,default:!0},paginatorTemplate:{type:[Object,String],default:"FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink RowsPerPageDropdown"},pageLinkSize:{type:Number,default:5},rowsPerPageOptions:{type:Array,default:null},currentPageReportTemplate:{type:String,default:"({currentPage} of {totalPages})"},lazy:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},loadingIcon:{type:String,default:void 0},sortField:{type:[String,Function],default:null},sortOrder:{type:Number,default:null},defaultSortOrder:{type:Number,default:1},nullSortOrder:{type:Number,default:1},multiSortMeta:{type:Array,default:null},sortMode:{type:String,default:"single"},removableSort:{type:Boolean,default:!1},filters:{type:Object,default:null},filterDisplay:{type:String,default:null},globalFilterFields:{type:Array,default:null},filterLocale:{type:String,default:void 0},selection:{type:[Array,Object],default:null},selectionMode:{type:String,default:null},compareSelectionBy:{type:String,default:"deepEquals"},metaKeySelection:{type:Boolean,default:!0},contextMenu:{type:Boolean,default:!1},contextMenuSelection:{type:Object,default:null},selectAll:{type:Boolean,default:null},rowHover:{type:Boolean,default:!1},csvSeparator:{type:String,default:","},exportFilename:{type:String,default:"download"},exportFunction:{type:Function,default:null},resizableColumns:{type:Boolean,default:!1},columnResizeMode:{type:String,default:"fit"},reorderableColumns:{type:Boolean,default:!1},expandedRows:{type:Array,default:null},expandedRowIcon:{type:String,default:void 0},collapsedRowIcon:{type:String,default:void 0},rowGroupMode:{type:String,default:null},groupRowsBy:{type:[Array,String,Function],default:null},expandableRowGroups:{type:Boolean,default:!1},expandedRowGroups:{type:Array,default:null},stateStorage:{type:String,default:"session"},stateKey:{type:String,default:null},editMode:{type:String,default:null},editingRows:{type:Array,default:null},rowClass:{type:null,default:null},rowStyle:{type:null,default:null},scrollable:{type:Boolean,default:!1},virtualScrollerOptions:{type:Object,default:null},scrollHeight:{type:String,default:null},frozenValue:{type:Array,default:null},responsiveLayout:{type:String,default:"scroll"},breakpoint:{type:String,default:"960px"},showGridlines:{type:Boolean,default:!1},stripedRows:{type:Boolean,default:!1},size:{type:String,default:null},tableStyle:{type:null,default:null},tableClass:{type:String,default:null},tableProps:{type:null,default:null},filterInputProps:{type:null,default:null}},style:k0,provide:function(){return{$parentInstance:this}}},wd={name:"RowCheckbox",hostName:"DataTable",extends:Oe,emits:["change"],props:{value:null,checked:null,column:null,rowCheckboxIconTemplate:{type:Function,default:null},index:{type:Number,default:null}},data:function(){return{focused:!1}},methods:{getColumnPT:function(e){var n={props:this.column.props,parent:{props:this.$props,state:this.$data},context:{index:this.index,checked:this.checked,focused:this.focused,disabled:this.$attrs.disabled}};return h(this.ptm("column.".concat(e),{column:n}),this.ptm("column.".concat(e),n),this.ptmo(this.getColumnProp(),e,n))},getColumnProp:function(){return this.column.props&&this.column.props.pt?this.column.props.pt:void 0},onClick:function(e){this.$attrs.disabled||(this.$emit("change",{originalEvent:e,data:this.value}),C.focus(this.$refs.input)),e.preventDefault()},onFocus:function(){this.focused=!0},onBlur:function(){this.focused=!1},onKeydown:function(e){switch(e.code){case"Space":{this.onClick(e);break}}}},computed:{checkboxAriaLabel:function(){return this.$primevue.config.locale.aria?this.checked?this.$primevue.config.locale.aria.selectRow:this.$primevue.config.locale.aria.unselectRow:void 0}},components:{CheckIcon:qt}},Rw=["checked","disabled","tabindex","aria-label"];function $w(t,e,n,r,o,i){var a=K("CheckIcon");return p(),v("div",h({class:t.cx("checkboxWrapper"),onClick:e[3]||(e[3]=function(){return i.onClick&&i.onClick.apply(i,arguments)})},i.getColumnPT("checkboxWrapper")),[g("div",h({class:"p-hidden-accessible"},i.getColumnPT("hiddenInputWrapper"),{"data-p-hidden-accessible":!0}),[g("input",h({ref:"input",type:"checkbox",checked:n.checked,disabled:t.$attrs.disabled,tabindex:t.$attrs.disabled?null:"0","aria-label":i.checkboxAriaLabel,onFocus:e[0]||(e[0]=function(l){return i.onFocus(l)}),onBlur:e[1]||(e[1]=function(l){return i.onBlur(l)}),onKeydown:e[2]||(e[2]=function(){return i.onKeydown&&i.onKeydown.apply(i,arguments)})},i.getColumnPT("hiddenInput")),null,16,Rw)],16),g("div",h({ref:"box",class:t.cx("checkbox")},i.getColumnPT("checkbox")),[n.rowCheckboxIconTemplate?(p(),$(ce(n.rowCheckboxIconTemplate),{key:0,checked:n.checked,class:te(t.cx("checkboxIcon"))},null,8,["checked","class"])):!n.rowCheckboxIconTemplate&&n.checked?(p(),$(a,h({key:1,class:t.cx("checkboxIcon")},i.getColumnPT("checkboxIcon")),null,16,["class"])):T("",!0)],16)],16)}wd.render=$w;var Cd={name:"RowRadioButton",hostName:"DataTable",extends:Oe,inheritAttrs:!1,emits:["change"],props:{value:null,checked:null,name:null,column:null,index:{type:Number,default:null}},data:function(){return{focused:!1}},methods:{getColumnPT:function(e){var n={props:this.column.props,parent:{props:this.$props,state:this.$data},context:{index:this.index,checked:this.checked,focused:this.focused,disabled:this.$attrs.disabled}};return h(this.ptm("column.".concat(e),{column:n}),this.ptm("column.".concat(e),n),this.ptmo(this.getColumnProp(),e,n))},getColumnProp:function(){return this.column.props&&this.column.props.pt?this.column.props.pt:void 0},onClick:function(e){this.disabled||this.checked||(this.$emit("change",{originalEvent:e,data:this.value}),C.focus(this.$refs.input))},onFocus:function(){this.focused=!0},onBlur:function(){this.focused=!1}}},Aw=["checked","disabled","name"];function Mw(t,e,n,r,o,i){return p(),v("div",h({class:t.cx("radiobuttonWrapper"),onClick:e[3]||(e[3]=function(){return i.onClick&&i.onClick.apply(i,arguments)})},i.getColumnPT("radiobuttonWrapper")),[g("div",h({class:"p-hidden-accessible"},i.getColumnPT("hiddenInputWrapper"),{"data-p-hidden-accessible":!0}),[g("input",h({ref:"input",type:"radio",checked:n.checked,disabled:t.$attrs.disabled,name:n.name,tabindex:"0",onFocus:e[0]||(e[0]=function(a){return i.onFocus(a)}),onBlur:e[1]||(e[1]=function(a){return i.onBlur(a)}),onKeydown:e[2]||(e[2]=je(fo(function(){return i.onClick&&i.onClick.apply(i,arguments)},["prevent"]),["space"]))},i.getColumnPT("hiddenInput")),null,16,Aw)],16),g("div",h({ref:"box",class:t.cx("radiobutton")},i.getColumnPT("radiobutton")),[g("div",h({class:t.cx("radiobuttonIcon")},i.getColumnPT("radiobuttonIcon")),null,16)],16)],16)}Cd.render=Mw;var _d={name:"BodyCell",hostName:"DataTable",extends:Oe,emits:["cell-edit-init","cell-edit-complete","cell-edit-cancel","row-edit-init","row-edit-save","row-edit-cancel","row-toggle","radio-change","checkbox-change","editing-meta-change"],props:{rowData:{type:Object,default:null},column:{type:Object,default:null},frozenRow:{type:Boolean,default:!1},rowIndex:{type:Number,default:null},index:{type:Number,default:null},isRowExpanded:{type:Boolean,default:!1},selected:{type:Boolean,default:!1},editing:{type:Boolean,default:!1},editingMeta:{type:Object,default:null},editMode:{type:String,default:null},responsiveLayout:{type:String,default:"stack"},virtualScrollerContentProps:{type:Object,default:null},ariaControls:{type:String,default:null},name:{type:String,default:null},expandedRowIcon:{type:String,default:null},collapsedRowIcon:{type:String,default:null}},documentEditListener:null,selfClick:!1,overlayEventListener:null,data:function(){return{d_editing:this.editing,styleObject:{}}},watch:{editing:function(e){this.d_editing=e},"$data.d_editing":function(e){this.$emit("editing-meta-change",{data:this.rowData,field:this.field||"field_".concat(this.index),index:this.rowIndex,editing:e})}},mounted:function(){this.columnProp("frozen")&&this.updateStickyPosition()},updated:function(){var e=this;this.columnProp("frozen")&&this.updateStickyPosition(),this.d_editing&&(this.editMode==="cell"||this.editMode==="row"&&this.columnProp("rowEditor"))&&setTimeout(function(){var n=C.getFirstFocusableElement(e.$el);n&&n.focus()},1)},beforeUnmount:function(){this.overlayEventListener&&(At.off("overlay-click",this.overlayEventListener),this.overlayEventListener=null)},methods:{columnProp:function(e){return H.getVNodeProp(this.column,e)},getColumnPT:function(e){var n,r,o={props:this.column.props,parent:{props:this.$props,state:this.$data},context:{index:this.index,size:(n=this.$parentInstance)===null||n===void 0||(n=n.$parentInstance)===null||n===void 0?void 0:n.size,showGridlines:(r=this.$parentInstance)===null||r===void 0||(r=r.$parentInstance)===null||r===void 0?void 0:r.showGridlines}};return h(this.ptm("column.".concat(e),{column:o}),this.ptm("column.".concat(e),o),this.ptmo(this.getColumnProp(),e,o))},getColumnProp:function(){return this.column.props&&this.column.props.pt?this.column.props.pt:void 0},resolveFieldData:function(){return H.resolveFieldData(this.rowData,this.field)},toggleRow:function(e){this.$emit("row-toggle",{originalEvent:e,data:this.rowData})},toggleRowWithRadio:function(e,n){this.$emit("radio-change",{originalEvent:e.originalEvent,index:n,data:e.data})},toggleRowWithCheckbox:function(e,n){this.$emit("checkbox-change",{originalEvent:e.originalEvent,index:n,data:e.data})},isEditable:function(){return this.column.children&&this.column.children.editor!=null},bindDocumentEditListener:function(){var e=this;this.documentEditListener||(this.documentEditListener=function(n){e.selfClick||e.completeEdit(n,"outside"),e.selfClick=!1},document.addEventListener("click",this.documentEditListener))},unbindDocumentEditListener:function(){this.documentEditListener&&(document.removeEventListener("click",this.documentEditListener),this.documentEditListener=null,this.selfClick=!1)},switchCellToViewMode:function(){this.d_editing=!1,this.unbindDocumentEditListener(),At.off("overlay-click",this.overlayEventListener),this.overlayEventListener=null},onClick:function(e){var n=this;this.editMode==="cell"&&this.isEditable()&&(this.selfClick=!0,this.d_editing||(this.d_editing=!0,this.bindDocumentEditListener(),this.$emit("cell-edit-init",{originalEvent:e,data:this.rowData,field:this.field,index:this.rowIndex}),this.overlayEventListener=function(r){n.$el&&n.$el.contains(r.target)&&(n.selfClick=!0)},At.on("overlay-click",this.overlayEventListener)))},completeEdit:function(e,n){var r={originalEvent:e,data:this.rowData,newData:this.editingRowData,value:this.rowData[this.field],newValue:this.editingRowData[this.field],field:this.field,index:this.rowIndex,type:n,defaultPrevented:!1,preventDefault:function(){this.defaultPrevented=!0}};this.$emit("cell-edit-complete",r),r.defaultPrevented||this.switchCellToViewMode()},onKeyDown:function(e){if(this.editMode==="cell")switch(e.code){case"Enter":case"NumpadEnter":this.completeEdit(e,"enter");break;case"Escape":this.switchCellToViewMode(),this.$emit("cell-edit-cancel",{originalEvent:e,data:this.rowData,field:this.field,index:this.rowIndex});break;case"Tab":this.completeEdit(e,"tab"),e.shiftKey?this.moveToPreviousCell(e):this.moveToNextCell(e);break}},moveToPreviousCell:function(e){var n=this.findCell(e.target),r=this.findPreviousEditableColumn(n);r&&(C.invokeElementMethod(r,"click"),e.preventDefault())},moveToNextCell:function(e){var n=this.findCell(e.target),r=this.findNextEditableColumn(n);r&&(C.invokeElementMethod(r,"click"),e.preventDefault())},findCell:function(e){if(e){for(var n=e;n&&!C.getAttribute(n,"data-p-cell-editing");)n=n.parentElement;return n}else return null},findPreviousEditableColumn:function(e){var n=e.previousElementSibling;if(!n){var r=e.parentElement.previousElementSibling;r&&(n=r.lastElementChild)}return n?C.getAttribute(n,"data-p-editable-column")?n:this.findPreviousEditableColumn(n):null},findNextEditableColumn:function(e){var n=e.nextElementSibling;if(!n){var r=e.parentElement.nextElementSibling;r&&(n=r.firstElementChild)}return n?C.getAttribute(n,"data-p-editable-column")?n:this.findNextEditableColumn(n):null},isEditingCellValid:function(){return C.find(this.$el,".p-invalid").length===0},onRowEditInit:function(e){this.$emit("row-edit-init",{originalEvent:e,data:this.rowData,newData:this.editingRowData,field:this.field,index:this.rowIndex})},onRowEditSave:function(e){this.$emit("row-edit-save",{originalEvent:e,data:this.rowData,newData:this.editingRowData,field:this.field,index:this.rowIndex})},onRowEditCancel:function(e){this.$emit("row-edit-cancel",{originalEvent:e,data:this.rowData,newData:this.editingRowData,field:this.field,index:this.rowIndex})},editorInitCallback:function(e){this.$emit("row-edit-init",{originalEvent:e,data:this.rowData,newData:this.editingRowData,field:this.field,index:this.rowIndex})},editorSaveCallback:function(e){this.editMode==="row"?this.$emit("row-edit-save",{originalEvent:e,data:this.rowData,newData:this.editingRowData,field:this.field,index:this.rowIndex}):this.completeEdit(e,"enter")},editorCancelCallback:function(e){this.editMode==="row"?this.$emit("row-edit-cancel",{originalEvent:e,data:this.rowData,newData:this.editingRowData,field:this.field,index:this.rowIndex}):(this.switchCellToViewMode(),this.$emit("cell-edit-cancel",{originalEvent:e,data:this.rowData,field:this.field,index:this.rowIndex}))},updateStickyPosition:function(){if(this.columnProp("frozen")){var e=this.columnProp("alignFrozen");if(e==="right"){var n=0,r=C.getNextElementSibling(this.$el,'[data-p-frozen-column="true"]');r&&(n=C.getOuterWidth(r)+parseFloat(r.style.right||0)),this.styleObject.right=n+"px"}else{var o=0,i=C.getPreviousElementSibling(this.$el,'[data-p-frozen-column="true"]');i&&(o=C.getOuterWidth(i)+parseFloat(i.style.left||0)),this.styleObject.left=o+"px"}}},getVirtualScrollerProp:function(e){return this.virtualScrollerContentProps?this.virtualScrollerContentProps[e]:null}},computed:{editingRowData:function(){return this.editingMeta[this.rowIndex]?this.editingMeta[this.rowIndex].data:this.rowData},field:function(){return this.columnProp("field")},containerClass:function(){return[this.columnProp("bodyClass"),this.columnProp("class"),this.cx("bodyCell")]},containerStyle:function(){var e=this.columnProp("bodyStyle"),n=this.columnProp("style");return this.columnProp("frozen")?[n,e,this.styleObject]:[n,e]},loading:function(){return this.getVirtualScrollerProp("loading")},loadingOptions:function(){var e=this.getVirtualScrollerProp("getLoaderOptions");return e&&e(this.rowIndex,{cellIndex:this.index,cellFirst:this.index===0,cellLast:this.index===this.getVirtualScrollerProp("columns").length-1,cellEven:this.index%2===0,cellOdd:this.index%2!==0,column:this.column,field:this.field})},expandButtonAriaLabel:function(){return this.$primevue.config.locale.aria?this.isRowExpanded?this.$primevue.config.locale.aria.expandRow:this.$primevue.config.locale.aria.collapseRow:void 0},initButtonAriaLabel:function(){return this.$primevue.config.locale.aria?this.$primevue.config.locale.aria.editRow:void 0},saveButtonAriaLabel:function(){return this.$primevue.config.locale.aria?this.$primevue.config.locale.aria.saveEdit:void 0},cancelButtonAriaLabel:function(){return this.$primevue.config.locale.aria?this.$primevue.config.locale.aria.cancelEdit:void 0}},components:{DTRadioButton:Cd,DTCheckbox:wd,ChevronDownIcon:Zn,ChevronRightIcon:fi,BarsIcon:gd,PencilIcon:vd,CheckIcon:qt,TimesIcon:Xn},directives:{ripple:pt}};function Gr(t){"@babel/helpers - typeof";return Gr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Gr(t)}function js(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function Ei(t){for(var e=1;e-1:this.groupRowsBy===e.props.field:!1},isRowEditing:function(e){return e&&this.editingRows?this.dataKey?this.editingRowKeys?this.editingRowKeys[H.resolveFieldData(e,this.dataKey)]!==void 0:!1:this.findIndex(e,this.editingRows)>-1:!1},isRowExpanded:function(e){return e&&this.expandedRows?this.dataKey?this.expandedRowKeys?this.expandedRowKeys[H.resolveFieldData(e,this.dataKey)]!==void 0:!1:this.findIndex(e,this.expandedRows)>-1:!1},isRowGroupExpanded:function(e){if(this.expandableRowGroups&&this.expandedRowGroups){var n=H.resolveFieldData(e,this.groupRowsBy);return this.expandedRowGroups.indexOf(n)>-1}return!1},isSelected:function(e){return e&&this.selection?this.dataKey?this.selectionKeys?this.selectionKeys[H.resolveFieldData(e,this.dataKey)]!==void 0:!1:this.selection instanceof Array?this.findIndexInSelection(e)>-1:this.equals(e,this.selection):!1},isSelectedWithContextMenu:function(e){return e&&this.contextMenuSelection?this.equals(e,this.contextMenuSelection,this.dataKey):!1},findIndexInSelection:function(e){return this.findIndex(e,this.selection)},findIndex:function(e,n){var r=-1;if(n&&n.length){for(var o=0;o=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(s){throw s},f:o}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var i=!0,a=!1,l;return{s:function(){n=n.call(t)},n:function(){var s=n.next();return i=s.done,s},e:function(s){a=!0,l=s},f:function(){try{!i&&n.return!=null&&n.return()}finally{if(a)throw l}}}}function Pd(t,e){if(t){if(typeof t=="string")return ya(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ya(t,e)}}function ya(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n1},removeRuleButtonLabel:function(){return this.$primevue.config.locale?this.$primevue.config.locale.removeRule:void 0},addRuleButtonLabel:function(){return this.$primevue.config.locale?this.$primevue.config.locale.addRule:void 0},isShowAddConstraint:function(){return this.showAddButton&&this.filters[this.field].operator&&this.fieldConstraints&&this.fieldConstraints.length-1?e:e+1},isMultiSorted:function(){return this.sortMode==="multiple"&&this.columnProp("sortable")&&this.getMultiSortMetaIndex()>-1},isColumnSorted:function(){return this.sortMode==="single"?this.sortField&&(this.sortField===this.columnProp("field")||this.sortField===this.columnProp("sortField")):this.isMultiSorted()},updateStickyPosition:function(){if(this.columnProp("frozen")){var e=this.columnProp("alignFrozen");if(e==="right"){var n=0,r=C.getNextElementSibling(this.$el,'[data-p-frozen-column="true"]');r&&(n=C.getOuterWidth(r)+parseFloat(r.style.right||0)),this.styleObject.right=n+"px"}else{var o=0,i=C.getPreviousElementSibling(this.$el,'[data-p-frozen-column="true"]');i&&(o=C.getOuterWidth(i)+parseFloat(i.style.left||0)),this.styleObject.left=o+"px"}var a=this.$el.parentElement.nextElementSibling;if(a){var l=C.index(this.$el);a.children[l].style.left=this.styleObject.left,a.children[l].style.right=this.styleObject.right}}},onHeaderCheckboxChange:function(e){this.$emit("checkbox-change",e)}},computed:{containerClass:function(){return[this.cx("headerCell"),this.filterColumn?this.columnProp("filterHeaderClass"):this.columnProp("headerClass"),this.columnProp("class")]},containerStyle:function(){var e=this.filterColumn?this.columnProp("filterHeaderStyle"):this.columnProp("headerStyle"),n=this.columnProp("style");return this.columnProp("frozen")?[n,e,this.styleObject]:[n,e]},sortState:function(){var e=!1,n=null;if(this.sortMode==="single")e=this.sortField&&(this.sortField===this.columnProp("field")||this.sortField===this.columnProp("sortField")),n=e?this.sortOrder:0;else if(this.sortMode==="multiple"){var r=this.getMultiSortMetaIndex();r>-1&&(e=!0,n=this.multiSortMeta[r].order)}return{sorted:e,sortOrder:n}},sortableColumnIcon:function(){var e=this.sortState,n=e.sorted,r=e.sortOrder;if(n){if(n&&r>0)return va;if(n&&r<0)return ga}else return ha;return null},ariaSort:function(){if(this.columnProp("sortable")){var e=this.sortState,n=e.sorted,r=e.sortOrder;return n&&r<0?"descending":n&&r>0?"ascending":"none"}else return null}},components:{DTHeaderCheckbox:fl,DTColumnFilter:pl,SortAltIcon:ha,SortAmountUpAltIcon:va,SortAmountDownIcon:ga}};function Qr(t){"@babel/helpers - typeof";return Qr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Qr(t)}function Ys(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function Js(t){for(var e=1;e=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(s){throw s},f:o}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var i=!0,a=!1,l;return{s:function(){n=n.call(t)},n:function(){var s=n.next();return i=s.done,s},e:function(s){a=!0,l=s},f:function(){try{!i&&n.return!=null&&n.return()}finally{if(a)throw l}}}}function xd(t,e){if(t){if(typeof t=="string")return ba(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ba(t,e)}}function ba(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);nt.length)&&(e=t.length);for(var n=0,r=new Array(e);n1},removeRuleButtonLabel:function(){return this.$primevue.config.locale?this.$primevue.config.locale.removeRule:void 0},addRuleButtonLabel:function(){return this.$primevue.config.locale?this.$primevue.config.locale.addRule:void 0},isShowAddConstraint:function(){return this.showAddButton&&this.filters[this.field].operator&&this.fieldConstraints&&this.fieldConstraints.length-1?e:e+1},isMultiSorted:function(){return this.sortMode==="multiple"&&this.columnProp("sortable")&&this.getMultiSortMetaIndex()>-1},isColumnSorted:function(){return this.sortMode==="single"?this.sortField&&(this.sortField===this.columnProp("field")||this.sortField===this.columnProp("sortField")):this.isMultiSorted()},updateStickyPosition:function(){if(this.columnProp("frozen")){var e=this.columnProp("alignFrozen");if(e==="right"){var n=0,r=C.getNextElementSibling(this.$el,'[data-p-frozen-column="true"]');r&&(n=C.getOuterWidth(r)+parseFloat(r.style.right||0)),this.styleObject.right=n+"px"}else{var o=0,i=C.getPreviousElementSibling(this.$el,'[data-p-frozen-column="true"]');i&&(o=C.getOuterWidth(i)+parseFloat(i.style.left||0)),this.styleObject.left=o+"px"}var a=this.$el.parentElement.nextElementSibling;if(a){var l=C.index(this.$el);a.children[l].style.left=this.styleObject.left,a.children[l].style.right=this.styleObject.right}}},onHeaderCheckboxChange:function(e){this.$emit("checkbox-change",e)}},computed:{containerClass:function(){return[this.cx("headerCell"),this.filterColumn?this.columnProp("filterHeaderClass"):this.columnProp("headerClass"),this.columnProp("class")]},containerStyle:function(){var e=this.filterColumn?this.columnProp("filterHeaderStyle"):this.columnProp("headerStyle"),n=this.columnProp("style");return this.columnProp("frozen")?[n,e,this.styleObject]:[n,e]},sortState:function(){var e=!1,n=null;if(this.sortMode==="single")e=this.sortField&&(this.sortField===this.columnProp("field")||this.sortField===this.columnProp("sortField")),n=e?this.sortOrder:0;else if(this.sortMode==="multiple"){var r=this.getMultiSortMetaIndex();r>-1&&(e=!0,n=this.multiSortMeta[r].order)}return{sorted:e,sortOrder:n}},sortableColumnIcon:function(){var e=this.sortState,n=e.sorted,r=e.sortOrder;if(n){if(n&&r>0)return va;if(n&&r<0)return ga}else return ha;return null},ariaSort:function(){if(this.columnProp("sortable")){var e=this.sortState,n=e.sorted,r=e.sortOrder;return n&&r<0?"descending":n&&r>0?"ascending":"none"}else return null}},components:{DTHeaderCheckbox:fl,DTColumnFilter:pl,SortAltIcon:ha,SortAmountUpAltIcon:va,SortAmountDownIcon:ga}};function Qr(t){"@babel/helpers - typeof";return Qr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Qr(t)}function Ys(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function Js(t){for(var e=1;e=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(s){throw s},f:o}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var i=!0,a=!1,l;return{s:function(){n=n.call(t)},n:function(){var s=n.next();return i=s.done,s},e:function(s){a=!0,l=s},f:function(){try{!i&&n.return!=null&&n.return()}finally{if(a)throw l}}}}function Td(t,e){if(t){if(typeof t=="string")return ba(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ba(t,e)}}function ba(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(s){throw s},f:o}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var i=!0,a=!1,l;return{s:function(){n=n.call(t)},n:function(){var s=n.next();return i=s.done,s},e:function(s){a=!0,l=s},f:function(){try{!i&&n.return!=null&&n.return()}finally{if(a)throw l}}}}function Ye(t){return G2(t)||W2(t)||ml(t)||U2()}function U2(){throw new TypeError(`Invalid attempt to spread non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function ml(t,e){if(t){if(typeof t=="string")return wa(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return wa(t,e)}}function W2(t){if(typeof Symbol<"u"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function G2(t){if(Array.isArray(t))return wa(t)}function wa(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);nr?this.multisortField(e,n,r+1):0:B.sort(o,i,this.d_multiSortMeta[r].order,a,this.d_nullSortOrder)},addMultiSortField:function(e){var n=this.d_multiSortMeta.findIndex(function(r){return r.field===e});n>=0?this.removableSort&&this.d_multiSortMeta[n].order*-1===this.defaultSortOrder?this.d_multiSortMeta.splice(n,1):this.d_multiSortMeta[n]={field:e,order:this.d_multiSortMeta[n].order*-1}:this.d_multiSortMeta.push({field:e,order:this.defaultSortOrder}),this.d_multiSortMeta=Ye(this.d_multiSortMeta)},getActiveFilters:function(e){var n=function(a){var l=eu(a,2),u=l[0],s=l[1];if(s.constraints){var c=s.constraints.filter(function(d){return d.value!==null});if(c.length>0)return[u,Fn(Fn({},s),{},{constraints:c})]}else if(s.value!==null)return[u,s]},r=function(a){return a!==void 0},o=Object.entries(e).map(n).filter(r);return Object.fromEntries(o)},filter:function(e){var n=this;if(e){this.clearEditingMetaData();var r=this.getActiveFilters(this.filters),o;r.global&&(o=this.globalFilterFields||this.columns.map(function(T){return n.columnProp(T,"filterField")||n.columnProp(T,"field")}));for(var i=[],a=0;a=a.length?a.length-1:r+1;this.onRowClick({originalEvent:e,data:a[l],index:l})}e.preventDefault()},onArrowUpKey:function(e,n,r,o){var i=this.findPrevSelectableRow(n);if(i&&this.focusRowChange(n,i),e.shiftKey){var a=this.dataToRender(o.rows),l=r-1<=0?0:r-1;this.onRowClick({originalEvent:e,data:a[l],index:l})}e.preventDefault()},onHomeKey:function(e,n,r,o){var i=this.findFirstSelectableRow();if(i&&this.focusRowChange(n,i),e.ctrlKey&&e.shiftKey){var a=this.dataToRender(o.rows);this.$emit("update:selection",a.slice(0,r+1))}e.preventDefault()},onEndKey:function(e,n,r,o){var i=this.findLastSelectableRow();if(i&&this.focusRowChange(n,i),e.ctrlKey&&e.shiftKey){var a=this.dataToRender(o.rows);this.$emit("update:selection",a.slice(r,a.length))}e.preventDefault()},onEnterKey:function(e,n,r){this.onRowClick({originalEvent:e,data:n,index:r}),e.preventDefault()},onSpaceKey:function(e,n,r,o){if(this.onEnterKey(e,n,r),e.shiftKey&&this.selection!==null){var i=this.dataToRender(o.rows),a;if(this.selection.length>0){var l,u;l=B.findIndexInList(this.selection[0],i),u=B.findIndexInList(this.selection[this.selection.length-1],i),a=r<=l?u:l}else a=B.findIndexInList(this.selection,i);var s=a!==r?i.slice(Math.min(a,r),Math.max(a,r)+1):n;this.$emit("update:selection",s)}},onTabKey:function(e,n){var r=this.$refs.bodyRef&&this.$refs.bodyRef.$el,o=C.find(r,'tr[data-p-selectable-row="true"]');if(e.code==="Tab"&&o&&o.length>0){var i=C.findSingle(r,'tr[data-p-highlight="true"]'),a=C.findSingle(r,'tr[data-p-selectable-row="true"][tabindex="0"]');i?(i.tabIndex="0",a&&a!==i&&(a.tabIndex="-1")):(o[0].tabIndex="0",a!==o[0]&&(o[n].tabIndex="-1"))}},findNextSelectableRow:function(e){var n=e.nextElementSibling;return n?C.getAttribute(n,"data-p-selectable-row")===!0?n:this.findNextSelectableRow(n):null},findPrevSelectableRow:function(e){var n=e.previousElementSibling;return n?C.getAttribute(n,"data-p-selectable-row")===!0?n:this.findPrevSelectableRow(n):null},findFirstSelectableRow:function(){var e=C.findSingle(this.$refs.table,'tr[data-p-selectable-row="true"]');return e},findLastSelectableRow:function(){var e=C.find(this.$refs.table,'tr[data-p-selectable-row="true"]');return e?e[e.length-1]:null},focusRowChange:function(e,n){e.tabIndex="-1",n.tabIndex="0",C.focus(n)},toggleRowWithRadio:function(e){var n=e.data;this.isSelected(n)?(this.$emit("update:selection",null),this.$emit("row-unselect",{originalEvent:e.originalEvent,data:n,index:e.index,type:"radiobutton"})):(this.$emit("update:selection",n),this.$emit("row-select",{originalEvent:e.originalEvent,data:n,index:e.index,type:"radiobutton"}))},toggleRowWithCheckbox:function(e){var n=e.data;if(this.isSelected(n)){var r=this.findIndexInSelection(n),o=this.selection.filter(function(a,l){return l!=r});this.$emit("update:selection",o),this.$emit("row-unselect",{originalEvent:e.originalEvent,data:n,index:e.index,type:"checkbox"})}else{var i=this.selection?Ye(this.selection):[];i=[].concat(Ye(i),[n]),this.$emit("update:selection",i),this.$emit("row-select",{originalEvent:e.originalEvent,data:n,index:e.index,type:"checkbox"})}},toggleRowsWithCheckbox:function(e){if(this.selectAll!==null)this.$emit("select-all-change",e);else{var n=e.originalEvent,r=e.checked,o=[];r?(o=this.frozenValue?[].concat(Ye(this.frozenValue),Ye(this.processedData)):this.processedData,this.$emit("row-select-all",{originalEvent:n,data:o})):this.$emit("row-unselect-all",{originalEvent:n}),this.$emit("update:selection",o)}},isSingleSelectionMode:function(){return this.selectionMode==="single"},isMultipleSelectionMode:function(){return this.selectionMode==="multiple"},isSelected:function(e){return e&&this.selection?this.dataKey?this.d_selectionKeys?this.d_selectionKeys[B.resolveFieldData(e,this.dataKey)]!==void 0:!1:this.selection instanceof Array?this.findIndexInSelection(e)>-1:this.equals(e,this.selection):!1},findIndexInSelection:function(e){return this.findIndex(e,this.selection)},findIndex:function(e,n){var r=-1;if(n&&n.length){for(var o=0;othis.anchorRowIndex?(n=this.anchorRowIndex,r=this.rangeRowIndex):this.rangeRowIndext.length)&&(e=t.length);for(var n=0,r=new Array(e);nr?this.multisortField(e,n,r+1):0:H.sort(o,i,this.d_multiSortMeta[r].order,a,this.d_nullSortOrder)},addMultiSortField:function(e){var n=this.d_multiSortMeta.findIndex(function(r){return r.field===e});n>=0?this.removableSort&&this.d_multiSortMeta[n].order*-1===this.defaultSortOrder?this.d_multiSortMeta.splice(n,1):this.d_multiSortMeta[n]={field:e,order:this.d_multiSortMeta[n].order*-1}:this.d_multiSortMeta.push({field:e,order:this.defaultSortOrder}),this.d_multiSortMeta=Ze(this.d_multiSortMeta)},getActiveFilters:function(e){var n=function(a){var l=eu(a,2),u=l[0],s=l[1];if(s.constraints){var c=s.constraints.filter(function(d){return d.value!==null});if(c.length>0)return[u,Fn(Fn({},s),{},{constraints:c})]}else if(s.value!==null)return[u,s]},r=function(a){return a!==void 0},o=Object.entries(e).map(n).filter(r);return Object.fromEntries(o)},filter:function(e){var n=this;if(e){this.clearEditingMetaData();var r=this.getActiveFilters(this.filters),o;r.global&&(o=this.globalFilterFields||this.columns.map(function(x){return n.columnProp(x,"filterField")||n.columnProp(x,"field")}));for(var i=[],a=0;a=a.length?a.length-1:r+1;this.onRowClick({originalEvent:e,data:a[l],index:l})}e.preventDefault()},onArrowUpKey:function(e,n,r,o){var i=this.findPrevSelectableRow(n);if(i&&this.focusRowChange(n,i),e.shiftKey){var a=this.dataToRender(o.rows),l=r-1<=0?0:r-1;this.onRowClick({originalEvent:e,data:a[l],index:l})}e.preventDefault()},onHomeKey:function(e,n,r,o){var i=this.findFirstSelectableRow();if(i&&this.focusRowChange(n,i),e.ctrlKey&&e.shiftKey){var a=this.dataToRender(o.rows);this.$emit("update:selection",a.slice(0,r+1))}e.preventDefault()},onEndKey:function(e,n,r,o){var i=this.findLastSelectableRow();if(i&&this.focusRowChange(n,i),e.ctrlKey&&e.shiftKey){var a=this.dataToRender(o.rows);this.$emit("update:selection",a.slice(r,a.length))}e.preventDefault()},onEnterKey:function(e,n,r){this.onRowClick({originalEvent:e,data:n,index:r}),e.preventDefault()},onSpaceKey:function(e,n,r,o){if(this.onEnterKey(e,n,r),e.shiftKey&&this.selection!==null){var i=this.dataToRender(o.rows),a;if(this.selection.length>0){var l,u;l=H.findIndexInList(this.selection[0],i),u=H.findIndexInList(this.selection[this.selection.length-1],i),a=r<=l?u:l}else a=H.findIndexInList(this.selection,i);var s=a!==r?i.slice(Math.min(a,r),Math.max(a,r)+1):n;this.$emit("update:selection",s)}},onTabKey:function(e,n){var r=this.$refs.bodyRef&&this.$refs.bodyRef.$el,o=C.find(r,'tr[data-p-selectable-row="true"]');if(e.code==="Tab"&&o&&o.length>0){var i=C.findSingle(r,'tr[data-p-highlight="true"]'),a=C.findSingle(r,'tr[data-p-selectable-row="true"][tabindex="0"]');i?(i.tabIndex="0",a&&a!==i&&(a.tabIndex="-1")):(o[0].tabIndex="0",a!==o[0]&&(o[n].tabIndex="-1"))}},findNextSelectableRow:function(e){var n=e.nextElementSibling;return n?C.getAttribute(n,"data-p-selectable-row")===!0?n:this.findNextSelectableRow(n):null},findPrevSelectableRow:function(e){var n=e.previousElementSibling;return n?C.getAttribute(n,"data-p-selectable-row")===!0?n:this.findPrevSelectableRow(n):null},findFirstSelectableRow:function(){var e=C.findSingle(this.$refs.table,'tr[data-p-selectable-row="true"]');return e},findLastSelectableRow:function(){var e=C.find(this.$refs.table,'tr[data-p-selectable-row="true"]');return e?e[e.length-1]:null},focusRowChange:function(e,n){e.tabIndex="-1",n.tabIndex="0",C.focus(n)},toggleRowWithRadio:function(e){var n=e.data;this.isSelected(n)?(this.$emit("update:selection",null),this.$emit("row-unselect",{originalEvent:e.originalEvent,data:n,index:e.index,type:"radiobutton"})):(this.$emit("update:selection",n),this.$emit("row-select",{originalEvent:e.originalEvent,data:n,index:e.index,type:"radiobutton"}))},toggleRowWithCheckbox:function(e){var n=e.data;if(this.isSelected(n)){var r=this.findIndexInSelection(n),o=this.selection.filter(function(a,l){return l!=r});this.$emit("update:selection",o),this.$emit("row-unselect",{originalEvent:e.originalEvent,data:n,index:e.index,type:"checkbox"})}else{var i=this.selection?Ze(this.selection):[];i=[].concat(Ze(i),[n]),this.$emit("update:selection",i),this.$emit("row-select",{originalEvent:e.originalEvent,data:n,index:e.index,type:"checkbox"})}},toggleRowsWithCheckbox:function(e){if(this.selectAll!==null)this.$emit("select-all-change",e);else{var n=e.originalEvent,r=e.checked,o=[];r?(o=this.frozenValue?[].concat(Ze(this.frozenValue),Ze(this.processedData)):this.processedData,this.$emit("row-select-all",{originalEvent:n,data:o})):this.$emit("row-unselect-all",{originalEvent:n}),this.$emit("update:selection",o)}},isSingleSelectionMode:function(){return this.selectionMode==="single"},isMultipleSelectionMode:function(){return this.selectionMode==="multiple"},isSelected:function(e){return e&&this.selection?this.dataKey?this.d_selectionKeys?this.d_selectionKeys[H.resolveFieldData(e,this.dataKey)]!==void 0:!1:this.selection instanceof Array?this.findIndexInSelection(e)>-1:this.equals(e,this.selection):!1},findIndexInSelection:function(e){return this.findIndex(e,this.selection)},findIndex:function(e,n){var r=-1;if(n&&n.length){for(var o=0;othis.anchorRowIndex?(n=this.anchorRowIndex,r=this.rangeRowIndex):this.rangeRowIndexparseInt(o,10)){if(this.columnResizeMode==="fit"){var i=this.resizeColumnElement.nextElementSibling,a=i.offsetWidth-e;r>15&&a>15&&this.resizeTableCells(r,a)}else if(this.columnResizeMode==="expand"){var l=this.$refs.table.offsetWidth+e+"px",u=function(m){m&&(m.style.width=m.style.minWidth=l)};if(this.resizeTableCells(r),u(this.$refs.table),!this.virtualScrollerDisabled){var s=this.$refs.bodyRef&&this.$refs.bodyRef.$el,c=this.$refs.frozenBodyRef&&this.$refs.frozenBodyRef.$el;u(s),u(c)}}this.$emit("column-resize-end",{element:this.resizeColumnElement,delta:e})}this.$refs.resizeHelper.style.display="none",this.resizeColumn=null,this.$el.setAttribute("data-p-unselectable-text","true"),!this.isUnstyled&&C.removeClass(this.$el,"p-unselectable-text"),this.unbindColumnResizeEvents(),this.isStateful()&&this.saveState()},resizeTableCells:function(e,n){var r=C.index(this.resizeColumnElement),o=[],i=C.find(this.$refs.table,'thead[data-pc-section="thead"] > tr > th');i.forEach(function(u){return o.push(C.getOuterWidth(u))}),this.destroyStyleElement(),this.createStyleElement();var a="",l='[data-pc-name="datatable"]['.concat(this.attributeSelector,'] > [data-pc-section="wrapper"] ').concat(this.virtualScrollerDisabled?"":'> [data-pc-section="virtualscroller"]',' > table[data-pc-section="table"]');o.forEach(function(u,s){var c=s===r?e:n&&s===r+1?n:u,d="width: ".concat(c,"px !important; max-width: ").concat(c,"px !important");a+=` `.concat(l,' > thead[data-pc-section="thead"] > tr > th:nth-child(').concat(s+1,`), `).concat(l,' > tbody[data-pc-section="tbody"] > tr > td:nth-child(').concat(s+1,`), `).concat(l,' > tfoot[data-pc-section="tfoot"] > tr > td:nth-child(').concat(s+1,`) { `).concat(d,` } - `)}),this.styleElement.innerHTML=a},bindColumnResizeEvents:function(){var e=this;this.documentColumnResizeListener||(this.documentColumnResizeListener=document.addEventListener("mousemove",function(){e.columnResizing&&e.onColumnResize(event)})),this.documentColumnResizeEndListener||(this.documentColumnResizeEndListener=document.addEventListener("mouseup",function(){e.columnResizing&&(e.columnResizing=!1,e.onColumnResizeEnd())}))},unbindColumnResizeEvents:function(){this.documentColumnResizeListener&&(document.removeEventListener("document",this.documentColumnResizeListener),this.documentColumnResizeListener=null),this.documentColumnResizeEndListener&&(document.removeEventListener("document",this.documentColumnResizeEndListener),this.documentColumnResizeEndListener=null)},onColumnHeaderMouseDown:function(e){var n=e.originalEvent,r=e.column;this.reorderableColumns&&this.columnProp(r,"reorderableColumn")!==!1&&(n.target.nodeName==="INPUT"||n.target.nodeName==="TEXTAREA"||C.getAttribute(n.target,'[data-pc-section="columnresizer"]')?n.currentTarget.draggable=!1:n.currentTarget.draggable=!0)},onColumnHeaderDragStart:function(e){if(this.columnResizing){e.preventDefault();return}this.colReorderIconWidth=C.getHiddenElementOuterWidth(this.$refs.reorderIndicatorUp),this.colReorderIconHeight=C.getHiddenElementOuterHeight(this.$refs.reorderIndicatorUp),this.draggedColumn=this.findParentHeader(e.target),e.dataTransfer.setData("text","b")},onColumnHeaderDragOver:function(e){var n=this.findParentHeader(e.target);if(this.reorderableColumns&&this.draggedColumn&&n){e.preventDefault();var r=C.getOffset(this.$el),o=C.getOffset(n);if(this.draggedColumn!==n){var i=o.left-r.left,a=o.left+n.offsetWidth/2;this.$refs.reorderIndicatorUp.style.top=o.top-r.top-(this.colReorderIconHeight-1)+"px",this.$refs.reorderIndicatorDown.style.top=o.top-r.top+n.offsetHeight+"px",e.pageX>a?(this.$refs.reorderIndicatorUp.style.left=i+n.offsetWidth-Math.ceil(this.colReorderIconWidth/2)+"px",this.$refs.reorderIndicatorDown.style.left=i+n.offsetWidth-Math.ceil(this.colReorderIconWidth/2)+"px",this.dropPosition=1):(this.$refs.reorderIndicatorUp.style.left=i-Math.ceil(this.colReorderIconWidth/2)+"px",this.$refs.reorderIndicatorDown.style.left=i-Math.ceil(this.colReorderIconWidth/2)+"px",this.dropPosition=-1),this.$refs.reorderIndicatorUp.style.display="block",this.$refs.reorderIndicatorDown.style.display="block"}}},onColumnHeaderDragLeave:function(e){this.reorderableColumns&&this.draggedColumn&&(e.preventDefault(),this.$refs.reorderIndicatorUp.style.display="none",this.$refs.reorderIndicatorDown.style.display="none")},onColumnHeaderDrop:function(e){if(e.preventDefault(),this.draggedColumn){var n=C.index(this.draggedColumn),r=C.index(this.findParentHeader(e.target)),o=n!==r;o&&(r-n===1&&this.dropPosition===-1||r-n===-1&&this.dropPosition===1)&&(o=!1),o&&(B.reorderArray(this.columns,n,r),this.updateReorderableColumns(),this.$emit("column-reorder",{originalEvent:e,dragIndex:n,dropIndex:r})),this.$refs.reorderIndicatorUp.style.display="none",this.$refs.reorderIndicatorDown.style.display="none",this.draggedColumn.draggable=!1,this.draggedColumn=null,this.dropPosition=null}},findParentHeader:function(e){if(e.nodeName==="TH")return e;for(var n=e.parentElement;n.nodeName!=="TH"&&(n=n.parentElement,!!n););return n},findColumnByKey:function(e,n){if(e&&e.length)for(var r=0;rthis.droppedRowIndex?this.droppedRowIndex:this.droppedRowIndex===0?0:this.droppedRowIndex-1,r=Ye(this.processedData);B.reorderArray(r,this.draggedRowIndex+this.d_first,n+this.d_first),this.$emit("row-reorder",{originalEvent:e,dragIndex:this.draggedRowIndex,dropIndex:n,value:r})}this.onRowDragLeave(e),this.onRowDragEnd(e),e.preventDefault()},toggleRow:function(e){var n=e.data,r,o,i=this.expandedRows?Ye(this.expandedRows):[];this.dataKey?r=this.d_expandedRowKeys?this.d_expandedRowKeys[B.resolveFieldData(n,this.dataKey)]!==void 0:!1:(o=this.findIndex(n,this.expandedRows),r=o>-1),r?(o==null&&(o=this.findIndex(n,this.expandedRows)),i.splice(o,1),this.$emit("update:expandedRows",i),this.$emit("row-collapse",e)):(i.push(n),this.$emit("update:expandedRows",i),this.$emit("row-expand",e))},toggleRowGroup:function(e){var n=e.originalEvent,r=e.data,o=B.resolveFieldData(r,this.groupRowsBy),i=this.expandedRowGroups?Ye(this.expandedRowGroups):[];this.isRowGroupExpanded(r)?(i=i.filter(function(a){return a!==o}),this.$emit("update:expandedRowGroups",i),this.$emit("rowgroup-collapse",{originalEvent:n,data:o})):(i.push(o),this.$emit("update:expandedRowGroups",i),this.$emit("rowgroup-expand",{originalEvent:n,data:o}))},isRowGroupExpanded:function(e){if(this.expandableRowGroups&&this.expandedRowGroups){var n=B.resolveFieldData(e,this.groupRowsBy);return this.expandedRowGroups.indexOf(n)>-1}return!1},isStateful:function(){return this.stateKey!=null},getStorage:function(){switch(this.stateStorage){case"local":return window.localStorage;case"session":return window.sessionStorage;default:throw new Error(this.stateStorage+' is not a valid value for the state storage, supported values are "local" and "session".')}},saveState:function(){var e=this.getStorage(),n={};this.paginator&&(n.first=this.d_first,n.rows=this.d_rows),this.d_sortField&&(n.sortField=this.d_sortField,n.sortOrder=this.d_sortOrder),this.d_multiSortMeta&&(n.multiSortMeta=this.d_multiSortMeta),this.hasFilters&&(n.filters=this.filters),this.resizableColumns&&this.saveColumnWidths(n),this.reorderableColumns&&(n.columnOrder=this.d_columnOrder),this.expandedRows&&(n.expandedRows=this.expandedRows,n.expandedRowKeys=this.d_expandedRowKeys),this.expandedRowGroups&&(n.expandedRowGroups=this.expandedRowGroups),this.selection&&(n.selection=this.selection,n.selectionKeys=this.d_selectionKeys),Object.keys(n).length&&e.setItem(this.stateKey,JSON.stringify(n)),this.$emit("state-save",n)},restoreState:function(){var e=this.getStorage(),n=e.getItem(this.stateKey),r=/\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z/,o=function(l,u){return typeof u=="string"&&r.test(u)?new Date(u):u};if(n){var i=JSON.parse(n,o);this.paginator&&(this.d_first=i.first,this.d_rows=i.rows),i.sortField&&(this.d_sortField=i.sortField,this.d_sortOrder=i.sortOrder),i.multiSortMeta&&(this.d_multiSortMeta=i.multiSortMeta),i.filters&&this.$emit("update:filters",i.filters),this.resizableColumns&&(this.columnWidthsState=i.columnWidths,this.tableWidthState=i.tableWidth),this.reorderableColumns&&(this.d_columnOrder=i.columnOrder),i.expandedRows&&(this.d_expandedRowKeys=i.expandedRowKeys,this.$emit("update:expandedRows",i.expandedRows)),i.expandedRowGroups&&this.$emit("update:expandedRowGroups",i.expandedRowGroups),i.selection&&(this.d_selectionKeys=i.d_selectionKeys,this.$emit("update:selection",i.selection)),this.$emit("state-restore",i)}},saveColumnWidths:function(e){var n=[],r=C.find(this.$el,'thead[data-pc-section="thead"] > tr > th');r.forEach(function(o){return n.push(C.getOuterWidth(o))}),e.columnWidths=n.join(","),this.columnResizeMode==="expand"&&(e.tableWidth=C.getOuterWidth(this.$refs.table)+"px")},restoreColumnWidths:function(){if(this.columnWidthsState){var e=this.columnWidthsState.split(",");if(this.columnResizeMode==="expand"&&this.tableWidthState&&(this.$refs.table.style.width=this.tableWidthState,this.$refs.table.style.minWidth=this.tableWidthState,this.$el.style.width=this.tableWidthState),B.isNotEmpty(e)){this.createStyleElement();var n="",r='[data-pc-name="datatable"]['.concat(this.attributeSelector,'] > [data-pc-section="wrapper"] ').concat(this.virtualScrollerDisabled?"":'> [data-pc-section="virtualscroller"]',' > table[data-pc-section="table"]');e.forEach(function(o,i){var a="width: ".concat(o,"px !important; max-width: ").concat(o,"px !important");n+=` + `)}),this.styleElement.innerHTML=a},bindColumnResizeEvents:function(){var e=this;this.documentColumnResizeListener||(this.documentColumnResizeListener=document.addEventListener("mousemove",function(){e.columnResizing&&e.onColumnResize(event)})),this.documentColumnResizeEndListener||(this.documentColumnResizeEndListener=document.addEventListener("mouseup",function(){e.columnResizing&&(e.columnResizing=!1,e.onColumnResizeEnd())}))},unbindColumnResizeEvents:function(){this.documentColumnResizeListener&&(document.removeEventListener("document",this.documentColumnResizeListener),this.documentColumnResizeListener=null),this.documentColumnResizeEndListener&&(document.removeEventListener("document",this.documentColumnResizeEndListener),this.documentColumnResizeEndListener=null)},onColumnHeaderMouseDown:function(e){var n=e.originalEvent,r=e.column;this.reorderableColumns&&this.columnProp(r,"reorderableColumn")!==!1&&(n.target.nodeName==="INPUT"||n.target.nodeName==="TEXTAREA"||C.getAttribute(n.target,'[data-pc-section="columnresizer"]')?n.currentTarget.draggable=!1:n.currentTarget.draggable=!0)},onColumnHeaderDragStart:function(e){if(this.columnResizing){e.preventDefault();return}this.colReorderIconWidth=C.getHiddenElementOuterWidth(this.$refs.reorderIndicatorUp),this.colReorderIconHeight=C.getHiddenElementOuterHeight(this.$refs.reorderIndicatorUp),this.draggedColumn=this.findParentHeader(e.target),e.dataTransfer.setData("text","b")},onColumnHeaderDragOver:function(e){var n=this.findParentHeader(e.target);if(this.reorderableColumns&&this.draggedColumn&&n){e.preventDefault();var r=C.getOffset(this.$el),o=C.getOffset(n);if(this.draggedColumn!==n){var i=o.left-r.left,a=o.left+n.offsetWidth/2;this.$refs.reorderIndicatorUp.style.top=o.top-r.top-(this.colReorderIconHeight-1)+"px",this.$refs.reorderIndicatorDown.style.top=o.top-r.top+n.offsetHeight+"px",e.pageX>a?(this.$refs.reorderIndicatorUp.style.left=i+n.offsetWidth-Math.ceil(this.colReorderIconWidth/2)+"px",this.$refs.reorderIndicatorDown.style.left=i+n.offsetWidth-Math.ceil(this.colReorderIconWidth/2)+"px",this.dropPosition=1):(this.$refs.reorderIndicatorUp.style.left=i-Math.ceil(this.colReorderIconWidth/2)+"px",this.$refs.reorderIndicatorDown.style.left=i-Math.ceil(this.colReorderIconWidth/2)+"px",this.dropPosition=-1),this.$refs.reorderIndicatorUp.style.display="block",this.$refs.reorderIndicatorDown.style.display="block"}}},onColumnHeaderDragLeave:function(e){this.reorderableColumns&&this.draggedColumn&&(e.preventDefault(),this.$refs.reorderIndicatorUp.style.display="none",this.$refs.reorderIndicatorDown.style.display="none")},onColumnHeaderDrop:function(e){if(e.preventDefault(),this.draggedColumn){var n=C.index(this.draggedColumn),r=C.index(this.findParentHeader(e.target)),o=n!==r;o&&(r-n===1&&this.dropPosition===-1||r-n===-1&&this.dropPosition===1)&&(o=!1),o&&(H.reorderArray(this.columns,n,r),this.updateReorderableColumns(),this.$emit("column-reorder",{originalEvent:e,dragIndex:n,dropIndex:r})),this.$refs.reorderIndicatorUp.style.display="none",this.$refs.reorderIndicatorDown.style.display="none",this.draggedColumn.draggable=!1,this.draggedColumn=null,this.dropPosition=null}},findParentHeader:function(e){if(e.nodeName==="TH")return e;for(var n=e.parentElement;n.nodeName!=="TH"&&(n=n.parentElement,!!n););return n},findColumnByKey:function(e,n){if(e&&e.length)for(var r=0;rthis.droppedRowIndex?this.droppedRowIndex:this.droppedRowIndex===0?0:this.droppedRowIndex-1,r=Ze(this.processedData);H.reorderArray(r,this.draggedRowIndex+this.d_first,n+this.d_first),this.$emit("row-reorder",{originalEvent:e,dragIndex:this.draggedRowIndex,dropIndex:n,value:r})}this.onRowDragLeave(e),this.onRowDragEnd(e),e.preventDefault()},toggleRow:function(e){var n=e.data,r,o,i=this.expandedRows?Ze(this.expandedRows):[];this.dataKey?r=this.d_expandedRowKeys?this.d_expandedRowKeys[H.resolveFieldData(n,this.dataKey)]!==void 0:!1:(o=this.findIndex(n,this.expandedRows),r=o>-1),r?(o==null&&(o=this.findIndex(n,this.expandedRows)),i.splice(o,1),this.$emit("update:expandedRows",i),this.$emit("row-collapse",e)):(i.push(n),this.$emit("update:expandedRows",i),this.$emit("row-expand",e))},toggleRowGroup:function(e){var n=e.originalEvent,r=e.data,o=H.resolveFieldData(r,this.groupRowsBy),i=this.expandedRowGroups?Ze(this.expandedRowGroups):[];this.isRowGroupExpanded(r)?(i=i.filter(function(a){return a!==o}),this.$emit("update:expandedRowGroups",i),this.$emit("rowgroup-collapse",{originalEvent:n,data:o})):(i.push(o),this.$emit("update:expandedRowGroups",i),this.$emit("rowgroup-expand",{originalEvent:n,data:o}))},isRowGroupExpanded:function(e){if(this.expandableRowGroups&&this.expandedRowGroups){var n=H.resolveFieldData(e,this.groupRowsBy);return this.expandedRowGroups.indexOf(n)>-1}return!1},isStateful:function(){return this.stateKey!=null},getStorage:function(){switch(this.stateStorage){case"local":return window.localStorage;case"session":return window.sessionStorage;default:throw new Error(this.stateStorage+' is not a valid value for the state storage, supported values are "local" and "session".')}},saveState:function(){var e=this.getStorage(),n={};this.paginator&&(n.first=this.d_first,n.rows=this.d_rows),this.d_sortField&&(n.sortField=this.d_sortField,n.sortOrder=this.d_sortOrder),this.d_multiSortMeta&&(n.multiSortMeta=this.d_multiSortMeta),this.hasFilters&&(n.filters=this.filters),this.resizableColumns&&this.saveColumnWidths(n),this.reorderableColumns&&(n.columnOrder=this.d_columnOrder),this.expandedRows&&(n.expandedRows=this.expandedRows,n.expandedRowKeys=this.d_expandedRowKeys),this.expandedRowGroups&&(n.expandedRowGroups=this.expandedRowGroups),this.selection&&(n.selection=this.selection,n.selectionKeys=this.d_selectionKeys),Object.keys(n).length&&e.setItem(this.stateKey,JSON.stringify(n)),this.$emit("state-save",n)},restoreState:function(){var e=this.getStorage(),n=e.getItem(this.stateKey),r=/\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z/,o=function(l,u){return typeof u=="string"&&r.test(u)?new Date(u):u};if(n){var i=JSON.parse(n,o);this.paginator&&(this.d_first=i.first,this.d_rows=i.rows),i.sortField&&(this.d_sortField=i.sortField,this.d_sortOrder=i.sortOrder),i.multiSortMeta&&(this.d_multiSortMeta=i.multiSortMeta),i.filters&&this.$emit("update:filters",i.filters),this.resizableColumns&&(this.columnWidthsState=i.columnWidths,this.tableWidthState=i.tableWidth),this.reorderableColumns&&(this.d_columnOrder=i.columnOrder),i.expandedRows&&(this.d_expandedRowKeys=i.expandedRowKeys,this.$emit("update:expandedRows",i.expandedRows)),i.expandedRowGroups&&this.$emit("update:expandedRowGroups",i.expandedRowGroups),i.selection&&(this.d_selectionKeys=i.d_selectionKeys,this.$emit("update:selection",i.selection)),this.$emit("state-restore",i)}},saveColumnWidths:function(e){var n=[],r=C.find(this.$el,'thead[data-pc-section="thead"] > tr > th');r.forEach(function(o){return n.push(C.getOuterWidth(o))}),e.columnWidths=n.join(","),this.columnResizeMode==="expand"&&(e.tableWidth=C.getOuterWidth(this.$refs.table)+"px")},restoreColumnWidths:function(){if(this.columnWidthsState){var e=this.columnWidthsState.split(",");if(this.columnResizeMode==="expand"&&this.tableWidthState&&(this.$refs.table.style.width=this.tableWidthState,this.$refs.table.style.minWidth=this.tableWidthState,this.$el.style.width=this.tableWidthState),H.isNotEmpty(e)){this.createStyleElement();var n="",r='[data-pc-name="datatable"]['.concat(this.attributeSelector,'] > [data-pc-section="wrapper"] ').concat(this.virtualScrollerDisabled?"":'> [data-pc-section="virtualscroller"]',' > table[data-pc-section="table"]');e.forEach(function(o,i){var a="width: ".concat(o,"px !important; max-width: ").concat(o,"px !important");n+=` `.concat(r,' > thead[data-pc-section="thead"] > tr > th:nth-child(').concat(i+1,`), `).concat(r,' > tbody[data-pc-section="tbody"] > tr > td:nth-child(').concat(i+1,`), `).concat(r,' > tfoot[data-pc-section="tfoot"] > tr > td:nth-child(').concat(i+1,`) { `).concat(a,` } - `)}),this.styleElement.innerHTML=n}}},onCellEditInit:function(e){this.$emit("cell-edit-init",e)},onCellEditComplete:function(e){this.$emit("cell-edit-complete",e)},onCellEditCancel:function(e){this.$emit("cell-edit-cancel",e)},onRowEditInit:function(e){var n=this.editingRows?Ye(this.editingRows):[];n.push(e.data),this.$emit("update:editingRows",n),this.$emit("row-edit-init",e)},onRowEditSave:function(e){var n=Ye(this.editingRows);n.splice(this.findIndex(e.data,n),1),this.$emit("update:editingRows",n),this.$emit("row-edit-save",e)},onRowEditCancel:function(e){var n=Ye(this.editingRows);n.splice(this.findIndex(e.data,n),1),this.$emit("update:editingRows",n),this.$emit("row-edit-cancel",e)},onEditingMetaChange:function(e){var n=e.data,r=e.field,o=e.index,i=e.editing,a=Fn({},this.d_editingMeta),l=a[o];if(i)!l&&(l=a[o]={data:Fn({},n),fields:[]}),l.fields.push(r);else if(l){var u=l.fields.filter(function(s){return s!==r});u.length?l.fields=u:delete a[o]}this.d_editingMeta=a},clearEditingMetaData:function(){this.editMode&&(this.d_editingMeta={})},createLazyLoadEvent:function(e){return{originalEvent:e,first:this.d_first,rows:this.d_rows,sortField:this.d_sortField,sortOrder:this.d_sortOrder,multiSortMeta:this.d_multiSortMeta,filters:this.d_filters}},hasGlobalFilter:function(){return this.filters&&Object.prototype.hasOwnProperty.call(this.filters,"global")},getChildren:function(){return this.$slots.default?this.$slots.default():null},onFilterChange:function(e){this.d_filters=e},onFilterApply:function(){this.d_first=0,this.$emit("update:first",this.d_first),this.$emit("update:filters",this.d_filters),this.lazy&&this.$emit("filter",this.createLazyLoadEvent())},cloneFilters:function(){var e={};return this.filters&&Object.entries(this.filters).forEach(function(n){var r=eu(n,2),o=r[0],i=r[1];e[o]=i.operator?{operator:i.operator,constraints:i.constraints.map(function(a){return Fn({},a)})}:Fn({},i)}),e},updateReorderableColumns:function(){var e=this,n=[];this.columns.forEach(function(r){return n.push(e.columnProp(r,"columnKey")||e.columnProp(r,"field"))}),this.d_columnOrder=n},createStyleElement:function(){var e;this.styleElement=document.createElement("style"),this.styleElement.type="text/css",C.setAttribute(this.styleElement,"nonce",(e=this.$primevue)===null||e===void 0||(e=e.config)===null||e===void 0||(e=e.csp)===null||e===void 0?void 0:e.nonce),document.head.appendChild(this.styleElement)},createResponsiveStyle:function(){if(!this.responsiveStyleElement){var e;this.responsiveStyleElement=document.createElement("style"),this.responsiveStyleElement.type="text/css",C.setAttribute(this.responsiveStyleElement,"nonce",(e=this.$primevue)===null||e===void 0||(e=e.config)===null||e===void 0||(e=e.csp)===null||e===void 0?void 0:e.nonce),document.head.appendChild(this.responsiveStyleElement);var n=".p-datatable-wrapper ".concat(this.virtualScrollerDisabled?"":"> .p-virtualscroller"," > .p-datatable-table"),r=".p-datatable[".concat(this.attributeSelector,"] > ").concat(n),o=".p-datatable[".concat(this.attributeSelector,"].p-datatable-gridlines > ").concat(n),i=` + `)}),this.styleElement.innerHTML=n}}},onCellEditInit:function(e){this.$emit("cell-edit-init",e)},onCellEditComplete:function(e){this.$emit("cell-edit-complete",e)},onCellEditCancel:function(e){this.$emit("cell-edit-cancel",e)},onRowEditInit:function(e){var n=this.editingRows?Ze(this.editingRows):[];n.push(e.data),this.$emit("update:editingRows",n),this.$emit("row-edit-init",e)},onRowEditSave:function(e){var n=Ze(this.editingRows);n.splice(this.findIndex(e.data,n),1),this.$emit("update:editingRows",n),this.$emit("row-edit-save",e)},onRowEditCancel:function(e){var n=Ze(this.editingRows);n.splice(this.findIndex(e.data,n),1),this.$emit("update:editingRows",n),this.$emit("row-edit-cancel",e)},onEditingMetaChange:function(e){var n=e.data,r=e.field,o=e.index,i=e.editing,a=Fn({},this.d_editingMeta),l=a[o];if(i)!l&&(l=a[o]={data:Fn({},n),fields:[]}),l.fields.push(r);else if(l){var u=l.fields.filter(function(s){return s!==r});u.length?l.fields=u:delete a[o]}this.d_editingMeta=a},clearEditingMetaData:function(){this.editMode&&(this.d_editingMeta={})},createLazyLoadEvent:function(e){return{originalEvent:e,first:this.d_first,rows:this.d_rows,sortField:this.d_sortField,sortOrder:this.d_sortOrder,multiSortMeta:this.d_multiSortMeta,filters:this.d_filters}},hasGlobalFilter:function(){return this.filters&&Object.prototype.hasOwnProperty.call(this.filters,"global")},getChildren:function(){return this.$slots.default?this.$slots.default():null},onFilterChange:function(e){this.d_filters=e},onFilterApply:function(){this.d_first=0,this.$emit("update:first",this.d_first),this.$emit("update:filters",this.d_filters),this.lazy&&this.$emit("filter",this.createLazyLoadEvent())},cloneFilters:function(){var e={};return this.filters&&Object.entries(this.filters).forEach(function(n){var r=eu(n,2),o=r[0],i=r[1];e[o]=i.operator?{operator:i.operator,constraints:i.constraints.map(function(a){return Fn({},a)})}:Fn({},i)}),e},updateReorderableColumns:function(){var e=this,n=[];this.columns.forEach(function(r){return n.push(e.columnProp(r,"columnKey")||e.columnProp(r,"field"))}),this.d_columnOrder=n},createStyleElement:function(){var e;this.styleElement=document.createElement("style"),this.styleElement.type="text/css",C.setAttribute(this.styleElement,"nonce",(e=this.$primevue)===null||e===void 0||(e=e.config)===null||e===void 0||(e=e.csp)===null||e===void 0?void 0:e.nonce),document.head.appendChild(this.styleElement)},createResponsiveStyle:function(){if(!this.responsiveStyleElement){var e;this.responsiveStyleElement=document.createElement("style"),this.responsiveStyleElement.type="text/css",C.setAttribute(this.responsiveStyleElement,"nonce",(e=this.$primevue)===null||e===void 0||(e=e.config)===null||e===void 0||(e=e.csp)===null||e===void 0?void 0:e.nonce),document.head.appendChild(this.responsiveStyleElement);var n=".p-datatable-wrapper ".concat(this.virtualScrollerDisabled?"":"> .p-virtualscroller"," > .p-datatable-table"),r=".p-datatable[".concat(this.attributeSelector,"] > ").concat(n),o=".p-datatable[".concat(this.attributeSelector,"].p-datatable-gridlines > ").concat(n),i=` @media screen and (max-width: `.concat(this.breakpoint,`) { `).concat(r,` > .p-datatable-thead > tr > th, `).concat(r,` > .p-datatable-tfoot > tr > td { @@ -1357,7 +1357,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho display: block; } } -`);this.responsiveStyleElement.innerHTML=i}},destroyResponsiveStyle:function(){this.responsiveStyleElement&&(document.head.removeChild(this.responsiveStyleElement),this.responsiveStyleElement=null)},destroyStyleElement:function(){this.styleElement&&(document.head.removeChild(this.styleElement),this.styleElement=null)},recursiveGetChildren:function(e,n){var r=this;return n||(n=[]),e&&e.length&&e.forEach(function(o){o.children instanceof Array?n.concat(r.recursiveGetChildren(o.children,n)):o.type.name=="Column"&&n.push(o)}),n},dataToRender:function(e){var n=e||this.processedData;if(n&&this.paginator){var r=this.lazy?0:this.d_first;return n.slice(r,r+this.d_rows)}return n},getVirtualScrollerRef:function(){return this.$refs.virtualScroller},hasSpacerStyle:function(e){return B.isNotEmpty(e)}},computed:{columns:function(){var e=this.getChildren();if(e){var n=this.recursiveGetChildren(e,[]);if(this.reorderableColumns&&this.d_columnOrder){var r=[],o=tn(this.d_columnOrder),i;try{for(o.s();!(i=o.n()).done;){var a=i.value,l=this.findColumnByKey(n,a);l&&!this.columnProp(l,"hidden")&&r.push(l)}}catch(u){o.e(u)}finally{o.f()}return[].concat(r,Ye(n.filter(function(u){return r.indexOf(u)<0})))}return n}},headerColumnGroup:function(){var e=this.getChildren();if(e){var n=tn(e),r;try{for(n.s();!(r=n.n()).done;){var o=r.value;if(o.type.name==="ColumnGroup"&&this.columnProp(o,"type")==="header")return o}}catch(i){n.e(i)}finally{n.f()}}return null},footerColumnGroup:function(){var e=this.getChildren();if(e){var n=tn(e),r;try{for(n.s();!(r=n.n()).done;){var o=r.value;if(o.type.name==="ColumnGroup"&&this.columnProp(o,"type")==="footer")return o}}catch(i){n.e(i)}finally{n.f()}}return null},hasFilters:function(){return this.filters&&Object.keys(this.filters).length>0&&this.filters.constructor===Object},processedData:function(){var e=this.value||[];return this.lazy||e&&e.length&&(this.hasFilters&&(e=this.filter(e)),this.sorted&&(this.sortMode==="single"?e=this.sortSingle(e):this.sortMode==="multiple"&&(e=this.sortMultiple(e)))),e},totalRecordsLength:function(){if(this.lazy)return this.totalRecords;var e=this.processedData;return e?e.length:0},empty:function(){var e=this.processedData;return!e||e.length===0},paginatorTop:function(){return this.paginator&&(this.paginatorPosition!=="bottom"||this.paginatorPosition==="both")},paginatorBottom:function(){return this.paginator&&(this.paginatorPosition!=="top"||this.paginatorPosition==="both")},sorted:function(){return this.d_sortField||this.d_multiSortMeta&&this.d_multiSortMeta.length>0},allRowsSelected:function(){var e=this;if(this.selectAll!==null)return this.selectAll;var n=this.frozenValue?[].concat(Ye(this.frozenValue),Ye(this.processedData)):this.processedData;return B.isNotEmpty(n)&&this.selection&&Array.isArray(this.selection)&&n.every(function(r){return e.selection.some(function(o){return e.equals(o,r)})})},attributeSelector:function(){return Re()},groupRowSortField:function(){return this.sortMode==="single"?this.sortField:this.d_groupRowsSortMeta?this.d_groupRowsSortMeta.field:null},virtualScrollerDisabled:function(){return B.isEmpty(this.virtualScrollerOptions)||!this.scrollable}},components:{DTPaginator:hd,DTTableHeader:Td,DTTableBody:Sd,DTTableFooter:Id,DTVirtualScroller:ll,ArrowDownIcon:Yc,ArrowUpIcon:Jc,SpinnerIcon:mi}};function ni(t){"@babel/helpers - typeof";return ni=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ni(t)}function tu(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function nu(t){for(var e=1;e0&&this.filters.constructor===Object},processedData:function(){var e=this.value||[];return this.lazy||e&&e.length&&(this.hasFilters&&(e=this.filter(e)),this.sorted&&(this.sortMode==="single"?e=this.sortSingle(e):this.sortMode==="multiple"&&(e=this.sortMultiple(e)))),e},totalRecordsLength:function(){if(this.lazy)return this.totalRecords;var e=this.processedData;return e?e.length:0},empty:function(){var e=this.processedData;return!e||e.length===0},paginatorTop:function(){return this.paginator&&(this.paginatorPosition!=="bottom"||this.paginatorPosition==="both")},paginatorBottom:function(){return this.paginator&&(this.paginatorPosition!=="top"||this.paginatorPosition==="both")},sorted:function(){return this.d_sortField||this.d_multiSortMeta&&this.d_multiSortMeta.length>0},allRowsSelected:function(){var e=this;if(this.selectAll!==null)return this.selectAll;var n=this.frozenValue?[].concat(Ze(this.frozenValue),Ze(this.processedData)):this.processedData;return H.isNotEmpty(n)&&this.selection&&Array.isArray(this.selection)&&n.every(function(r){return e.selection.some(function(o){return e.equals(o,r)})})},attributeSelector:function(){return Re()},groupRowSortField:function(){return this.sortMode==="single"?this.sortField:this.d_groupRowsSortMeta?this.d_groupRowsSortMeta.field:null},virtualScrollerDisabled:function(){return H.isEmpty(this.virtualScrollerOptions)||!this.scrollable}},components:{DTPaginator:hd,DTTableHeader:xd,DTTableBody:Sd,DTTableFooter:Id,DTVirtualScroller:ll,ArrowDownIcon:Yc,ArrowUpIcon:Jc,SpinnerIcon:mi}};function ni(t){"@babel/helpers - typeof";return ni=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ni(t)}function tu(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function nu(t){for(var e=1;e=e.minX&&u+r=e.minY&&s+o=e.minX&&u+r=e.minY&&s+ot.length)&&(e=t.length);for(var n=0,r=new Array(e);nu.width||i<0||o<0||o+l>u.height},getTarget:function(e){return C.hasClass(e,"p-inputwrapper")?C.findSingle(e,"input"):e},getModifiers:function(e){return e.modifiers&&Object.keys(e.modifiers).length?e.modifiers:e.arg&&hr(e.arg)==="object"?Object.entries(e.arg).reduce(function(n,r){var o=N_(r,2),i=o[0],a=o[1];return(i==="event"||i==="position")&&(n[a]=!0),n},{}):{}}}}),Ot=nl(),q_=` +`,j_={root:"p-tooltip p-component",arrow:"p-tooltip-arrow",text:"p-tooltip-text"},V_=Be.extend({name:"tooltip",css:B_,classes:j_}),H_=Fe.extend({style:V_});function N_(t,e){return W_(t)||U_(t,e)||K_(t,e)||z_()}function z_(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function K_(t,e){if(t){if(typeof t=="string")return du(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(t);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return du(t,e)}}function du(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);nu.width||i<0||o<0||o+l>u.height},getTarget:function(e){return C.hasClass(e,"p-inputwrapper")?C.findSingle(e,"input"):e},getModifiers:function(e){return e.modifiers&&Object.keys(e.modifiers).length?e.modifiers:e.arg&&hr(e.arg)==="object"?Object.entries(e.arg).reduce(function(n,r){var o=N_(r,2),i=o[0],a=o[1];return(i==="event"||i==="position")&&(n[a]=!0),n},{}):{}}}}),Ot=nl(),q_=` @layer primevue { .p-confirm-popup { position: absolute; @@ -1848,11 +1848,11 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho align-items: center; } } -`,Y_={root:function(e){var n=e.instance;return["p-confirm-popup p-component",{"p-input-filled":n.$primevue.config.inputStyle==="filled","p-ripple-disabled":n.$primevue.config.ripple===!1}]},content:"p-confirm-popup-content",icon:function(e){var n=e.instance;return["p-confirm-popup-icon",n.confirmation?n.confirmation.icon:null]},message:"p-confirm-popup-message",footer:"p-confirm-popup-footer",rejectButton:function(e){var n=e.instance;return["p-confirm-popup-reject",n.confirmation&&!n.confirmation.rejectClass?"p-button-sm p-button-text":null]},acceptButton:function(e){var n=e.instance;return["p-confirm-popup-accept",n.confirmation&&!n.confirmation.acceptClass?"p-button-sm":null]}},J_=je.extend({name:"confirmpopup",css:q_,classes:Y_}),Z_={name:"BaseConfirmPopup",extends:Pe,props:{group:String},style:J_,provide:function(){return{$parentInstance:this}}},Nd={name:"ConfirmPopup",extends:Z_,inheritAttrs:!1,data:function(){return{visible:!1,confirmation:null,autoFocusAccept:null,autoFocusReject:null}},target:null,outsideClickListener:null,scrollHandler:null,resizeListener:null,container:null,confirmListener:null,closeListener:null,mounted:function(){var e=this;this.confirmListener=function(n){n&&n.group===e.group&&(e.confirmation=n,e.target=n.target,e.confirmation.onShow&&e.confirmation.onShow(),e.visible=!0)},this.closeListener=function(){e.visible=!1,e.confirmation=null},Ot.on("confirm",this.confirmListener),Ot.on("close",this.closeListener)},beforeUnmount:function(){Ot.off("confirm",this.confirmListener),Ot.off("close",this.closeListener),this.unbindOutsideClickListener(),this.scrollHandler&&(this.scrollHandler.destroy(),this.scrollHandler=null),this.unbindResizeListener(),this.container&&(Je.clear(this.container),this.container=null),this.target=null,this.confirmation=null},methods:{accept:function(){this.confirmation.accept&&this.confirmation.accept(),this.visible=!1},reject:function(){this.confirmation.reject&&this.confirmation.reject(),this.visible=!1},onHide:function(){this.confirmation.onHide&&this.confirmation.onHide(),this.visible=!1},onAcceptKeydown:function(e){(e.code==="Space"||e.code==="Enter")&&(this.accept(),C.focus(this.target),e.preventDefault())},onRejectKeydown:function(e){(e.code==="Space"||e.code==="Enter")&&(this.reject(),C.focus(this.target),e.preventDefault())},onEnter:function(e){this.autoFocusAccept=this.confirmation.defaultFocus===void 0||this.confirmation.defaultFocus==="accept",this.autoFocusReject=this.confirmation.defaultFocus==="reject",this.bindOutsideClickListener(),this.bindScrollListener(),this.bindResizeListener(),Je.set("overlay",e,this.$primevue.config.zIndex.overlay)},onAfterEnter:function(){this.focus()},onLeave:function(){this.autoFocusAccept=null,this.autoFocusReject=null,this.unbindOutsideClickListener(),this.unbindScrollListener(),this.unbindResizeListener()},onAfterLeave:function(e){Je.clear(e)},alignOverlay:function(){C.absolutePosition(this.container,this.target);var e=C.getOffset(this.container),n=C.getOffset(this.target),r=0;e.left{e.exitUrl&&(window.location=e.exitUrl),window.history.go(-1)};return(r,o)=>{const i=N("Button"),a=N("Dialog");return p(),$(a,{style:{width:"40vw","z-index":"9999"},visible:"",header:"System Error",closable:!1,modal:""},{footer:M(()=>[P(i,{label:"Exit from DUSTER",icon:"pi pi-times",class:"p-button-secondary",onClick:n,size:"small"})]),default:M(()=>[g("p",u3," Something wrong happened in the DUSTER system. "+J(t.errorMessage),1),c3]),_:1})}}});function Wd(t,e){return function(){return t.apply(e,arguments)}}const{toString:d3}=Object.prototype,{getPrototypeOf:gl}=Object,ho=(t=>e=>{const n=d3.call(e);return t[n]||(t[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),Ht=t=>(t=t.toLowerCase(),e=>ho(e)===t),go=t=>e=>typeof e===t,{isArray:Qn}=Array,ui=go("undefined");function p3(t){return t!==null&&!ui(t)&&t.constructor!==null&&!ui(t.constructor)&&yt(t.constructor.isBuffer)&&t.constructor.isBuffer(t)}const Gd=Ht("ArrayBuffer");function f3(t){let e;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?e=ArrayBuffer.isView(t):e=t&&t.buffer&&Gd(t.buffer),e}const m3=go("string"),yt=go("function"),qd=go("number"),vo=t=>t!==null&&typeof t=="object",h3=t=>t===!0||t===!1,Fi=t=>{if(ho(t)!=="object")return!1;const e=gl(t);return(e===null||e===Object.prototype||Object.getPrototypeOf(e)===null)&&!(Symbol.toStringTag in t)&&!(Symbol.iterator in t)},g3=Ht("Date"),v3=Ht("File"),y3=Ht("Blob"),b3=Ht("FileList"),w3=t=>vo(t)&&yt(t.pipe),C3=t=>{let e;return t&&(typeof FormData=="function"&&t instanceof FormData||yt(t.append)&&((e=ho(t))==="formdata"||e==="object"&&yt(t.toString)&&t.toString()==="[object FormData]"))},_3=Ht("URLSearchParams"),S3=t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function gi(t,e,{allOwnKeys:n=!1}={}){if(t===null||typeof t>"u")return;let r,o;if(typeof t!="object"&&(t=[t]),Qn(t))for(r=0,o=t.length;r0;)if(o=n[r],e===o.toLowerCase())return o;return null}const Jd=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),Zd=t=>!ui(t)&&t!==Jd;function Ca(){const{caseless:t}=Zd(this)&&this||{},e={},n=(r,o)=>{const i=t&&Yd(e,o)||o;Fi(e[i])&&Fi(r)?e[i]=Ca(e[i],r):Fi(r)?e[i]=Ca({},r):Qn(r)?e[i]=r.slice():e[i]=r};for(let r=0,o=arguments.length;r(gi(e,(o,i)=>{n&&yt(o)?t[i]=Wd(o,n):t[i]=o},{allOwnKeys:r}),t),P3=t=>(t.charCodeAt(0)===65279&&(t=t.slice(1)),t),I3=(t,e,n,r)=>{t.prototype=Object.create(e.prototype,r),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),n&&Object.assign(t.prototype,n)},k3=(t,e,n,r)=>{let o,i,a;const l={};if(e=e||{},t==null)return e;do{for(o=Object.getOwnPropertyNames(t),i=o.length;i-- >0;)a=o[i],(!r||r(a,t,e))&&!l[a]&&(e[a]=t[a],l[a]=!0);t=n!==!1&&gl(t)}while(t&&(!n||n(t,e))&&t!==Object.prototype);return e},x3=(t,e,n)=>{t=String(t),(n===void 0||n>t.length)&&(n=t.length),n-=e.length;const r=t.indexOf(e,n);return r!==-1&&r===n},T3=t=>{if(!t)return null;if(Qn(t))return t;let e=t.length;if(!qd(e))return null;const n=new Array(e);for(;e-- >0;)n[e]=t[e];return n},E3=(t=>e=>t&&e instanceof t)(typeof Uint8Array<"u"&&gl(Uint8Array)),D3=(t,e)=>{const r=(t&&t[Symbol.iterator]).call(t);let o;for(;(o=r.next())&&!o.done;){const i=o.value;e.call(t,i[0],i[1])}},R3=(t,e)=>{let n;const r=[];for(;(n=t.exec(e))!==null;)r.push(n);return r},$3=Ht("HTMLFormElement"),A3=t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,o){return r.toUpperCase()+o}),mu=(({hasOwnProperty:t})=>(e,n)=>t.call(e,n))(Object.prototype),M3=Ht("RegExp"),Xd=(t,e)=>{const n=Object.getOwnPropertyDescriptors(t),r={};gi(n,(o,i)=>{let a;(a=e(o,i,t))!==!1&&(r[i]=a||o)}),Object.defineProperties(t,r)},L3=t=>{Xd(t,(e,n)=>{if(yt(t)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=t[n];if(yt(r)){if(e.enumerable=!1,"writable"in e){e.writable=!1;return}e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},F3=(t,e)=>{const n={},r=o=>{o.forEach(i=>{n[i]=!0})};return Qn(t)?r(t):r(String(t).split(e)),n},B3=()=>{},j3=(t,e)=>(t=+t,Number.isFinite(t)?t:e),Lo="abcdefghijklmnopqrstuvwxyz",hu="0123456789",Qd={DIGIT:hu,ALPHA:Lo,ALPHA_DIGIT:Lo+Lo.toUpperCase()+hu},V3=(t=16,e=Qd.ALPHA_DIGIT)=>{let n="";const{length:r}=e;for(;t--;)n+=e[Math.random()*r|0];return n};function H3(t){return!!(t&&yt(t.append)&&t[Symbol.toStringTag]==="FormData"&&t[Symbol.iterator])}const N3=t=>{const e=new Array(10),n=(r,o)=>{if(vo(r)){if(e.indexOf(r)>=0)return;if(!("toJSON"in r)){e[o]=r;const i=Qn(r)?[]:{};return gi(r,(a,l)=>{const u=n(a,o+1);!ui(u)&&(i[l]=u)}),e[o]=void 0,i}}return r};return n(t,0)},z3=Ht("AsyncFunction"),K3=t=>t&&(vo(t)||yt(t))&&yt(t.then)&&yt(t.catch),K={isArray:Qn,isArrayBuffer:Gd,isBuffer:p3,isFormData:C3,isArrayBufferView:f3,isString:m3,isNumber:qd,isBoolean:h3,isObject:vo,isPlainObject:Fi,isUndefined:ui,isDate:g3,isFile:v3,isBlob:y3,isRegExp:M3,isFunction:yt,isStream:w3,isURLSearchParams:_3,isTypedArray:E3,isFileList:b3,forEach:gi,merge:Ca,extend:O3,trim:S3,stripBOM:P3,inherits:I3,toFlatObject:k3,kindOf:ho,kindOfTest:Ht,endsWith:x3,toArray:T3,forEachEntry:D3,matchAll:R3,isHTMLForm:$3,hasOwnProperty:mu,hasOwnProp:mu,reduceDescriptors:Xd,freezeMethods:L3,toObjectSet:F3,toCamelCase:A3,noop:B3,toFiniteNumber:j3,findKey:Yd,global:Jd,isContextDefined:Zd,ALPHABET:Qd,generateString:V3,isSpecCompliantForm:H3,toJSONObject:N3,isAsyncFn:z3,isThenable:K3};function $e(t,e,n,r,o){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=t,this.name="AxiosError",e&&(this.code=e),n&&(this.config=n),r&&(this.request=r),o&&(this.response=o)}K.inherits($e,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:K.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const ep=$e.prototype,tp={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(t=>{tp[t]={value:t}});Object.defineProperties($e,tp);Object.defineProperty(ep,"isAxiosError",{value:!0});$e.from=(t,e,n,r,o,i)=>{const a=Object.create(ep);return K.toFlatObject(t,a,function(u){return u!==Error.prototype},l=>l!=="isAxiosError"),$e.call(a,t.message,e,n,r,o),a.cause=t,a.name=t.name,i&&Object.assign(a,i),a};const U3=null;function _a(t){return K.isPlainObject(t)||K.isArray(t)}function np(t){return K.endsWith(t,"[]")?t.slice(0,-2):t}function gu(t,e,n){return t?t.concat(e).map(function(o,i){return o=np(o),!n&&i?"["+o+"]":o}).join(n?".":""):e}function W3(t){return K.isArray(t)&&!t.some(_a)}const G3=K.toFlatObject(K,{},null,function(e){return/^is[A-Z]/.test(e)});function yo(t,e,n){if(!K.isObject(t))throw new TypeError("target must be an object");e=e||new FormData,n=K.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(b,S){return!K.isUndefined(S[b])});const r=n.metaTokens,o=n.visitor||c,i=n.dots,a=n.indexes,u=(n.Blob||typeof Blob<"u"&&Blob)&&K.isSpecCompliantForm(e);if(!K.isFunction(o))throw new TypeError("visitor must be a function");function s(y){if(y===null)return"";if(K.isDate(y))return y.toISOString();if(!u&&K.isBlob(y))throw new $e("Blob is not supported. Use a Buffer instead.");return K.isArrayBuffer(y)||K.isTypedArray(y)?u&&typeof Blob=="function"?new Blob([y]):Buffer.from(y):y}function c(y,b,S){let _=y;if(y&&!S&&typeof y=="object"){if(K.endsWith(b,"{}"))b=r?b:b.slice(0,-2),y=JSON.stringify(y);else if(K.isArray(y)&&W3(y)||(K.isFileList(y)||K.endsWith(b,"[]"))&&(_=K.toArray(y)))return b=np(b),_.forEach(function(V,T){!(K.isUndefined(V)||V===null)&&e.append(a===!0?gu([b],T,i):a===null?b:b+"[]",s(V))}),!1}return _a(y)?!0:(e.append(gu(S,b,i),s(y)),!1)}const d=[],m=Object.assign(G3,{defaultVisitor:c,convertValue:s,isVisitable:_a});function f(y,b){if(!K.isUndefined(y)){if(d.indexOf(y)!==-1)throw Error("Circular reference detected in "+b.join("."));d.push(y),K.forEach(y,function(_,I){(!(K.isUndefined(_)||_===null)&&o.call(e,_,K.isString(I)?I.trim():I,b,m))===!0&&f(_,b?b.concat(I):[I])}),d.pop()}}if(!K.isObject(t))throw new TypeError("data must be an object");return f(t),e}function vu(t){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,function(r){return e[r]})}function vl(t,e){this._pairs=[],t&&yo(t,this,e)}const rp=vl.prototype;rp.append=function(e,n){this._pairs.push([e,n])};rp.toString=function(e){const n=e?function(r){return e.call(this,r,vu)}:vu;return this._pairs.map(function(o){return n(o[0])+"="+n(o[1])},"").join("&")};function q3(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function ip(t,e,n){if(!e)return t;const r=n&&n.encode||q3,o=n&&n.serialize;let i;if(o?i=o(e,n):i=K.isURLSearchParams(e)?e.toString():new vl(e,n).toString(r),i){const a=t.indexOf("#");a!==-1&&(t=t.slice(0,a)),t+=(t.indexOf("?")===-1?"?":"&")+i}return t}class Y3{constructor(){this.handlers=[]}use(e,n,r){return this.handlers.push({fulfilled:e,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){K.forEach(this.handlers,function(r){r!==null&&e(r)})}}const yu=Y3,op={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},J3=typeof URLSearchParams<"u"?URLSearchParams:vl,Z3=typeof FormData<"u"?FormData:null,X3=typeof Blob<"u"?Blob:null,Q3=(()=>{let t;return typeof navigator<"u"&&((t=navigator.product)==="ReactNative"||t==="NativeScript"||t==="NS")?!1:typeof window<"u"&&typeof document<"u"})(),e6=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),Mt={isBrowser:!0,classes:{URLSearchParams:J3,FormData:Z3,Blob:X3},isStandardBrowserEnv:Q3,isStandardBrowserWebWorkerEnv:e6,protocols:["http","https","file","blob","url","data"]};function t6(t,e){return yo(t,new Mt.classes.URLSearchParams,Object.assign({visitor:function(n,r,o,i){return Mt.isNode&&K.isBuffer(n)?(this.append(r,n.toString("base64")),!1):i.defaultVisitor.apply(this,arguments)}},e))}function n6(t){return K.matchAll(/\w+|\[(\w*)]/g,t).map(e=>e[0]==="[]"?"":e[1]||e[0])}function r6(t){const e={},n=Object.keys(t);let r;const o=n.length;let i;for(r=0;r=n.length;return a=!a&&K.isArray(o)?o.length:a,u?(K.hasOwnProp(o,a)?o[a]=[o[a],r]:o[a]=r,!l):((!o[a]||!K.isObject(o[a]))&&(o[a]=[]),e(n,r,o[a],i)&&K.isArray(o[a])&&(o[a]=r6(o[a])),!l)}if(K.isFormData(t)&&K.isFunction(t.entries)){const n={};return K.forEachEntry(t,(r,o)=>{e(n6(r),o,n,0)}),n}return null}function i6(t,e,n){if(K.isString(t))try{return(e||JSON.parse)(t),K.trim(t)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(t)}const yl={transitional:op,adapter:["xhr","http"],transformRequest:[function(e,n){const r=n.getContentType()||"",o=r.indexOf("application/json")>-1,i=K.isObject(e);if(i&&K.isHTMLForm(e)&&(e=new FormData(e)),K.isFormData(e))return o&&o?JSON.stringify(ap(e)):e;if(K.isArrayBuffer(e)||K.isBuffer(e)||K.isStream(e)||K.isFile(e)||K.isBlob(e))return e;if(K.isArrayBufferView(e))return e.buffer;if(K.isURLSearchParams(e))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let l;if(i){if(r.indexOf("application/x-www-form-urlencoded")>-1)return t6(e,this.formSerializer).toString();if((l=K.isFileList(e))||r.indexOf("multipart/form-data")>-1){const u=this.env&&this.env.FormData;return yo(l?{"files[]":e}:e,u&&new u,this.formSerializer)}}return i||o?(n.setContentType("application/json",!1),i6(e)):e}],transformResponse:[function(e){const n=this.transitional||yl.transitional,r=n&&n.forcedJSONParsing,o=this.responseType==="json";if(e&&K.isString(e)&&(r&&!this.responseType||o)){const a=!(n&&n.silentJSONParsing)&&o;try{return JSON.parse(e)}catch(l){if(a)throw l.name==="SyntaxError"?$e.from(l,$e.ERR_BAD_RESPONSE,this,null,this.response):l}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:Mt.classes.FormData,Blob:Mt.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};K.forEach(["delete","get","head","post","put","patch"],t=>{yl.headers[t]={}});const bl=yl,o6=K.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),a6=t=>{const e={};let n,r,o;return t&&t.split(` -`).forEach(function(a){o=a.indexOf(":"),n=a.substring(0,o).trim().toLowerCase(),r=a.substring(o+1).trim(),!(!n||e[n]&&o6[n])&&(n==="set-cookie"?e[n]?e[n].push(r):e[n]=[r]:e[n]=e[n]?e[n]+", "+r:r)}),e},bu=Symbol("internals");function ar(t){return t&&String(t).trim().toLowerCase()}function Bi(t){return t===!1||t==null?t:K.isArray(t)?t.map(Bi):String(t)}function l6(t){const e=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(t);)e[r[1]]=r[2];return e}const s6=t=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim());function Fo(t,e,n,r,o){if(K.isFunction(r))return r.call(this,e,n);if(o&&(e=n),!!K.isString(e)){if(K.isString(r))return e.indexOf(r)!==-1;if(K.isRegExp(r))return r.test(e)}}function u6(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(e,n,r)=>n.toUpperCase()+r)}function c6(t,e){const n=K.toCamelCase(" "+e);["get","set","has"].forEach(r=>{Object.defineProperty(t,r+n,{value:function(o,i,a){return this[r].call(this,e,o,i,a)},configurable:!0})})}class bo{constructor(e){e&&this.set(e)}set(e,n,r){const o=this;function i(l,u,s){const c=ar(u);if(!c)throw new Error("header name must be a non-empty string");const d=K.findKey(o,c);(!d||o[d]===void 0||s===!0||s===void 0&&o[d]!==!1)&&(o[d||u]=Bi(l))}const a=(l,u)=>K.forEach(l,(s,c)=>i(s,c,u));return K.isPlainObject(e)||e instanceof this.constructor?a(e,n):K.isString(e)&&(e=e.trim())&&!s6(e)?a(a6(e),n):e!=null&&i(n,e,r),this}get(e,n){if(e=ar(e),e){const r=K.findKey(this,e);if(r){const o=this[r];if(!n)return o;if(n===!0)return l6(o);if(K.isFunction(n))return n.call(this,o,r);if(K.isRegExp(n))return n.exec(o);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,n){if(e=ar(e),e){const r=K.findKey(this,e);return!!(r&&this[r]!==void 0&&(!n||Fo(this,this[r],r,n)))}return!1}delete(e,n){const r=this;let o=!1;function i(a){if(a=ar(a),a){const l=K.findKey(r,a);l&&(!n||Fo(r,r[l],l,n))&&(delete r[l],o=!0)}}return K.isArray(e)?e.forEach(i):i(e),o}clear(e){const n=Object.keys(this);let r=n.length,o=!1;for(;r--;){const i=n[r];(!e||Fo(this,this[i],i,e,!0))&&(delete this[i],o=!0)}return o}normalize(e){const n=this,r={};return K.forEach(this,(o,i)=>{const a=K.findKey(r,i);if(a){n[a]=Bi(o),delete n[i];return}const l=e?u6(i):String(i).trim();l!==i&&delete n[i],n[l]=Bi(o),r[l]=!0}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const n=Object.create(null);return K.forEach(this,(r,o)=>{r!=null&&r!==!1&&(n[o]=e&&K.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([e,n])=>e+": "+n).join(` -`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...n){const r=new this(e);return n.forEach(o=>r.set(o)),r}static accessor(e){const r=(this[bu]=this[bu]={accessors:{}}).accessors,o=this.prototype;function i(a){const l=ar(a);r[l]||(c6(o,a),r[l]=!0)}return K.isArray(e)?e.forEach(i):i(e),this}}bo.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);K.reduceDescriptors(bo.prototype,({value:t},e)=>{let n=e[0].toUpperCase()+e.slice(1);return{get:()=>t,set(r){this[n]=r}}});K.freezeMethods(bo);const Wt=bo;function Bo(t,e){const n=this||bl,r=e||n,o=Wt.from(r.headers);let i=r.data;return K.forEach(t,function(l){i=l.call(n,i,o.normalize(),e?e.status:void 0)}),o.normalize(),i}function lp(t){return!!(t&&t.__CANCEL__)}function vi(t,e,n){$e.call(this,t??"canceled",$e.ERR_CANCELED,e,n),this.name="CanceledError"}K.inherits(vi,$e,{__CANCEL__:!0});function d6(t,e,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?t(n):e(new $e("Request failed with status code "+n.status,[$e.ERR_BAD_REQUEST,$e.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const p6=Mt.isStandardBrowserEnv?function(){return{write:function(n,r,o,i,a,l){const u=[];u.push(n+"="+encodeURIComponent(r)),K.isNumber(o)&&u.push("expires="+new Date(o).toGMTString()),K.isString(i)&&u.push("path="+i),K.isString(a)&&u.push("domain="+a),l===!0&&u.push("secure"),document.cookie=u.join("; ")},read:function(n){const r=document.cookie.match(new RegExp("(^|;\\s*)("+n+")=([^;]*)"));return r?decodeURIComponent(r[3]):null},remove:function(n){this.write(n,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}();function f6(t){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)}function m6(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}function sp(t,e){return t&&!f6(e)?m6(t,e):e}const h6=Mt.isStandardBrowserEnv?function(){const e=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let r;function o(i){let a=i;return e&&(n.setAttribute("href",a),a=n.href),n.setAttribute("href",a),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=o(window.location.href),function(a){const l=K.isString(a)?o(a):a;return l.protocol===r.protocol&&l.host===r.host}}():function(){return function(){return!0}}();function g6(t){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return e&&e[1]||""}function v6(t,e){t=t||10;const n=new Array(t),r=new Array(t);let o=0,i=0,a;return e=e!==void 0?e:1e3,function(u){const s=Date.now(),c=r[i];a||(a=s),n[o]=u,r[o]=s;let d=i,m=0;for(;d!==o;)m+=n[d++],d=d%t;if(o=(o+1)%t,o===i&&(i=(i+1)%t),s-a{const i=o.loaded,a=o.lengthComputable?o.total:void 0,l=i-n,u=r(l),s=i<=a;n=i;const c={loaded:i,total:a,progress:a?i/a:void 0,bytes:l,rate:u||void 0,estimated:u&&a&&s?(a-i)/u:void 0,event:o};c[e?"download":"upload"]=!0,t(c)}}const y6=typeof XMLHttpRequest<"u",b6=y6&&function(t){return new Promise(function(n,r){let o=t.data;const i=Wt.from(t.headers).normalize(),a=t.responseType;let l;function u(){t.cancelToken&&t.cancelToken.unsubscribe(l),t.signal&&t.signal.removeEventListener("abort",l)}let s;K.isFormData(o)&&(Mt.isStandardBrowserEnv||Mt.isStandardBrowserWebWorkerEnv?i.setContentType(!1):i.getContentType(/^\s*multipart\/form-data/)?K.isString(s=i.getContentType())&&i.setContentType(s.replace(/^\s*(multipart\/form-data);+/,"$1")):i.setContentType("multipart/form-data"));let c=new XMLHttpRequest;if(t.auth){const y=t.auth.username||"",b=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";i.set("Authorization","Basic "+btoa(y+":"+b))}const d=sp(t.baseURL,t.url);c.open(t.method.toUpperCase(),ip(d,t.params,t.paramsSerializer),!0),c.timeout=t.timeout;function m(){if(!c)return;const y=Wt.from("getAllResponseHeaders"in c&&c.getAllResponseHeaders()),S={data:!a||a==="text"||a==="json"?c.responseText:c.response,status:c.status,statusText:c.statusText,headers:y,config:t,request:c};d6(function(I){n(I),u()},function(I){r(I),u()},S),c=null}if("onloadend"in c?c.onloadend=m:c.onreadystatechange=function(){!c||c.readyState!==4||c.status===0&&!(c.responseURL&&c.responseURL.indexOf("file:")===0)||setTimeout(m)},c.onabort=function(){c&&(r(new $e("Request aborted",$e.ECONNABORTED,t,c)),c=null)},c.onerror=function(){r(new $e("Network Error",$e.ERR_NETWORK,t,c)),c=null},c.ontimeout=function(){let b=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded";const S=t.transitional||op;t.timeoutErrorMessage&&(b=t.timeoutErrorMessage),r(new $e(b,S.clarifyTimeoutError?$e.ETIMEDOUT:$e.ECONNABORTED,t,c)),c=null},Mt.isStandardBrowserEnv){const y=h6(d)&&t.xsrfCookieName&&p6.read(t.xsrfCookieName);y&&i.set(t.xsrfHeaderName,y)}o===void 0&&i.setContentType(null),"setRequestHeader"in c&&K.forEach(i.toJSON(),function(b,S){c.setRequestHeader(S,b)}),K.isUndefined(t.withCredentials)||(c.withCredentials=!!t.withCredentials),a&&a!=="json"&&(c.responseType=t.responseType),typeof t.onDownloadProgress=="function"&&c.addEventListener("progress",wu(t.onDownloadProgress,!0)),typeof t.onUploadProgress=="function"&&c.upload&&c.upload.addEventListener("progress",wu(t.onUploadProgress)),(t.cancelToken||t.signal)&&(l=y=>{c&&(r(!y||y.type?new vi(null,t,c):y),c.abort(),c=null)},t.cancelToken&&t.cancelToken.subscribe(l),t.signal&&(t.signal.aborted?l():t.signal.addEventListener("abort",l)));const f=g6(d);if(f&&Mt.protocols.indexOf(f)===-1){r(new $e("Unsupported protocol "+f+":",$e.ERR_BAD_REQUEST,t));return}c.send(o||null)})},Sa={http:U3,xhr:b6};K.forEach(Sa,(t,e)=>{if(t){try{Object.defineProperty(t,"name",{value:e})}catch{}Object.defineProperty(t,"adapterName",{value:e})}});const Cu=t=>`- ${t}`,w6=t=>K.isFunction(t)||t===null||t===!1,up={getAdapter:t=>{t=K.isArray(t)?t:[t];const{length:e}=t;let n,r;const o={};for(let i=0;i`adapter ${l} `+(u===!1?"is not supported by the environment":"is not available in the build"));let a=e?i.length>1?`since : +`,Y_={root:function(e){var n=e.instance;return["p-confirm-popup p-component",{"p-input-filled":n.$primevue.config.inputStyle==="filled","p-ripple-disabled":n.$primevue.config.ripple===!1}]},content:"p-confirm-popup-content",icon:function(e){var n=e.instance;return["p-confirm-popup-icon",n.confirmation?n.confirmation.icon:null]},message:"p-confirm-popup-message",footer:"p-confirm-popup-footer",rejectButton:function(e){var n=e.instance;return["p-confirm-popup-reject",n.confirmation&&!n.confirmation.rejectClass?"p-button-sm p-button-text":null]},acceptButton:function(e){var n=e.instance;return["p-confirm-popup-accept",n.confirmation&&!n.confirmation.acceptClass?"p-button-sm":null]}},J_=Be.extend({name:"confirmpopup",css:q_,classes:Y_}),Z_={name:"BaseConfirmPopup",extends:Oe,props:{group:String},style:J_,provide:function(){return{$parentInstance:this}}},Nd={name:"ConfirmPopup",extends:Z_,inheritAttrs:!1,data:function(){return{visible:!1,confirmation:null,autoFocusAccept:null,autoFocusReject:null}},target:null,outsideClickListener:null,scrollHandler:null,resizeListener:null,container:null,confirmListener:null,closeListener:null,mounted:function(){var e=this;this.confirmListener=function(n){n&&n.group===e.group&&(e.confirmation=n,e.target=n.target,e.confirmation.onShow&&e.confirmation.onShow(),e.visible=!0)},this.closeListener=function(){e.visible=!1,e.confirmation=null},Ot.on("confirm",this.confirmListener),Ot.on("close",this.closeListener)},beforeUnmount:function(){Ot.off("confirm",this.confirmListener),Ot.off("close",this.closeListener),this.unbindOutsideClickListener(),this.scrollHandler&&(this.scrollHandler.destroy(),this.scrollHandler=null),this.unbindResizeListener(),this.container&&(Xe.clear(this.container),this.container=null),this.target=null,this.confirmation=null},methods:{accept:function(){this.confirmation.accept&&this.confirmation.accept(),this.visible=!1},reject:function(){this.confirmation.reject&&this.confirmation.reject(),this.visible=!1},onHide:function(){this.confirmation.onHide&&this.confirmation.onHide(),this.visible=!1},onAcceptKeydown:function(e){(e.code==="Space"||e.code==="Enter")&&(this.accept(),C.focus(this.target),e.preventDefault())},onRejectKeydown:function(e){(e.code==="Space"||e.code==="Enter")&&(this.reject(),C.focus(this.target),e.preventDefault())},onEnter:function(e){this.autoFocusAccept=this.confirmation.defaultFocus===void 0||this.confirmation.defaultFocus==="accept",this.autoFocusReject=this.confirmation.defaultFocus==="reject",this.bindOutsideClickListener(),this.bindScrollListener(),this.bindResizeListener(),Xe.set("overlay",e,this.$primevue.config.zIndex.overlay)},onAfterEnter:function(){this.focus()},onLeave:function(){this.autoFocusAccept=null,this.autoFocusReject=null,this.unbindOutsideClickListener(),this.unbindScrollListener(),this.unbindResizeListener()},onAfterLeave:function(e){Xe.clear(e)},alignOverlay:function(){C.absolutePosition(this.container,this.target);var e=C.getOffset(this.container),n=C.getOffset(this.target),r=0;e.left{e.exitUrl&&(window.location=e.exitUrl),window.history.go(-1)};return(r,o)=>{const i=K("Button"),a=K("Dialog");return p(),$(a,{style:{width:"40vw","z-index":"9999"},visible:"",header:"System Error",closable:!1,modal:""},{footer:L(()=>[P(i,{label:"Exit from DUSTER",icon:"pi pi-times",class:"p-button-secondary",onClick:n,size:"small"})]),default:L(()=>[g("p",u3," Something wrong happened in the DUSTER system. "+Y(t.errorMessage),1),c3]),_:1})}}});function Wd(t,e){return function(){return t.apply(e,arguments)}}const{toString:d3}=Object.prototype,{getPrototypeOf:gl}=Object,ho=(t=>e=>{const n=d3.call(e);return t[n]||(t[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),Ht=t=>(t=t.toLowerCase(),e=>ho(e)===t),go=t=>e=>typeof e===t,{isArray:Qn}=Array,ui=go("undefined");function p3(t){return t!==null&&!ui(t)&&t.constructor!==null&&!ui(t.constructor)&&yt(t.constructor.isBuffer)&&t.constructor.isBuffer(t)}const Gd=Ht("ArrayBuffer");function f3(t){let e;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?e=ArrayBuffer.isView(t):e=t&&t.buffer&&Gd(t.buffer),e}const m3=go("string"),yt=go("function"),qd=go("number"),vo=t=>t!==null&&typeof t=="object",h3=t=>t===!0||t===!1,Fi=t=>{if(ho(t)!=="object")return!1;const e=gl(t);return(e===null||e===Object.prototype||Object.getPrototypeOf(e)===null)&&!(Symbol.toStringTag in t)&&!(Symbol.iterator in t)},g3=Ht("Date"),v3=Ht("File"),y3=Ht("Blob"),b3=Ht("FileList"),w3=t=>vo(t)&&yt(t.pipe),C3=t=>{let e;return t&&(typeof FormData=="function"&&t instanceof FormData||yt(t.append)&&((e=ho(t))==="formdata"||e==="object"&&yt(t.toString)&&t.toString()==="[object FormData]"))},_3=Ht("URLSearchParams"),S3=t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function gi(t,e,{allOwnKeys:n=!1}={}){if(t===null||typeof t>"u")return;let r,o;if(typeof t!="object"&&(t=[t]),Qn(t))for(r=0,o=t.length;r0;)if(o=n[r],e===o.toLowerCase())return o;return null}const Jd=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),Zd=t=>!ui(t)&&t!==Jd;function Ca(){const{caseless:t}=Zd(this)&&this||{},e={},n=(r,o)=>{const i=t&&Yd(e,o)||o;Fi(e[i])&&Fi(r)?e[i]=Ca(e[i],r):Fi(r)?e[i]=Ca({},r):Qn(r)?e[i]=r.slice():e[i]=r};for(let r=0,o=arguments.length;r(gi(e,(o,i)=>{n&&yt(o)?t[i]=Wd(o,n):t[i]=o},{allOwnKeys:r}),t),P3=t=>(t.charCodeAt(0)===65279&&(t=t.slice(1)),t),I3=(t,e,n,r)=>{t.prototype=Object.create(e.prototype,r),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),n&&Object.assign(t.prototype,n)},k3=(t,e,n,r)=>{let o,i,a;const l={};if(e=e||{},t==null)return e;do{for(o=Object.getOwnPropertyNames(t),i=o.length;i-- >0;)a=o[i],(!r||r(a,t,e))&&!l[a]&&(e[a]=t[a],l[a]=!0);t=n!==!1&&gl(t)}while(t&&(!n||n(t,e))&&t!==Object.prototype);return e},T3=(t,e,n)=>{t=String(t),(n===void 0||n>t.length)&&(n=t.length),n-=e.length;const r=t.indexOf(e,n);return r!==-1&&r===n},x3=t=>{if(!t)return null;if(Qn(t))return t;let e=t.length;if(!qd(e))return null;const n=new Array(e);for(;e-- >0;)n[e]=t[e];return n},E3=(t=>e=>t&&e instanceof t)(typeof Uint8Array<"u"&&gl(Uint8Array)),D3=(t,e)=>{const r=(t&&t[Symbol.iterator]).call(t);let o;for(;(o=r.next())&&!o.done;){const i=o.value;e.call(t,i[0],i[1])}},R3=(t,e)=>{let n;const r=[];for(;(n=t.exec(e))!==null;)r.push(n);return r},$3=Ht("HTMLFormElement"),A3=t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,o){return r.toUpperCase()+o}),mu=(({hasOwnProperty:t})=>(e,n)=>t.call(e,n))(Object.prototype),M3=Ht("RegExp"),Xd=(t,e)=>{const n=Object.getOwnPropertyDescriptors(t),r={};gi(n,(o,i)=>{let a;(a=e(o,i,t))!==!1&&(r[i]=a||o)}),Object.defineProperties(t,r)},L3=t=>{Xd(t,(e,n)=>{if(yt(t)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=t[n];if(yt(r)){if(e.enumerable=!1,"writable"in e){e.writable=!1;return}e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},F3=(t,e)=>{const n={},r=o=>{o.forEach(i=>{n[i]=!0})};return Qn(t)?r(t):r(String(t).split(e)),n},B3=()=>{},j3=(t,e)=>(t=+t,Number.isFinite(t)?t:e),Lo="abcdefghijklmnopqrstuvwxyz",hu="0123456789",Qd={DIGIT:hu,ALPHA:Lo,ALPHA_DIGIT:Lo+Lo.toUpperCase()+hu},V3=(t=16,e=Qd.ALPHA_DIGIT)=>{let n="";const{length:r}=e;for(;t--;)n+=e[Math.random()*r|0];return n};function H3(t){return!!(t&&yt(t.append)&&t[Symbol.toStringTag]==="FormData"&&t[Symbol.iterator])}const N3=t=>{const e=new Array(10),n=(r,o)=>{if(vo(r)){if(e.indexOf(r)>=0)return;if(!("toJSON"in r)){e[o]=r;const i=Qn(r)?[]:{};return gi(r,(a,l)=>{const u=n(a,o+1);!ui(u)&&(i[l]=u)}),e[o]=void 0,i}}return r};return n(t,0)},z3=Ht("AsyncFunction"),K3=t=>t&&(vo(t)||yt(t))&&yt(t.then)&&yt(t.catch),U={isArray:Qn,isArrayBuffer:Gd,isBuffer:p3,isFormData:C3,isArrayBufferView:f3,isString:m3,isNumber:qd,isBoolean:h3,isObject:vo,isPlainObject:Fi,isUndefined:ui,isDate:g3,isFile:v3,isBlob:y3,isRegExp:M3,isFunction:yt,isStream:w3,isURLSearchParams:_3,isTypedArray:E3,isFileList:b3,forEach:gi,merge:Ca,extend:O3,trim:S3,stripBOM:P3,inherits:I3,toFlatObject:k3,kindOf:ho,kindOfTest:Ht,endsWith:T3,toArray:x3,forEachEntry:D3,matchAll:R3,isHTMLForm:$3,hasOwnProperty:mu,hasOwnProp:mu,reduceDescriptors:Xd,freezeMethods:L3,toObjectSet:F3,toCamelCase:A3,noop:B3,toFiniteNumber:j3,findKey:Yd,global:Jd,isContextDefined:Zd,ALPHABET:Qd,generateString:V3,isSpecCompliantForm:H3,toJSONObject:N3,isAsyncFn:z3,isThenable:K3};function $e(t,e,n,r,o){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=t,this.name="AxiosError",e&&(this.code=e),n&&(this.config=n),r&&(this.request=r),o&&(this.response=o)}U.inherits($e,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:U.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const ep=$e.prototype,tp={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(t=>{tp[t]={value:t}});Object.defineProperties($e,tp);Object.defineProperty(ep,"isAxiosError",{value:!0});$e.from=(t,e,n,r,o,i)=>{const a=Object.create(ep);return U.toFlatObject(t,a,function(u){return u!==Error.prototype},l=>l!=="isAxiosError"),$e.call(a,t.message,e,n,r,o),a.cause=t,a.name=t.name,i&&Object.assign(a,i),a};const U3=null;function _a(t){return U.isPlainObject(t)||U.isArray(t)}function np(t){return U.endsWith(t,"[]")?t.slice(0,-2):t}function gu(t,e,n){return t?t.concat(e).map(function(o,i){return o=np(o),!n&&i?"["+o+"]":o}).join(n?".":""):e}function W3(t){return U.isArray(t)&&!t.some(_a)}const G3=U.toFlatObject(U,{},null,function(e){return/^is[A-Z]/.test(e)});function yo(t,e,n){if(!U.isObject(t))throw new TypeError("target must be an object");e=e||new FormData,n=U.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(b,S){return!U.isUndefined(S[b])});const r=n.metaTokens,o=n.visitor||c,i=n.dots,a=n.indexes,u=(n.Blob||typeof Blob<"u"&&Blob)&&U.isSpecCompliantForm(e);if(!U.isFunction(o))throw new TypeError("visitor must be a function");function s(y){if(y===null)return"";if(U.isDate(y))return y.toISOString();if(!u&&U.isBlob(y))throw new $e("Blob is not supported. Use a Buffer instead.");return U.isArrayBuffer(y)||U.isTypedArray(y)?u&&typeof Blob=="function"?new Blob([y]):Buffer.from(y):y}function c(y,b,S){let _=y;if(y&&!S&&typeof y=="object"){if(U.endsWith(b,"{}"))b=r?b:b.slice(0,-2),y=JSON.stringify(y);else if(U.isArray(y)&&W3(y)||(U.isFileList(y)||U.endsWith(b,"[]"))&&(_=U.toArray(y)))return b=np(b),_.forEach(function(z,x){!(U.isUndefined(z)||z===null)&&e.append(a===!0?gu([b],x,i):a===null?b:b+"[]",s(z))}),!1}return _a(y)?!0:(e.append(gu(S,b,i),s(y)),!1)}const d=[],m=Object.assign(G3,{defaultVisitor:c,convertValue:s,isVisitable:_a});function f(y,b){if(!U.isUndefined(y)){if(d.indexOf(y)!==-1)throw Error("Circular reference detected in "+b.join("."));d.push(y),U.forEach(y,function(_,I){(!(U.isUndefined(_)||_===null)&&o.call(e,_,U.isString(I)?I.trim():I,b,m))===!0&&f(_,b?b.concat(I):[I])}),d.pop()}}if(!U.isObject(t))throw new TypeError("data must be an object");return f(t),e}function vu(t){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,function(r){return e[r]})}function vl(t,e){this._pairs=[],t&&yo(t,this,e)}const rp=vl.prototype;rp.append=function(e,n){this._pairs.push([e,n])};rp.toString=function(e){const n=e?function(r){return e.call(this,r,vu)}:vu;return this._pairs.map(function(o){return n(o[0])+"="+n(o[1])},"").join("&")};function q3(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function ip(t,e,n){if(!e)return t;const r=n&&n.encode||q3,o=n&&n.serialize;let i;if(o?i=o(e,n):i=U.isURLSearchParams(e)?e.toString():new vl(e,n).toString(r),i){const a=t.indexOf("#");a!==-1&&(t=t.slice(0,a)),t+=(t.indexOf("?")===-1?"?":"&")+i}return t}class Y3{constructor(){this.handlers=[]}use(e,n,r){return this.handlers.push({fulfilled:e,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){U.forEach(this.handlers,function(r){r!==null&&e(r)})}}const yu=Y3,op={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},J3=typeof URLSearchParams<"u"?URLSearchParams:vl,Z3=typeof FormData<"u"?FormData:null,X3=typeof Blob<"u"?Blob:null,Q3=(()=>{let t;return typeof navigator<"u"&&((t=navigator.product)==="ReactNative"||t==="NativeScript"||t==="NS")?!1:typeof window<"u"&&typeof document<"u"})(),e6=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),Mt={isBrowser:!0,classes:{URLSearchParams:J3,FormData:Z3,Blob:X3},isStandardBrowserEnv:Q3,isStandardBrowserWebWorkerEnv:e6,protocols:["http","https","file","blob","url","data"]};function t6(t,e){return yo(t,new Mt.classes.URLSearchParams,Object.assign({visitor:function(n,r,o,i){return Mt.isNode&&U.isBuffer(n)?(this.append(r,n.toString("base64")),!1):i.defaultVisitor.apply(this,arguments)}},e))}function n6(t){return U.matchAll(/\w+|\[(\w*)]/g,t).map(e=>e[0]==="[]"?"":e[1]||e[0])}function r6(t){const e={},n=Object.keys(t);let r;const o=n.length;let i;for(r=0;r=n.length;return a=!a&&U.isArray(o)?o.length:a,u?(U.hasOwnProp(o,a)?o[a]=[o[a],r]:o[a]=r,!l):((!o[a]||!U.isObject(o[a]))&&(o[a]=[]),e(n,r,o[a],i)&&U.isArray(o[a])&&(o[a]=r6(o[a])),!l)}if(U.isFormData(t)&&U.isFunction(t.entries)){const n={};return U.forEachEntry(t,(r,o)=>{e(n6(r),o,n,0)}),n}return null}function i6(t,e,n){if(U.isString(t))try{return(e||JSON.parse)(t),U.trim(t)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(t)}const yl={transitional:op,adapter:["xhr","http"],transformRequest:[function(e,n){const r=n.getContentType()||"",o=r.indexOf("application/json")>-1,i=U.isObject(e);if(i&&U.isHTMLForm(e)&&(e=new FormData(e)),U.isFormData(e))return o&&o?JSON.stringify(ap(e)):e;if(U.isArrayBuffer(e)||U.isBuffer(e)||U.isStream(e)||U.isFile(e)||U.isBlob(e))return e;if(U.isArrayBufferView(e))return e.buffer;if(U.isURLSearchParams(e))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let l;if(i){if(r.indexOf("application/x-www-form-urlencoded")>-1)return t6(e,this.formSerializer).toString();if((l=U.isFileList(e))||r.indexOf("multipart/form-data")>-1){const u=this.env&&this.env.FormData;return yo(l?{"files[]":e}:e,u&&new u,this.formSerializer)}}return i||o?(n.setContentType("application/json",!1),i6(e)):e}],transformResponse:[function(e){const n=this.transitional||yl.transitional,r=n&&n.forcedJSONParsing,o=this.responseType==="json";if(e&&U.isString(e)&&(r&&!this.responseType||o)){const a=!(n&&n.silentJSONParsing)&&o;try{return JSON.parse(e)}catch(l){if(a)throw l.name==="SyntaxError"?$e.from(l,$e.ERR_BAD_RESPONSE,this,null,this.response):l}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:Mt.classes.FormData,Blob:Mt.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};U.forEach(["delete","get","head","post","put","patch"],t=>{yl.headers[t]={}});const bl=yl,o6=U.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),a6=t=>{const e={};let n,r,o;return t&&t.split(` +`).forEach(function(a){o=a.indexOf(":"),n=a.substring(0,o).trim().toLowerCase(),r=a.substring(o+1).trim(),!(!n||e[n]&&o6[n])&&(n==="set-cookie"?e[n]?e[n].push(r):e[n]=[r]:e[n]=e[n]?e[n]+", "+r:r)}),e},bu=Symbol("internals");function ar(t){return t&&String(t).trim().toLowerCase()}function Bi(t){return t===!1||t==null?t:U.isArray(t)?t.map(Bi):String(t)}function l6(t){const e=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(t);)e[r[1]]=r[2];return e}const s6=t=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim());function Fo(t,e,n,r,o){if(U.isFunction(r))return r.call(this,e,n);if(o&&(e=n),!!U.isString(e)){if(U.isString(r))return e.indexOf(r)!==-1;if(U.isRegExp(r))return r.test(e)}}function u6(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(e,n,r)=>n.toUpperCase()+r)}function c6(t,e){const n=U.toCamelCase(" "+e);["get","set","has"].forEach(r=>{Object.defineProperty(t,r+n,{value:function(o,i,a){return this[r].call(this,e,o,i,a)},configurable:!0})})}class bo{constructor(e){e&&this.set(e)}set(e,n,r){const o=this;function i(l,u,s){const c=ar(u);if(!c)throw new Error("header name must be a non-empty string");const d=U.findKey(o,c);(!d||o[d]===void 0||s===!0||s===void 0&&o[d]!==!1)&&(o[d||u]=Bi(l))}const a=(l,u)=>U.forEach(l,(s,c)=>i(s,c,u));return U.isPlainObject(e)||e instanceof this.constructor?a(e,n):U.isString(e)&&(e=e.trim())&&!s6(e)?a(a6(e),n):e!=null&&i(n,e,r),this}get(e,n){if(e=ar(e),e){const r=U.findKey(this,e);if(r){const o=this[r];if(!n)return o;if(n===!0)return l6(o);if(U.isFunction(n))return n.call(this,o,r);if(U.isRegExp(n))return n.exec(o);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,n){if(e=ar(e),e){const r=U.findKey(this,e);return!!(r&&this[r]!==void 0&&(!n||Fo(this,this[r],r,n)))}return!1}delete(e,n){const r=this;let o=!1;function i(a){if(a=ar(a),a){const l=U.findKey(r,a);l&&(!n||Fo(r,r[l],l,n))&&(delete r[l],o=!0)}}return U.isArray(e)?e.forEach(i):i(e),o}clear(e){const n=Object.keys(this);let r=n.length,o=!1;for(;r--;){const i=n[r];(!e||Fo(this,this[i],i,e,!0))&&(delete this[i],o=!0)}return o}normalize(e){const n=this,r={};return U.forEach(this,(o,i)=>{const a=U.findKey(r,i);if(a){n[a]=Bi(o),delete n[i];return}const l=e?u6(i):String(i).trim();l!==i&&delete n[i],n[l]=Bi(o),r[l]=!0}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const n=Object.create(null);return U.forEach(this,(r,o)=>{r!=null&&r!==!1&&(n[o]=e&&U.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([e,n])=>e+": "+n).join(` +`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...n){const r=new this(e);return n.forEach(o=>r.set(o)),r}static accessor(e){const r=(this[bu]=this[bu]={accessors:{}}).accessors,o=this.prototype;function i(a){const l=ar(a);r[l]||(c6(o,a),r[l]=!0)}return U.isArray(e)?e.forEach(i):i(e),this}}bo.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);U.reduceDescriptors(bo.prototype,({value:t},e)=>{let n=e[0].toUpperCase()+e.slice(1);return{get:()=>t,set(r){this[n]=r}}});U.freezeMethods(bo);const Wt=bo;function Bo(t,e){const n=this||bl,r=e||n,o=Wt.from(r.headers);let i=r.data;return U.forEach(t,function(l){i=l.call(n,i,o.normalize(),e?e.status:void 0)}),o.normalize(),i}function lp(t){return!!(t&&t.__CANCEL__)}function vi(t,e,n){$e.call(this,t??"canceled",$e.ERR_CANCELED,e,n),this.name="CanceledError"}U.inherits(vi,$e,{__CANCEL__:!0});function d6(t,e,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?t(n):e(new $e("Request failed with status code "+n.status,[$e.ERR_BAD_REQUEST,$e.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const p6=Mt.isStandardBrowserEnv?function(){return{write:function(n,r,o,i,a,l){const u=[];u.push(n+"="+encodeURIComponent(r)),U.isNumber(o)&&u.push("expires="+new Date(o).toGMTString()),U.isString(i)&&u.push("path="+i),U.isString(a)&&u.push("domain="+a),l===!0&&u.push("secure"),document.cookie=u.join("; ")},read:function(n){const r=document.cookie.match(new RegExp("(^|;\\s*)("+n+")=([^;]*)"));return r?decodeURIComponent(r[3]):null},remove:function(n){this.write(n,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}();function f6(t){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)}function m6(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}function sp(t,e){return t&&!f6(e)?m6(t,e):e}const h6=Mt.isStandardBrowserEnv?function(){const e=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let r;function o(i){let a=i;return e&&(n.setAttribute("href",a),a=n.href),n.setAttribute("href",a),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=o(window.location.href),function(a){const l=U.isString(a)?o(a):a;return l.protocol===r.protocol&&l.host===r.host}}():function(){return function(){return!0}}();function g6(t){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return e&&e[1]||""}function v6(t,e){t=t||10;const n=new Array(t),r=new Array(t);let o=0,i=0,a;return e=e!==void 0?e:1e3,function(u){const s=Date.now(),c=r[i];a||(a=s),n[o]=u,r[o]=s;let d=i,m=0;for(;d!==o;)m+=n[d++],d=d%t;if(o=(o+1)%t,o===i&&(i=(i+1)%t),s-a{const i=o.loaded,a=o.lengthComputable?o.total:void 0,l=i-n,u=r(l),s=i<=a;n=i;const c={loaded:i,total:a,progress:a?i/a:void 0,bytes:l,rate:u||void 0,estimated:u&&a&&s?(a-i)/u:void 0,event:o};c[e?"download":"upload"]=!0,t(c)}}const y6=typeof XMLHttpRequest<"u",b6=y6&&function(t){return new Promise(function(n,r){let o=t.data;const i=Wt.from(t.headers).normalize(),a=t.responseType;let l;function u(){t.cancelToken&&t.cancelToken.unsubscribe(l),t.signal&&t.signal.removeEventListener("abort",l)}let s;U.isFormData(o)&&(Mt.isStandardBrowserEnv||Mt.isStandardBrowserWebWorkerEnv?i.setContentType(!1):i.getContentType(/^\s*multipart\/form-data/)?U.isString(s=i.getContentType())&&i.setContentType(s.replace(/^\s*(multipart\/form-data);+/,"$1")):i.setContentType("multipart/form-data"));let c=new XMLHttpRequest;if(t.auth){const y=t.auth.username||"",b=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";i.set("Authorization","Basic "+btoa(y+":"+b))}const d=sp(t.baseURL,t.url);c.open(t.method.toUpperCase(),ip(d,t.params,t.paramsSerializer),!0),c.timeout=t.timeout;function m(){if(!c)return;const y=Wt.from("getAllResponseHeaders"in c&&c.getAllResponseHeaders()),S={data:!a||a==="text"||a==="json"?c.responseText:c.response,status:c.status,statusText:c.statusText,headers:y,config:t,request:c};d6(function(I){n(I),u()},function(I){r(I),u()},S),c=null}if("onloadend"in c?c.onloadend=m:c.onreadystatechange=function(){!c||c.readyState!==4||c.status===0&&!(c.responseURL&&c.responseURL.indexOf("file:")===0)||setTimeout(m)},c.onabort=function(){c&&(r(new $e("Request aborted",$e.ECONNABORTED,t,c)),c=null)},c.onerror=function(){r(new $e("Network Error",$e.ERR_NETWORK,t,c)),c=null},c.ontimeout=function(){let b=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded";const S=t.transitional||op;t.timeoutErrorMessage&&(b=t.timeoutErrorMessage),r(new $e(b,S.clarifyTimeoutError?$e.ETIMEDOUT:$e.ECONNABORTED,t,c)),c=null},Mt.isStandardBrowserEnv){const y=h6(d)&&t.xsrfCookieName&&p6.read(t.xsrfCookieName);y&&i.set(t.xsrfHeaderName,y)}o===void 0&&i.setContentType(null),"setRequestHeader"in c&&U.forEach(i.toJSON(),function(b,S){c.setRequestHeader(S,b)}),U.isUndefined(t.withCredentials)||(c.withCredentials=!!t.withCredentials),a&&a!=="json"&&(c.responseType=t.responseType),typeof t.onDownloadProgress=="function"&&c.addEventListener("progress",wu(t.onDownloadProgress,!0)),typeof t.onUploadProgress=="function"&&c.upload&&c.upload.addEventListener("progress",wu(t.onUploadProgress)),(t.cancelToken||t.signal)&&(l=y=>{c&&(r(!y||y.type?new vi(null,t,c):y),c.abort(),c=null)},t.cancelToken&&t.cancelToken.subscribe(l),t.signal&&(t.signal.aborted?l():t.signal.addEventListener("abort",l)));const f=g6(d);if(f&&Mt.protocols.indexOf(f)===-1){r(new $e("Unsupported protocol "+f+":",$e.ERR_BAD_REQUEST,t));return}c.send(o||null)})},Sa={http:U3,xhr:b6};U.forEach(Sa,(t,e)=>{if(t){try{Object.defineProperty(t,"name",{value:e})}catch{}Object.defineProperty(t,"adapterName",{value:e})}});const Cu=t=>`- ${t}`,w6=t=>U.isFunction(t)||t===null||t===!1,up={getAdapter:t=>{t=U.isArray(t)?t:[t];const{length:e}=t;let n,r;const o={};for(let i=0;i`adapter ${l} `+(u===!1?"is not supported by the environment":"is not available in the build"));let a=e?i.length>1?`since : `+i.map(Cu).join(` -`):" "+Cu(i[0]):"as no adapter specified";throw new $e("There is no suitable adapter to dispatch the request "+a,"ERR_NOT_SUPPORT")}return r},adapters:Sa};function jo(t){if(t.cancelToken&&t.cancelToken.throwIfRequested(),t.signal&&t.signal.aborted)throw new vi(null,t)}function _u(t){return jo(t),t.headers=Wt.from(t.headers),t.data=Bo.call(t,t.transformRequest),["post","put","patch"].indexOf(t.method)!==-1&&t.headers.setContentType("application/x-www-form-urlencoded",!1),up.getAdapter(t.adapter||bl.adapter)(t).then(function(r){return jo(t),r.data=Bo.call(t,t.transformResponse,r),r.headers=Wt.from(r.headers),r},function(r){return lp(r)||(jo(t),r&&r.response&&(r.response.data=Bo.call(t,t.transformResponse,r.response),r.response.headers=Wt.from(r.response.headers))),Promise.reject(r)})}const Su=t=>t instanceof Wt?t.toJSON():t;function Gn(t,e){e=e||{};const n={};function r(s,c,d){return K.isPlainObject(s)&&K.isPlainObject(c)?K.merge.call({caseless:d},s,c):K.isPlainObject(c)?K.merge({},c):K.isArray(c)?c.slice():c}function o(s,c,d){if(K.isUndefined(c)){if(!K.isUndefined(s))return r(void 0,s,d)}else return r(s,c,d)}function i(s,c){if(!K.isUndefined(c))return r(void 0,c)}function a(s,c){if(K.isUndefined(c)){if(!K.isUndefined(s))return r(void 0,s)}else return r(void 0,c)}function l(s,c,d){if(d in e)return r(s,c);if(d in t)return r(void 0,s)}const u={url:i,method:i,data:i,baseURL:a,transformRequest:a,transformResponse:a,paramsSerializer:a,timeout:a,timeoutMessage:a,withCredentials:a,adapter:a,responseType:a,xsrfCookieName:a,xsrfHeaderName:a,onUploadProgress:a,onDownloadProgress:a,decompress:a,maxContentLength:a,maxBodyLength:a,beforeRedirect:a,transport:a,httpAgent:a,httpsAgent:a,cancelToken:a,socketPath:a,responseEncoding:a,validateStatus:l,headers:(s,c)=>o(Su(s),Su(c),!0)};return K.forEach(Object.keys(Object.assign({},t,e)),function(c){const d=u[c]||o,m=d(t[c],e[c],c);K.isUndefined(m)&&d!==l||(n[c]=m)}),n}const cp="1.6.0",wl={};["object","boolean","number","function","string","symbol"].forEach((t,e)=>{wl[t]=function(r){return typeof r===t||"a"+(e<1?"n ":" ")+t}});const Ou={};wl.transitional=function(e,n,r){function o(i,a){return"[Axios v"+cp+"] Transitional option '"+i+"'"+a+(r?". "+r:"")}return(i,a,l)=>{if(e===!1)throw new $e(o(a," has been removed"+(n?" in "+n:"")),$e.ERR_DEPRECATED);return n&&!Ou[a]&&(Ou[a]=!0,console.warn(o(a," has been deprecated since v"+n+" and will be removed in the near future"))),e?e(i,a,l):!0}};function C6(t,e,n){if(typeof t!="object")throw new $e("options must be an object",$e.ERR_BAD_OPTION_VALUE);const r=Object.keys(t);let o=r.length;for(;o-- >0;){const i=r[o],a=e[i];if(a){const l=t[i],u=l===void 0||a(l,i,t);if(u!==!0)throw new $e("option "+i+" must be "+u,$e.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new $e("Unknown option "+i,$e.ERR_BAD_OPTION)}}const Oa={assertOptions:C6,validators:wl},nn=Oa.validators;class Ji{constructor(e){this.defaults=e,this.interceptors={request:new yu,response:new yu}}request(e,n){typeof e=="string"?(n=n||{},n.url=e):n=e||{},n=Gn(this.defaults,n);const{transitional:r,paramsSerializer:o,headers:i}=n;r!==void 0&&Oa.assertOptions(r,{silentJSONParsing:nn.transitional(nn.boolean),forcedJSONParsing:nn.transitional(nn.boolean),clarifyTimeoutError:nn.transitional(nn.boolean)},!1),o!=null&&(K.isFunction(o)?n.paramsSerializer={serialize:o}:Oa.assertOptions(o,{encode:nn.function,serialize:nn.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let a=i&&K.merge(i.common,i[n.method]);i&&K.forEach(["delete","get","head","post","put","patch","common"],y=>{delete i[y]}),n.headers=Wt.concat(a,i);const l=[];let u=!0;this.interceptors.request.forEach(function(b){typeof b.runWhen=="function"&&b.runWhen(n)===!1||(u=u&&b.synchronous,l.unshift(b.fulfilled,b.rejected))});const s=[];this.interceptors.response.forEach(function(b){s.push(b.fulfilled,b.rejected)});let c,d=0,m;if(!u){const y=[_u.bind(this),void 0];for(y.unshift.apply(y,l),y.push.apply(y,s),m=y.length,c=Promise.resolve(n);d{if(!r._listeners)return;let i=r._listeners.length;for(;i-- >0;)r._listeners[i](o);r._listeners=null}),this.promise.then=o=>{let i;const a=new Promise(l=>{r.subscribe(l),i=l}).then(o);return a.cancel=function(){r.unsubscribe(i)},a},e(function(i,a,l){r.reason||(r.reason=new vi(i,a,l),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){if(this.reason){e(this.reason);return}this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;const n=this._listeners.indexOf(e);n!==-1&&this._listeners.splice(n,1)}static source(){let e;return{token:new Cl(function(o){e=o}),cancel:e}}}const _6=Cl;function S6(t){return function(n){return t.apply(null,n)}}function O6(t){return K.isObject(t)&&t.isAxiosError===!0}const Pa={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Pa).forEach(([t,e])=>{Pa[e]=t});const P6=Pa;function dp(t){const e=new ji(t),n=Wd(ji.prototype.request,e);return K.extend(n,ji.prototype,e,{allOwnKeys:!0}),K.extend(n,e,null,{allOwnKeys:!0}),n.create=function(o){return dp(Gn(t,o))},n}const tt=dp(bl);tt.Axios=ji;tt.CanceledError=vi;tt.CancelToken=_6;tt.isCancel=lp;tt.VERSION=cp;tt.toFormData=yo;tt.AxiosError=$e;tt.Cancel=tt.CanceledError;tt.all=function(e){return Promise.all(e)};tt.spread=S6;tt.isAxiosError=O6;tt.mergeConfig=Gn;tt.AxiosHeaders=Wt;tt.formToJSON=t=>ap(K.isHTMLForm(t)?new FormData(t):t);tt.getAdapter=up.getAdapter;tt.HttpStatusCode=P6;tt.default=tt;const _t=tt,I6=[{text:"Specific Date & Time",value:"datetime",tooltip:"Collection starts at specific date and time"},{text:"Specific Date",value:"date",tooltip:"Collection starts at 00:00:00 of the specified day"},{text:"Time relative to End",value:"interval",tooltip:"If the end is a date time, collection start specified number of hours before end. If the end is a date with no specific time, collection starts specified number of calendar days before end."}],k6=[{text:"Specific Date & Time",value:"datetime",tooltip:"Collection ends at specific date and time"},{text:"Specific Date",value:"date",tooltip:"Collection ends at 23:59:00 of the specified day"},{text:"Time relative to Start",value:"interval",tooltip:"If the start is a date time, collection ends specified number of hours after start. If the start is a date with no specific time, collection ends specified number of calendar days after start."}],zn=[{text:"Hours",value:"hour"},{text:"Calendar Day(s)",value:"day"}],Kt={label:void 0,type:void 0,length:void 0},Bt={type:void 0,label:"",rp_date:void 0,duster_field_name:void 0,redcap_field_name:void 0,redcap_field_type:"text",value_type:"datetime",interval:{...Kt},phi:"t"},cn=[{text:"Min",value:"min_agg"},{text:"Max",value:"max_agg"},{text:"First",value:"first_agg"},{text:"Last",value:"last_agg"},{text:"Closest to Time",value:"closest_time"},{text:"Closest to Event",value:"closest_event"}],x6={duster_field_name:void 0,redcap_field_name:void 0,label:void 0,phi:void 0,value_type:void 0,redcap_field_type:void 0,id:void 0};function Pu(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function ci(t){for(var e=1;e1&&arguments[1]!==void 0?arguments[1]:[];const n=wo(t);return ci(ci({},n),{},{$async:!0,$watchTargets:e})}function $6(t){return{$validator(e){for(var n=arguments.length,r=new Array(n>1?n-1:0),o=1;o{const u=Object.entries(a).reduce((s,c)=>{let[d,m]=c;const f=t[d]||{},y=Object.entries(f).reduce((b,S)=>{let[_,I]=S;const T=fp(I).call(this,m,a,l,...r),L=pp(T);if(b.$data[_]=T,b.$data.$invalid=!L||!!b.$data.$invalid,b.$data.$error=b.$data.$invalid,!L){let ae=I.$message||"";const le=I.$params||{};typeof ae=="function"&&(ae=ae({$pending:!1,$invalid:!L,$params:le,$model:m,$response:T})),b.$errors.push({$property:d,$message:ae,$params:le,$response:T,$model:m,$pending:!1,$validator:_})}return{$valid:b.$valid&&L,$data:b.$data,$errors:b.$errors}},{$valid:!0,$data:{},$errors:[]});return s.$data[d]=y.$data,s.$errors[d]=y.$errors,{$valid:s.$valid&&y.$valid,$data:s.$data,$errors:s.$errors}},{$valid:!0,$data:{},$errors:{}});return{$valid:i.$valid&&u.$valid,$data:i.$data.concat(u.$data),$errors:i.$errors.concat(u.$errors)}},{$valid:!0,$data:[],$errors:[]})},$message:e=>{let{$response:n}=e;return n?n.$errors.map(r=>Object.values(r).map(o=>o.map(i=>i.$message)).reduce((o,i)=>o.concat(i),[])):[]}}}const yi=t=>{if(t=ne(t),Array.isArray(t))return!!t.length;if(t==null)return!1;if(t===!1)return!0;if(t instanceof Date)return!isNaN(t.getTime());if(typeof t=="object"){for(let e in t)return!0;return!1}return!!String(t).length},mp=t=>(t=ne(t),Array.isArray(t)?t.length:typeof t=="object"?Object.keys(t).length:String(t).length);function mn(){for(var t=arguments.length,e=new Array(t),n=0;n(r=ne(r),!yi(r)||e.every(o=>(o.lastIndex=0,o.test(r))))}var Ne=Object.freeze({__proto__:null,forEach:$6,len:mp,normalizeValidatorObject:wo,regex:mn,req:yi,unwrap:ne,unwrapNormalizedValidator:fp,unwrapValidatorResponse:pp,withAsync:R6,withMessage:D6,withParams:E6});mn(/^[a-zA-Z]*$/);mn(/^[a-zA-Z0-9]*$/);mn(/^\d*(\.\d+)?$/);const A6=/^(?:[A-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[A-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9]{2,}(?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])$/i;mn(A6);function M6(t){return e=>!yi(e)||mp(e)>=ne(t)}function L6(t){return{$validator:M6(t),$message:e=>{let{$params:n}=e;return`This field should be at least ${n.min} characters long`},$params:{min:t,type:"minLength"}}}function F6(t){return typeof t=="string"&&(t=t.trim()),yi(t)}var gr={$validator:F6,$message:"Value is required",$params:{type:"required"}};const Iu=(t,e)=>t?yi(typeof e=="string"?e.trim():e):!0;function B6(t){return function(e,n){if(typeof t!="function")return Iu(ne(t),e);const r=t.call(this,e,n);return Iu(r,e)}}function $t(t){return{$validator:B6(t),$message:"The value is required",$params:{type:"requiredIf",prop:t}}}function j6(t){return e=>ne(e)===ne(t)}function V6(t){let e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"other";return{$validator:j6(t),$message:n=>`The value must be equal to the ${e} value`,$params:{equalTo:t,otherName:e,type:"sameAs"}}}const H6=/^(?:(?:(?:https?|ftp):)?\/\/)(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z0-9\u00a1-\uffff][a-z0-9\u00a1-\uffff_-]{0,62})?[a-z0-9\u00a1-\uffff]\.)+(?:[a-z\u00a1-\uffff]{2,}\.?))(?::\d{2,5})?(?:[/?#]\S*)?$/i;mn(H6);mn(/(^[0-9]*$)|(^-[0-9]+$)/);mn(/^[-]?\d*(\.\d+)?$/);function ku(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function an(t){for(var e=1;e1&&arguments[1]!==void 0?arguments[1]:[];return Object.keys(t).reduce((n,r)=>(e.includes(r)||(n[r]=ne(t[r])),n),{})}function Xi(t){return typeof t=="function"}function z6(t){return Pn(t)||Tn(t)}function hp(t,e,n){let r=t;const o=e.split(".");for(let i=0;it.some(r=>hp(e,r,{[n]:!1})[n]))}function Tu(t,e,n){return X(()=>t.reduce((r,o)=>{const i=hp(e,o,{[n]:!1})[n]||[];return r.concat(i)},[]))}function gp(t,e,n,r){return t.call(r,ne(e),ne(n),r)}function vp(t){return t.$valid!==void 0?!t.$valid:!t}function K6(t,e,n,r,o,i,a){let{$lazy:l,$rewardEarly:u}=o,s=arguments.length>7&&arguments[7]!==void 0?arguments[7]:[],c=arguments.length>8?arguments[8]:void 0,d=arguments.length>9?arguments[9]:void 0,m=arguments.length>10?arguments[10]:void 0;const f=fe(!!r.value),y=fe(0);n.value=!1;const b=ut([e,r].concat(s,m),()=>{if(l&&!r.value||u&&!d.value&&!n.value)return;let S;try{S=gp(t,e,c,a)}catch(_){S=Promise.reject(_)}y.value++,n.value=!!y.value,f.value=!1,Promise.resolve(S).then(_=>{y.value--,n.value=!!y.value,i.value=_,f.value=vp(_)}).catch(_=>{y.value--,n.value=!!y.value,i.value=_,f.value=!0})},{immediate:!0,deep:typeof e=="object"});return{$invalid:f,$unwatch:b}}function U6(t,e,n,r,o,i,a,l){let{$lazy:u,$rewardEarly:s}=r;const c=()=>({}),d=X(()=>{if(u&&!n.value||s&&!l.value)return!1;let m=!0;try{const f=gp(t,e,a,i);o.value=f,m=vp(f)}catch(f){o.value=f}return m});return{$unwatch:c,$invalid:d}}function W6(t,e,n,r,o,i,a,l,u,s,c){const d=fe(!1),m=t.$params||{},f=fe(null);let y,b;t.$async?{$invalid:y,$unwatch:b}=K6(t.$validator,e,d,n,r,f,o,t.$watchTargets,u,s,c):{$invalid:y,$unwatch:b}=U6(t.$validator,e,n,r,f,o,u,s);const S=t.$message;return{$message:Xi(S)?X(()=>S(xu({$pending:d,$invalid:y,$params:xu(m),$model:e,$response:f,$validator:i,$propertyPath:l,$property:a}))):S||"",$params:m,$pending:d,$invalid:y,$response:f,$unwatch:b}}function G6(){let t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};const e=ne(t),n=Object.keys(e),r={},o={},i={};let a=null;return n.forEach(l=>{const u=e[l];switch(!0){case Xi(u.$validator):r[l]=u;break;case Xi(u):r[l]={$validator:u};break;case l==="$validationGroups":a=u;break;case l.startsWith("$"):i[l]=u;break;default:o[l]=u}}),{rules:r,nestedValidators:o,config:i,validationGroups:a}}const q6="__root";function Y6(t,e,n,r,o,i,a,l,u){const s=Object.keys(t),c=r.get(o,t),d=fe(!1),m=fe(!1),f=fe(0);if(c){if(!c.$partial)return c;c.$unwatch(),d.value=c.$dirty.value}const y={$dirty:d,$path:o,$touch:()=>{d.value||(d.value=!0)},$reset:()=>{d.value&&(d.value=!1)},$commit:()=>{}};return s.length?(s.forEach(b=>{y[b]=W6(t[b],e,y.$dirty,i,a,b,n,o,u,m,f)}),y.$externalResults=X(()=>l.value?[].concat(l.value).map((b,S)=>({$propertyPath:o,$property:n,$validator:"$externalResults",$uid:`${o}-externalResult-${S}`,$message:b,$params:{},$response:null,$pending:!1})):[]),y.$invalid=X(()=>{const b=s.some(S=>ne(y[S].$invalid));return m.value=b,!!y.$externalResults.value.length||b}),y.$pending=X(()=>s.some(b=>ne(y[b].$pending))),y.$error=X(()=>y.$dirty.value?y.$pending.value||y.$invalid.value:!1),y.$silentErrors=X(()=>s.filter(b=>ne(y[b].$invalid)).map(b=>{const S=y[b];return fn({$propertyPath:o,$property:n,$validator:b,$uid:`${o}-${b}`,$message:S.$message,$params:S.$params,$response:S.$response,$pending:S.$pending})}).concat(y.$externalResults.value)),y.$errors=X(()=>y.$dirty.value?y.$silentErrors.value:[]),y.$unwatch=()=>s.forEach(b=>{y[b].$unwatch()}),y.$commit=()=>{m.value=!0,f.value=Date.now()},r.set(o,t,y),y):(c&&r.set(o,t,y),y)}function J6(t,e,n,r,o,i,a){const l=Object.keys(t);return l.length?l.reduce((u,s)=>(u[s]=ka({validations:t[s],state:e,key:s,parentKey:n,resultsCache:r,globalConfig:o,instance:i,externalResults:a}),u),{}):{}}function Z6(t,e,n){const r=X(()=>[e,n].filter(y=>y).reduce((y,b)=>y.concat(Object.values(ne(b))),[])),o=X({get(){return t.$dirty.value||(r.value.length?r.value.every(y=>y.$dirty):!1)},set(y){t.$dirty.value=y}}),i=X(()=>{const y=ne(t.$silentErrors)||[],b=r.value.filter(S=>(ne(S).$silentErrors||[]).length).reduce((S,_)=>S.concat(..._.$silentErrors),[]);return y.concat(b)}),a=X(()=>{const y=ne(t.$errors)||[],b=r.value.filter(S=>(ne(S).$errors||[]).length).reduce((S,_)=>S.concat(..._.$errors),[]);return y.concat(b)}),l=X(()=>r.value.some(y=>y.$invalid)||ne(t.$invalid)||!1),u=X(()=>r.value.some(y=>ne(y.$pending))||ne(t.$pending)||!1),s=X(()=>r.value.some(y=>y.$dirty)||r.value.some(y=>y.$anyDirty)||o.value),c=X(()=>o.value?u.value||l.value:!1),d=()=>{t.$touch(),r.value.forEach(y=>{y.$touch()})},m=()=>{t.$commit(),r.value.forEach(y=>{y.$commit()})},f=()=>{t.$reset(),r.value.forEach(y=>{y.$reset()})};return r.value.length&&r.value.every(y=>y.$dirty)&&d(),{$dirty:o,$errors:a,$invalid:l,$anyDirty:s,$error:c,$pending:u,$touch:d,$reset:f,$silentErrors:i,$commit:m}}function ka(t){let{validations:e,state:n,key:r,parentKey:o,childResults:i,resultsCache:a,globalConfig:l={},instance:u,externalResults:s}=t;const c=o?`${o}.${r}`:r,{rules:d,nestedValidators:m,config:f,validationGroups:y}=G6(e),b=an(an({},l),f),S=r?X(()=>{const H=ne(n);return H?ne(H[r]):void 0}):n,_=an({},ne(s)||{}),I=X(()=>{const H=ne(s);return r?H?ne(H[r]):void 0:H}),V=Y6(d,S,r,a,c,b,u,I,n),T=J6(m,S,c,a,b,u,I),L={};y&&Object.entries(y).forEach(H=>{let[k,R]=H;L[k]={$invalid:Vo(R,T,"$invalid"),$error:Vo(R,T,"$error"),$pending:Vo(R,T,"$pending"),$errors:Tu(R,T,"$errors"),$silentErrors:Tu(R,T,"$silentErrors")}});const{$dirty:ae,$errors:le,$invalid:A,$anyDirty:te,$error:se,$pending:pe,$touch:F,$reset:D,$silentErrors:Y,$commit:ve}=Z6(V,T,i),ce=r?X({get:()=>ne(S),set:H=>{ae.value=!0;const k=ne(n),R=ne(s);R&&(R[r]=_[r]),rt(k[r])?k[r].value=H:k[r]=H}}):null;r&&b.$autoDirty&&ut(S,()=>{ae.value||F();const H=ne(s);H&&(H[r]=_[r])},{flush:"sync"});async function _e(){return F(),b.$rewardEarly&&(ve(),await zi()),await zi(),new Promise(H=>{if(!pe.value)return H(!A.value);const k=ut(pe,()=>{H(!A.value),k()})})}function he(H){return(i.value||{})[H]}function z(){rt(s)?s.value=_:Object.keys(_).length===0?Object.keys(s).forEach(H=>{delete s[H]}):Object.assign(s,_)}return fn(an(an(an({},V),{},{$model:ce,$dirty:ae,$error:se,$errors:le,$invalid:A,$anyDirty:te,$pending:pe,$touch:F,$reset:D,$path:c||q6,$silentErrors:Y,$validate:_e,$commit:ve},i&&{$getResultsForChild:he,$clearExternalResults:z,$validationGroups:L}),T))}class X6{constructor(){this.storage=new Map}set(e,n,r){this.storage.set(e,{rules:n,result:r})}checkRulesValidity(e,n,r){const o=Object.keys(r),i=Object.keys(n);return i.length!==o.length||!i.every(l=>o.includes(l))?!1:i.every(l=>n[l].$params?Object.keys(n[l].$params).every(u=>ne(r[l].$params[u])===ne(n[l].$params[u])):!0)}get(e,n){const r=this.storage.get(e);if(!r)return;const{rules:o,result:i}=r,a=this.checkRulesValidity(e,n,o),l=i.$unwatch?i.$unwatch:()=>({});return a?i:{$dirty:i.$dirty,$partial:!0,$unwatch:l}}}const Vi={COLLECT_ALL:!0,COLLECT_NONE:!1},Eu=Symbol("vuelidate#injectChildResults"),Du=Symbol("vuelidate#removeChildResults");function Q6(t){let{$scope:e,instance:n}=t;const r={},o=fe([]),i=X(()=>o.value.reduce((c,d)=>(c[d]=ne(r[d]),c),{}));function a(c,d){let{$registerAs:m,$scope:f,$stopPropagation:y}=d;y||e===Vi.COLLECT_NONE||f===Vi.COLLECT_NONE||e!==Vi.COLLECT_ALL&&e!==f||(r[m]=c,o.value.push(m))}n.__vuelidateInjectInstances=[].concat(n.__vuelidateInjectInstances||[],a);function l(c){o.value=o.value.filter(d=>d!==c),delete r[c]}n.__vuelidateRemoveInstances=[].concat(n.__vuelidateRemoveInstances||[],l);const u=Ut(Eu,[]);Gi(Eu,n.__vuelidateInjectInstances);const s=Ut(Du,[]);return Gi(Du,n.__vuelidateRemoveInstances),{childResults:i,sendValidationResultsToParent:u,removeValidationResultsFromParent:s}}function yp(t){return new Proxy(t,{get(e,n){return typeof e[n]=="object"?yp(e[n]):X(()=>e[n])}})}let Ru=0;function er(t,e){var n;let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};arguments.length===1&&(r=t,t=void 0,e=void 0);let{$registerAs:o,$scope:i=Vi.COLLECT_ALL,$stopPropagation:a,$externalResults:l,currentVueInstance:u}=r;const s=u||((n=co())===null||n===void 0?void 0:n.proxy),c=s?s.$options:{};o||(Ru+=1,o=`_vuelidate_${Ru}`);const d=fe({}),m=new X6,{childResults:f,sendValidationResultsToParent:y,removeValidationResultsFromParent:b}=s?Q6({$scope:i,instance:s}):{childResults:fe({})};if(!t&&c.validations){const S=c.validations;e=fe({}),fc(()=>{e.value=s,ut(()=>Xi(S)?S.call(e.value,new yp(e.value)):S,_=>{d.value=ka({validations:_,state:e,childResults:f,resultsCache:m,globalConfig:r,instance:s,externalResults:l||s.vuelidateExternalResults})},{immediate:!0})}),r=c.validationsConfig||r}else{const S=rt(t)||z6(t)?t:fn(t||{});ut(S,_=>{d.value=ka({validations:_,state:e,childResults:f,resultsCache:m,globalConfig:r,instance:s??{},externalResults:l})},{immediate:!0})}return s&&(y.forEach(S=>S(d,{$registerAs:o,$scope:i,$stopPropagation:a})),Wa(()=>b.forEach(S=>S(o)))),X(()=>an(an({},ne(d.value)),f.value))}const e9={class:"p-panel-title"},t9={class:"col-12"},n9={key:0},r9={key:0,class:"flex p-error mb-3"},i9={key:1},o9={key:0},a9={key:0,class:"flex p-error mb-3"},l9={key:1},s9={key:0},u9={key:0,class:"flex p-error mb-3"},c9={key:1},d9={class:"confirmation-content mt-2 mb-4"},p9=g("i",{class:"pi pi-exclamation-triangle mr-3",style:{"font-size":"2rem"}},null,-1),f9={key:0},m9=g("div",{class:"my-2"},[ye(" There are identifiers and dates/datetimes for your study cohort that you will provide for your REDCap project. "),g("br"),g("br"),ye(" The minimum required information for each record is an MRN and a study enrollment date, which DUSTER will use to query STARR. "),g("br"),ye(" Optionally, you may also add other dates/datetimes of interest. "),g("br"),g("br"),ye(" After DUSTER creates the project, you may perform a bulk upload of the Researcher-Provided Info you define here using the Data Import Tool. ")],-1),h9=bt({__name:"ResearcherProvidedPanel",props:{rpData:{type:Object,required:!0},reservedFieldNames:{type:Array,required:!0}},emits:["update:rpData"],setup(t,{emit:e}){const n=t,r=fe([{text:"Date",dtValue:"date"},{text:"Datetime",dtValue:"datetime"}]),o=X({get(){return n.rpData},set(T){e("update:rpData",T)}});fe([]);const i=fe(!1),a=()=>({...x6}),l=fe(a()),u=()=>{l.value=a(),l.value.redcap_field_type="text",l.value.phi="t",l.value.id=(l.value.redcap_field_name||"")+new Date().getTime(),console.log(l.value),o.value&&o.value.push(l.value)},s=T=>{l.value=T,i.value=!0},c=()=>{o.value&&(o.value=o.value.filter(T=>T.id!==l.value.id)),i.value=!1,l.value=a()},d=T=>o.value.filter(L=>L.id!=T).map(L=>L.redcap_field_name).concat(n.reservedFieldNames),m=fe(!1),f=(T,L)=>!!(V.value.rpData.$each.$response&&V.value.rpData.$each.$response.$errors&&V.value.rpData.$each.$response.$errors[L]&&V.value.rpData.$each.$response.$errors[L][T].length),y=(T,L,ae)=>o.value.findIndex(le=>le.id!=L.id&&le.label==T)==-1,b=(T,L,ae)=>d(L.id??"").indexOf(T)==-1,S=Ne.regex(/^[a-z][a-z0-9_]*$/),_=X(()=>({rpData:o.value})),I={rpData:{$each:Ne.forEach({value_type:{required:Ne.withMessage("Date types are required",gr)},label:{required:Ne.withMessage("Labels are required",gr),uniqueLabel:Ne.withMessage("Labels must be unique",y)},redcap_field_name:{required:Ne.withMessage("Redcap field names are required",gr),isRedcapFieldName:Ne.withMessage("Only lowercase letters, numbers and underscores allowed",S),uniqueRedcapFieldName:Ne.withMessage("Must be unique",b)}})}},V=er(I,_,{$lazy:!0});return(T,L)=>{const ae=N("Button"),le=N("Dropdown"),A=N("Column"),te=N("InputText"),se=N("DataTable"),pe=N("Panel"),F=N("Dialog");return p(),v(oe,null,[P(pe,null,{header:M(()=>[g("span",e9,[ye("Researcher-Provided Info "),P(ae,{icon:"pi pi-info-circle",text:"",rounded:"","aria-label":"Info",class:"ml-2 pt-0 pb-0 mt-0 mb-0",style:{height:"1.3em"},onClick:L[0]||(L[0]=D=>m.value=!0)})])]),default:M(()=>[g("div",t9,[P(se,{value:o.value,class:"p-datatable-sm","data-key":"id"},{default:M(()=>[P(A,{key:"value_type",field:"value_type",header:"Type"},{body:M(D=>[o.value[D.index].value_type!="Identifier"?(p(),v("div",n9,[P(le,{modelValue:D.data[D.field],"onUpdate:modelValue":Y=>D.data[D.field]=Y,options:r.value,class:re(["w-full md:w-8rem",{"p-invalid":f("value_type",D.index)}]),optionLabel:"text",optionValue:"dtValue",placeholder:"Select a type",disabled:t.rpData[D.index].edit===!1},null,8,["modelValue","onUpdate:modelValue","options","class","disabled"]),f("value_type",D.index)?(p(),v("small",r9,J(ne(V).rpData.$each.$response.$errors[D.index].value_type[0].$message),1)):x("",!0)])):(p(),v("span",i9,J(D.data.value_type),1))]),_:1}),P(A,{key:"label",field:"label",header:"Label"},{body:M(D=>[o.value[D.index].value_type!="Identifier"?(p(),v("div",o9,[P(te,{modelValue:D.data[D.field],"onUpdate:modelValue":Y=>D.data[D.field]=Y,class:re(["w-full",{"p-invalid":f("label",D.index)}]),disabled:t.rpData[D.index].edit===!1},null,8,["modelValue","onUpdate:modelValue","class","disabled"]),f("label",D.index)?(p(),v("small",a9,J(ne(V).rpData.$each.$response.$errors[D.index].label[0].$message),1)):x("",!0)])):(p(),v("span",l9,J(D.data.label),1))]),_:1}),P(A,{key:"redcap_field_name",field:"redcap_field_name",header:"REDCap Field Name"},{body:M(D=>[o.value[D.index].value_type!="Identifier"?(p(),v("div",s9,[P(te,{modelValue:D.data[D.field],"onUpdate:modelValue":Y=>D.data[D.field]=Y,class:re(["w-full",{"p-invalid":f("redcap_field_name",D.index)}]),disabled:t.rpData[D.index].edit===!1},null,8,["modelValue","onUpdate:modelValue","class","disabled"]),f("redcap_field_name",D.index)?(p(),v("small",u9,J(ne(V).rpData.$each.$response.$errors[D.index].redcap_field_name[0].$message),1)):x("",!0)])):(p(),v("span",c9,J(D.data.redcap_field_name),1))]),_:1}),P(A,{exportable:!1,header:"Actions",class:re(["w-6rem"])},{body:M(D=>[P(ae,{icon:"pi pi-trash",outlined:"",rounded:"",size:"small",severity:"danger",class:re(D.index<2||t.rpData[D.index].edit===!1?"hidden":"mr-2"),onClick:Y=>s(D.data),disabled:t.rpData[D.index].edit===!1},null,8,["class","onClick","disabled"]),P(ae,{icon:"pi pi-plus",outlined:"",rounded:"",size:"small",severity:"success",class:re(D.index==o.value.length-1&&D.index<5?"":"hidden"),onClick:u},null,8,["class"])]),_:1})]),_:1},8,["value"])])]),_:1}),P(F,{visible:i.value,"onUpdate:visible":L[2]||(L[2]=D=>i.value=D),style:{width:"450px"},header:"Confirm",modal:!0},{footer:M(()=>[P(ae,{label:"No",icon:"pi pi-times",text:"",onClick:L[1]||(L[1]=D=>i.value=!1)}),P(ae,{label:"Yes",icon:"pi pi-check",text:"",onClick:c})]),default:M(()=>[g("div",d9,[p9,l.value?(p(),v("span",f9,[ye(" Are you sure you want to delete "),g("b",null,J(l.value.label),1),ye("? ")])):x("",!0)])]),_:1},8,["visible"]),P(F,{visible:m.value,"onUpdate:visible":L[4]||(L[4]=D=>m.value=D),modal:"",header:"Data Collection Windows",style:{width:"50vw"}},{footer:M(()=>[P(ae,{onClick:L[3]||(L[3]=D=>m.value=!1)},{default:M(()=>[ye("Close")]),_:1})]),default:M(()=>[m9]),_:1},8,["visible"])],64)}}}),g9={class:"container"},v9=g("div",{class:"mb-2"},[ye(" Select demographics below that you'd like to collect on your cohort. "),g("br"),g("em",null,"Please bear in mind HIPAA Minimum Necessary when selecting identifying information.")],-1),y9={class:"formgrid grid"},b9=["for"],w9={class:"formgrid grid"},C9={class:"col-offset-6 col-6"},_9=bt({__name:"DemographicsPanel",props:{demographicsOptions:{type:Array,required:!0},demographicsSelects:{type:Array,required:!0}},emits:["update:demographicsSelects"],setup(t,{emit:e}){const n=t,r=X({get(){return n.demographicsSelects},set(l){e("update:demographicsSelects",l)}}),o=X(()=>r.value.length{r.value.length{for(const l of n.demographicsSelects)if(l.edit===!1)return!1;return!0};return(l,u)=>{const s=N("Checkbox"),c=N("Button"),d=N("Panel");return p(),v("div",g9,[P(d,{header:"Demographics"},{default:M(()=>[v9,g("div",y9,[(p(!0),v(oe,null,Te(t.demographicsOptions,m=>(p(),v("div",{key:m.duster_field_name,class:"my-2 col-6"},[g("div",null,[P(s,{modelValue:r.value,"onUpdate:modelValue":u[0]||(u[0]=f=>r.value=f),"input-id":m.duster_field_name,value:m,disabled:m.edit===!1},null,8,["modelValue","input-id","value","disabled"]),g("label",{for:m.duster_field_name,class:"ml-2"},J(m.label),9,b9)])]))),128))]),g("div",w9,[g("div",C9,[a()?(p(),$(c,{key:0,label:o.value,size:"small",onClick:u[1]||(u[1]=m=>i())},null,8,["label"])):x("",!0)])])]),_:1})])}}}),S9=[{label:"ED Presentation to ED Discharge",form_name:"ed_presentation_to_ed_discharge",timing_preset:"ed_presentation_to_ed_discharge",type:"nonrepeating",timing:{start:{type:"datetime",duster_field_name:"ed_admission_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"ED Admission Datetime",rp_date:"",interval:{type:null,length:null},phi:"t"},end:{type:"datetime",duster_field_name:"ed_discharge_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"ED Discharge Datetime",rp_date:"",interval:{type:null,length:null},phi:"t"},repeat_interval:{type:null,length:null}},aggregate_defaults:[],event:[],data:{labs:[],vitals:[],outcomes:[],scores:[]},id:""},{label:"Hospital Presentation to Hospital Discharge",form_name:"hospital_presentation_to_hospital_discharge",timing_preset:"hospital_presentation_to_hospital_discharge",type:"nonrepeating",timing:{start:{type:"datetime",duster_field_name:"hospital_presentation_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"Hospital Presentation Datetime",rp_date:"",interval:{type:null,length:null},phi:"t"},end:{type:"datetime",duster_field_name:"hospital_discharge_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"Hospital Discharge Datetime",rp_date:"",interval:{type:null,length:null},phi:"t"},repeat_interval:{type:null,length:null}},aggregate_defaults:[],event:[],data:{labs:[],vitals:[],outcomes:[],scores:[]},id:""},{label:"First 24 Hours of Hospital Presentation",form_name:"first_24_hrs_of_hospital_presentation",timing_preset:"first_24_hrs_of_hospital_presentation",type:"nonrepeating",timing:{start:{type:"datetime",duster_field_name:"hospital_presentation_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"Hospital Presentation Datetime","rp-date":"enroll_date",interval:{type:null,length:null},phi:"t"},end:{type:"interval",duster_field_name:"",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"24 Hours after Hospital Presentation Datetime","rp-date":"",interval:{type:"hour",length:24},phi:"t"},repeat_interval:{type:null,length:null}},aggregate_defaults:[],event:[],data:{labs:[],vitals:[],outcomes:[],scores:[]},id:""},{label:"First 24 Hours of First ICU Admission",form_name:"first_24_hrs_of_first_icu_admission",timing_preset:"first_24_hrs_of_first_icu_admission",type:"nonrepeating",timing:{start:{type:"datetime",duster_field_name:"first_icu_admission_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"First ICU Admission Datetime","rp-date":"enroll_date",interval:{type:null,length:null},phi:"t"},end:{type:"interval",duster_field_name:"",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"24 Hours after First ICU Admission Datetime","rp-date":"",interval:{type:"hour",length:24}},repeat_interval:{type:null,length:null}},aggregate_defaults:[],event:[],data:{labs:[],vitals:[],outcomes:[],scores:[]},id:""},{label:"First ICU Admission to First ICU Discharge",form_name:"first_icu_admission_to_first_icu_discharge",timing_preset:"first_icu_admission_to_first_icu_discharge",type:"nonrepeating",timing:{start:{type:"datetime",duster_field_name:"first_icu_admission_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"First ICU Admission Datetime","rp-date":"enroll_date",interval:{type:null,length:null},phi:"t"},end:{type:"datetime",duster_field_name:"first_icu_discharge_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"First ICU Discharge Datetime","rp-date":"enroll_date",interval:{type:null,length:null},phi:"t"},repeat_interval:{type:null,length:null}},aggregate_defaults:[],event:[],data:{labs:[],vitals:[],outcomes:[],scores:[]},id:""},{label:"Every Calendar Day of First ICU Admission to First ICU Discharge",form_name:"every_calendar_day_of_first_icu_admission_to_first_icu_discharge",timing_preset:"every_calendar_day_of_first_icu_admission_to_first_icu_discharge",type:"repeating",timing:{start:{type:"date",duster_field_name:"first_icu_admission_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"00:00:00 of First ICU Admission Datetime","rp-date":"enroll_date",interval:{type:null,length:null},phi:"t"},end:{type:"date",duster_field_name:"first_icu_discharge_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"23:59:00 of First ICU Discharge Datetime","rp-date":"enroll_date",interval:{type:null,length:null},phi:"t"},repeat_interval:{type:"day",length:1}},aggregate_defaults:[],event:[],data:{labs:[],vitals:[],outcomes:[],scores:[]},id:""},{label:"Every Calendar Day of Hospital Presentation to Hospital Discharge",form_name:"every_calendar_day_of_hospital_Presentation_to_hospital_discharge",timing_preset:"every_calendar_day_of_hospital_presentation_to_hospital_discharge",type:"repeating",timing:{start:{type:"date",duster_field_name:"hospital_presentation_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"00:00:00 of Hospital Presentation Datetime","rp-date":"enroll_date",interval:{type:null,length:null},phi:"t"},end:{type:"date",duster_field_name:"hospital_discharge_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"23:59:00 of Hospital Discharge Datetime","rp-date":"enroll_date",interval:{type:null,length:null},phi:"t"},repeat_interval:{type:"day",length:1}},aggregate_defaults:[],event:[],data:{labs:[],vitals:[],outcomes:[],scores:[]},id:""}],O9={cw_presets:S9},P9={key:0},I9=g("strong",null,"Dependent clinical variables",-1),k9={key:1},x9=g("strong",null,"Value type: ",-1),T9={key:2},E9=g("strong",null,"Unit of measurement: ",-1),D9={key:3},R9=g("strong",null,"LOINC code: ",-1),$9={key:4},A9=g("strong",null,"Note: ",-1),M9={key:5},L9=g("strong",null,"See also: ",-1),F9=["href"],B9=["href"],j9=bt({__name:"MetadataInfoDialog",props:{initialFieldNameProp:{type:String,required:!0}},setup(t){const e=t,n=Ut("metadata"),r=fn({value:e.initialFieldNameProp}),o=fe(!1),i=X(()=>{let s={label:"",duster_field_name:"",category:""};if(n.value){let c=n.value.find(d=>d.duster_field_name===r.value);if(c)return c}return s}),a=X(()=>{let s="";if(i.value.category!="scores")switch(i.value.value_type){case"numeric":s="Number";break;case"boolean":s="Boolean",(i.value.redcap_field_type="yesno")&&(s+=" (Yes/No)");break;case"text":s="Text",(i.value.redcap_field_type="calc")&&(s+=" (Calculated)");break;case"coded_value":(i.value.redcap_field_type="radio")&&(s="Radio buttons (multiple choice-style)");break;case"checkbox":s="Checkbox(es)";break;case"datetime":s="Datetime";case"date":s="Date"}return s}),l=s=>{let c=s.split(","),d=[];for(let m of c){let f=n.value.find(y=>y.duster_field_name===m);f&&d.push(f)}return d},u=X(()=>{var c;let s=[];if(i.value.category=="scores"&&((c=i.value)!=null&&c.subscores)){for(let d of i.value.subscores)if(d.dependencies)for(let m of d.dependencies)m&&(n.value.find(y=>y.duster_field_name===m.duster_field_name)?s.push({duster_field_name:m.duster_field_name,label:m.label,linkable:!0}):s.push({duster_field_name:m.duster_field_name,label:m.label,linkable:!1}))}return s});return(s,c)=>{const d=N("Button"),m=N("Dialog");return p(),v(oe,null,[i.value.info_status==="A"?(p(),$(d,{key:0,icon:"pi pi-info-circle",text:"",rounded:"","aria-label":"Info",class:"ml-2 pt-0 pb-0 mt-0 mb-0",style:{height:"1.3em"},onClick:c[0]||(c[0]=f=>o.value=!0)})):x("",!0),P(m,{visible:o.value,"onUpdate:visible":[c[1]||(c[1]=f=>o.value=f),c[2]||(c[2]=f=>r.value=t.initialFieldNameProp)],modal:!0,dismissableMask:!0,header:i.value.label,style:{width:"40vw"}},{default:M(()=>[g("p",null,J(i.value.description_short),1),i.value.category=="scores"?(p(),v("p",P9,[I9,(p(!0),v(oe,null,Te(u.value,f=>(p(),v("li",null,[f.linkable===!0?(p(),$(d,{key:0,label:f.label,link:"",onClick:y=>r.value=f.duster_field_name},null,8,["label","onClick"])):f.linkable===!1?(p(),$(d,{key:1,label:f.label,link:"",disabled:!0},null,8,["label"])):x("",!0)]))),256))])):x("",!0),a.value!=""?(p(),v("p",k9,[x9,ye(J(a.value),1)])):x("",!0),i.value.unit&&i.value.unit!=""?(p(),v("p",T9,[E9,ye(J(i.value.unit),1)])):x("",!0),i.value.category=="labs"&&i.value.loinc_code!=""?(p(),v("p",D9,[R9,ye(J(i.value.loinc_code),1)])):x("",!0),i.value.note&&i.value.note!=""?(p(),v("p",$9,[A9,ye(J(i.value.note),1)])):x("",!0),i.value.related&&i.value.related!=""?(p(),v("p",M9,[L9,(p(!0),v(oe,null,Te(l(i.value.related),f=>(p(),$(d,{label:f.label,link:"",small:"",onClick:y=>r.value=f.duster_field_name},null,8,["label","onClick"]))),256))])):x("",!0),g("p",null,[i.value.category=="scores"&&i.value.mdcalc!=""?(p(),v("a",{key:0,href:i.value.mdcalc,target:"_blank"}," MDCalc ",8,F9)):x("",!0),ye(" "+J(i.value.category=="scores"&&i.value.mdcalc!=""?" | ":"")+" ",1),i.value.category=="scores"&&i.value.pubmed!=""?(p(),v("a",{key:1,href:i.value.pubmed,target:"_blank"}," PubMed ",8,B9)):x("",!0)])]),_:1},8,["visible","header"])],64)}}}),V9={class:"grid"},H9={class:"flex justify-content-between flex-wrap"},N9=g("div",{class:"mb-2"},[g("strong",null,"Selections")],-1),z9={key:0,class:"mb-2 mr-3"},K9=g("strong",null,"Aggregates",-1),U9=[K9],W9=["for"],G9={key:0,class:"mr-3"},q9={key:0,class:"text-sm"},Y9={key:0},J9={class:"flex flex-wrap gap-3 my-3"},Z9={class:"flex align-items-center"},X9=g("label",{for:"defaultAggregates",class:"ml-2"}," Default Aggregates",-1),Q9={class:"flex align-items-center"},e4=g("label",{for:"customAggregates",class:"ml-2"}," Custom Aggregates",-1),t4={key:0,class:"mb-3"},n4={class:"card flex flex-wrap gap-4 mt-3"},r4=["for"],i4={key:0,class:"flex align-items-center"},o4=["for"],a4={key:1,class:"flex align-items-center"},l4=["for"],s4={key:0,id:"aggOption-help",class:"flex p-error mb-3"},Ri=bt({__name:"ClinicalDataOptions",props:{selectedOptions:{type:Object,required:!0},initialData:{type:Object},category:{type:String,required:!0},numColumns:Number,hasAggregates:{type:Boolean,required:!0},hasClosestTime:{type:Boolean,required:!0},hasClosestEvent:{type:Boolean,required:!0},closestTime:{type:String},closestEvent:{type:String},searchText:{type:String,default:null,required:!0},selectFilter:{type:String,required:!0},options:{type:Object,required:!0}},emits:["update:selectedOptions"],setup(t,{emit:e}){const n=t,r=fe("display:none !important"),o=X(()=>n.initialData!==void 0&&Array.isArray(n.initialData[n.category])?n.initialData[n.category]:[]),i=X({get(){return n.selectedOptions},set(A){e("update:selectedOptions",A)}}),a=fe(),l=X(()=>{if(n.options){let A=JSON.parse(JSON.stringify(n.options));A.forEach(F=>{F.selected=!1,F.aggregate_type="default",F.aggregates=[]}),n.selectedOptions&&n.selectedOptions.forEach(F=>{F.selected=!0;const D=A.findIndex(Y=>Y.duster_field_name===F.duster_field_name);A[D].selected=!0,A[D].aggregate_type=F.aggregate_type,A[D].aggregates=JSON.parse(JSON.stringify(F.aggregates))}),A.sort(function(F,D){let Y=F.label.toLowerCase(),ve=D.label.toLowerCase();return Yve?1:0});let te=2;n.numColumns&&(te=n.numColumns);let se=Math.ceil(A.length/te),pe=[];for(let F=0;FArray.isArray(o.value)?o.value.map(se=>se.duster_field_name).includes(A):!1,s=A=>n.searchText?A.label.toLowerCase().indexOf(n.searchText.toLowerCase())>-1:!0,c=A=>n.selectFilter?n.selectFilter=="All"?!0:n.selectFilter=="Selected"?A.selected:!A.selected:!0,d=X(()=>{let A=l.value;return A.forEach(te=>{te.forEach(se=>{se.visible=s(se)&&c(se)})}),A}),m=fe(!1),f=fe(!1),y=fe(),b=fe([]),S=A=>{a.value=A,y.value=a.value.aggregate_type,b.value=[...a.value.aggregates],m.value=!0},_=X(()=>cn.filter(A=>A.value.indexOf("closest")===-1)),I=X(()=>cn.find(A=>A.value==="closest_time")??{text:"Closest Time",value:"closest_time"}),V=X(()=>cn.find(A=>A.value==="closest_event")??{text:"Closest Event",value:"closest_event"}),T=fe(),L=()=>{if(a.value.aggregate_type==="custom"&&!a.value.aggregates.length)T.value="At least one custom aggregation must be selected.";else if(m.value=!1,a.value.aggregate_type==="default"&&(a.value.aggregates.length=0),i.value){let A=le(a.value.duster_field_name,i.value);A>-1&&i.value[A]&&(i.value[A]=JSON.parse(JSON.stringify(a.value)))}},ae=()=>{if(m.value=!1,a.value.aggregate_type=y.value,a.value.aggregates=b.value,d.value){let A=le(a.value.duster_field_name,d.value);A>-1&&d.value[A]&&(d.value[A]=JSON.parse(JSON.stringify(a.value)))}},le=(A,te)=>te.findIndex(se=>se.duster_field_name===A);return(A,te)=>{const se=N("Checkbox"),pe=N("Chip"),F=N("Button"),D=N("RadioButton"),Y=N("Dialog"),ve=Xe("tooltip");return p(),v(oe,null,[g("div",V9,[(p(!0),v(oe,null,Te(d.value,(ce,_e)=>(p(),v("div",{key:_e,class:"col mr-3"},[g("div",H9,[N9,t.hasAggregates?(p(),v("div",z9,U9)):x("",!0)]),(p(!0),v(oe,null,Te(ce,he=>(p(),v("div",{key:he.duster_field_name,style:qn(he.visible?"":r.value),class:"my-2 flex justify-content-between flex-wrap"},[g("div",null,[P(se,{modelValue:i.value,"onUpdate:modelValue":te[0]||(te[0]=z=>i.value=z),name:t.category,"input-id":he.duster_field_name,value:he,disabled:u(he.duster_field_name)},null,8,["modelValue","name","input-id","value","disabled"]),g("label",{for:he.duster_field_name,class:"ml-2"},J(he.label),9,W9),P(j9,{"initial-field-name-prop":he.duster_field_name},null,8,["initial-field-name-prop"])]),t.hasAggregates?(p(),v("div",G9,[he.selected?(p(),v("span",q9,[!he.aggregate_type||he.aggregate_type==="default"?(p(),v("span",Y9," default aggregates ")):(p(!0),v(oe,{key:1},Te(he.aggregates,z=>(p(),$(pe,{label:z.text,key:z.text,class:"text-sm pt-0 pb-0 mr-1",style:{height:"1.5em"}},null,8,["label"]))),128))])):x("",!0),he.selected&&!u(he.duster_field_name)?Oe((p(),$(F,{key:1,icon:"pi pi-cog",outlined:"",text:"",class:"ml-2",style:{height:"1.3em"},onClick:z=>S(he)},null,8,["onClick"])),[[ve,"Edit Aggregates",void 0,{top:!0}]]):x("",!0)])):x("",!0)],4))),128))]))),128))]),P(Y,{visible:m.value,header:"Aggregates","onUpdate:visible":ae},{footer:M(()=>[P(F,{label:"Save",class:"p-button-primary",size:"small",icon:"pi pi-check",onClick:L}),P(F,{label:"Cancel",class:"p-button-secondary",size:"small",icon:"pi pi-times",onClick:ae})]),default:M(()=>[g("div",J9,[g("div",Z9,[P(D,{modelValue:a.value.aggregate_type,"onUpdate:modelValue":te[1]||(te[1]=ce=>a.value.aggregate_type=ce),"input-id":"defaultAggregates",name:"defaultCustom",value:"default",autofocus:"",onChange:te[2]||(te[2]=ce=>f.value=!1)},null,8,["modelValue"]),X9]),g("div",Q9,[P(D,{modelValue:a.value.aggregate_type,"onUpdate:modelValue":te[3]||(te[3]=ce=>a.value.aggregate_type=ce),"input-id":"customAggregates",name:"defaultCustom",value:"custom",onChange:te[4]||(te[4]=ce=>f.value=!0)},null,8,["modelValue"]),e4])]),a.value.aggregate_type=="custom"?(p(),v("div",t4,[g("div",n4,[(p(!0),v(oe,null,Te(_.value,ce=>(p(),v("div",{key:ce.value,class:"flex align-items-center"},[P(se,{name:"aggregateOptions",modelValue:a.value.aggregates,"onUpdate:modelValue":te[5]||(te[5]=_e=>a.value.aggregates=_e),"input-id":ce.value+"_custom",value:ce,class:re({"p-invalid":T.value}),onClick:te[6]||(te[6]=_e=>T.value=!1)},null,8,["modelValue","input-id","value","class"]),g("label",{for:ce.value+"_custom",class:"ml-2"},J(ce.text),9,r4)]))),128)),t.hasClosestTime?(p(),v("div",i4,[P(se,{modelValue:a.value.aggregates,"onUpdate:modelValue":te[7]||(te[7]=ce=>a.value.aggregates=ce),name:"aggregateOptions","input-id":I.value.value+"_custom",value:I.value,class:re({"p-invalid":T.value})},null,8,["modelValue","input-id","value","class"]),g("label",{for:I.value.value+"_custom",class:"ml-2 mr-2"}," Closest to Time "+J(t.closestTime??"Undefined"),9,o4)])):x("",!0),t.hasClosestEvent?(p(),v("div",a4,[P(se,{modelValue:a.value.aggregates,"onUpdate:modelValue":te[8]||(te[8]=ce=>a.value.aggregates=ce),name:"aggregateOptions","input-id":V.value.value+"_custom",value:V.value,class:re({"p-invalid":T.value})},null,8,["modelValue","input-id","value","class"]),g("label",{for:V.value.value+"_custom",class:"ml-2 mr-2"}," Closest to "+J((t.closestEvent??"").length?t.closestEvent:"Event - Undefined"),9,l4)])):x("",!0)]),T.value?(p(),v("small",s4,J(T.value),1)):x("",!0)])):x("",!0)]),_:1},8,["visible"])],64)}}}),u4={class:"grid"},c4={class:"col-6 mt-2"},d4={class:"p-inputgroup flex"},p4=g("span",{class:"p-inputgroup-addon"},[g("i",{class:"pi pi-search"})],-1),f4={class:"col-6 mt-2"},m4={class:"flex flex-wrap gap-3"},h4=g("label",{class:"flex align-items-center"},"Show: ",-1),g4=["for"],v4=g("hr",null,null,-1),y4=g("div",null,[g("p",null,[ye(' Clinical variables that are added and require aggregation (i.e., any clinical variables under the category of "Labs" or "Vitals") will default to the settings here for convenience. '),g("br"),ye(" Such variables may have their settings individually changed after being added. "),g("br"),ye(` NOTE: The "Closest to Event" and "Closest to Time" aggregations are only available when applicable according to the Data Collection Window's timing. `)])],-1),b4={class:"card flex flex-wrap gap-4 mt-3"},w4=["for"],C4={key:0,class:"flex align-items-center"},_4=["for"],S4={key:0},O4={key:0,class:"flex p-error mb-3"},P4={key:1,class:"flex align-items-center"},I4=["for"],k4={key:0,class:"flex p-error ml-2"},x4={key:1,id:"aggOption-help",class:"flex p-error ml-2"},T4=bt({__name:"ClinicalDataDialog",props:{showClinicalDataDialog:Boolean,activeOptions:Array,initialWindow:{type:Object,required:!1},timing:{type:Object,required:!0},clinicalData:{type:Object,required:!0},aggregateDefaults:{type:Array},closestToEvent:{type:Array},closestToTime:{type:String},eventOptions:{type:Array,required:!0},rpDates:{type:Array,required:!0},labOptions:{type:Array,required:!0},vitalOptions:{type:Array,required:!0},outcomeOptions:{type:Array,required:!0},scoreOptions:{type:Array,required:!0}},emits:["saveClinicalDataUpdate","cancelClinicalDataUpdate","update:clinicalData","update:aggregateDefaults","update:showClinicalDataDialog","update:activeOptions","update:closestToEvent","update:closestToTime"],setup(t,{emit:e}){const n=t,r=fe({global:{value:null,matchMode:nt.CONTAINS}}),o=X(()=>r.value.global.value),i=X({get(){return n.showClinicalDataDialog},set(k){e("update:showClinicalDataDialog",k)}}),a=X({get(){return n.clinicalData},set(k){e("update:clinicalData",k)}}),l=X({get(){return n.aggregateDefaults},set(k){e("update:aggregateDefaults",k)}}),u=X(()=>{var k,R;return((k=n.initialWindow)==null?void 0:k.aggregate_defaults)!==void 0?(R=n.initialWindow)==null?void 0:R.aggregate_defaults.map(G=>G.value):[]}),s=X(()=>{var k,R;return((k=n.initialWindow)==null?void 0:k.data)!==void 0?(R=n.initialWindow)==null?void 0:R.data:{}}),c=X(()=>{if(u.value.includes("closest_time")||u.value.includes("closest_event"))return!0;let k=[];return s.value.hasOwnProperty("labs")&&k.concat(s.value.labs),s.value.hasOwnProperty("vitals")&&k.concat(s.value.vitals),k.forEach(R=>{if(R.aggregates.map(Ce=>Ce.value).includes("closest_time")||u.value.includes("closest_event"))return!0}),!1}),d=X(()=>cn.filter(k=>k.value.indexOf("closest")===-1)),m=X({get(){return n.closestToEvent},set(k){e("update:closestToEvent",k)}}),f=X({get(){return n.closestToEvent&&n.closestToEvent[0]&&n.closestToEvent[0].label?V.value.find(k=>k.label===n.closestToEvent[0].label)??JSON.parse(JSON.stringify(Bt)):JSON.parse(JSON.stringify(Bt))},set(k){k.label!==""&&e("update:closestToEvent",[k])}}),y=X(()=>cn.find(k=>k.value==="closest_event")??{text:"Closest Event",value:"closest_event"}),b=X(()=>!(n.timing&&n.timing.repeat_interval&&n.timing.repeat_interval.length>0)),S=X(()=>{let k=!1;return b.value&&(l.value&&(k=l.value.findIndex(R=>R.value==="closest_event")>-1),k||(k=a.value.labs.findIndex(R=>R.selected&&R.aggregate_type==="custom"&&JSON.stringify(R.aggregates).indexOf("closest_event")>-1)>-1),k||(k=a.value.vitals.findIndex(R=>R.selected&&R.aggregate_type==="custom"&&JSON.stringify(R.aggregates).indexOf("closest_event")>-1)>-1)),k});ut(S,k=>{k||(m.value=[],f.value=JSON.parse(JSON.stringify(Bt)),_("closest_event"))});const _=k=>{if(l.value){const R=l.value.filter(G=>G.value!==k);l.value=R}a.value.labs=I(k,a.value.labs),a.value.vitals=I(k,a.value.vitals)},I=(k,R)=>R.map(Ce=>{if(Ce.selected&&Ce.aggregate_type==="custom"&&JSON.stringify(Ce.aggregates).indexOf(k)>-1){const De=Ce.aggregates.filter(Le=>Le.value!=k);Ce.aggregates=De,De.length===0&&(Ce.aggregate_type="default")}return Ce}),V=X(()=>n.eventOptions.filter(k=>k.value_type==="datetime")),T=X({get(){return n.closestToTime},set(k){e("update:closestToTime",k)}}),L=fe(new Date("2024T08:00"));In(()=>{L.value?T.value=("0"+L.value.getHours()).slice(-2)+":"+("0"+L.value.getMinutes()).slice(-2)+":00":T.value="08:00:00"});const ae=X(()=>cn.find(k=>k.value==="closest_time")??{text:"Closest Time",value:"closest_time"}),le=X(()=>n.timing?!!(n.timing.start.interval.type=="day"&&n.timing.start.interval.length==1||n.timing.end.interval.type=="day"&&n.timing.end.interval.length==1||n.timing.repeat_interval&&n.timing.repeat_interval.type=="day"&&n.timing.repeat_interval.length==1||n.timing.start.type==="date"&&n.timing.end.type==="date"&&(n.timing.start.duster_field_name&&n.timing.start.duster_field_name.length>0&&n.timing.start.duster_field_name===n.timing.end.duster_field_name||n.timing.start.redcap_field_name&&n.timing.start.redcap_field_name.length>0&&n.timing.start.redcap_field_name===n.timing.end.redcap_field_name)):!1),A=X(()=>{let k=!1;return le.value&&(l.value&&(k=l.value.findIndex(R=>R.value==="closest_time")>-1),k||(k=a.value.labs.findIndex(R=>R.selected&&R.aggregate_type==="custom"&&JSON.stringify(R.aggregates).indexOf("closest_time")>-1)>-1),k||(k=a.value.vitals.findIndex(R=>R.selected&&R.aggregate_type==="custom"&&JSON.stringify(R.aggregates).indexOf("closest_time")>-1)>-1)),k});ut(A,k=>{k||(L.value=new Date("2024T08:00"),T.value=void 0,_("closest_time"))});const te=X(()=>{let k=a.value.labs?a.value.labs.findIndex(R=>R.selected&&R.aggregate_type=="default")>-1:!1;return k||(k=a.value.vitals?a.value.vitals.findIndex(R=>R.selected&&R.aggregate_type==="default")>-1:!1),k}),se=Ne.regex(/^([0-1][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]$/),pe=X(()=>({aggregateDefaults:l.value,closestEvent:f.value.duster_field_name?f.value.duster_field_name:f.value.redcap_field_name,closestTime:T.value})),F=X(()=>({aggregateDefaults:{requiredIf:Ne.withMessage("At least one default aggregate must be selected.",$t(te.value)),minLength:L6(1)},closestEvent:{requiredIf:Ne.withMessage("Closest event is required",$t(S.value))},closestTime:{requiredIf:Ne.withMessage("Closest time is required",$t(A.value)),timeFormat:Ne.withMessage("Incorrect time format",se)}})),D=er(F,pe);In(()=>{a.value&&(a.value.valid=!D.value.$error,a.value.errors=D.value.$errors)});const Y=ol(),ve=()=>{D.value.$touch(),D.value.$error?D.value.$errors.forEach(k=>Y.add({severity:"error",summary:"Missing values",detail:k.$message,life:3e3})):(i.value=!1,e("saveClinicalDataUpdate"))},ce=()=>{i.value=!1,e("cancelClinicalDataUpdate")},_e=fe(["Selected","Unselected","All"]),he=fe("All"),z=X({get(){return n.activeOptions},set(k){e("update:activeOptions",k)}}),H=()=>{z.value=[0,1,2,3]};return(k,R)=>{const G=N("InputText"),Ce=N("RadioButton"),De=N("Checkbox"),Le=N("Calendar"),Ie=N("Dropdown"),ot=N("Panel"),Qe=N("AccordionTab"),ee=N("Accordion"),W=N("Button"),w=N("Dialog"),O=Xe("tooltip");return p(),$(w,{visible:i.value,"onUpdate:visible":R[11]||(R[11]=E=>i.value=E),modal:!0,"close-on-escape":!1,style:{width:"75vw"},header:"Select Clinical Values"},{footer:M(()=>[P(W,{label:"Save",class:"p-button-primary",size:"small",icon:"pi pi-check",onClick:ve}),P(W,{label:"Cancel",class:"p-button-secondary",size:"small",icon:"pi pi-times",onClick:ce})]),default:M(()=>[g("div",u4,[g("div",c4,[g("div",d4,[P(G,{placeholder:"Search Clinical Value",modelValue:r.value.global.value,"onUpdate:modelValue":[R[0]||(R[0]=E=>r.value.global.value=E),H]},null,8,["modelValue"]),p4])]),g("div",f4,[g("div",m4,[h4,(p(!0),v(oe,null,Te(_e.value,(E,j)=>(p(),v("div",{key:j,class:"flex align-items-center"},[P(Ce,{modelValue:he.value,"onUpdate:modelValue":R[1]||(R[1]=U=>he.value=U),name:"filterSelected","input-id":E,value:E},null,8,["modelValue","input-id","value"]),g("label",{for:E,class:"flex align-items-center ml-2"},J(E),9,g4)]))),128))])])]),v4,P(ot,{header:"Default Aggregates",toggleable:""},{default:M(()=>[y4,g("div",b4,[(p(!0),v(oe,null,Te(d.value,E=>(p(),v("div",{key:E.value,class:"flex align-items-center"},[P(De,{name:"defaultAggregate",modelValue:l.value,"onUpdate:modelValue":R[2]||(R[2]=j=>l.value=j),value:E,"input-id":E.value,class:re(["mr-2",{"p-invalid":ne(D).aggregateDefaults.$error}]),disabled:u.value.includes(E.value)},null,8,["modelValue","value","input-id","class","disabled"]),g("label",{for:E.value},J(E.text),9,w4)]))),128)),le.value?(p(),v("div",C4,[P(De,{modelValue:l.value,"onUpdate:modelValue":R[3]||(R[3]=E=>l.value=E),name:"defaultAggregate","input-id":ae.value.value,value:ae.value,class:re({"p-invalid":ne(D).aggregateDefaults.$error}),disabled:u.value.includes(ae.value.value)},null,8,["modelValue","input-id","value","class","disabled"]),g("label",{for:ae.value.value,class:"ml-2 mr-2"},J(ae.value.text),9,_4),A.value?(p(),v("div",S4,[Oe(P(Le,{id:"calendar-timeonly",modelValue:L.value,"onUpdate:modelValue":R[4]||(R[4]=E=>L.value=E),timeOnly:"",disabled:c.value},null,8,["modelValue","disabled"]),[[O,"Closest Time value applies to both default and custom aggregates"]]),ne(D).closestTime.$error?(p(),v("small",O4,J(ne(D).closestTime.$errors[0].$message),1)):x("",!0)])):x("",!0)])):x("",!0),b.value?(p(),v("div",P4,[P(De,{modelValue:l.value,"onUpdate:modelValue":R[5]||(R[5]=E=>l.value=E),name:"defaultAggregate","input-id":y.value.value,value:y.value,class:re({"p-invalid":ne(D).aggregateDefaults.$error}),disabled:u.value.includes(y.value.value)},null,8,["modelValue","input-id","value","class","disabled"]),g("label",{for:y.value.value,class:"ml-2 mr-2"},J(y.value.text),9,I4),Oe((p(),v("span",null,[S.value?(p(),$(Ie,{key:0,modelValue:f.value,"onUpdate:modelValue":R[6]||(R[6]=E=>f.value=E),options:V.value,optionLabel:"label",placeholder:"Choose an event",class:re([{"p-invalid":ne(D).closestEvent.$error}]),disabled:c.value},null,8,["modelValue","options","class","disabled"])):x("",!0)])),[[O,"Closest Event value applies to both default and custom aggregates"]]),ne(D).closestEvent.$error?(p(),v("small",k4,J(ne(D).closestEvent.$errors[0].$message),1)):x("",!0),ne(D).aggregateDefaults.$error?(p(),v("small",x4,J(ne(D).aggregateDefaults.$errors[0].$message),1)):x("",!0)])):x("",!0)])]),_:1}),P(ee,{multiple:!0,activeIndex:z.value,class:"mt-2"},{default:M(()=>[P(Qe,{header:"Labs"},{default:M(()=>[P(Ri,{category:"labs",options:t.labOptions,"initial-data":s.value,"has-aggregates":!0,"has-closest-time":le.value,"has-closest-event":b.value,"closest-time":t.closestToTime,"closest-event":f.value.label,"search-text":o.value,"select-filter":he.value,"selected-options":a.value.labs,"onUpdate:selectedOptions":R[7]||(R[7]=E=>a.value.labs=E)},null,8,["options","initial-data","has-closest-time","has-closest-event","closest-time","closest-event","search-text","select-filter","selected-options"])]),_:1}),P(Qe,{header:"Vitals"},{default:M(()=>[P(Ri,{category:"vitals",options:t.vitalOptions,"initial-data":s.value,"has-aggregates":!0,"has-closest-time":le.value,"has-closest-event":b.value,"closest-time":t.closestToTime,"closest-event":f.value.label,"search-text":o.value,"select-filter":he.value,"selected-options":a.value.vitals,"onUpdate:selectedOptions":R[8]||(R[8]=E=>a.value.vitals=E)},null,8,["options","initial-data","has-closest-time","has-closest-event","closest-time","closest-event","search-text","select-filter","selected-options"])]),_:1}),P(Qe,{header:"Outcomes"},{default:M(()=>[P(Ri,{category:"outcomes",options:t.outcomeOptions,"initial-data":s.value,"has-aggregates":!1,"has-closest-time":!1,"has-closest-event":!1,"search-text":o.value,"select-filter":he.value,"selected-options":a.value.outcomes,"onUpdate:selectedOptions":R[9]||(R[9]=E=>a.value.outcomes=E)},null,8,["options","initial-data","search-text","select-filter","selected-options"])]),_:1}),P(Qe,{header:"Scores"},{default:M(()=>[P(Ri,{category:"scores",options:t.scoreOptions,"initial-data":s.value,"has-aggregates":!1,"has-closest-time":!1,"has-closest-event":!1,"search-text":o.value,"select-filter":he.value,"selected-options":a.value.scores,"onUpdate:selectedOptions":R[10]||(R[10]=E=>a.value.scores=E)},null,8,["options","initial-data","search-text","select-filter","selected-options"])]),_:1})]),_:1},8,["activeIndex"]),P(ne(mo))]),_:1},8,["visible"])}}}),E4={class:"field grid"},D4={class:"col-12 mb-2 md:col-2 md:mb-0"},R4={class:"ml-2 pi pi-info-circle",style:{color:"blue"}},$4={class:"col-12 md:col-10"},A4={class:"formgroup"},M4={class:"field-radiobutton mt-1"},L4=["for"],F4={key:0,class:"formgroup-inline"},B4={class:"field"},j4={key:0},V4={key:1},H4={key:2,class:"flex p-error mb-3"},N4={key:0,class:"field"},z4=g("label",null," based on ",-1),K4={key:0,class:"flex p-error mb-3"},U4={key:1,class:"formgroup-inline"},W4={class:"field"},G4={key:0,class:"flex p-error mb-3"},q4={class:"field"},Y4={key:0,class:"flex p-error mb-3"},J4={class:"field"},Z4={key:0},X4={key:1},Q4={key:0,class:"flex p-error mb-3"},$u=bt({__name:"TimingEvent",props:{timeTypeOptions:{type:Array,required:!0},typeLabel:String,eventType:{type:String,required:!0},eventOptions:{type:Array,required:!0},rpDates:{type:Array,required:!0},timingObject:{type:Object,required:!0},otherTimingEvent:{type:Object,required:!0},instigator:{type:String}},emits:["update:timingObject","clearPreset","instigate"],setup(t,{emit:e}){const n=t,r=X({get(){return n.timingObject},set(_){e("update:timingObject",_)}}),o=X(()=>{var _;if(n.eventType==="end"&&n.otherTimingEvent.type){if(n.otherTimingEvent.type.indexOf("date")>-1)return n.timeTypeOptions.filter(I=>I.value==n.otherTimingEvent.type||I.value=="interval");if(n.otherTimingEvent.type==="interval"&&((_=n.otherTimingEvent.interval)!=null&&_.type)){const I=n.otherTimingEvent.interval.type==="day"?"date":"datetime";return n.timeTypeOptions.filter(V=>V.value===I)}}else if(n.otherTimingEvent.type==="interval")return n.timeTypeOptions.filter(I=>I.value!=="interval");return n.timeTypeOptions}),i=X(()=>{if(n.eventType==="end"){if(n.otherTimingEvent.type==="datetime")return zn.filter(_=>_.value==="hour");if(n.otherTimingEvent.type==="date")return zn.filter(_=>_.value==="day")}return zn});In(()=>{o.value.length===1?r.value.type=o.value[0].value:n.instigator&&n.eventType!=n.instigator&&n.otherTimingEvent.type&&n.otherTimingEvent.type!==r.value.type&&n.otherTimingEvent.type!=="interval"&&r.value.type!=="interval"&&(r.value.type=n.otherTimingEvent.type)});const a=X(()=>r.value.type==="datetime"?n.eventOptions.filter(_=>_&&_.value_type&&(_.duster_field_name||_.redcap_field_name)&&_.value_type==="datetime"):n.eventOptions.filter(_=>_&&_.value_type&&(_.duster_field_name||_.redcap_field_name))),l=X({get(){var _;return(_=r.value.interval)==null?void 0:_.type},set(_){r.value.interval||(r.value.interval={...Kt}),r.value.interval.type=_}}),u=X({get(){var _;return((_=r.value.interval)==null?void 0:_.length)??0},set(_){r.value.interval||(r.value.interval={...Kt}),r.value.interval.length=_}});In(()=>{r.value.type=="interval"&&(r.value.interval||(r.value.interval={...Kt}),l.value||(n.otherTimingEvent.type==="datetime"?l.value="hour":n.otherTimingEvent.type==="date"&&(l.value="day")),r.value.interval.label=u.value.toString()+" "+l.value,r.value.interval.label+=n.eventType=="start"?"(s) before End":"(s) after Start",r.value.label=r.value.interval.label)});const s=X({get(){if(r.value)if(r.value.duster_field_name){let _=r.value.duster_field_name,I=n.eventOptions.findIndex(V=>V.duster_field_name==_);return n.eventOptions[I]}else{let _=r.value.redcap_field_name,I=n.eventOptions.findIndex(V=>!V.duster_field_name&&V.redcap_field_name==_);if(I>-1)return n.eventOptions[I]}return JSON.parse(JSON.stringify(Bt))},set(_){r.value&&(r.value.redcap_field_type=_.redcap_field_type,_.duster_field_name?(r.value.duster_field_name=_.duster_field_name,r.value.redcap_field_name=void 0,r.value.rp_date||(r.value.rp_date=n.rpDates[0].redcap_field_name)):_.redcap_field_name&&(r.value.redcap_field_name=_.redcap_field_name,r.value.duster_field_name=void 0,r.value.rp_date=_.redcap_field_name))}}),c=X(()=>n.typeLabel?n.typeLabel:xn(n.eventType)+" at: "),d=(_,I,V)=>{if(I){let T=_.find(L=>L.duster_field_name===I);if(T)return T.label}else if(V){let T=_.find(L=>L.redcap_field_name===V);if(T)return T.label}return""};In(()=>{r.value.type!="interval"&&(r.value.label=d(n.eventOptions,r.value.duster_field_name,r.value.redcap_field_name)??"",r.value.label.length&&r.value.type=="date"&&(r.value.label=n.eventType=="end"?"23:59:00 of "+r.value.label:"00:00:00 of "+r.value.label))});const m=Ne.regex(/^[1-9][0-9]*$/),f=X(()=>({timingEventType:r.value.type,timingEventValue:s.value.duster_field_name?s.value.duster_field_name:s.value.redcap_field_name,timingEventInterval:r.value.interval,timingEventRpDate:r.value.rp_date})),y=X(()=>({timingEventType:{required:Ne.withMessage("Required",gr)},timingEventValue:{requiredIf:Ne.withMessage("Required "+xn(n.eventType)+" Event",$t(r.value.type!=="interval"))},timingEventInterval:{requiredIf:$t(r.value.type=="interval"),type:{requiredIf:Ne.withMessage("Required",$t(r.value.type=="interval"))},length:{requiredIf:Ne.withMessage("Value must be a positive integer",$t(r.value.type=="interval")),positiveInteger:Ne.withMessage("Value must be a positive integer",m)}},timingEventRpDate:{requiredIf:Ne.withMessage("Required",$t(!!r.value.duster_field_name))}})),b=er(y,f),S=X(()=>n.eventType=="start"?"Some description about start":"Some description about end");return(_,I)=>{const V=N("RadioButton"),T=N("Dropdown"),L=N("InputNumber"),ae=Xe("tooltip");return p(),v("div",E4,[g("label",D4,[ye(J(c.value)+" ",1),Oe(g("i",R4,null,512),[[ae,S.value]])]),g("div",$4,[g("div",A4,[(p(!0),v(oe,null,Te(o.value,le=>(p(),v("div",{key:le.value,class:"formgroup-inline"},[g("div",M4,[P(V,{modelValue:r.value.type,"onUpdate:modelValue":A=>r.value.type=A,name:t.eventType+"TimeType","input-id":le.value,value:le.value,class:re({"p-invalid":ne(b).timingEventType.$error}),onClick:I[0]||(I[0]=A=>_.$emit("instigate",t.eventType)),onChange:I[1]||(I[1]=A=>e("clearPreset"))},null,8,["modelValue","onUpdate:modelValue","name","input-id","value","class"]),Oe((p(),v("label",{for:le.value,class:"ml-2"},[ye(J(le.text),1)],8,L4)),[[ae,le.tooltip]])]),le.value===r.value.type&&le.value.indexOf("date")>-1?(p(),v("div",F4,[g("div",B4,[r.value.type==="date"&&t.eventType==="start"?(p(),v("label",j4," 00:00:00 of ")):r.value.type==="date"&&t.eventType==="end"?(p(),v("label",V4," 23:59:00 of ")):x("",!0),P(T,{modelValue:s.value,"onUpdate:modelValue":I[2]||(I[2]=A=>s.value=A),options:a.value,optionLabel:"label",style:{width:"12rem"},class:re({"p-invalid":ne(b).timingEventValue.$error}),onChange:I[3]||(I[3]=A=>e("clearPreset"))},null,8,["modelValue","options","class"]),ne(b).timingEventValue.$error?(p(),v("small",H4,J(ne(b).timingEventValue.$errors[0].$message),1)):x("",!0)]),s.value&&s.value.duster_field_name?(p(),v("div",N4,[z4,P(T,{modelValue:r.value.rp_date,"onUpdate:modelValue":I[4]||(I[4]=A=>r.value.rp_date=A),options:t.rpDates,optionLabel:"label",optionValue:"redcap_field_name",style:{width:"12rem"},class:re({"p-invalid":ne(b).timingEventRpDate.$error})},null,8,["modelValue","options","class"]),ne(b).timingEventRpDate.$error?(p(),v("small",K4,J(ne(b).timingEventRpDate.$errors[0].$message),1)):x("",!0)])):x("",!0)])):x("",!0),le.value===r.value.type&&le.value==="interval"?(p(),v("div",U4,[g("div",W4,[P(L,{modelValue:u.value,"onUpdate:modelValue":I[5]||(I[5]=A=>u.value=A),id:"intervalLength","input-id":"integeronly",min:1,class:re({"p-invalid":ne(b).timingEventInterval.length.$error}),"input-style":{width:"3rem"},placeholder:"# of",onValue:I[6]||(I[6]=A=>e("clearPreset"))},null,8,["modelValue","class"]),ne(b).timingEventInterval.length.$error?(p(),v("small",G4,J(ne(b).timingEventInterval.length.$errors[0].$message),1)):x("",!0)]),g("div",q4,[P(T,{modelValue:l.value,"onUpdate:modelValue":I[7]||(I[7]=A=>l.value=A),options:i.value,optionLabel:"text",optionValue:"value",style:{width:"10rem"},placeholder:"Hours / Days",class:re({"p-invalid":ne(b).timingEventInterval.type.$error}),onChange:I[8]||(I[8]=A=>e("clearPreset"))},null,8,["modelValue","options","class"]),ne(b).timingEventInterval.type.$error?(p(),v("small",Y4,J(ne(b).timingEventInterval.type.$errors[0].$message),1)):x("",!0)]),g("div",J4,[t.eventType==="start"&&t.otherTimingEvent?(p(),v("label",Z4," before End ("+J(t.otherTimingEvent.label)+") ",1)):x("",!0),t.eventType==="end"&&t.otherTimingEvent?(p(),v("label",X4," after Start ("+J(t.otherTimingEvent.label)+") ",1)):x("",!0)])])):x("",!0)]))),128)),ne(b).timingEventType.$error?(p(),v("small",Q4,J(ne(b).timingEventType.$errors[0].$message),1)):x("",!0)])])])}}}),xa={label:"",form_name:"",type:"nonrepeating",timing_preset:void 0,timing_valid:!1,timing:{start:JSON.parse(JSON.stringify(Bt)),end:JSON.parse(JSON.stringify(Bt)),repeat_interval:{...Kt}},aggregate_defaults:void 0,event:[JSON.parse(JSON.stringify(Bt))],closest_time:"",data:{labs:[],vitals:[],outcomes:[],scores:[],valid:!1},id:"Undefined"},e7={class:"field grid mt-2"},t7={class:"col-2",for:"presets"},n7={class:"ml-2 pi pi-info-circle",style:{color:"blue"}},r7={class:"card"},i7={class:"card"},o7={class:"card"},a7={class:"field grid"},l7={class:"col-offset-2 col-12 md:col-10"},s7={class:"ml-2",for:"hasRepeatIntervals"},u7={class:"ml-2 pi pi-info-circle",style:{color:"blue"}},c7={key:0,class:"field grid"},d7=g("div",{class:"col-12 mt-2 md:col-2 md:mb-0"},[g("label",null,"Collect Data Every: ")],-1),p7={class:"col-12 md:col-10"},f7={class:"formgroup-inline"},m7={class:"field"},h7={key:0,class:"flex p-error mb-3"},g7={class:"field"},v7={class:"mt-2"},y7={key:0,class:"flex p-error mb-3"},b7=bt({__name:"TimingDialog",props:{collectionWindow:{type:Object,required:!0},presets:{type:Array,required:!0},eventOptions:{type:Array,required:!0},rpDates:{type:Array,required:!0},showTimingDialog:{type:Boolean,required:!0}},emits:["update:showTimingDialog","saveTimingUpdate"],setup(t,{emit:e}){const n=t,r=X({get(){return n.showTimingDialog},set(T){e("update:showTimingDialog",T)}}),o=fe(JSON.parse(JSON.stringify(xa)));ut(r,T=>{T&&(o.value=JSON.parse(JSON.stringify(n.collectionWindow)))}),X(()=>o.value.timing.start.type==="datetime"||o.value.timing.end.type==="datetime"?zn.filter(T=>T.value==="hour"):o.value.timing.start.type==="date"||o.value.timing.end.type==="date"?zn.filter(T=>T.value==="day"):zn);const i=X({get(){var T;return((T=o.value.timing.repeat_interval)==null?void 0:T.type)??void 0},set(T){o.value.timing.repeat_interval||(o.value.timing.repeat_interval={...Kt}),o.value.timing.repeat_interval.type=T}}),a=X({get(){var T;return((T=o.value.timing.repeat_interval)==null?void 0:T.length)??void 0},set(T){o.value.timing.repeat_interval||(o.value.timing.repeat_interval={...Kt}),o.value.timing.repeat_interval.length=T}});In(()=>{o.value.timing.repeat_interval&&a.value&&a.value>=0&&i.value&&(o.value.timing.repeat_interval.label="Every "+a.value+" "+i.value+"(s) ")});const l=X({get(){return o.value.type==="repeating"},set(T){o.value.type=T?"repeating":"nonrepeating"}}),u=X(()=>!(o.value.timing&&o.value.timing.start&&o.value.timing.end&&o.value.timing.start.type&&o.value.timing.end.type));In(()=>{l.value?(o.value.timing.repeat_interval||(o.value.timing.repeat_interval={...Kt}),o.value.timing.start.type==="datetime"||o.value.timing.end.type==="datetime"?o.value.timing.repeat_interval.type="hour":(o.value.timing.start.type==="date"||o.value.timing.end.type==="date")&&(o.value.timing.repeat_interval.type="day")):(o.value.timing.repeat_interval=void 0,a.value=void 0,i.value=void 0)});const s=fe();ut(s,T=>{if(T){const L=o.value.timing.start.rp_date,ae=o.value.timing.end.rp_date;o.value.timing.start=JSON.parse(JSON.stringify(T.timing.start)),o.value.timing.end=JSON.parse(JSON.stringify(T.timing.end)),o.value.label=T.label,o.value.timing.start.rp_date=L&&T.timing.start.type!=="interval"?L:n.rpDates[0].redcap_field_name,o.value.timing.end.rp_date=ae&&T.timing.end.type!=="interval"?ae:n.rpDates[0].redcap_field_name,o.value.type=T.type,o.value.timing.repeat_interval=JSON.parse(JSON.stringify(T.timing.repeat_interval))}});const c=fe(),d=Ne.regex(/^[1-9][0-9]*$/),m=X(()=>({timingRepeatIntervalLength:a.value,timingRepeatIntervalType:i.value})),f=X(()=>({timingRepeatIntervalLength:{requiredIf:Ne.withMessage("Repeat interval length required",$t(l.value)),positiveInteger:Ne.withMessage("Value must be a positive integer",d)},timingRepeatIntervalType:{requiredIf:Ne.withMessage("Repeat interval type required",$t(l.value))}})),y=er(f,m),b=ol(),S=()=>{y.value.$touch(),console.log("Validation errors :"+y.value.$error),console.log(y.value),I(),y.value.$error?y.value.$errors.forEach(T=>b.add({severity:"error",summary:"Unable To Save",detail:T.$message,life:3e3})):(r.value=!1,e("saveTimingUpdate",o.value),y.value.$reset())},_=()=>{I(),r.value=!1,y.value.$reset()},I=()=>{s.value=void 0},V=()=>{I(),o.value.label="",o.value.type="nonrepeating",o.value.timing.start=JSON.parse(JSON.stringify(Bt)),o.value.timing.end=JSON.parse(JSON.stringify(Bt)),o.value.timing_valid=!1,a.value=void 0,i.value=void 0,o.value.timing.repeat_interval={...Kt}};return(T,L)=>{const ae=N("Dropdown"),le=N("Divider"),A=N("Checkbox"),te=N("InputNumber"),se=N("Button"),pe=N("Dialog"),F=Xe("tooltip");return p(),$(pe,{visible:r.value,"onUpdate:visible":L[7]||(L[7]=D=>r.value=D),modal:!0,style:{width:"75vw"},header:"Data Collection Timing",class:"my-2"},{footer:M(()=>[P(se,{label:"Save",class:"p-button-primary",size:"small",icon:"pi pi-check",onClick:S}),P(se,{label:"Cancel",class:"p-button-secondary",size:"small",icon:"pi pi-times",onClick:_}),P(se,{label:"Reset",class:"p-button p-button-secondary",size:"small",onClick:V})]),default:M(()=>[g("div",e7,[g("label",t7,[ye("Presets: "),Oe(g("i",n7,null,512),[[F,"Common preset configurations"]])]),P(ae,{class:"col-6",options:t.presets,id:"presets",modelValue:s.value,"onUpdate:modelValue":L[0]||(L[0]=D=>s.value=D),optionLabel:"label"},null,8,["options","modelValue"])]),P(le),g("div",r7,[P($u,{"timing-object":o.value.timing.start,"onUpdate:timingObject":L[1]||(L[1]=D=>o.value.timing.start=D),"event-type":"start","time-type-options":ne(I6),"event-options":t.eventOptions,"rp-dates":t.rpDates,"other-timing-event":o.value.timing.end,instigator:c.value,onInstigate:L[2]||(L[2]=D=>c.value=D),onClearPreset:I},null,8,["timing-object","time-type-options","event-options","rp-dates","other-timing-event","instigator"])]),P(le),g("div",i7,[P($u,{"timing-object":o.value.timing.end,"onUpdate:timingObject":L[3]||(L[3]=D=>o.value.timing.end=D),"event-type":"end","time-type-options":ne(k6),"event-options":t.eventOptions,"rp-dates":t.rpDates,"other-timing-event":o.value.timing.start,instigator:c.value,onClearPreset:I,onInstigate:L[4]||(L[4]=D=>c.value=D)},null,8,["timing-object","time-type-options","event-options","rp-dates","other-timing-event","instigator"])]),P(le),g("div",o7,[g("div",a7,[g("div",l7,[Oe(P(A,{"input-id":"hasRepeatIntervals",modelValue:l.value,"onUpdate:modelValue":L[5]||(L[5]=D=>l.value=D),binary:!0,disabled:u.value},null,8,["modelValue","disabled"]),[[F,"Start and end points must be defined before configuring repeat intervals."]]),g("label",s7,[ye(" Repeat Data Collection at defined intervals between Start & End? "),Oe(g("i",u7,null,512),[[F,"Collect data multiple times in the collection window at the defined intervals."]])])])]),l.value?(p(),v("div",c7,[d7,g("div",p7,[g("div",f7,[g("div",m7,[P(te,{modelValue:a.value,"onUpdate:modelValue":L[6]||(L[6]=D=>a.value=D),id:"repeatIntervalLength","input-id":"integeronly",min:1,class:re({"p-invalid":ne(y).timingRepeatIntervalLength.$error}),"input-style":{width:"3rem"},placeholder:"# of"},null,8,["modelValue","class"]),ne(y).timingRepeatIntervalLength.$error?(p(),v("small",h7,J(ne(y).timingRepeatIntervalLength.$errors[0].$message),1)):x("",!0)]),g("div",g7,[g("label",v7,J(i.value)+"(s) between Start and End Date/Datetimes",1),ne(y).timingRepeatIntervalType.$error?(p(),v("small",y7,J(ne(y).timingRepeatIntervalType.$errors[0].$message),1)):x("",!0)])])])])):x("",!0)]),P(ne(mo))]),_:1},8,["visible"])}}}),Jt=t=>(ac("data-v-ddd0cefd"),t=t(),lc(),t),w7={class:"p-panel-title"},C7=Jt(()=>g("strong",null,"From: ",-1)),_7=Jt(()=>g("br",null,null,-1)),S7=Jt(()=>g("strong",null,"To: ",-1)),O7=Jt(()=>g("br",null,null,-1)),P7={key:0},I7=Jt(()=>g("strong",null,"Repeat:",-1)),k7={key:1},x7={key:0,class:"flex p-error mb-3"},T7={key:0,class:"flex p-error mb-3"},E7={class:"text-right"},D7=Jt(()=>g("p",{class:"w-full",style:{"text-align":"center"}}," No Data Collection Windows have been added. ",-1)),R7=Jt(()=>g("p",null," Clinical data is partly defined by relative windows of time. ",-1)),$7=Jt(()=>g("p",null,[ye(" DUSTER uses Data Collection Windows to apply this concept of creating windows of time in which you'd like to gather clinical data. "),g("br"),ye(" Each Data Collection Window will appear in the form of REDCap Instruments in your project. "),g("br"),ye(" Within each window, you may add your desired clinical data. ")],-1)),A7=Jt(()=>g("p",null," You may create Data Collection Windows below with the options to choose among preset configurations or to configure from scratch. ",-1)),M7=bt({__name:"CollectionWindowsPanel",props:{labOptions:{type:Array,required:!0},vitalOptions:{type:Array,required:!0},outcomeOptions:{type:Array,required:!0},scoreOptions:{type:Array,required:!0},clinicalDateOptions:{type:Array,required:!0},rpDates:{type:Array,required:!0},collectionWindows:{type:Array,required:!0},initialWindows:{type:Array,required:!0}},emits:["update:collectionWindows"],setup(t,{emit:e}){const n=t,r=fe(JSON.parse(JSON.stringify(xa))),o=fe(),i=fe(!1),a=fe(!1),l=fe(!1),u=X({get(){return n.collectionWindows},set(D){e("update:collectionWindows",D)}}),s=X(()=>Array.isArray(n.initialWindows)?n.initialWindows.map(D=>D.id):[]);di(()=>{if(u.value){let D=pe("Undefined",u.value);u.value.splice(D,1)}L.value.$reset()});const c=()=>{r.value=JSON.parse(JSON.stringify(xa)),r.value.id="cw"+new Date().getTime(),u.value||(u.value=[]),u.value.push(r.value),m(u.value[u.value.length-1])},d=D=>{r.value=D,o.value=JSON.parse(JSON.stringify(D))},m=D=>{r.value=D,i.value=!0},f=fe([]),y=(D,Y)=>{switch(d(Y),S.value=D,f.value.length=0,D){case"labs":f.value.push(0);break;case"vitals":f.value.push(1);break;case"outcomes":f.value.push(2);break;case"scores":f.value.push(3)}a.value=!0},b=X(()=>{let D=[];return n.clinicalDateOptions&&n.clinicalDateOptions.forEach(Y=>{let ve={type:"datetime",label:Y.label,redcap_field_name:void 0,redcap_field_type:Y.redcap_field_type,duster_field_name:Y.duster_field_name,value_type:Y.value_type,preposition:"",phi:"t",rp_date:void 0,interval:void 0};D.push(ve)}),n.rpDates&&n.rpDates.forEach(Y=>{let ve=Y.value_type=="date"?"date":"datetime";D.push({type:ve,label:Y.label,redcap_field_name:Y.redcap_field_name,interval:void 0,rp_date:Y.redcap_field_name,redcap_field_type:Y.redcap_field_type,duster_field_name:void 0,value_type:Y.value_type,phi:"t"})}),D}),S=fe(),_=D=>!!(L.value.localCollectionWindows.$each.$response&&L.value.localCollectionWindows.$each.$response.$errors&&L.value.localCollectionWindows.$each.$response.$errors[D]&&L.value.localCollectionWindows.$each.$response.$errors[D].label.length),I=(D,Y,ve)=>u.value.findIndex(ce=>ce.id!=Y.id&&ce.label==D)==-1,V=X(()=>({localCollectionWindows:u.value})),T={localCollectionWindows:{$each:Ne.forEach({label:{required:Ne.withMessage("Labels are required",gr),uniqueLabel:Ne.withMessage("Labels must be unique",I)},timing_valid:{sameAs:Ne.withMessage("Timing Configuration is invalid.",V6(!0))}})}},L=er(T,V,{$lazy:!0}),ae=D=>{if(D&&D.id){let Y=pe(D.id,u.value);u.value&&Y>-1&&(u.value[Y].type=D.type,u.value[Y].timing_valid=!0,u.value[Y].label=D.label,u.value[Y].timing.start=D.timing.start,u.value[Y].timing.end=D.timing.end,u.value[Y].timing.repeat_interval=D.timing.repeat_interval)}L.value.$reset()},le=()=>{L.value.$reset()},A=()=>{if(u.value&&r.value&&r.value.id){let D=pe(r.value.id,u.value);o.value&&D>-1&&(u.value[D]=o.value,r.value=u.value[D])}le()},te=D=>{if(u.value){let Y=pe(D,u.value);u.value.splice(Y,1)}},se=D=>{if(u.value){const Y=pe(D,u.value),ve=JSON.parse(JSON.stringify(u.value[Y]));ve.id="cw"+new Date().getTime(),u.value.push(ve)}},pe=(D,Y)=>Y.findIndex(ve=>ve.id===D),F=D=>n.initialWindows.find(ve=>ve.id===D);return(D,Y)=>{const ve=N("Button"),ce=N("Column"),_e=N("InputText"),he=N("Badge"),z=N("DataTable"),H=N("Panel"),k=N("Dialog"),R=Xe("tooltip");return p(),v(oe,null,[P(H,null,{header:M(()=>[g("span",w7,[ye("Data Collection Windows "),P(ve,{icon:"pi pi-info-circle",text:"",rounded:"","aria-label":"Info",class:"ml-2 pt-0 pb-0 mt-0 mb-0",style:{height:"1.3em"},onClick:Y[0]||(Y[0]=G=>l.value=!0)})])]),default:M(()=>[P(z,{editMode:"row",class:"p-datatable-sm",value:u.value,dataKey:"id"},{footer:M(()=>[g("div",E7,[P(ve,{label:"Add Data Collection Window",icon:"pi pi-plus",severity:"success",class:"mr-2",onClick:c})])]),empty:M(()=>[D7]),default:M(()=>[P(ce,{key:"timing_config",header:"Timing",style:{width:"5%"}},{body:M(({data:G})=>[Oe(P(ve,{icon:"pi pi-pencil",class:"ml-2 p-1",size:"small",severity:!ne(L).$dirty||G.timing_valid?"primary":"danger",disabled:s.value.includes(G.id),onClick:Ce=>m(G)},null,8,["severity","disabled","onClick"]),[[R,"Configure Timing",void 0,{top:!0}]])]),_:1}),P(ce,{key:"timing_display",header:"Period",style:{width:"20%"}},{body:M(({data:G})=>[G.timing.start.label?(p(),v("div",{key:0,class:re({"p-invalid":!G.timing_valid})},[C7,ye(J(G.timing.start.label),1),_7,S7,ye(J(G.timing.end.label),1),O7,G.timing.repeat_interval&&G.timing.repeat_interval.label?(p(),v("span",P7,[I7,ye(" "+J(G.timing.repeat_interval.label),1)])):x("",!0)],2)):(p(),v("div",k7," "))]),_:1}),P(ce,{key:"label",field:"label",header:"Label",style:{width:"25%"}},{body:M(G=>[g("div",null,[P(_e,{modelValue:G.data[G.field],"onUpdate:modelValue":Ce=>G.data[G.field]=Ce,class:re(["p-inputtext-sm","w-11",{"p-invalid":_(G.index)}]),onChange:Y[1]||(Y[1]=Ce=>ne(L).value.$reset()),disabled:s.value.includes(G.data.id)},null,8,["modelValue","onUpdate:modelValue","class","disabled"]),_(G.index)?(p(),v("small",x7,J(ne(L).localCollectionWindows.$each.$response.$errors[G.index].label[0].$message),1)):x("",!0)])]),_:1}),P(ce,{key:"data",field:"data",header:"Clinical Data",style:{width:"40%"}},{body:M(G=>[P(ve,{onClick:Ce=>y("labs",G.data),size:"small",class:"ml-1 p-1 pr-2 pl-2",rounded:"",severity:ne(L).$dirty&&!G.data[G.field].valid?"danger":"primary"},{default:M(()=>[ye(" Labs"),P(he,{class:"p-badge-no-gutter"},{default:M(()=>[ye(J(G.data[G.field].labs.length),1)]),_:2},1024)]),_:2},1032,["onClick","severity"]),P(ve,{onClick:Ce=>y("vitals",G.data),size:"small",class:"ml-1 p-1 pr-2 pl-2",rounded:"",severity:ne(L).$dirty&&!G.data[G.field].valid?"danger":"primary"},{default:M(()=>[ye(" Vitals"),P(he,{class:"p-badge-no-gutter"},{default:M(()=>[ye(J(G.data[G.field].vitals.length),1)]),_:2},1024)]),_:2},1032,["onClick","severity"]),P(ve,{onClick:Ce=>y("outcomes",G.data),size:"small",class:"ml-1 p-1 pr-2 pl-2",rounded:""},{default:M(()=>[ye(" Outcomes"),P(he,{class:"p-badge-no-gutter"},{default:M(()=>[ye(J(G.data[G.field].outcomes.length),1)]),_:2},1024)]),_:2},1032,["onClick"]),P(ve,{onClick:Ce=>y("scores",G.data),size:"small",class:"ml-1 p-1 pr-2 pl-2",rounded:""},{default:M(()=>[ye(" Scores"),P(he,{class:"p-badge-no-gutter"},{default:M(()=>[ye(J(G.data[G.field].scores.length),1)]),_:2},1024)]),_:2},1032,["onClick"]),ne(L).$dirty&&!G.data[G.field].valid?(p(),v("small",T7,J(G.data[G.field].errors[0].$message),1)):x("",!0)]),_:1}),P(ce,{key:"id",field:"id",header:"Actions",style:{width:"10%"}},{body:M(({data:G,field:Ce})=>[Oe(P(ve,{icon:"pi pi-copy",outlined:"",rounded:"",severity:"success",class:"ml-2 p-1 small-icon",size:"small",onClick:De=>se(G[Ce])},null,8,["onClick"]),[[R,"Duplicate Data Collection Window",void 0,{top:!0}]]),s.value.includes(G.id)?x("",!0):Oe((p(),$(ve,{key:0,icon:"pi pi-trash",outlined:"",rounded:"",severity:"danger",class:"ml-2 p-1 small-icon",size:"small",onClick:De=>te(G[Ce])},null,8,["onClick"])),[[R,"Delete Data Collection Window",void 0,{top:!0}]])]),_:1})]),_:1},8,["value"])]),_:1}),P(b7,{"show-timing-dialog":i.value,"onUpdate:showTimingDialog":Y[2]||(Y[2]=G=>i.value=G),"collection-window":r.value,"event-options":b.value,"rp-dates":t.rpDates,presets:ne(O9).cw_presets,onSaveTimingUpdate:ae,onCancelTimingUpdate:Y[3]||(Y[3]=G=>i.value=!1),"onUpdate:visible":Y[4]||(Y[4]=G=>i.value=!1)},null,8,["show-timing-dialog","collection-window","event-options","rp-dates","presets"]),P(T4,{"show-clinical-data-dialog":a.value,"onUpdate:showClinicalDataDialog":Y[5]||(Y[5]=G=>a.value=G),"clinical-data":r.value.data,"onUpdate:clinicalData":Y[6]||(Y[6]=G=>r.value.data=G),"aggregate-defaults":r.value.aggregate_defaults,"onUpdate:aggregateDefaults":Y[7]||(Y[7]=G=>r.value.aggregate_defaults=G),"initial-window":F(r.value.id),"clinical-data-category":S.value,timing:r.value.timing,"lab-options":t.labOptions,"vital-options":t.vitalOptions,"score-options":t.scoreOptions,"outcome-options":t.outcomeOptions,"active-options":f.value,"onUpdate:activeOptions":Y[8]||(Y[8]=G=>f.value=G),"closest-to-event":r.value.event,"onUpdate:closestToEvent":Y[9]||(Y[9]=G=>r.value.event=G),"closest-to-time":r.value.closest_time,"onUpdate:closestToTime":Y[10]||(Y[10]=G=>r.value.closest_time=G),"event-options":b.value,"rp-dates":t.rpDates,"onUpdate:visible":A,onSaveClinicalDataUpdate:le,onCancelClinicalDataUpdate:A},null,8,["show-clinical-data-dialog","clinical-data","aggregate-defaults","initial-window","clinical-data-category","timing","lab-options","vital-options","score-options","outcome-options","active-options","closest-to-event","closest-to-time","event-options","rp-dates"]),P(k,{visible:l.value,"onUpdate:visible":Y[12]||(Y[12]=G=>l.value=G),modal:"",header:"Data Collection Windows",style:{width:"50vw"}},{footer:M(()=>[P(ve,{onClick:Y[11]||(Y[11]=G=>l.value=!1)},{default:M(()=>[ye("Close")]),_:1})]),default:M(()=>[R7,$7,A7]),_:1},8,["visible"])],64)}}});const bp=(t,e)=>{const n=t.__vccOpts||t;for(const[r,o]of e)n[r]=o;return n},L7=bp(M7,[["__scopeId","data-v-ddd0cefd"]]),F7={class:"flex flex-wrap align-items-center justify-content-between gap-2"},B7=g("span",{class:"text-0 text-900 font-bold"},"REDCap values",-1),j7={class:"font-bold"},V7=bt({__name:"ScoreSummaryTablePerScore",props:{score:{type:Array,required:!0},scoreLabel:String},emits:["update:score"],setup(t,{emit:e}){const n=t,r=X({get(){return n.score},set(s){e("update:score",s)}});X(()=>n.scoreLabel);const o=fe(r.value.map(s=>s.label)),i=fe(!0),a=fe(!1),l=()=>{a.value=!1,o.value=[],o.value=r.value.map(s=>s.label)},u=()=>{i.value=!1,o.value=[]};return(s,c)=>{const d=N("Button"),m=N("Column"),f=N("DataTable"),y=N("Panel");return p(),$(y,{header:t.scoreLabel},{default:M(()=>[P(f,{rowGroupMode:"subheader",groupRowsBy:"category",value:r.value,sortMode:"single",sortField:"category",sortOrder:1,expandedRowGroups:o.value,"onUpdate:expandedRowGroups":c[0]||(c[0]=b=>o.value=b),expandableRowGroups:"",onRowgroupExpand:c[1]||(c[1]=b=>a.value=!1),onRowgroupCollapse:c[2]||(c[2]=b=>i.value=!1)},{header:M(()=>[g("div",F7,[B7,g("span",null,[P(d,{text:"",icon:"pi pi-plus",label:"Expand All",onClick:l}),P(d,{text:"",icon:"pi pi-minus",label:"Collapse All",onClick:u})])])]),groupheader:M(b=>[g("span",j7,J(b.data.category),1)]),default:M(()=>[P(m,{field:"",header:""}),P(m,{field:"label",header:"Label"}),P(m,{field:"redcap_field_name",header:"REDCap Field Name"})]),_:1},8,["value","expandedRowGroups"])]),_:1},8,["header"])}}}),H7=g("div",{class:"flex flex-wrap align-items-center justify-content-between gap-2"},[g("span",{class:"text-sm text-900 font-bold"},"Identifiers")],-1),N7=g("div",{class:"flex flex-wrap align-items-center justify-content-between gap-2"},[g("span",{class:"text-sm text-900 font-bold"},"Dates and Datetimes")],-1),z7=g("div",{class:"flex flex-wrap align-items-center justify-content-between gap-2"},[g("span",{class:"text-0 text-900 font-bold"},"Timing")],-1),K7=g("div",{class:"flex flex-wrap align-items-center justify-content-between gap-2"},[g("span",{class:"text-0 text-900 font-bold"},"Repeat Instance")],-1),U7=g("div",{class:"flex flex-wrap align-items-center justify-content-between gap-2"},[g("span",{class:"text-0 text-900 font-bold"},"Labs")],-1),W7=g("div",{class:"flex flex-wrap align-items-center justify-content-between gap-2"},[g("span",{class:"text-0 text-900 font-bold"},"Vitals")],-1),G7=g("div",{class:"flex flex-wrap align-items-center justify-content-between gap-2"},[g("span",{class:"text-0 text-900 font-bold"},"Outcomes")],-1),q7=bt({__name:"ReviewPanel",props:{dev:{type:Boolean},showSummary:{type:Boolean,required:!0},rpData:{type:Array,required:!0},rpIdentifiers:{type:Array,required:!0},rpDates:{type:Array,required:!0},demographics:{type:Array,required:!0},collectionWindows:{type:Array,required:!0},projectInfo:{type:Object,required:!0}},emits:["update:showSummary","delete-auto-save"],setup(t,{emit:e}){const n=t,r=X({get(){return n.showSummary},set(z){e("update:showSummary",z)}}),o=fe([]),i=fe([]),a=fe([]);ut(r,z=>{z&&(i.value=JSON.parse(JSON.stringify(n.rpDates)),a.value=JSON.parse(JSON.stringify(n.demographics)),o.value=JSON.parse(JSON.stringify(n.collectionWindows)))});const l=X(()=>n.projectInfo.edit_mode),u=X(()=>{const z={rp_identifiers:{},rp_dates:{}};z.rp_identifiers=JSON.parse(JSON.stringify(n.rpIdentifiers));for(let H of i.value)H.redcap_field_name&&(z.rp_dates[H.redcap_field_name]={label:H.label,redcap_field_name:H.redcap_field_name,redcap_field_type:H.redcap_field_type,value_type:H.value_type,phi:H.phi});return z}),s=X(()=>{const z=[];return a.value&&a.value.forEach(H=>z.push({duster_field_name:H.duster_field_name,redcap_field_name:H.duster_field_name,redcap_field_type:H.redcap_field_type,label:H.label,value_type:H.value_type,phi:H.phi})),z}),c=X(()=>{const z=[];return o.value&&o.value.forEach((H,k)=>{let R={type:H.type,label:H.label,form_name:d(k,H.label),timing:y(H.timing,k),event:H.event?b(H.event,k):[]};const G=H.closest_time?H.closest_time+":00":void 0;R.data=V(H.data,k,H.aggregate_defaults,R.event,G),z.push(R)}),z}),d=(z,H)=>{let k="cw"+z+"_"+H.trim().toLowerCase().replace(/ +/g,"_").replace(/[^a-z_0-9]/g,"").replace(/[_+]/g,"_").replace(/_$/g,"");return k=k.substring(0,50),k},m=(z,H)=>{let k=[];return k.push({event:"Start",label:z.start.label,redcap_field_name:z.start.redcap_field_name,redcap_field_type:z.start.redcap_field_type,value_type:z.start.value_type,type:z.start.type}),k.push({event:"End",label:z.end.label,redcap_field_name:z.end.redcap_field_name,redcap_field_type:z.end.redcap_field_type,value_type:z.start.value_type,type:z.start.type}),H&&H.forEach(R=>{k.push({event:"Closest to Event",label:R.label,redcap_field_name:R.redcap_field_name,redcap_field_type:R.redcap_field_type,value_type:R.value_type,type:R.type})}),k},f=z=>{if(z.repeat_interval)return[{event:"Instance Start",label:"Instance Start Datetime - "+z.repeat_interval.label,redcap_field_name:I(z.start.redcap_field_name),redcap_field_type:"text",type:"datetime"},{event:"Interval End",label:"Interval End Datetime - "+z.repeat_interval.label,redcap_field_name:I(z.end.redcap_field_name),redcap_field_type:"text",type:"datetime"}]},y=(z,H)=>{let k={start:_(z.start,H,"start"),end:_(z.end,H,"end")};return z.repeat_interval&&z.repeat_interval.type&&(k.repeat_interval={...z.repeat_interval},k.repeat_interval.start_instance=S(k,"start"),k.repeat_interval.end_instance=S(k,"end")),k},b=(z,H)=>{let k=[];return z&&z.forEach((R,G)=>{R.type&&k.push(_(R,H,"closest_event"+G))}),k},S=(z,H)=>({label:"Instance "+xn(H)+" Datetime - "+z.repeat_interval.label,redcap_field_name:I(z[H].redcap_field_name),phi:"t",redcap_field_type:"text",value_type:"datetime"}),_=(z,H,k)=>{let R={type:z.type,label:z.label,redcap_field_name:"cw"+H+"_"+k+"_datetime",phi:"t",redcap_field_type:"text"};if(z.type=="interval"&&z.interval)R.interval={},R.interval.type=z.interval.type,R.interval.length=z.interval.length,R.value_type="datetime";else if(R.value_type=z.value_type,z.duster_field_name)R.duster_field_name=z.duster_field_name,R.rp_date=z.rp_date;else{let G=i.value.findIndex(Ce=>Ce.redcap_field_name==z.rp_date);G>-1&&(R.rp_date=z.redcap_field_name,R.label=i.value[G].label,R.duster_field_name=null)}return R},I=z=>{if(z){const H=z.indexOf("_datetime");return z.substring(0,H)+"_interval"+z.substring(H)}return""},V=(z,H,k,R,G)=>{let Ce={};return Ce.labs=T(z.labs,H,k,R,G),Ce.vitals=T(z.vitals,H,k,R,G),Ce.outcomes=L(z.outcomes,H),Ce.scores=A(z.scores,H),Ce},T=(z,H,k,R,G)=>{let Ce=[],De=R&&R[0]?R[0]:Bt;for(let Le of z){let Ie=Le.aggregates&&Le.aggregates.length>0?Le.aggregates:k||[];for(let ot of Ie){let Qe=ot.value.replace("_agg",""),ee={label:ae(Le.label,ot.value,De,G),duster_field_name:Le.duster_field_name,redcap_field_name:Le.duster_field_name+"_"+Qe+"_"+H,value_type:Le.value_type,redcap_field_type:Le.redcap_field_type,redcap_options:Le.redcap_options,redcap_field_note:Le.redcap_field_note,aggregate:ot.value};ot.value=="closest_event"&&De&&(ee.aggregate_options={},ee.aggregate_options.event=De.redcap_field_name),ot.value=="closest_time"&&(ee.aggregate_options={},ee.aggregate_options.time=G),Ce.push(ee)}}return Ce},L=(z,H)=>{let k=[];for(let R of z)k.push({label:R.label,duster_field_name:R.duster_field_name,redcap_field_name:R.duster_field_name+"_"+H,value_type:R.value_type,redcap_field_type:R.redcap_field_type,redcap_options:R.redcap_options,redcap_field_note:R.redcap_field_note});return k},ae=(z,H,k,R)=>{let G=cn.findIndex(De=>De.value==H),Ce=cn[G].text;return H=="closest_event"&&k?z+" "+Ce:H=="closest_time"?z+" "+Ce+" "+R:Ce+" "+z},le=z=>{let H=[];return z.subscores&&(z.subscores.forEach(k=>{k.dependencies&&k.dependencies.forEach(R=>{H.push({label:R.label,redcap_field_name:R.redcap_field_name,category:k.label})}),H.push({label:k.label,redcap_field_name:k.redcap_field_name,category:k.label})}),H.push({label:z.label,redcap_field_name:z.redcap_field_name,category:z.label})),H},A=(z,H)=>{const k=[];return z.forEach(R=>{const G=[];let Ce=R.redcap_options;R.subscores&&R.subscores.forEach(De=>{const Le=[];let Ie=De.redcap_options;De.dependencies&&De.dependencies.forEach(ee=>{if(ee.aggregates)ee.aggregates.forEach(W=>{let w=De.duster_field_name+"_"+ee.duster_field_name+"_"+W.replace("_agg","_")+H,O=new RegExp("\\["+ee.duster_field_name+"_"+W.replace("_agg","")+"\\]","g");Ie=Ie&&Ie.length>0?Ie.replace(O,"["+w+"]"):Ie,Le.push({duster_field_name:ee.duster_field_name,redcap_field_name:w,label:ae(ee.label?ee.label:"",W),redcap_field_type:ee.redcap_field_type,redcap_options:ee.redcap_options,value_type:ee.value_type,redcap_field_note:ee.redcap_field_note,aggregate:W})});else{let W=De.duster_field_name+"_"+ee.duster_field_name+"_"+H,w=new RegExp("\\["+ee.duster_field_name+"\\]","g");Ie=Ie&&Ie.length>0?Ie.replace(w,"["+W+"]"):Ie,Le.push({duster_field_name:ee.duster_field_name,redcap_field_name:W,label:ee.label,redcap_field_type:ee.redcap_field_type,redcap_options:ee.redcap_options,value_type:ee.value_type,redcap_field_note:ee.redcap_field_note})}});let ot=De.duster_field_name+"_"+H,Qe=new RegExp("\\["+De.duster_field_name+"\\]","g");Ce=Ce&&Ce.length>0?Ce.replace(Qe,"["+ot+"]"):Ce,G.push({duster_field_name:De.duster_field_name,redcap_field_name:De.duster_field_name+"_"+H,score_duster_field_name:R.duster_field_name,label:De.label,redcap_field_type:De.redcap_field_type,redcap_field_note:De.redcap_field_note,redcap_options:Ie,value_type:De.value_type,dependencies:Le})}),k.push({duster_field_name:R.duster_field_name,redcap_field_name:R.duster_field_name+"_"+H,label:R.label,redcap_field_type:R.redcap_field_type,redcap_field_note:R.redcap_field_note,redcap_options:Ce,value_type:R.value_type,subscores:G})}),k},te=fe(!1),se=fe(""),pe=fe(!1),F=fe(""),D=fe(!1),Y=()=>JSON.parse(JSON.stringify({rp_info:u.value,demographics:s.value,collection_windows:c.value})),ve=()=>JSON.parse(JSON.stringify({rpData:n.rpData,demographicsSelects:n.demographics,collectionWindows:n.collectionWindows})),ce=z=>{te.value=!1,F.value=z,D.value=!0},_e=()=>{if(se.value="Creating REDCap Project. Please wait.",te.value=!0,!n.dev){const z={surveys_enabled:n.projectInfo.surveys_enabled,repeatforms:n.projectInfo.repeatforms,scheduling:n.projectInfo.scheduling,randomization:n.projectInfo.randomization,app_title:n.projectInfo.app_title,purpose:n.projectInfo.purpose,project_pi_firstname:n.projectInfo.project_pi_firstname,project_pi_mi:n.projectInfo.project_pi_mi,project_pi_lastname:n.projectInfo.project_pi_lastname,project_pi_email:n.projectInfo.project_pi_email,project_pi_alias:n.projectInfo.project_pi_alias,project_irb_number:n.projectInfo.project_irb_number,purpose_other:n.projectInfo.purpose_other,project_note:n.projectInfo.project_note,projecttype:n.projectInfo.projecttype,repeatforms_chk:n.projectInfo.repeatforms_chk,project_template_radio:n.projectInfo.project_template_radio,config:Y(),design_config:ve()};let H=new FormData;H.append("redcap_csrf_token",n.projectInfo.redcap_csrf_token),H.append("data",JSON.stringify(z)),_t.post(n.projectInfo.create_project_url,H).then(function(k){if(k.data.toLowerCase().includes("fatal error")){ce("A project was not properly created and configured.");let R=new FormData;R.append("redcap_csrf_token",n.projectInfo.redcap_csrf_token),R.append("fatal_error",k.data),_t.post(n.projectInfo.report_fatal_error_url,R).then(function(G){}).catch(function(G){})}else k.data.toLowerCase().indexOf("error")>-1?ce("A project was not properly created and configured."):(e("delete-auto-save"),window.location.href=k.data)}).catch(function(k){if(k.response.status==400||k.response.status==500)switch(k.response.data){case"fail_project_post":ce("A project was created, but it was not properly configured.");break;case"fail_project":ce("A project was not created.");break;default:ce("A project was not properly created and configured.")}else ce("A project was not properly created and configured.")})}},he=()=>{se.value="Updating REDCap Project. Please wait.",te.value=!0;const z={redcap_project_id:n.projectInfo.redcap_project_id,config:Y(),design_config:ve()};let H=new FormData;H.append("redcap_csrf_token",n.projectInfo.redcap_csrf_token),H.append("data",JSON.stringify(z)),_t.post(n.projectInfo.update_project_url,H).then(function(k){if(console.log(k),k.data.toLowerCase().includes("fatal error")){ce("The project was not properly updated.");let R=new FormData;R.append("redcap_csrf_token",n.projectInfo.redcap_csrf_token),R.append("fatal_error",k.data),_t.post(n.projectInfo.report_fatal_error_url,R).then(function(G){}).catch(function(G){})}else k.data.toLowerCase().indexOf("error")>-1?ce("The project was not properly updated."):window.location.href=k.data}).catch(function(k){if(console.log(k),k.response.status==400||k.response.status==500)switch(k.response.data){case"fail_import":case"fail_duster_config":case"fail_rtosl_config":default:ce("The project was not properly updated.")}else ce("The project was not properly updated.")})};return(z,H)=>{const k=N("Column"),R=N("DataTable"),G=N("Panel"),Ce=N("Button"),De=N("Toolbar"),Le=N("Dialog");return p(),v(oe,null,[P(G,{header:"Review Settings"},{default:M(()=>[P(G,{header:"Researcher Provided Data"},{default:M(()=>[P(R,{value:t.rpIdentifiers,tableStyle:"min-width: 50rem"},{header:M(()=>[H7]),default:M(()=>[P(k,{field:"label",header:"Label"}),P(k,{field:"redcap_field_name",header:"REDCap Field Name"}),P(k,{field:"redcap_field_note",header:"Value Type"})]),_:1},8,["value"]),P(R,{value:t.rpDates,tableStyle:"min-width: 50rem mt-2"},{header:M(()=>[N7]),default:M(()=>[P(k,{field:"label",header:"Label"}),P(k,{field:"redcap_field_name",header:"REDCap Field Name"}),P(k,{field:"value_type",header:"Value Type"})]),_:1},8,["value"])]),_:1}),s.value.length>0?(p(),$(G,{key:0,header:"Demographics",class:"mt-2"},{default:M(()=>[P(R,{value:s.value,tableStyle:"min-width: 50rem"},{default:M(()=>[P(k,{field:"label",header:"Label"}),P(k,{field:"redcap_field_name",header:"REDCap Field Name"}),P(k,{field:"redcap_field_type",header:"REDCap Field Type"})]),_:1},8,["value"])]),_:1})):x("",!0),(p(!0),v(oe,null,Te(c.value,Ie=>(p(),$(G,{key:Ie.form_name,header:Ie.label,class:"mt-2"},{default:M(()=>[P(R,{value:m(Ie.timing,Ie.event),class:"mt-2",tableStyle:"min-width: 50rem"},{header:M(()=>[z7]),default:M(()=>[P(k,{field:"event",header:"Date"}),P(k,{field:"label",header:"Label"}),P(k,{field:"redcap_field_name",header:"REDCap Field Name"}),P(k,{field:"type",header:"Type"}),P(k,{field:"redcap_field_type",header:"REDCap Field Type"})]),_:2},1032,["value"]),Ie.timing.repeat_interval?(p(),$(R,{key:0,value:f(Ie.timing),class:"mt-2",tableStyle:"min-width: 50rem"},{header:M(()=>[K7]),default:M(()=>[P(k,{field:"event",header:"Date"}),P(k,{field:"label",header:"Label"}),P(k,{field:"redcap_field_name",header:"REDCap Field Name"}),P(k,{field:"type",header:"Type"}),P(k,{field:"redcap_field_type",header:"REDCap Field Type"})]),_:2},1032,["value"])):x("",!0),Ie.data.labs.length>0?(p(),$(R,{key:1,value:Ie.data.labs,class:"mt-2",tableStyle:"min-width: 50rem"},{header:M(()=>[U7]),default:M(()=>[P(k,{field:"label",header:"Label"}),P(k,{field:"redcap_field_name",header:"REDCap Field Name"}),P(k,{field:"redcap_field_note",header:"REDCap Field Note"})]),_:2},1032,["value"])):x("",!0),Ie.data.vitals.length>0?(p(),$(R,{key:2,value:Ie.data.vitals,class:"mt-2",tableStyle:"min-width: 50rem"},{header:M(()=>[W7]),default:M(()=>[P(k,{field:"label",header:"Label"}),P(k,{field:"redcap_field_name",header:"REDCap Field Name"}),P(k,{field:"redcap_field_note",header:"REDCap Field Note"})]),_:2},1032,["value"])):x("",!0),Ie.data.outcomes.length>0?(p(),$(R,{key:3,value:Ie.data.outcomes,class:"mt-2",tableStyle:"min-width: 50rem"},{header:M(()=>[G7]),default:M(()=>[P(k,{field:"label",header:"Label"}),P(k,{field:"redcap_field_name",header:"REDCap Field Name"}),P(k,{field:"redcap_field_type",header:"REDCap Field Type"}),P(k,{field:"redcap_options",header:"REDCap Options"})]),_:2},1032,["value"])):x("",!0),(p(!0),v(oe,null,Te(Ie.data.scores,(ot,Qe)=>(p(),v("div",{key:ot.duster_field_name},[P(V7,{score:le(ot),"score-label":Ie.data.scores[Qe].label,class:"mt-2"},null,8,["score","score-label"])]))),128))]),_:2},1032,["header"]))),128)),P(De,null,{start:M(()=>[P(Ce,{label:"Back",icon:"pi pi-angle-left",onClick:H[0]||(H[0]=Ie=>r.value=!1)})]),end:M(()=>[P(Ce,{label:l.value?"Update Project":"Create Project",icon:"pi pi-check",severity:"success",onClick:H[1]||(H[1]=Ie=>l.value?he():_e())},null,8,["label"])]),_:1})]),_:1}),P(Le,{visible:te.value,"onUpdate:visible":H[2]||(H[2]=Ie=>te.value=Ie),modal:"",closable:!1,style:{width:"50vw"},header:"Create Project"},{default:M(()=>[g("div",{class:re(["my-3",{"p-error":pe.value}])},J(se.value),3)]),_:1},8,["visible"]),D.value===!0?(p(),$(Ud,{key:0,"error-message":F.value,"onUpdate:errorMessage":H[3]||(H[3]=Ie=>F.value=Ie)},null,8,["error-message"])):x("",!0)],64)}}}),Y7={demographics:[{duster_field_name:"sex",label:"Sex",category:"demographics",value_type:"text",redcap_field_type:"text",redcap_options:"",redcap_field_note:"assigned at birth",phi:"",description:"Biological sex assigned at birth.",description_short:"Biological sex assigned at birth.",loinc_code:"",unit:"",note:"",related:"",mdcalc:"",pubmed:""},{duster_field_name:"race",label:"Race",category:"demographics",value_type:"text",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"",description:"",description_short:"",loinc_code:"",unit:"",note:"",related:"",mdcalc:"",pubmed:""},{duster_field_name:"ethnicity",label:"Ethnicity",category:"demographics",value_type:"text",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"",description:"",description_short:"",loinc_code:"",unit:"",note:"",related:"",mdcalc:"",pubmed:""},{duster_field_name:"first_name",label:"First Name",category:"demographics",value_type:"text",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"t",description:"",description_short:"",loinc_code:"",unit:"",note:"",related:"",mdcalc:"",pubmed:""},{duster_field_name:"last_name",label:"Last Name",category:"demographics",value_type:"text",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"t",description:"",description_short:"",loinc_code:"",unit:"",note:"",related:"",mdcalc:"",pubmed:""},{duster_field_name:"birth_date",label:"Birth Date",category:"demographics",value_type:"text",redcap_field_type:"date",redcap_options:"",redcap_field_note:"",phi:"t",description:"",description_short:"",loinc_code:"",unit:"",note:"",related:"",mdcalc:"",pubmed:""},{duster_field_name:"death_date",label:"Death Date",category:"demographics",value_type:"text",redcap_field_type:"date",redcap_options:"",redcap_field_note:"",phi:"t",description:"",description_short:"",loinc_code:"",unit:"",note:"",related:"",mdcalc:"",pubmed:""}],labs:[{duster_field_name:"na",label:"Sodium (Na)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mmol/L",phi:""},{duster_field_name:"k",label:"Potassium (K)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mmol/L",phi:""},{duster_field_name:"hct",label:"Hematocrit (Hct)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"%",phi:""},{duster_field_name:"wbc",label:"White Blood Count (WBC)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"(1x10^3 cells)/(mm^3)",phi:"",description:"This clinical lab measures the number of white blood cells in a patient's blood.",description_short:"This clinical lab measures the number of white blood cells in a patient's blood.",loinc_code:"6690-2",unit:"1 x 10^3 cells/uL",note:"",related:"rbc,hgb,hct,plt,apache2_score",mdcalc:"",pubmed:""},{duster_field_name:"pha",label:"pH (Arterial)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:""},{duster_field_name:"albumin",label:"Albumin (serum/plasma)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"g/L",phi:""},{duster_field_name:"alt",label:"ALT",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"U/L",phi:""},{duster_field_name:"ast",label:"AST",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"U/L",phi:""},{duster_field_name:"tbil",label:"Bilirubin Total",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mg/dL",phi:""},{duster_field_name:"bun",label:"Blood Urea Nitrogen (BUN)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mg/dL",phi:""},{duster_field_name:"ca",label:"Calcium (serum/plasma)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mg/dL",phi:""},{duster_field_name:"cl",label:"Chloride (Cl) (serum/plasma)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mEq/L",phi:""},{duster_field_name:"co2",label:"Bicarbonate / Carbon Dioxide (HCO3 / CO2)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mEq/L or mmol/L",phi:""},{duster_field_name:"crp",label:"C-Reactive Protein (CRP)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mg/dL",phi:""},{duster_field_name:"cr",label:"Creatinine (serum/plasma)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mg/dL",phi:""},{duster_field_name:"ddimer",label:"D-Dimer",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"ng/mL",phi:""},{duster_field_name:"ferritin",label:"Ferritin",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"ng/mL",phi:""},{duster_field_name:"glucose",label:"Glucose",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mg/dL",phi:""},{duster_field_name:"hgb",label:"Hgb",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"gm/dL",phi:""},{duster_field_name:"hba1c",label:"Hemoglobin A1c (HbA1c)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"%",phi:""},{duster_field_name:"il6",label:"IL6",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"pg/ml",phi:""},{duster_field_name:"inr",label:"INR",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:""},{duster_field_name:"lactate",label:"Lactate",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mg/dL",phi:""},{duster_field_name:"ldh",label:"LDH",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"IU/L",phi:""},{duster_field_name:"lymphocyte",label:"Lymphocytes",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"per mcL",phi:""},{duster_field_name:"ntprobnp",label:"NT-proBNP",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"pg/ml",phi:""},{duster_field_name:"paco2",label:"PaCO2",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mmHg",phi:""},{duster_field_name:"pao2",label:"PaO2",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mmHg",phi:""},{duster_field_name:"plt",label:"Platelets",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"per mcL",phi:""},{duster_field_name:"proctl",label:"Proctl",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"ng/mL",phi:""},{duster_field_name:"pt",label:"PT",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"sec",phi:""},{duster_field_name:"ptt",label:"PTT",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"sec",phi:""},{duster_field_name:"rbc",label:"Red Blood Cells",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"per mcL",phi:""},{duster_field_name:"troponin_i",label:"Troponin I",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"ng/mL",phi:""}],vitals:[{duster_field_name:"temp_c",label:"Temperature (Celsius)",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"Celsius",phi:""},{duster_field_name:"map",label:"Mean Arterial Pressure (MAP)",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mmHg",phi:""},{duster_field_name:"hr",label:"Heart Rate",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"beats/min",phi:""},{duster_field_name:"rr",label:"Respiratory Rate",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"breaths/min",phi:""},{duster_field_name:"gcs_total",label:"Glasgow Coma Scale (Total)",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:""},{duster_field_name:"fio2",label:"FiO2",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"%",phi:""},{duster_field_name:"height_cm",label:"Height (cm)",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"cm",phi:""},{duster_field_name:"weight_kg",label:"Weight (kg)",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"kg",phi:""},{duster_field_name:"bmi",label:"BMI (kg/m2)",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"kg/m2",phi:""},{duster_field_name:"pf_ratio",label:"P/F Ratio",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:""},{duster_field_name:"aa_gradient",label:"AA Gradient",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:""}],outcomes:[{duster_field_name:"o2_modes",label:"O2 Delivery Modes",category:"outcomes",value_type:"checkbox",redcap_field_type:"checkbox",redcap_options:"1, Room Air | 2, Nasal Cannula | 3, High Flow Nasal Cannula | 4, CPAP | 5, BiPAP | 6, ETT",redcap_field_note:"",phi:""},{duster_field_name:"cw_death",label:"Death within Collection Window",category:"outcomes",value_type:"boolean",redcap_field_type:"yesno",redcap_options:"",redcap_field_note:"",phi:""},{duster_field_name:"iv_pressors",label:"IV Pressors Used",category:"outcomes",value_type:"boolean",redcap_field_type:"yesno",redcap_options:"",redcap_field_note:"",phi:""},{duster_field_name:"age",label:"Age @ CW start",category:"outcomes",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:""},{duster_field_name:"epi_inf_rate",label:"Epinephrine Infusion Rate",category:"outcomes",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mcg/kg/min",phi:""},{duster_field_name:"dopamine_inf_rate",label:"Dopamine Infusion Rate",category:"outcomes",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mcg/kg/min",phi:""},{duster_field_name:"norepi_inf_rate",label:"Norepinephrine Infusion Rate",category:"outcomes",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mcg/kg/min",phi:""}],clinical_dates:[{duster_field_name:"hospital_presentation_datetime",label:"Hospital Presentation Datetime",category:"clinical_dates",value_type:"datetime",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"t"},{duster_field_name:"hospital_discharge_datetime",label:"Hospital Discharge Datetime",category:"clinical_dates",value_type:"datetime",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"t"},{duster_field_name:"ed_admission_datetime",label:"ED Admission Datetime",category:"clinical_dates",value_type:"datetime",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"t"},{duster_field_name:"ed_discharge_datetime",label:"ED Discharge Datetime",category:"clinical_dates",value_type:"datetime",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"t"},{duster_field_name:"first_icu_admission_datetime",label:"First ICU Admission Datetime",category:"clinical_dates",value_type:"datetime",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"t"}],scores:[{duster_field_name:"sofa_score",label:"SOFA Score",category:"scores",value_type:"text",redcap_field_type:"calc",redcap_options:`[sofa_tbil_subscore] + [sofa_cardio_subscore] + +`):" "+Cu(i[0]):"as no adapter specified";throw new $e("There is no suitable adapter to dispatch the request "+a,"ERR_NOT_SUPPORT")}return r},adapters:Sa};function jo(t){if(t.cancelToken&&t.cancelToken.throwIfRequested(),t.signal&&t.signal.aborted)throw new vi(null,t)}function _u(t){return jo(t),t.headers=Wt.from(t.headers),t.data=Bo.call(t,t.transformRequest),["post","put","patch"].indexOf(t.method)!==-1&&t.headers.setContentType("application/x-www-form-urlencoded",!1),up.getAdapter(t.adapter||bl.adapter)(t).then(function(r){return jo(t),r.data=Bo.call(t,t.transformResponse,r),r.headers=Wt.from(r.headers),r},function(r){return lp(r)||(jo(t),r&&r.response&&(r.response.data=Bo.call(t,t.transformResponse,r.response),r.response.headers=Wt.from(r.response.headers))),Promise.reject(r)})}const Su=t=>t instanceof Wt?t.toJSON():t;function Gn(t,e){e=e||{};const n={};function r(s,c,d){return U.isPlainObject(s)&&U.isPlainObject(c)?U.merge.call({caseless:d},s,c):U.isPlainObject(c)?U.merge({},c):U.isArray(c)?c.slice():c}function o(s,c,d){if(U.isUndefined(c)){if(!U.isUndefined(s))return r(void 0,s,d)}else return r(s,c,d)}function i(s,c){if(!U.isUndefined(c))return r(void 0,c)}function a(s,c){if(U.isUndefined(c)){if(!U.isUndefined(s))return r(void 0,s)}else return r(void 0,c)}function l(s,c,d){if(d in e)return r(s,c);if(d in t)return r(void 0,s)}const u={url:i,method:i,data:i,baseURL:a,transformRequest:a,transformResponse:a,paramsSerializer:a,timeout:a,timeoutMessage:a,withCredentials:a,adapter:a,responseType:a,xsrfCookieName:a,xsrfHeaderName:a,onUploadProgress:a,onDownloadProgress:a,decompress:a,maxContentLength:a,maxBodyLength:a,beforeRedirect:a,transport:a,httpAgent:a,httpsAgent:a,cancelToken:a,socketPath:a,responseEncoding:a,validateStatus:l,headers:(s,c)=>o(Su(s),Su(c),!0)};return U.forEach(Object.keys(Object.assign({},t,e)),function(c){const d=u[c]||o,m=d(t[c],e[c],c);U.isUndefined(m)&&d!==l||(n[c]=m)}),n}const cp="1.6.0",wl={};["object","boolean","number","function","string","symbol"].forEach((t,e)=>{wl[t]=function(r){return typeof r===t||"a"+(e<1?"n ":" ")+t}});const Ou={};wl.transitional=function(e,n,r){function o(i,a){return"[Axios v"+cp+"] Transitional option '"+i+"'"+a+(r?". "+r:"")}return(i,a,l)=>{if(e===!1)throw new $e(o(a," has been removed"+(n?" in "+n:"")),$e.ERR_DEPRECATED);return n&&!Ou[a]&&(Ou[a]=!0,console.warn(o(a," has been deprecated since v"+n+" and will be removed in the near future"))),e?e(i,a,l):!0}};function C6(t,e,n){if(typeof t!="object")throw new $e("options must be an object",$e.ERR_BAD_OPTION_VALUE);const r=Object.keys(t);let o=r.length;for(;o-- >0;){const i=r[o],a=e[i];if(a){const l=t[i],u=l===void 0||a(l,i,t);if(u!==!0)throw new $e("option "+i+" must be "+u,$e.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new $e("Unknown option "+i,$e.ERR_BAD_OPTION)}}const Oa={assertOptions:C6,validators:wl},nn=Oa.validators;class Ji{constructor(e){this.defaults=e,this.interceptors={request:new yu,response:new yu}}request(e,n){typeof e=="string"?(n=n||{},n.url=e):n=e||{},n=Gn(this.defaults,n);const{transitional:r,paramsSerializer:o,headers:i}=n;r!==void 0&&Oa.assertOptions(r,{silentJSONParsing:nn.transitional(nn.boolean),forcedJSONParsing:nn.transitional(nn.boolean),clarifyTimeoutError:nn.transitional(nn.boolean)},!1),o!=null&&(U.isFunction(o)?n.paramsSerializer={serialize:o}:Oa.assertOptions(o,{encode:nn.function,serialize:nn.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let a=i&&U.merge(i.common,i[n.method]);i&&U.forEach(["delete","get","head","post","put","patch","common"],y=>{delete i[y]}),n.headers=Wt.concat(a,i);const l=[];let u=!0;this.interceptors.request.forEach(function(b){typeof b.runWhen=="function"&&b.runWhen(n)===!1||(u=u&&b.synchronous,l.unshift(b.fulfilled,b.rejected))});const s=[];this.interceptors.response.forEach(function(b){s.push(b.fulfilled,b.rejected)});let c,d=0,m;if(!u){const y=[_u.bind(this),void 0];for(y.unshift.apply(y,l),y.push.apply(y,s),m=y.length,c=Promise.resolve(n);d{if(!r._listeners)return;let i=r._listeners.length;for(;i-- >0;)r._listeners[i](o);r._listeners=null}),this.promise.then=o=>{let i;const a=new Promise(l=>{r.subscribe(l),i=l}).then(o);return a.cancel=function(){r.unsubscribe(i)},a},e(function(i,a,l){r.reason||(r.reason=new vi(i,a,l),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){if(this.reason){e(this.reason);return}this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;const n=this._listeners.indexOf(e);n!==-1&&this._listeners.splice(n,1)}static source(){let e;return{token:new Cl(function(o){e=o}),cancel:e}}}const _6=Cl;function S6(t){return function(n){return t.apply(null,n)}}function O6(t){return U.isObject(t)&&t.isAxiosError===!0}const Pa={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Pa).forEach(([t,e])=>{Pa[e]=t});const P6=Pa;function dp(t){const e=new ji(t),n=Wd(ji.prototype.request,e);return U.extend(n,ji.prototype,e,{allOwnKeys:!0}),U.extend(n,e,null,{allOwnKeys:!0}),n.create=function(o){return dp(Gn(t,o))},n}const nt=dp(bl);nt.Axios=ji;nt.CanceledError=vi;nt.CancelToken=_6;nt.isCancel=lp;nt.VERSION=cp;nt.toFormData=yo;nt.AxiosError=$e;nt.Cancel=nt.CanceledError;nt.all=function(e){return Promise.all(e)};nt.spread=S6;nt.isAxiosError=O6;nt.mergeConfig=Gn;nt.AxiosHeaders=Wt;nt.formToJSON=t=>ap(U.isHTMLForm(t)?new FormData(t):t);nt.getAdapter=up.getAdapter;nt.HttpStatusCode=P6;nt.default=nt;const _t=nt,I6=[{text:"Specific Date & Time",value:"datetime",tooltip:"Collection starts at specific date and time"},{text:"Specific Date",value:"date",tooltip:"Collection starts at 00:00:00 of the specified day"},{text:"Time relative to End",value:"interval",tooltip:"If the end is a date time, collection start specified number of hours before end. If the end is a date with no specific time, collection starts specified number of calendar days before end."}],k6=[{text:"Specific Date & Time",value:"datetime",tooltip:"Collection ends at specific date and time"},{text:"Specific Date",value:"date",tooltip:"Collection ends at 23:59:00 of the specified day"},{text:"Time relative to Start",value:"interval",tooltip:"If the start is a date time, collection ends specified number of hours after start. If the start is a date with no specific time, collection ends specified number of calendar days after start."}],zn=[{text:"Hours",value:"hour"},{text:"Calendar Day(s)",value:"day"}],Kt={label:void 0,type:void 0,length:void 0},Bt={type:void 0,label:"",rp_date:void 0,duster_field_name:void 0,redcap_field_name:void 0,redcap_field_type:"text",value_type:"datetime",interval:{...Kt},phi:"t"},cn=[{text:"Min",value:"min_agg"},{text:"Max",value:"max_agg"},{text:"First",value:"first_agg"},{text:"Last",value:"last_agg"},{text:"Closest to Time",value:"closest_time"},{text:"Closest to Event",value:"closest_event"}],T6={duster_field_name:void 0,redcap_field_name:void 0,label:void 0,phi:void 0,value_type:void 0,redcap_field_type:void 0,id:void 0};function Pu(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function ci(t){for(var e=1;e1&&arguments[1]!==void 0?arguments[1]:[];const n=wo(t);return ci(ci({},n),{},{$async:!0,$watchTargets:e})}function $6(t){return{$validator(e){for(var n=arguments.length,r=new Array(n>1?n-1:0),o=1;o{const u=Object.entries(a).reduce((s,c)=>{let[d,m]=c;const f=t[d]||{},y=Object.entries(f).reduce((b,S)=>{let[_,I]=S;const x=fp(I).call(this,m,a,l,...r),F=pp(x);if(b.$data[_]=x,b.$data.$invalid=!F||!!b.$data.$invalid,b.$data.$error=b.$data.$invalid,!F){let ie=I.$message||"";const ae=I.$params||{};typeof ie=="function"&&(ie=ie({$pending:!1,$invalid:!F,$params:ae,$model:m,$response:x})),b.$errors.push({$property:d,$message:ie,$params:ae,$response:x,$model:m,$pending:!1,$validator:_})}return{$valid:b.$valid&&F,$data:b.$data,$errors:b.$errors}},{$valid:!0,$data:{},$errors:[]});return s.$data[d]=y.$data,s.$errors[d]=y.$errors,{$valid:s.$valid&&y.$valid,$data:s.$data,$errors:s.$errors}},{$valid:!0,$data:{},$errors:{}});return{$valid:i.$valid&&u.$valid,$data:i.$data.concat(u.$data),$errors:i.$errors.concat(u.$errors)}},{$valid:!0,$data:[],$errors:[]})},$message:e=>{let{$response:n}=e;return n?n.$errors.map(r=>Object.values(r).map(o=>o.map(i=>i.$message)).reduce((o,i)=>o.concat(i),[])):[]}}}const yi=t=>{if(t=ee(t),Array.isArray(t))return!!t.length;if(t==null)return!1;if(t===!1)return!0;if(t instanceof Date)return!isNaN(t.getTime());if(typeof t=="object"){for(let e in t)return!0;return!1}return!!String(t).length},mp=t=>(t=ee(t),Array.isArray(t)?t.length:typeof t=="object"?Object.keys(t).length:String(t).length);function mn(){for(var t=arguments.length,e=new Array(t),n=0;n(r=ee(r),!yi(r)||e.every(o=>(o.lastIndex=0,o.test(r))))}var Ne=Object.freeze({__proto__:null,forEach:$6,len:mp,normalizeValidatorObject:wo,regex:mn,req:yi,unwrap:ee,unwrapNormalizedValidator:fp,unwrapValidatorResponse:pp,withAsync:R6,withMessage:D6,withParams:E6});mn(/^[a-zA-Z]*$/);mn(/^[a-zA-Z0-9]*$/);mn(/^\d*(\.\d+)?$/);const A6=/^(?:[A-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[A-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9]{2,}(?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])$/i;mn(A6);function M6(t){return e=>!yi(e)||mp(e)>=ee(t)}function L6(t){return{$validator:M6(t),$message:e=>{let{$params:n}=e;return`This field should be at least ${n.min} characters long`},$params:{min:t,type:"minLength"}}}function F6(t){return typeof t=="string"&&(t=t.trim()),yi(t)}var gr={$validator:F6,$message:"Value is required",$params:{type:"required"}};const Iu=(t,e)=>t?yi(typeof e=="string"?e.trim():e):!0;function B6(t){return function(e,n){if(typeof t!="function")return Iu(ee(t),e);const r=t.call(this,e,n);return Iu(r,e)}}function $t(t){return{$validator:B6(t),$message:"The value is required",$params:{type:"requiredIf",prop:t}}}function j6(t){return e=>ee(e)===ee(t)}function V6(t){let e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"other";return{$validator:j6(t),$message:n=>`The value must be equal to the ${e} value`,$params:{equalTo:t,otherName:e,type:"sameAs"}}}const H6=/^(?:(?:(?:https?|ftp):)?\/\/)(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z0-9\u00a1-\uffff][a-z0-9\u00a1-\uffff_-]{0,62})?[a-z0-9\u00a1-\uffff]\.)+(?:[a-z\u00a1-\uffff]{2,}\.?))(?::\d{2,5})?(?:[/?#]\S*)?$/i;mn(H6);mn(/(^[0-9]*$)|(^-[0-9]+$)/);mn(/^[-]?\d*(\.\d+)?$/);function ku(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable})),n.push.apply(n,r)}return n}function an(t){for(var e=1;e1&&arguments[1]!==void 0?arguments[1]:[];return Object.keys(t).reduce((n,r)=>(e.includes(r)||(n[r]=ee(t[r])),n),{})}function Xi(t){return typeof t=="function"}function z6(t){return Pn(t)||xn(t)}function hp(t,e,n){let r=t;const o=e.split(".");for(let i=0;it.some(r=>hp(e,r,{[n]:!1})[n]))}function xu(t,e,n){return Z(()=>t.reduce((r,o)=>{const i=hp(e,o,{[n]:!1})[n]||[];return r.concat(i)},[]))}function gp(t,e,n,r){return t.call(r,ee(e),ee(n),r)}function vp(t){return t.$valid!==void 0?!t.$valid:!t}function K6(t,e,n,r,o,i,a){let{$lazy:l,$rewardEarly:u}=o,s=arguments.length>7&&arguments[7]!==void 0?arguments[7]:[],c=arguments.length>8?arguments[8]:void 0,d=arguments.length>9?arguments[9]:void 0,m=arguments.length>10?arguments[10]:void 0;const f=de(!!r.value),y=de(0);n.value=!1;const b=ut([e,r].concat(s,m),()=>{if(l&&!r.value||u&&!d.value&&!n.value)return;let S;try{S=gp(t,e,c,a)}catch(_){S=Promise.reject(_)}y.value++,n.value=!!y.value,f.value=!1,Promise.resolve(S).then(_=>{y.value--,n.value=!!y.value,i.value=_,f.value=vp(_)}).catch(_=>{y.value--,n.value=!!y.value,i.value=_,f.value=!0})},{immediate:!0,deep:typeof e=="object"});return{$invalid:f,$unwatch:b}}function U6(t,e,n,r,o,i,a,l){let{$lazy:u,$rewardEarly:s}=r;const c=()=>({}),d=Z(()=>{if(u&&!n.value||s&&!l.value)return!1;let m=!0;try{const f=gp(t,e,a,i);o.value=f,m=vp(f)}catch(f){o.value=f}return m});return{$unwatch:c,$invalid:d}}function W6(t,e,n,r,o,i,a,l,u,s,c){const d=de(!1),m=t.$params||{},f=de(null);let y,b;t.$async?{$invalid:y,$unwatch:b}=K6(t.$validator,e,d,n,r,f,o,t.$watchTargets,u,s,c):{$invalid:y,$unwatch:b}=U6(t.$validator,e,n,r,f,o,u,s);const S=t.$message;return{$message:Xi(S)?Z(()=>S(Tu({$pending:d,$invalid:y,$params:Tu(m),$model:e,$response:f,$validator:i,$propertyPath:l,$property:a}))):S||"",$params:m,$pending:d,$invalid:y,$response:f,$unwatch:b}}function G6(){let t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};const e=ee(t),n=Object.keys(e),r={},o={},i={};let a=null;return n.forEach(l=>{const u=e[l];switch(!0){case Xi(u.$validator):r[l]=u;break;case Xi(u):r[l]={$validator:u};break;case l==="$validationGroups":a=u;break;case l.startsWith("$"):i[l]=u;break;default:o[l]=u}}),{rules:r,nestedValidators:o,config:i,validationGroups:a}}const q6="__root";function Y6(t,e,n,r,o,i,a,l,u){const s=Object.keys(t),c=r.get(o,t),d=de(!1),m=de(!1),f=de(0);if(c){if(!c.$partial)return c;c.$unwatch(),d.value=c.$dirty.value}const y={$dirty:d,$path:o,$touch:()=>{d.value||(d.value=!0)},$reset:()=>{d.value&&(d.value=!1)},$commit:()=>{}};return s.length?(s.forEach(b=>{y[b]=W6(t[b],e,y.$dirty,i,a,b,n,o,u,m,f)}),y.$externalResults=Z(()=>l.value?[].concat(l.value).map((b,S)=>({$propertyPath:o,$property:n,$validator:"$externalResults",$uid:`${o}-externalResult-${S}`,$message:b,$params:{},$response:null,$pending:!1})):[]),y.$invalid=Z(()=>{const b=s.some(S=>ee(y[S].$invalid));return m.value=b,!!y.$externalResults.value.length||b}),y.$pending=Z(()=>s.some(b=>ee(y[b].$pending))),y.$error=Z(()=>y.$dirty.value?y.$pending.value||y.$invalid.value:!1),y.$silentErrors=Z(()=>s.filter(b=>ee(y[b].$invalid)).map(b=>{const S=y[b];return fn({$propertyPath:o,$property:n,$validator:b,$uid:`${o}-${b}`,$message:S.$message,$params:S.$params,$response:S.$response,$pending:S.$pending})}).concat(y.$externalResults.value)),y.$errors=Z(()=>y.$dirty.value?y.$silentErrors.value:[]),y.$unwatch=()=>s.forEach(b=>{y[b].$unwatch()}),y.$commit=()=>{m.value=!0,f.value=Date.now()},r.set(o,t,y),y):(c&&r.set(o,t,y),y)}function J6(t,e,n,r,o,i,a){const l=Object.keys(t);return l.length?l.reduce((u,s)=>(u[s]=ka({validations:t[s],state:e,key:s,parentKey:n,resultsCache:r,globalConfig:o,instance:i,externalResults:a}),u),{}):{}}function Z6(t,e,n){const r=Z(()=>[e,n].filter(y=>y).reduce((y,b)=>y.concat(Object.values(ee(b))),[])),o=Z({get(){return t.$dirty.value||(r.value.length?r.value.every(y=>y.$dirty):!1)},set(y){t.$dirty.value=y}}),i=Z(()=>{const y=ee(t.$silentErrors)||[],b=r.value.filter(S=>(ee(S).$silentErrors||[]).length).reduce((S,_)=>S.concat(..._.$silentErrors),[]);return y.concat(b)}),a=Z(()=>{const y=ee(t.$errors)||[],b=r.value.filter(S=>(ee(S).$errors||[]).length).reduce((S,_)=>S.concat(..._.$errors),[]);return y.concat(b)}),l=Z(()=>r.value.some(y=>y.$invalid)||ee(t.$invalid)||!1),u=Z(()=>r.value.some(y=>ee(y.$pending))||ee(t.$pending)||!1),s=Z(()=>r.value.some(y=>y.$dirty)||r.value.some(y=>y.$anyDirty)||o.value),c=Z(()=>o.value?u.value||l.value:!1),d=()=>{t.$touch(),r.value.forEach(y=>{y.$touch()})},m=()=>{t.$commit(),r.value.forEach(y=>{y.$commit()})},f=()=>{t.$reset(),r.value.forEach(y=>{y.$reset()})};return r.value.length&&r.value.every(y=>y.$dirty)&&d(),{$dirty:o,$errors:a,$invalid:l,$anyDirty:s,$error:c,$pending:u,$touch:d,$reset:f,$silentErrors:i,$commit:m}}function ka(t){let{validations:e,state:n,key:r,parentKey:o,childResults:i,resultsCache:a,globalConfig:l={},instance:u,externalResults:s}=t;const c=o?`${o}.${r}`:r,{rules:d,nestedValidators:m,config:f,validationGroups:y}=G6(e),b=an(an({},l),f),S=r?Z(()=>{const V=ee(n);return V?ee(V[r]):void 0}):n,_=an({},ee(s)||{}),I=Z(()=>{const V=ee(s);return r?V?ee(V[r]):void 0:V}),z=Y6(d,S,r,a,c,b,u,I,n),x=J6(m,S,c,a,b,u,I),F={};y&&Object.entries(y).forEach(V=>{let[R,k]=V;F[R]={$invalid:Vo(k,x,"$invalid"),$error:Vo(k,x,"$error"),$pending:Vo(k,x,"$pending"),$errors:xu(k,x,"$errors"),$silentErrors:xu(k,x,"$silentErrors")}});const{$dirty:ie,$errors:ae,$invalid:M,$anyDirty:Q,$error:oe,$pending:ue,$touch:j,$reset:D,$silentErrors:q,$commit:ve}=Z6(z,x,i),fe=r?Z({get:()=>ee(S),set:V=>{ie.value=!0;const R=ee(n),k=ee(s);k&&(k[r]=_[r]),it(R[r])?R[r].value=V:R[r]=V}}):null;r&&b.$autoDirty&&ut(S,()=>{ie.value||j();const V=ee(s);V&&(V[r]=_[r])},{flush:"sync"});async function ge(){return j(),b.$rewardEarly&&(ve(),await zi()),await zi(),new Promise(V=>{if(!ue.value)return V(!M.value);const R=ut(ue,()=>{V(!M.value),R()})})}function me(V){return(i.value||{})[V]}function Ke(){it(s)?s.value=_:Object.keys(_).length===0?Object.keys(s).forEach(V=>{delete s[V]}):Object.assign(s,_)}return fn(an(an(an({},z),{},{$model:fe,$dirty:ie,$error:oe,$errors:ae,$invalid:M,$anyDirty:Q,$pending:ue,$touch:j,$reset:D,$path:c||q6,$silentErrors:q,$validate:ge,$commit:ve},i&&{$getResultsForChild:me,$clearExternalResults:Ke,$validationGroups:F}),x))}class X6{constructor(){this.storage=new Map}set(e,n,r){this.storage.set(e,{rules:n,result:r})}checkRulesValidity(e,n,r){const o=Object.keys(r),i=Object.keys(n);return i.length!==o.length||!i.every(l=>o.includes(l))?!1:i.every(l=>n[l].$params?Object.keys(n[l].$params).every(u=>ee(r[l].$params[u])===ee(n[l].$params[u])):!0)}get(e,n){const r=this.storage.get(e);if(!r)return;const{rules:o,result:i}=r,a=this.checkRulesValidity(e,n,o),l=i.$unwatch?i.$unwatch:()=>({});return a?i:{$dirty:i.$dirty,$partial:!0,$unwatch:l}}}const Vi={COLLECT_ALL:!0,COLLECT_NONE:!1},Eu=Symbol("vuelidate#injectChildResults"),Du=Symbol("vuelidate#removeChildResults");function Q6(t){let{$scope:e,instance:n}=t;const r={},o=de([]),i=Z(()=>o.value.reduce((c,d)=>(c[d]=ee(r[d]),c),{}));function a(c,d){let{$registerAs:m,$scope:f,$stopPropagation:y}=d;y||e===Vi.COLLECT_NONE||f===Vi.COLLECT_NONE||e!==Vi.COLLECT_ALL&&e!==f||(r[m]=c,o.value.push(m))}n.__vuelidateInjectInstances=[].concat(n.__vuelidateInjectInstances||[],a);function l(c){o.value=o.value.filter(d=>d!==c),delete r[c]}n.__vuelidateRemoveInstances=[].concat(n.__vuelidateRemoveInstances||[],l);const u=Ut(Eu,[]);Gi(Eu,n.__vuelidateInjectInstances);const s=Ut(Du,[]);return Gi(Du,n.__vuelidateRemoveInstances),{childResults:i,sendValidationResultsToParent:u,removeValidationResultsFromParent:s}}function yp(t){return new Proxy(t,{get(e,n){return typeof e[n]=="object"?yp(e[n]):Z(()=>e[n])}})}let Ru=0;function er(t,e){var n;let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};arguments.length===1&&(r=t,t=void 0,e=void 0);let{$registerAs:o,$scope:i=Vi.COLLECT_ALL,$stopPropagation:a,$externalResults:l,currentVueInstance:u}=r;const s=u||((n=co())===null||n===void 0?void 0:n.proxy),c=s?s.$options:{};o||(Ru+=1,o=`_vuelidate_${Ru}`);const d=de({}),m=new X6,{childResults:f,sendValidationResultsToParent:y,removeValidationResultsFromParent:b}=s?Q6({$scope:i,instance:s}):{childResults:de({})};if(!t&&c.validations){const S=c.validations;e=de({}),fc(()=>{e.value=s,ut(()=>Xi(S)?S.call(e.value,new yp(e.value)):S,_=>{d.value=ka({validations:_,state:e,childResults:f,resultsCache:m,globalConfig:r,instance:s,externalResults:l||s.vuelidateExternalResults})},{immediate:!0})}),r=c.validationsConfig||r}else{const S=it(t)||z6(t)?t:fn(t||{});ut(S,_=>{d.value=ka({validations:_,state:e,childResults:f,resultsCache:m,globalConfig:r,instance:s??{},externalResults:l})},{immediate:!0})}return s&&(y.forEach(S=>S(d,{$registerAs:o,$scope:i,$stopPropagation:a})),Wa(()=>b.forEach(S=>S(o)))),Z(()=>an(an({},ee(d.value)),f.value))}const e9={class:"p-panel-title"},t9={class:"col-12"},n9={key:0},r9={key:0,class:"flex p-error mb-3"},i9={key:1},o9={key:0},a9={key:0,class:"flex p-error mb-3"},l9={key:1},s9={key:0},u9={key:0,class:"flex p-error mb-3"},c9={key:1},d9={class:"confirmation-content mt-2 mb-4"},p9=g("i",{class:"pi pi-exclamation-triangle mr-3",style:{"font-size":"2rem"}},null,-1),f9={key:0},m9=g("div",{class:"my-2"},[ye(" There are identifiers and dates/datetimes for your study cohort that you will provide for your REDCap project. "),g("br"),g("br"),ye(" The minimum required information for each record is an MRN and a study enrollment date, which DUSTER will use to query STARR. "),g("br"),ye(" Optionally, you may also add other dates/datetimes of interest. "),g("br"),g("br"),ye(" After DUSTER creates the project, you may perform a bulk upload of the Researcher-Provided Info you define here using the Data Import Tool. ")],-1),h9=bt({__name:"ResearcherProvidedPanel",props:{rpData:{type:Object,required:!0},reservedFieldNames:{type:Array,required:!0}},emits:["update:rpData"],setup(t,{emit:e}){const n=t,r=de([{text:"Date",dtValue:"date"},{text:"Datetime",dtValue:"datetime"}]),o=Z({get(){return n.rpData},set(x){e("update:rpData",x)}});de([]);const i=de(!1),a=()=>({...T6}),l=de(a()),u=()=>{l.value=a(),l.value.redcap_field_type="text",l.value.phi="t",l.value.id=(l.value.redcap_field_name||"")+new Date().getTime(),console.log(l.value),o.value&&o.value.push(l.value)},s=x=>{l.value=x,i.value=!0},c=()=>{o.value&&(o.value=o.value.filter(x=>x.id!==l.value.id)),i.value=!1,l.value=a()},d=x=>o.value.filter(F=>F.id!=x).map(F=>F.redcap_field_name).concat(n.reservedFieldNames),m=de(!1),f=(x,F)=>!!(z.value.rpData.$each.$response&&z.value.rpData.$each.$response.$errors&&z.value.rpData.$each.$response.$errors[F]&&z.value.rpData.$each.$response.$errors[F][x].length),y=(x,F,ie)=>o.value.findIndex(ae=>ae.id!=F.id&&ae.label==x)==-1,b=(x,F,ie)=>d(F.id??"").indexOf(x)==-1,S=Ne.regex(/^[a-z][a-z0-9_]*$/),_=Z(()=>({rpData:o.value})),I={rpData:{$each:Ne.forEach({value_type:{required:Ne.withMessage("Date types are required",gr)},label:{required:Ne.withMessage("Labels are required",gr),uniqueLabel:Ne.withMessage("Labels must be unique",y)},redcap_field_name:{required:Ne.withMessage("Redcap field names are required",gr),isRedcapFieldName:Ne.withMessage("Only lowercase letters, numbers and underscores allowed",S),uniqueRedcapFieldName:Ne.withMessage("Must be unique",b)}})}},z=er(I,_,{$lazy:!0});return(x,F)=>{const ie=K("Button"),ae=K("Dropdown"),M=K("Column"),Q=K("InputText"),oe=K("DataTable"),ue=K("Panel"),j=K("Dialog");return p(),v(ne,null,[P(ue,null,{header:L(()=>[g("span",e9,[ye("Researcher-Provided Info "),P(ie,{icon:"pi pi-info-circle",text:"",rounded:"","aria-label":"Info",class:"ml-2 pt-0 pb-0 mt-0 mb-0",style:{height:"1.3em"},onClick:F[0]||(F[0]=D=>m.value=!0)})])]),default:L(()=>[g("div",t9,[P(oe,{value:o.value,class:"p-datatable-sm","data-key":"id"},{default:L(()=>[P(M,{key:"value_type",field:"value_type",header:"Type"},{body:L(D=>[o.value[D.index].value_type!="Identifier"?(p(),v("div",n9,[P(ae,{modelValue:D.data[D.field],"onUpdate:modelValue":q=>D.data[D.field]=q,options:r.value,class:te(["w-full md:w-8rem",{"p-invalid":f("value_type",D.index)}]),optionLabel:"text",optionValue:"dtValue",placeholder:"Select a type",disabled:t.rpData[D.index].edit===!1},null,8,["modelValue","onUpdate:modelValue","options","class","disabled"]),f("value_type",D.index)?(p(),v("small",r9,Y(ee(z).rpData.$each.$response.$errors[D.index].value_type[0].$message),1)):T("",!0)])):(p(),v("span",i9,Y(D.data.value_type),1))]),_:1}),P(M,{key:"label",field:"label",header:"Label"},{body:L(D=>[o.value[D.index].value_type!="Identifier"?(p(),v("div",o9,[P(Q,{modelValue:D.data[D.field],"onUpdate:modelValue":q=>D.data[D.field]=q,class:te(["w-full",{"p-invalid":f("label",D.index)}]),disabled:t.rpData[D.index].edit===!1},null,8,["modelValue","onUpdate:modelValue","class","disabled"]),f("label",D.index)?(p(),v("small",a9,Y(ee(z).rpData.$each.$response.$errors[D.index].label[0].$message),1)):T("",!0)])):(p(),v("span",l9,Y(D.data.label),1))]),_:1}),P(M,{key:"redcap_field_name",field:"redcap_field_name",header:"REDCap Field Name"},{body:L(D=>[o.value[D.index].value_type!="Identifier"?(p(),v("div",s9,[P(Q,{modelValue:D.data[D.field],"onUpdate:modelValue":q=>D.data[D.field]=q,class:te(["w-full",{"p-invalid":f("redcap_field_name",D.index)}]),disabled:t.rpData[D.index].edit===!1},null,8,["modelValue","onUpdate:modelValue","class","disabled"]),f("redcap_field_name",D.index)?(p(),v("small",u9,Y(ee(z).rpData.$each.$response.$errors[D.index].redcap_field_name[0].$message),1)):T("",!0)])):(p(),v("span",c9,Y(D.data.redcap_field_name),1))]),_:1}),P(M,{exportable:!1,header:"Actions",class:te(["w-6rem"])},{body:L(D=>[P(ie,{icon:"pi pi-trash",outlined:"",rounded:"",size:"small",severity:"danger",class:te(D.index<2||t.rpData[D.index].edit===!1?"hidden":"mr-2"),onClick:q=>s(D.data),disabled:t.rpData[D.index].edit===!1},null,8,["class","onClick","disabled"]),P(ie,{icon:"pi pi-plus",outlined:"",rounded:"",size:"small",severity:"success",class:te(D.index==o.value.length-1&&D.index<5?"":"hidden"),onClick:u},null,8,["class"])]),_:1})]),_:1},8,["value"])])]),_:1}),P(j,{visible:i.value,"onUpdate:visible":F[2]||(F[2]=D=>i.value=D),style:{width:"450px"},header:"Confirm",modal:!0},{footer:L(()=>[P(ie,{label:"No",icon:"pi pi-times",text:"",onClick:F[1]||(F[1]=D=>i.value=!1)}),P(ie,{label:"Yes",icon:"pi pi-check",text:"",onClick:c})]),default:L(()=>[g("div",d9,[p9,l.value?(p(),v("span",f9,[ye(" Are you sure you want to delete "),g("b",null,Y(l.value.label),1),ye("? ")])):T("",!0)])]),_:1},8,["visible"]),P(j,{visible:m.value,"onUpdate:visible":F[4]||(F[4]=D=>m.value=D),modal:"",header:"Data Collection Windows",style:{width:"50vw"}},{footer:L(()=>[P(ie,{onClick:F[3]||(F[3]=D=>m.value=!1)},{default:L(()=>[ye("Close")]),_:1})]),default:L(()=>[m9]),_:1},8,["visible"])],64)}}}),g9={class:"container"},v9=g("div",{class:"mb-2"},[ye(" Select demographics below that you'd like to collect on your cohort. "),g("br"),g("em",null,"Please bear in mind HIPAA Minimum Necessary when selecting identifying information.")],-1),y9={class:"formgrid grid"},b9=["for"],w9={class:"formgrid grid"},C9={class:"col-offset-6 col-6"},_9=bt({__name:"DemographicsPanel",props:{demographicsOptions:{type:Array,required:!0},demographicsSelects:{type:Array,required:!0}},emits:["update:demographicsSelects"],setup(t,{emit:e}){const n=t,r=Z({get(){return n.demographicsSelects},set(l){e("update:demographicsSelects",l)}}),o=Z(()=>r.value.length{r.value.length{for(const l of n.demographicsSelects)if(l.edit===!1)return!1;return!0};return(l,u)=>{const s=K("Checkbox"),c=K("Button"),d=K("Panel");return p(),v("div",g9,[P(d,{header:"Demographics"},{default:L(()=>[v9,g("div",y9,[(p(!0),v(ne,null,xe(t.demographicsOptions,m=>(p(),v("div",{key:m.duster_field_name,class:"my-2 col-6"},[g("div",null,[P(s,{modelValue:r.value,"onUpdate:modelValue":u[0]||(u[0]=f=>r.value=f),"input-id":m.duster_field_name,value:m,disabled:m.edit===!1},null,8,["modelValue","input-id","value","disabled"]),g("label",{for:m.duster_field_name,class:"ml-2"},Y(m.label),9,b9)])]))),128))]),g("div",w9,[g("div",C9,[a()?(p(),$(c,{key:0,label:o.value,size:"small",onClick:u[1]||(u[1]=m=>i())},null,8,["label"])):T("",!0)])])]),_:1})])}}}),S9=[{label:"ED Presentation to ED Discharge",form_name:"ed_presentation_to_ed_discharge",timing_preset:"ed_presentation_to_ed_discharge",type:"nonrepeating",timing:{start:{type:"datetime",duster_field_name:"ed_admission_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"ED Admission Datetime",rp_date:"",interval:{type:null,length:null},phi:"t"},end:{type:"datetime",duster_field_name:"ed_discharge_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"ED Discharge Datetime",rp_date:"",interval:{type:null,length:null},phi:"t"},repeat_interval:{type:null,length:null}},aggregate_defaults:[],event:[],data:{labs:[],vitals:[],outcomes:[],scores:[]},id:""},{label:"Hospital Presentation to Hospital Discharge",form_name:"hospital_presentation_to_hospital_discharge",timing_preset:"hospital_presentation_to_hospital_discharge",type:"nonrepeating",timing:{start:{type:"datetime",duster_field_name:"hospital_presentation_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"Hospital Presentation Datetime",rp_date:"",interval:{type:null,length:null},phi:"t"},end:{type:"datetime",duster_field_name:"hospital_discharge_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"Hospital Discharge Datetime",rp_date:"",interval:{type:null,length:null},phi:"t"},repeat_interval:{type:null,length:null}},aggregate_defaults:[],event:[],data:{labs:[],vitals:[],outcomes:[],scores:[]},id:""},{label:"First 24 Hours of Hospital Presentation",form_name:"first_24_hrs_of_hospital_presentation",timing_preset:"first_24_hrs_of_hospital_presentation",type:"nonrepeating",timing:{start:{type:"datetime",duster_field_name:"hospital_presentation_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"Hospital Presentation Datetime","rp-date":"enroll_date",interval:{type:null,length:null},phi:"t"},end:{type:"interval",duster_field_name:"",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"24 Hours after Hospital Presentation Datetime","rp-date":"",interval:{type:"hour",length:24},phi:"t"},repeat_interval:{type:null,length:null}},aggregate_defaults:[],event:[],data:{labs:[],vitals:[],outcomes:[],scores:[]},id:""},{label:"First 24 Hours of First ICU Admission",form_name:"first_24_hrs_of_first_icu_admission",timing_preset:"first_24_hrs_of_first_icu_admission",type:"nonrepeating",timing:{start:{type:"datetime",duster_field_name:"first_icu_admission_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"First ICU Admission Datetime","rp-date":"enroll_date",interval:{type:null,length:null},phi:"t"},end:{type:"interval",duster_field_name:"",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"24 Hours after First ICU Admission Datetime","rp-date":"",interval:{type:"hour",length:24}},repeat_interval:{type:null,length:null}},aggregate_defaults:[],event:[],data:{labs:[],vitals:[],outcomes:[],scores:[]},id:""},{label:"First ICU Admission to First ICU Discharge",form_name:"first_icu_admission_to_first_icu_discharge",timing_preset:"first_icu_admission_to_first_icu_discharge",type:"nonrepeating",timing:{start:{type:"datetime",duster_field_name:"first_icu_admission_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"First ICU Admission Datetime","rp-date":"enroll_date",interval:{type:null,length:null},phi:"t"},end:{type:"datetime",duster_field_name:"first_icu_discharge_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"First ICU Discharge Datetime","rp-date":"enroll_date",interval:{type:null,length:null},phi:"t"},repeat_interval:{type:null,length:null}},aggregate_defaults:[],event:[],data:{labs:[],vitals:[],outcomes:[],scores:[]},id:""},{label:"Every Calendar Day of First ICU Admission to First ICU Discharge",form_name:"every_calendar_day_of_first_icu_admission_to_first_icu_discharge",timing_preset:"every_calendar_day_of_first_icu_admission_to_first_icu_discharge",type:"repeating",timing:{start:{type:"date",duster_field_name:"first_icu_admission_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"00:00:00 of First ICU Admission Datetime","rp-date":"enroll_date",interval:{type:null,length:null},phi:"t"},end:{type:"date",duster_field_name:"first_icu_discharge_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"23:59:00 of First ICU Discharge Datetime","rp-date":"enroll_date",interval:{type:null,length:null},phi:"t"},repeat_interval:{type:"day",length:1}},aggregate_defaults:[],event:[],data:{labs:[],vitals:[],outcomes:[],scores:[]},id:""},{label:"Every Calendar Day of Hospital Presentation to Hospital Discharge",form_name:"every_calendar_day_of_hospital_Presentation_to_hospital_discharge",timing_preset:"every_calendar_day_of_hospital_presentation_to_hospital_discharge",type:"repeating",timing:{start:{type:"date",duster_field_name:"hospital_presentation_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"00:00:00 of Hospital Presentation Datetime","rp-date":"enroll_date",interval:{type:null,length:null},phi:"t"},end:{type:"date",duster_field_name:"hospital_discharge_datetime",redcap_field_name:"",redcap_field_type:"text",value_type:"datetime",label:"23:59:00 of Hospital Discharge Datetime","rp-date":"enroll_date",interval:{type:null,length:null},phi:"t"},repeat_interval:{type:"day",length:1}},aggregate_defaults:[],event:[],data:{labs:[],vitals:[],outcomes:[],scores:[]},id:""}],O9={cw_presets:S9},P9={key:0},I9=g("strong",null,"Dependent clinical variables",-1),k9={key:1},T9=g("strong",null,"Value type: ",-1),x9={key:2},E9=g("strong",null,"Unit of measurement: ",-1),D9={key:3},R9=g("strong",null,"LOINC code: ",-1),$9={key:4},A9=g("strong",null,"Note: ",-1),M9={key:5},L9=g("strong",null,"See also: ",-1),F9=["href"],B9=["href"],j9=bt({__name:"MetadataInfoDialog",props:{initialFieldNameProp:{type:String,required:!0}},setup(t){const e=t,n=Ut("metadata"),r=fn({value:e.initialFieldNameProp}),o=de(!1),i=Z(()=>{let s={label:"",duster_field_name:"",category:""};if(n.value){let c=n.value.find(d=>d.duster_field_name===r.value);if(c)return c}return s}),a=Z(()=>{let s="";if(i.value.category!="scores")switch(i.value.value_type){case"numeric":s="Number";break;case"boolean":s="Boolean",(i.value.redcap_field_type="yesno")&&(s+=" (Yes/No)");break;case"text":s="Text",(i.value.redcap_field_type="calc")&&(s+=" (Calculated)");break;case"coded_value":(i.value.redcap_field_type="radio")&&(s="Radio buttons (multiple choice-style)");break;case"checkbox":s="Checkbox(es)";break;case"datetime":s="Datetime";case"date":s="Date"}return s}),l=s=>{let c=s.split(","),d=[];for(let m of c){let f=n.value.find(y=>y.duster_field_name===m);f&&d.push(f)}return d},u=Z(()=>{var c;let s=[];if(i.value.category=="scores"&&((c=i.value)!=null&&c.subscores)){for(let d of i.value.subscores)if(d.dependencies)for(let m of d.dependencies)m&&(n.value.find(y=>y.duster_field_name===m.duster_field_name)?s.push({duster_field_name:m.duster_field_name,label:m.label,linkable:!0}):s.push({duster_field_name:m.duster_field_name,label:m.label,linkable:!1}))}return s});return(s,c)=>{const d=K("Button"),m=K("Dialog");return p(),v(ne,null,[i.value.info_status==="A"?(p(),$(d,{key:0,icon:"pi pi-info-circle",text:"",rounded:"","aria-label":"Info",class:"ml-2 pt-0 pb-0 mt-0 mb-0",style:{height:"1.3em"},onClick:c[0]||(c[0]=f=>o.value=!0)})):T("",!0),P(m,{visible:o.value,"onUpdate:visible":[c[1]||(c[1]=f=>o.value=f),c[2]||(c[2]=f=>r.value=t.initialFieldNameProp)],modal:!0,dismissableMask:!0,header:i.value.label,style:{width:"40vw"}},{default:L(()=>[g("p",null,Y(i.value.description_short),1),i.value.category=="scores"?(p(),v("p",P9,[I9,(p(!0),v(ne,null,xe(u.value,f=>(p(),v("li",null,[f.linkable===!0?(p(),$(d,{key:0,label:f.label,link:"",onClick:y=>r.value=f.duster_field_name},null,8,["label","onClick"])):f.linkable===!1?(p(),$(d,{key:1,label:f.label,link:"",disabled:!0},null,8,["label"])):T("",!0)]))),256))])):T("",!0),a.value!=""?(p(),v("p",k9,[T9,ye(Y(a.value),1)])):T("",!0),i.value.unit&&i.value.unit!=""?(p(),v("p",x9,[E9,ye(Y(i.value.unit),1)])):T("",!0),i.value.category=="labs"&&i.value.loinc_code!=""?(p(),v("p",D9,[R9,ye(Y(i.value.loinc_code),1)])):T("",!0),i.value.note&&i.value.note!=""?(p(),v("p",$9,[A9,ye(Y(i.value.note),1)])):T("",!0),i.value.related&&i.value.related!=""?(p(),v("p",M9,[L9,(p(!0),v(ne,null,xe(l(i.value.related),f=>(p(),$(d,{label:f.label,link:"",small:"",onClick:y=>r.value=f.duster_field_name},null,8,["label","onClick"]))),256))])):T("",!0),g("p",null,[i.value.category=="scores"&&i.value.mdcalc!=""?(p(),v("a",{key:0,href:i.value.mdcalc,target:"_blank"}," MDCalc ",8,F9)):T("",!0),ye(" "+Y(i.value.category=="scores"&&i.value.mdcalc!=""?" | ":"")+" ",1),i.value.category=="scores"&&i.value.pubmed!=""?(p(),v("a",{key:1,href:i.value.pubmed,target:"_blank"}," PubMed ",8,B9)):T("",!0)])]),_:1},8,["visible","header"])],64)}}}),V9={class:"grid"},H9={class:"flex justify-content-between flex-wrap"},N9=g("div",{class:"mb-2"},[g("strong",null,"Selections")],-1),z9={key:0,class:"mb-2 mr-3"},K9=g("strong",null,"Aggregates",-1),U9=[K9],W9=["for"],G9={key:0,class:"mr-3"},q9={key:0,class:"text-sm"},Y9={key:0},J9={class:"flex flex-wrap gap-3 my-3"},Z9={class:"flex align-items-center"},X9=g("label",{for:"defaultAggregates",class:"ml-2"}," Default Aggregates",-1),Q9={class:"flex align-items-center"},e4=g("label",{for:"customAggregates",class:"ml-2"}," Custom Aggregates",-1),t4={key:0,class:"mb-3"},n4={class:"card flex flex-wrap gap-4 mt-3"},r4=["for"],i4={key:0,class:"flex align-items-center"},o4=["for"],a4={key:1,class:"flex align-items-center"},l4=["for"],s4={key:0,id:"aggOption-help",class:"flex p-error mb-3"},Ri=bt({__name:"ClinicalDataOptions",props:{selectedOptions:{type:Object,required:!0},initialData:{type:Object},category:{type:String,required:!0},numColumns:Number,hasAggregates:{type:Boolean,required:!0},hasClosestTime:{type:Boolean,required:!0},hasClosestEvent:{type:Boolean,required:!0},closestTime:{type:String},closestEvent:{type:String},searchText:{type:String,default:null,required:!0},selectFilter:{type:String,required:!0},options:{type:Object,required:!0}},emits:["update:selectedOptions"],setup(t,{emit:e}){const n=t,r=de("display:none !important"),o=Z(()=>n.initialData!==void 0&&Array.isArray(n.initialData[n.category])?n.initialData[n.category]:[]),i=Z({get(){return n.selectedOptions},set(M){e("update:selectedOptions",M)}}),a=de(),l=Z(()=>{if(n.options){let M=JSON.parse(JSON.stringify(n.options));M.forEach(j=>{j.selected=!1,j.aggregate_type="default",j.aggregates=[]}),n.selectedOptions&&n.selectedOptions.forEach(j=>{j.selected=!0;const D=M.findIndex(q=>q.duster_field_name===j.duster_field_name);M[D].selected=!0,M[D].aggregate_type=j.aggregate_type,M[D].aggregates=JSON.parse(JSON.stringify(j.aggregates))}),M.sort(function(j,D){let q=j.label.toLowerCase(),ve=D.label.toLowerCase();return qve?1:0});let Q=2;n.numColumns&&(Q=n.numColumns);let oe=Math.ceil(M.length/Q),ue=[];for(let j=0;jArray.isArray(o.value)?o.value.map(oe=>oe.duster_field_name).includes(M):!1,s=M=>n.searchText?M.label.toLowerCase().indexOf(n.searchText.toLowerCase())>-1:!0,c=M=>n.selectFilter?n.selectFilter=="All"?!0:n.selectFilter=="Selected"?M.selected:!M.selected:!0,d=Z(()=>{let M=l.value;return M.forEach(Q=>{Q.forEach(oe=>{oe.visible=s(oe)&&c(oe)})}),M}),m=de(!1),f=de(!1),y=de(),b=de([]),S=M=>{a.value=M,y.value=a.value.aggregate_type,b.value=[...a.value.aggregates],m.value=!0},_=Z(()=>cn.filter(M=>M.value.indexOf("closest")===-1)),I=Z(()=>cn.find(M=>M.value==="closest_time")??{text:"Closest Time",value:"closest_time"}),z=Z(()=>cn.find(M=>M.value==="closest_event")??{text:"Closest Event",value:"closest_event"}),x=de(),F=()=>{if(a.value.aggregate_type==="custom"&&!a.value.aggregates.length)x.value="At least one custom aggregation must be selected.";else if(m.value=!1,a.value.aggregate_type==="default"&&(a.value.aggregates.length=0),i.value){let M=ae(a.value.duster_field_name,i.value);M>-1&&i.value[M]&&(i.value[M]=JSON.parse(JSON.stringify(a.value)))}},ie=()=>{if(m.value=!1,a.value.aggregate_type=y.value,a.value.aggregates=b.value,d.value){let M=ae(a.value.duster_field_name,d.value);M>-1&&d.value[M]&&(d.value[M]=JSON.parse(JSON.stringify(a.value)))}},ae=(M,Q)=>Q.findIndex(oe=>oe.duster_field_name===M);return(M,Q)=>{const oe=K("Checkbox"),ue=K("Chip"),j=K("Button"),D=K("RadioButton"),q=K("Dialog"),ve=et("tooltip");return p(),v(ne,null,[g("div",V9,[(p(!0),v(ne,null,xe(d.value,(fe,ge)=>(p(),v("div",{key:ge,class:"col mr-3"},[g("div",H9,[N9,t.hasAggregates?(p(),v("div",z9,U9)):T("",!0)]),(p(!0),v(ne,null,xe(fe,me=>(p(),v("div",{key:me.duster_field_name,style:qn(me.visible?"":r.value),class:"my-2 flex justify-content-between flex-wrap"},[g("div",null,[P(oe,{modelValue:i.value,"onUpdate:modelValue":Q[0]||(Q[0]=Ke=>i.value=Ke),name:t.category,"input-id":me.duster_field_name,value:me,disabled:u(me.duster_field_name)},null,8,["modelValue","name","input-id","value","disabled"]),g("label",{for:me.duster_field_name,class:"ml-2"},Y(me.label),9,W9),P(j9,{"initial-field-name-prop":me.duster_field_name},null,8,["initial-field-name-prop"])]),t.hasAggregates?(p(),v("div",G9,[me.selected?(p(),v("span",q9,[!me.aggregate_type||me.aggregate_type==="default"?(p(),v("span",Y9," default aggregates ")):(p(!0),v(ne,{key:1},xe(me.aggregates,Ke=>(p(),$(ue,{label:Ke.text,key:Ke.text,class:"text-sm pt-0 pb-0 mr-1",style:{height:"1.5em"}},null,8,["label"]))),128))])):T("",!0),me.selected&&!u(me.duster_field_name)?Se((p(),$(j,{key:1,icon:"pi pi-cog",outlined:"",text:"",class:"ml-2",style:{height:"1.3em"},onClick:Ke=>S(me)},null,8,["onClick"])),[[ve,"Edit Aggregates",void 0,{top:!0}]]):T("",!0)])):T("",!0)],4))),128))]))),128))]),P(q,{visible:m.value,header:"Aggregates","onUpdate:visible":ie},{footer:L(()=>[P(j,{label:"Save",class:"p-button-primary",size:"small",icon:"pi pi-check",onClick:F}),P(j,{label:"Cancel",class:"p-button-secondary",size:"small",icon:"pi pi-times",onClick:ie})]),default:L(()=>[g("div",J9,[g("div",Z9,[P(D,{modelValue:a.value.aggregate_type,"onUpdate:modelValue":Q[1]||(Q[1]=fe=>a.value.aggregate_type=fe),"input-id":"defaultAggregates",name:"defaultCustom",value:"default",autofocus:"",onChange:Q[2]||(Q[2]=fe=>f.value=!1)},null,8,["modelValue"]),X9]),g("div",Q9,[P(D,{modelValue:a.value.aggregate_type,"onUpdate:modelValue":Q[3]||(Q[3]=fe=>a.value.aggregate_type=fe),"input-id":"customAggregates",name:"defaultCustom",value:"custom",onChange:Q[4]||(Q[4]=fe=>f.value=!0)},null,8,["modelValue"]),e4])]),a.value.aggregate_type=="custom"?(p(),v("div",t4,[g("div",n4,[(p(!0),v(ne,null,xe(_.value,fe=>(p(),v("div",{key:fe.value,class:"flex align-items-center"},[P(oe,{name:"aggregateOptions",modelValue:a.value.aggregates,"onUpdate:modelValue":Q[5]||(Q[5]=ge=>a.value.aggregates=ge),"input-id":fe.value+"_custom",value:fe,class:te({"p-invalid":x.value}),onClick:Q[6]||(Q[6]=ge=>x.value=!1)},null,8,["modelValue","input-id","value","class"]),g("label",{for:fe.value+"_custom",class:"ml-2"},Y(fe.text),9,r4)]))),128)),t.hasClosestTime?(p(),v("div",i4,[P(oe,{modelValue:a.value.aggregates,"onUpdate:modelValue":Q[7]||(Q[7]=fe=>a.value.aggregates=fe),name:"aggregateOptions","input-id":I.value.value+"_custom",value:I.value,class:te({"p-invalid":x.value})},null,8,["modelValue","input-id","value","class"]),g("label",{for:I.value.value+"_custom",class:"ml-2 mr-2"}," Closest to Time "+Y(t.closestTime??"Undefined"),9,o4)])):T("",!0),t.hasClosestEvent?(p(),v("div",a4,[P(oe,{modelValue:a.value.aggregates,"onUpdate:modelValue":Q[8]||(Q[8]=fe=>a.value.aggregates=fe),name:"aggregateOptions","input-id":z.value.value+"_custom",value:z.value,class:te({"p-invalid":x.value})},null,8,["modelValue","input-id","value","class"]),g("label",{for:z.value.value+"_custom",class:"ml-2 mr-2"}," Closest to "+Y((t.closestEvent??"").length?t.closestEvent:"Event - Undefined"),9,l4)])):T("",!0)]),x.value?(p(),v("small",s4,Y(x.value),1)):T("",!0)])):T("",!0)]),_:1},8,["visible"])],64)}}}),u4={class:"grid"},c4={class:"col-6 mt-2"},d4={class:"p-inputgroup flex"},p4=g("span",{class:"p-inputgroup-addon"},[g("i",{class:"pi pi-search"})],-1),f4={class:"col-6 mt-2"},m4={class:"flex flex-wrap gap-3"},h4=g("label",{class:"flex align-items-center"},"Show: ",-1),g4=["for"],v4=g("hr",null,null,-1),y4=g("div",null,[g("p",null,[ye(' Clinical variables that are added and require aggregation (i.e., any clinical variables under the category of "Labs" or "Vitals") will default to the settings here for convenience. '),g("br"),ye(" Such variables may have their settings individually changed after being added. "),g("br"),ye(` NOTE: The "Closest to Event" and "Closest to Time" aggregations are only available when applicable according to the Data Collection Window's timing. `)])],-1),b4={class:"card flex flex-wrap gap-4 mt-3"},w4=["for"],C4={key:0,class:"flex align-items-center"},_4=["for"],S4={key:0},O4={key:0,class:"flex p-error mb-3"},P4={key:1,class:"flex align-items-center"},I4=["for"],k4={key:0,class:"flex p-error ml-2"},T4={key:1,id:"aggOption-help",class:"flex p-error ml-2"},x4=bt({__name:"ClinicalDataDialog",props:{showClinicalDataDialog:Boolean,activeOptions:Array,initialWindow:{type:Object,required:!1},timing:{type:Object,required:!0},clinicalData:{type:Object,required:!0},aggregateDefaults:{type:Array},closestToEvent:{type:Array},closestToTime:{type:String},eventOptions:{type:Array,required:!0},rpDates:{type:Array,required:!0},labOptions:{type:Array,required:!0},vitalOptions:{type:Array,required:!0},outcomeOptions:{type:Array,required:!0},scoreOptions:{type:Array,required:!0}},emits:["saveClinicalDataUpdate","cancelClinicalDataUpdate","update:clinicalData","update:aggregateDefaults","update:showClinicalDataDialog","update:activeOptions","update:closestToEvent","update:closestToTime"],setup(t,{emit:e}){const n=t,r=de({global:{value:null,matchMode:rt.CONTAINS}}),o=Z(()=>r.value.global.value),i=Z({get(){return n.showClinicalDataDialog},set(R){e("update:showClinicalDataDialog",R)}}),a=Z({get(){return n.clinicalData},set(R){e("update:clinicalData",R)}}),l=Z({get(){return n.aggregateDefaults},set(R){e("update:aggregateDefaults",R)}}),u=Z(()=>{var R,k;return((R=n.initialWindow)==null?void 0:R.aggregate_defaults)!==void 0?(k=n.initialWindow)==null?void 0:k.aggregate_defaults.map(A=>A.value):[]}),s=Z(()=>{var R,k;return((R=n.initialWindow)==null?void 0:R.data)!==void 0?(k=n.initialWindow)==null?void 0:k.data:{}}),c=Z(()=>{if(u.value.includes("closest_time")||u.value.includes("closest_event"))return!0;let R=[];return s.value.hasOwnProperty("labs")&&R.concat(s.value.labs),s.value.hasOwnProperty("vitals")&&R.concat(s.value.vitals),R.forEach(k=>{if(k.aggregates.map(be=>be.value).includes("closest_time")||u.value.includes("closest_event"))return!0}),!1}),d=Z(()=>cn.filter(R=>R.value.indexOf("closest")===-1)),m=Z({get(){return n.closestToEvent},set(R){e("update:closestToEvent",R)}}),f=Z({get(){return n.closestToEvent&&n.closestToEvent[0]&&n.closestToEvent[0].label?z.value.find(R=>R.label===n.closestToEvent[0].label)??JSON.parse(JSON.stringify(Bt)):JSON.parse(JSON.stringify(Bt))},set(R){R.label!==""&&e("update:closestToEvent",[R])}}),y=Z(()=>cn.find(R=>R.value==="closest_event")??{text:"Closest Event",value:"closest_event"}),b=Z(()=>!(n.timing&&n.timing.repeat_interval&&n.timing.repeat_interval.length>0)),S=Z(()=>{let R=!1;return b.value&&(l.value&&(R=l.value.findIndex(k=>k.value==="closest_event")>-1),R||(R=a.value.labs.findIndex(k=>k.selected&&k.aggregate_type==="custom"&&JSON.stringify(k.aggregates).indexOf("closest_event")>-1)>-1),R||(R=a.value.vitals.findIndex(k=>k.selected&&k.aggregate_type==="custom"&&JSON.stringify(k.aggregates).indexOf("closest_event")>-1)>-1)),R});ut(S,R=>{R||(m.value=[],f.value=JSON.parse(JSON.stringify(Bt)),_("closest_event"))});const _=R=>{if(l.value){const k=l.value.filter(A=>A.value!==R);l.value=k}a.value.labs=I(R,a.value.labs),a.value.vitals=I(R,a.value.vitals)},I=(R,k)=>k.map(be=>{if(be.selected&&be.aggregate_type==="custom"&&JSON.stringify(be.aggregates).indexOf(R)>-1){const Te=be.aggregates.filter(Ee=>Ee.value!=R);be.aggregates=Te,Te.length===0&&(be.aggregate_type="default")}return be}),z=Z(()=>n.eventOptions.filter(R=>R.value_type==="datetime")),x=Z({get(){return n.closestToTime},set(R){e("update:closestToTime",R)}}),F=de(new Date("2024T08:00"));In(()=>{F.value?x.value=("0"+F.value.getHours()).slice(-2)+":"+("0"+F.value.getMinutes()).slice(-2)+":00":x.value="08:00:00"});const ie=Z(()=>cn.find(R=>R.value==="closest_time")??{text:"Closest Time",value:"closest_time"}),ae=Z(()=>n.timing?!!(n.timing.start.interval.type=="day"&&n.timing.start.interval.length==1||n.timing.end.interval.type=="day"&&n.timing.end.interval.length==1||n.timing.repeat_interval&&n.timing.repeat_interval.type=="day"&&n.timing.repeat_interval.length==1||n.timing.start.type==="date"&&n.timing.end.type==="date"&&(n.timing.start.duster_field_name&&n.timing.start.duster_field_name.length>0&&n.timing.start.duster_field_name===n.timing.end.duster_field_name||n.timing.start.redcap_field_name&&n.timing.start.redcap_field_name.length>0&&n.timing.start.redcap_field_name===n.timing.end.redcap_field_name)):!1),M=Z(()=>{let R=!1;return ae.value&&(l.value&&(R=l.value.findIndex(k=>k.value==="closest_time")>-1),R||(R=a.value.labs.findIndex(k=>k.selected&&k.aggregate_type==="custom"&&JSON.stringify(k.aggregates).indexOf("closest_time")>-1)>-1),R||(R=a.value.vitals.findIndex(k=>k.selected&&k.aggregate_type==="custom"&&JSON.stringify(k.aggregates).indexOf("closest_time")>-1)>-1)),R});ut(M,R=>{R||(F.value=new Date("2024T08:00"),x.value=void 0,_("closest_time"))});const Q=Z(()=>{let R=a.value.labs?a.value.labs.findIndex(k=>k.selected&&k.aggregate_type=="default")>-1:!1;return R||(R=a.value.vitals?a.value.vitals.findIndex(k=>k.selected&&k.aggregate_type==="default")>-1:!1),R}),oe=Ne.regex(/^([0-1][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]$/),ue=Z(()=>({aggregateDefaults:l.value,closestEvent:f.value.duster_field_name?f.value.duster_field_name:f.value.redcap_field_name,closestTime:x.value})),j=Z(()=>({aggregateDefaults:{requiredIf:Ne.withMessage("At least one default aggregate must be selected.",$t(Q.value)),minLength:L6(1)},closestEvent:{requiredIf:Ne.withMessage("Closest event is required",$t(S.value))},closestTime:{requiredIf:Ne.withMessage("Closest time is required",$t(M.value)),timeFormat:Ne.withMessage("Incorrect time format",oe)}})),D=er(j,ue);In(()=>{a.value&&(a.value.valid=!D.value.$error,a.value.errors=D.value.$errors)});const q=ol(),ve=()=>{D.value.$touch(),D.value.$error?D.value.$errors.forEach(R=>q.add({severity:"error",summary:"Missing values",detail:R.$message,life:3e3})):(i.value=!1,e("saveClinicalDataUpdate"))},fe=()=>{i.value=!1,e("cancelClinicalDataUpdate")},ge=de(["Selected","Unselected","All"]),me=de("All"),Ke=Z({get(){return n.activeOptions},set(R){e("update:activeOptions",R)}}),V=()=>{Ke.value=[0,1,2,3]};return(R,k)=>{const A=K("InputText"),be=K("RadioButton"),Te=K("Checkbox"),Ee=K("Calendar"),ze=K("Dropdown"),Pe=K("Panel"),Ve=K("AccordionTab"),le=K("Accordion"),B=K("Button"),w=K("Dialog"),O=et("tooltip");return p(),$(w,{visible:i.value,"onUpdate:visible":k[11]||(k[11]=E=>i.value=E),modal:!0,"close-on-escape":!1,style:{width:"75vw"},header:"Select Clinical Values"},{footer:L(()=>[P(B,{label:"Save",class:"p-button-primary",size:"small",icon:"pi pi-check",onClick:ve}),P(B,{label:"Cancel",class:"p-button-secondary",size:"small",icon:"pi pi-times",onClick:fe})]),default:L(()=>[g("div",u4,[g("div",c4,[g("div",d4,[P(A,{placeholder:"Search Clinical Value",modelValue:r.value.global.value,"onUpdate:modelValue":[k[0]||(k[0]=E=>r.value.global.value=E),V]},null,8,["modelValue"]),p4])]),g("div",f4,[g("div",m4,[h4,(p(!0),v(ne,null,xe(ge.value,(E,N)=>(p(),v("div",{key:N,class:"flex align-items-center"},[P(be,{modelValue:me.value,"onUpdate:modelValue":k[1]||(k[1]=W=>me.value=W),name:"filterSelected","input-id":E,value:E},null,8,["modelValue","input-id","value"]),g("label",{for:E,class:"flex align-items-center ml-2"},Y(E),9,g4)]))),128))])])]),v4,P(Pe,{header:"Default Aggregates",toggleable:""},{default:L(()=>[y4,g("div",b4,[(p(!0),v(ne,null,xe(d.value,E=>(p(),v("div",{key:E.value,class:"flex align-items-center"},[P(Te,{name:"defaultAggregate",modelValue:l.value,"onUpdate:modelValue":k[2]||(k[2]=N=>l.value=N),value:E,"input-id":E.value,class:te(["mr-2",{"p-invalid":ee(D).aggregateDefaults.$error}]),disabled:u.value.includes(E.value)},null,8,["modelValue","value","input-id","class","disabled"]),g("label",{for:E.value},Y(E.text),9,w4)]))),128)),ae.value?(p(),v("div",C4,[P(Te,{modelValue:l.value,"onUpdate:modelValue":k[3]||(k[3]=E=>l.value=E),name:"defaultAggregate","input-id":ie.value.value,value:ie.value,class:te({"p-invalid":ee(D).aggregateDefaults.$error}),disabled:u.value.includes(ie.value.value)},null,8,["modelValue","input-id","value","class","disabled"]),g("label",{for:ie.value.value,class:"ml-2 mr-2"},Y(ie.value.text),9,_4),M.value?(p(),v("div",S4,[Se(P(Ee,{id:"calendar-timeonly",modelValue:F.value,"onUpdate:modelValue":k[4]||(k[4]=E=>F.value=E),timeOnly:"",disabled:c.value},null,8,["modelValue","disabled"]),[[O,"Closest Time value applies to both default and custom aggregates"]]),ee(D).closestTime.$error?(p(),v("small",O4,Y(ee(D).closestTime.$errors[0].$message),1)):T("",!0)])):T("",!0)])):T("",!0),b.value?(p(),v("div",P4,[P(Te,{modelValue:l.value,"onUpdate:modelValue":k[5]||(k[5]=E=>l.value=E),name:"defaultAggregate","input-id":y.value.value,value:y.value,class:te({"p-invalid":ee(D).aggregateDefaults.$error}),disabled:u.value.includes(y.value.value)},null,8,["modelValue","input-id","value","class","disabled"]),g("label",{for:y.value.value,class:"ml-2 mr-2"},Y(y.value.text),9,I4),Se((p(),v("span",null,[S.value?(p(),$(ze,{key:0,modelValue:f.value,"onUpdate:modelValue":k[6]||(k[6]=E=>f.value=E),options:z.value,optionLabel:"label",placeholder:"Choose an event",class:te([{"p-invalid":ee(D).closestEvent.$error}]),disabled:c.value},null,8,["modelValue","options","class","disabled"])):T("",!0)])),[[O,"Closest Event value applies to both default and custom aggregates"]]),ee(D).closestEvent.$error?(p(),v("small",k4,Y(ee(D).closestEvent.$errors[0].$message),1)):T("",!0),ee(D).aggregateDefaults.$error?(p(),v("small",T4,Y(ee(D).aggregateDefaults.$errors[0].$message),1)):T("",!0)])):T("",!0)])]),_:1}),P(le,{multiple:!0,activeIndex:Ke.value,class:"mt-2"},{default:L(()=>[P(Ve,{header:"Labs"},{default:L(()=>[P(Ri,{category:"labs",options:t.labOptions,"initial-data":s.value,"has-aggregates":!0,"has-closest-time":ae.value,"has-closest-event":b.value,"closest-time":t.closestToTime,"closest-event":f.value.label,"search-text":o.value,"select-filter":me.value,"selected-options":a.value.labs,"onUpdate:selectedOptions":k[7]||(k[7]=E=>a.value.labs=E)},null,8,["options","initial-data","has-closest-time","has-closest-event","closest-time","closest-event","search-text","select-filter","selected-options"])]),_:1}),P(Ve,{header:"Vitals"},{default:L(()=>[P(Ri,{category:"vitals",options:t.vitalOptions,"initial-data":s.value,"has-aggregates":!0,"has-closest-time":ae.value,"has-closest-event":b.value,"closest-time":t.closestToTime,"closest-event":f.value.label,"search-text":o.value,"select-filter":me.value,"selected-options":a.value.vitals,"onUpdate:selectedOptions":k[8]||(k[8]=E=>a.value.vitals=E)},null,8,["options","initial-data","has-closest-time","has-closest-event","closest-time","closest-event","search-text","select-filter","selected-options"])]),_:1}),P(Ve,{header:"Outcomes"},{default:L(()=>[P(Ri,{category:"outcomes",options:t.outcomeOptions,"initial-data":s.value,"has-aggregates":!1,"has-closest-time":!1,"has-closest-event":!1,"search-text":o.value,"select-filter":me.value,"selected-options":a.value.outcomes,"onUpdate:selectedOptions":k[9]||(k[9]=E=>a.value.outcomes=E)},null,8,["options","initial-data","search-text","select-filter","selected-options"])]),_:1}),P(Ve,{header:"Scores"},{default:L(()=>[P(Ri,{category:"scores",options:t.scoreOptions,"initial-data":s.value,"has-aggregates":!1,"has-closest-time":!1,"has-closest-event":!1,"search-text":o.value,"select-filter":me.value,"selected-options":a.value.scores,"onUpdate:selectedOptions":k[10]||(k[10]=E=>a.value.scores=E)},null,8,["options","initial-data","search-text","select-filter","selected-options"])]),_:1})]),_:1},8,["activeIndex"]),P(ee(mo))]),_:1},8,["visible"])}}}),E4={class:"field grid"},D4={class:"col-12 mb-2 md:col-2 md:mb-0"},R4={class:"ml-2 pi pi-info-circle",style:{color:"blue"}},$4={class:"col-12 md:col-10"},A4={class:"formgroup"},M4={class:"field-radiobutton mt-1"},L4=["for"],F4={key:0,class:"formgroup-inline"},B4={class:"field"},j4={key:0},V4={key:1},H4={key:2,class:"flex p-error mb-3"},N4={key:0,class:"field"},z4=g("label",null," based on ",-1),K4={key:0,class:"flex p-error mb-3"},U4={key:1,class:"formgroup-inline"},W4={class:"field"},G4={key:0,class:"flex p-error mb-3"},q4={class:"field"},Y4={key:0,class:"flex p-error mb-3"},J4={class:"field"},Z4={key:0},X4={key:1},Q4={key:0,class:"flex p-error mb-3"},$u=bt({__name:"TimingEvent",props:{timeTypeOptions:{type:Array,required:!0},typeLabel:String,eventType:{type:String,required:!0},eventOptions:{type:Array,required:!0},rpDates:{type:Array,required:!0},timingObject:{type:Object,required:!0},otherTimingEvent:{type:Object,required:!0},instigator:{type:String}},emits:["update:timingObject","clearPreset","instigate"],setup(t,{emit:e}){const n=t,r=Z({get(){return n.timingObject},set(_){e("update:timingObject",_)}}),o=Z(()=>{var _;if(n.eventType==="end"&&n.otherTimingEvent.type){if(n.otherTimingEvent.type.indexOf("date")>-1)return n.timeTypeOptions.filter(I=>I.value==n.otherTimingEvent.type||I.value=="interval");if(n.otherTimingEvent.type==="interval"&&((_=n.otherTimingEvent.interval)!=null&&_.type)){const I=n.otherTimingEvent.interval.type==="day"?"date":"datetime";return n.timeTypeOptions.filter(z=>z.value===I)}}else if(n.otherTimingEvent.type==="interval")return n.timeTypeOptions.filter(I=>I.value!=="interval");return n.timeTypeOptions}),i=Z(()=>{if(n.eventType==="end"){if(n.otherTimingEvent.type==="datetime")return zn.filter(_=>_.value==="hour");if(n.otherTimingEvent.type==="date")return zn.filter(_=>_.value==="day")}return zn});In(()=>{o.value.length===1?r.value.type=o.value[0].value:n.instigator&&n.eventType!=n.instigator&&n.otherTimingEvent.type&&n.otherTimingEvent.type!==r.value.type&&n.otherTimingEvent.type!=="interval"&&r.value.type!=="interval"&&(r.value.type=n.otherTimingEvent.type)});const a=Z(()=>r.value.type==="datetime"?n.eventOptions.filter(_=>_&&_.value_type&&(_.duster_field_name||_.redcap_field_name)&&_.value_type==="datetime"):n.eventOptions.filter(_=>_&&_.value_type&&(_.duster_field_name||_.redcap_field_name))),l=Z({get(){var _;return(_=r.value.interval)==null?void 0:_.type},set(_){r.value.interval||(r.value.interval={...Kt}),r.value.interval.type=_}}),u=Z({get(){var _;return((_=r.value.interval)==null?void 0:_.length)??0},set(_){r.value.interval||(r.value.interval={...Kt}),r.value.interval.length=_}});In(()=>{r.value.type=="interval"&&(r.value.interval||(r.value.interval={...Kt}),l.value||(n.otherTimingEvent.type==="datetime"?l.value="hour":n.otherTimingEvent.type==="date"&&(l.value="day")),r.value.interval.label=u.value.toString()+" "+l.value,r.value.interval.label+=n.eventType=="start"?"(s) before End":"(s) after Start",r.value.label=r.value.interval.label)});const s=Z({get(){if(r.value)if(r.value.duster_field_name){let _=r.value.duster_field_name,I=n.eventOptions.findIndex(z=>z.duster_field_name==_);return n.eventOptions[I]}else{let _=r.value.redcap_field_name,I=n.eventOptions.findIndex(z=>!z.duster_field_name&&z.redcap_field_name==_);if(I>-1)return n.eventOptions[I]}return JSON.parse(JSON.stringify(Bt))},set(_){r.value&&(r.value.redcap_field_type=_.redcap_field_type,_.duster_field_name?(r.value.duster_field_name=_.duster_field_name,r.value.redcap_field_name=void 0,r.value.rp_date||(r.value.rp_date=n.rpDates[0].redcap_field_name)):_.redcap_field_name&&(r.value.redcap_field_name=_.redcap_field_name,r.value.duster_field_name=void 0,r.value.rp_date=_.redcap_field_name))}}),c=Z(()=>n.typeLabel?n.typeLabel:Tn(n.eventType)+" at: "),d=(_,I,z)=>{if(I){let x=_.find(F=>F.duster_field_name===I);if(x)return x.label}else if(z){let x=_.find(F=>F.redcap_field_name===z);if(x)return x.label}return""};In(()=>{r.value.type!="interval"&&(r.value.label=d(n.eventOptions,r.value.duster_field_name,r.value.redcap_field_name)??"",r.value.label.length&&r.value.type=="date"&&(r.value.label=n.eventType=="end"?"23:59:00 of "+r.value.label:"00:00:00 of "+r.value.label))});const m=Ne.regex(/^[1-9][0-9]*$/),f=Z(()=>({timingEventType:r.value.type,timingEventValue:s.value.duster_field_name?s.value.duster_field_name:s.value.redcap_field_name,timingEventInterval:r.value.interval,timingEventRpDate:r.value.rp_date})),y=Z(()=>({timingEventType:{required:Ne.withMessage("Required",gr)},timingEventValue:{requiredIf:Ne.withMessage("Required "+Tn(n.eventType)+" Event",$t(r.value.type!=="interval"))},timingEventInterval:{requiredIf:$t(r.value.type=="interval"),type:{requiredIf:Ne.withMessage("Required",$t(r.value.type=="interval"))},length:{requiredIf:Ne.withMessage("Value must be a positive integer",$t(r.value.type=="interval")),positiveInteger:Ne.withMessage("Value must be a positive integer",m)}},timingEventRpDate:{requiredIf:Ne.withMessage("Required",$t(!!r.value.duster_field_name))}})),b=er(y,f),S=Z(()=>n.eventType=="start"?"Some description about start":"Some description about end");return(_,I)=>{const z=K("RadioButton"),x=K("Dropdown"),F=K("InputNumber"),ie=et("tooltip");return p(),v("div",E4,[g("label",D4,[ye(Y(c.value)+" ",1),Se(g("i",R4,null,512),[[ie,S.value]])]),g("div",$4,[g("div",A4,[(p(!0),v(ne,null,xe(o.value,ae=>(p(),v("div",{key:ae.value,class:"formgroup-inline"},[g("div",M4,[P(z,{modelValue:r.value.type,"onUpdate:modelValue":M=>r.value.type=M,name:t.eventType+"TimeType","input-id":ae.value,value:ae.value,class:te({"p-invalid":ee(b).timingEventType.$error}),onClick:I[0]||(I[0]=M=>_.$emit("instigate",t.eventType)),onChange:I[1]||(I[1]=M=>e("clearPreset"))},null,8,["modelValue","onUpdate:modelValue","name","input-id","value","class"]),Se((p(),v("label",{for:ae.value,class:"ml-2"},[ye(Y(ae.text),1)],8,L4)),[[ie,ae.tooltip]])]),ae.value===r.value.type&&ae.value.indexOf("date")>-1?(p(),v("div",F4,[g("div",B4,[r.value.type==="date"&&t.eventType==="start"?(p(),v("label",j4," 00:00:00 of ")):r.value.type==="date"&&t.eventType==="end"?(p(),v("label",V4," 23:59:00 of ")):T("",!0),P(x,{modelValue:s.value,"onUpdate:modelValue":I[2]||(I[2]=M=>s.value=M),options:a.value,optionLabel:"label",style:{width:"12rem"},class:te({"p-invalid":ee(b).timingEventValue.$error}),onChange:I[3]||(I[3]=M=>e("clearPreset"))},null,8,["modelValue","options","class"]),ee(b).timingEventValue.$error?(p(),v("small",H4,Y(ee(b).timingEventValue.$errors[0].$message),1)):T("",!0)]),s.value&&s.value.duster_field_name?(p(),v("div",N4,[z4,P(x,{modelValue:r.value.rp_date,"onUpdate:modelValue":I[4]||(I[4]=M=>r.value.rp_date=M),options:t.rpDates,optionLabel:"label",optionValue:"redcap_field_name",style:{width:"12rem"},class:te({"p-invalid":ee(b).timingEventRpDate.$error})},null,8,["modelValue","options","class"]),ee(b).timingEventRpDate.$error?(p(),v("small",K4,Y(ee(b).timingEventRpDate.$errors[0].$message),1)):T("",!0)])):T("",!0)])):T("",!0),ae.value===r.value.type&&ae.value==="interval"?(p(),v("div",U4,[g("div",W4,[P(F,{modelValue:u.value,"onUpdate:modelValue":I[5]||(I[5]=M=>u.value=M),id:"intervalLength","input-id":"integeronly",min:1,class:te({"p-invalid":ee(b).timingEventInterval.length.$error}),"input-style":{width:"3rem"},placeholder:"# of",onValue:I[6]||(I[6]=M=>e("clearPreset"))},null,8,["modelValue","class"]),ee(b).timingEventInterval.length.$error?(p(),v("small",G4,Y(ee(b).timingEventInterval.length.$errors[0].$message),1)):T("",!0)]),g("div",q4,[P(x,{modelValue:l.value,"onUpdate:modelValue":I[7]||(I[7]=M=>l.value=M),options:i.value,optionLabel:"text",optionValue:"value",style:{width:"10rem"},placeholder:"Hours / Days",class:te({"p-invalid":ee(b).timingEventInterval.type.$error}),onChange:I[8]||(I[8]=M=>e("clearPreset"))},null,8,["modelValue","options","class"]),ee(b).timingEventInterval.type.$error?(p(),v("small",Y4,Y(ee(b).timingEventInterval.type.$errors[0].$message),1)):T("",!0)]),g("div",J4,[t.eventType==="start"&&t.otherTimingEvent?(p(),v("label",Z4," before End ("+Y(t.otherTimingEvent.label)+") ",1)):T("",!0),t.eventType==="end"&&t.otherTimingEvent?(p(),v("label",X4," after Start ("+Y(t.otherTimingEvent.label)+") ",1)):T("",!0)])])):T("",!0)]))),128)),ee(b).timingEventType.$error?(p(),v("small",Q4,Y(ee(b).timingEventType.$errors[0].$message),1)):T("",!0)])])])}}}),Ta={label:"",form_name:"",type:"nonrepeating",timing_preset:void 0,timing_valid:!1,timing:{start:JSON.parse(JSON.stringify(Bt)),end:JSON.parse(JSON.stringify(Bt)),repeat_interval:{...Kt}},aggregate_defaults:void 0,event:[JSON.parse(JSON.stringify(Bt))],closest_time:"",data:{labs:[],vitals:[],outcomes:[],scores:[],valid:!1},id:"Undefined"},e7={class:"field grid mt-2"},t7={class:"col-2",for:"presets"},n7={class:"ml-2 pi pi-info-circle",style:{color:"blue"}},r7={class:"card"},i7={class:"card"},o7={class:"card"},a7={class:"field grid"},l7={class:"col-offset-2 col-12 md:col-10"},s7={class:"ml-2",for:"hasRepeatIntervals"},u7={class:"ml-2 pi pi-info-circle",style:{color:"blue"}},c7={key:0,class:"field grid"},d7=g("div",{class:"col-12 mt-2 md:col-2 md:mb-0"},[g("label",null,"Collect Data Every: ")],-1),p7={class:"col-12 md:col-10"},f7={class:"formgroup-inline"},m7={class:"field"},h7={key:0,class:"flex p-error mb-3"},g7={class:"field"},v7={class:"mt-2"},y7={key:0,class:"flex p-error mb-3"},b7=bt({__name:"TimingDialog",props:{collectionWindow:{type:Object,required:!0},presets:{type:Array,required:!0},eventOptions:{type:Array,required:!0},rpDates:{type:Array,required:!0},showTimingDialog:{type:Boolean,required:!0}},emits:["update:showTimingDialog","saveTimingUpdate"],setup(t,{emit:e}){const n=t,r=Z({get(){return n.showTimingDialog},set(x){e("update:showTimingDialog",x)}}),o=de(JSON.parse(JSON.stringify(Ta)));ut(r,x=>{x&&(o.value=JSON.parse(JSON.stringify(n.collectionWindow)))}),Z(()=>o.value.timing.start.type==="datetime"||o.value.timing.end.type==="datetime"?zn.filter(x=>x.value==="hour"):o.value.timing.start.type==="date"||o.value.timing.end.type==="date"?zn.filter(x=>x.value==="day"):zn);const i=Z({get(){var x;return((x=o.value.timing.repeat_interval)==null?void 0:x.type)??void 0},set(x){o.value.timing.repeat_interval||(o.value.timing.repeat_interval={...Kt}),o.value.timing.repeat_interval.type=x}}),a=Z({get(){var x;return((x=o.value.timing.repeat_interval)==null?void 0:x.length)??void 0},set(x){o.value.timing.repeat_interval||(o.value.timing.repeat_interval={...Kt}),o.value.timing.repeat_interval.length=x}});In(()=>{o.value.timing.repeat_interval&&a.value&&a.value>=0&&i.value&&(o.value.timing.repeat_interval.label="Every "+a.value+" "+i.value+"(s) ")});const l=Z({get(){return o.value.type==="repeating"},set(x){o.value.type=x?"repeating":"nonrepeating"}}),u=Z(()=>!(o.value.timing&&o.value.timing.start&&o.value.timing.end&&o.value.timing.start.type&&o.value.timing.end.type));In(()=>{l.value?(o.value.timing.repeat_interval||(o.value.timing.repeat_interval={...Kt}),o.value.timing.start.type==="datetime"||o.value.timing.end.type==="datetime"?o.value.timing.repeat_interval.type="hour":(o.value.timing.start.type==="date"||o.value.timing.end.type==="date")&&(o.value.timing.repeat_interval.type="day")):(o.value.timing.repeat_interval=void 0,a.value=void 0,i.value=void 0)});const s=de();ut(s,x=>{if(x){const F=o.value.timing.start.rp_date,ie=o.value.timing.end.rp_date;o.value.timing.start=JSON.parse(JSON.stringify(x.timing.start)),o.value.timing.end=JSON.parse(JSON.stringify(x.timing.end)),o.value.label=x.label,o.value.timing.start.rp_date=F&&x.timing.start.type!=="interval"?F:n.rpDates[0].redcap_field_name,o.value.timing.end.rp_date=ie&&x.timing.end.type!=="interval"?ie:n.rpDates[0].redcap_field_name,o.value.type=x.type,o.value.timing.repeat_interval=JSON.parse(JSON.stringify(x.timing.repeat_interval))}});const c=de(),d=Ne.regex(/^[1-9][0-9]*$/),m=Z(()=>({timingRepeatIntervalLength:a.value,timingRepeatIntervalType:i.value})),f=Z(()=>({timingRepeatIntervalLength:{requiredIf:Ne.withMessage("Repeat interval length required",$t(l.value)),positiveInteger:Ne.withMessage("Value must be a positive integer",d)},timingRepeatIntervalType:{requiredIf:Ne.withMessage("Repeat interval type required",$t(l.value))}})),y=er(f,m),b=ol(),S=()=>{y.value.$touch(),console.log("Validation errors :"+y.value.$error),console.log(y.value),I(),y.value.$error?y.value.$errors.forEach(x=>b.add({severity:"error",summary:"Unable To Save",detail:x.$message,life:3e3})):(r.value=!1,e("saveTimingUpdate",o.value),y.value.$reset())},_=()=>{I(),r.value=!1,y.value.$reset()},I=()=>{s.value=void 0},z=()=>{I(),o.value.label="",o.value.type="nonrepeating",o.value.timing.start=JSON.parse(JSON.stringify(Bt)),o.value.timing.end=JSON.parse(JSON.stringify(Bt)),o.value.timing_valid=!1,a.value=void 0,i.value=void 0,o.value.timing.repeat_interval={...Kt}};return(x,F)=>{const ie=K("Dropdown"),ae=K("Divider"),M=K("Checkbox"),Q=K("InputNumber"),oe=K("Button"),ue=K("Dialog"),j=et("tooltip");return p(),$(ue,{visible:r.value,"onUpdate:visible":F[7]||(F[7]=D=>r.value=D),modal:!0,style:{width:"75vw"},header:"Data Collection Timing",class:"my-2"},{footer:L(()=>[P(oe,{label:"Save",class:"p-button-primary",size:"small",icon:"pi pi-check",onClick:S}),P(oe,{label:"Cancel",class:"p-button-secondary",size:"small",icon:"pi pi-times",onClick:_}),P(oe,{label:"Reset",class:"p-button p-button-secondary",size:"small",onClick:z})]),default:L(()=>[g("div",e7,[g("label",t7,[ye("Presets: "),Se(g("i",n7,null,512),[[j,"Common preset configurations"]])]),P(ie,{class:"col-6",options:t.presets,id:"presets",modelValue:s.value,"onUpdate:modelValue":F[0]||(F[0]=D=>s.value=D),optionLabel:"label"},null,8,["options","modelValue"])]),P(ae),g("div",r7,[P($u,{"timing-object":o.value.timing.start,"onUpdate:timingObject":F[1]||(F[1]=D=>o.value.timing.start=D),"event-type":"start","time-type-options":ee(I6),"event-options":t.eventOptions,"rp-dates":t.rpDates,"other-timing-event":o.value.timing.end,instigator:c.value,onInstigate:F[2]||(F[2]=D=>c.value=D),onClearPreset:I},null,8,["timing-object","time-type-options","event-options","rp-dates","other-timing-event","instigator"])]),P(ae),g("div",i7,[P($u,{"timing-object":o.value.timing.end,"onUpdate:timingObject":F[3]||(F[3]=D=>o.value.timing.end=D),"event-type":"end","time-type-options":ee(k6),"event-options":t.eventOptions,"rp-dates":t.rpDates,"other-timing-event":o.value.timing.start,instigator:c.value,onClearPreset:I,onInstigate:F[4]||(F[4]=D=>c.value=D)},null,8,["timing-object","time-type-options","event-options","rp-dates","other-timing-event","instigator"])]),P(ae),g("div",o7,[g("div",a7,[g("div",l7,[Se(P(M,{"input-id":"hasRepeatIntervals",modelValue:l.value,"onUpdate:modelValue":F[5]||(F[5]=D=>l.value=D),binary:!0,disabled:u.value},null,8,["modelValue","disabled"]),[[j,"Start and end points must be defined before configuring repeat intervals."]]),g("label",s7,[ye(" Repeat Data Collection at defined intervals between Start & End? "),Se(g("i",u7,null,512),[[j,"Collect data multiple times in the collection window at the defined intervals."]])])])]),l.value?(p(),v("div",c7,[d7,g("div",p7,[g("div",f7,[g("div",m7,[P(Q,{modelValue:a.value,"onUpdate:modelValue":F[6]||(F[6]=D=>a.value=D),id:"repeatIntervalLength","input-id":"integeronly",min:1,class:te({"p-invalid":ee(y).timingRepeatIntervalLength.$error}),"input-style":{width:"3rem"},placeholder:"# of"},null,8,["modelValue","class"]),ee(y).timingRepeatIntervalLength.$error?(p(),v("small",h7,Y(ee(y).timingRepeatIntervalLength.$errors[0].$message),1)):T("",!0)]),g("div",g7,[g("label",v7,Y(i.value)+"(s) between Start and End Date/Datetimes",1),ee(y).timingRepeatIntervalType.$error?(p(),v("small",y7,Y(ee(y).timingRepeatIntervalType.$errors[0].$message),1)):T("",!0)])])])])):T("",!0)]),P(ee(mo))]),_:1},8,["visible"])}}}),Jt=t=>(ac("data-v-ddd0cefd"),t=t(),lc(),t),w7={class:"p-panel-title"},C7=Jt(()=>g("strong",null,"From: ",-1)),_7=Jt(()=>g("br",null,null,-1)),S7=Jt(()=>g("strong",null,"To: ",-1)),O7=Jt(()=>g("br",null,null,-1)),P7={key:0},I7=Jt(()=>g("strong",null,"Repeat:",-1)),k7={key:1},T7={key:0,class:"flex p-error mb-3"},x7={key:0,class:"flex p-error mb-3"},E7={class:"text-right"},D7=Jt(()=>g("p",{class:"w-full",style:{"text-align":"center"}}," No Data Collection Windows have been added. ",-1)),R7=Jt(()=>g("p",null," Clinical data is partly defined by relative windows of time. ",-1)),$7=Jt(()=>g("p",null,[ye(" DUSTER uses Data Collection Windows to apply this concept of creating windows of time in which you'd like to gather clinical data. "),g("br"),ye(" Each Data Collection Window will appear in the form of REDCap Instruments in your project. "),g("br"),ye(" Within each window, you may add your desired clinical data. ")],-1)),A7=Jt(()=>g("p",null," You may create Data Collection Windows below with the options to choose among preset configurations or to configure from scratch. ",-1)),M7=bt({__name:"CollectionWindowsPanel",props:{labOptions:{type:Array,required:!0},vitalOptions:{type:Array,required:!0},outcomeOptions:{type:Array,required:!0},scoreOptions:{type:Array,required:!0},clinicalDateOptions:{type:Array,required:!0},rpDates:{type:Array,required:!0},collectionWindows:{type:Array,required:!0},initialWindows:{type:Array,required:!0}},emits:["update:collectionWindows"],setup(t,{emit:e}){const n=t,r=de(JSON.parse(JSON.stringify(Ta))),o=de(),i=de(!1),a=de(!1),l=de(!1),u=Z({get(){return n.collectionWindows},set(D){e("update:collectionWindows",D)}}),s=Z(()=>Array.isArray(n.initialWindows)?n.initialWindows.map(D=>D.id):[]);di(()=>{if(u.value){let D=ue("Undefined",u.value);u.value.splice(D,1)}F.value.$reset()});const c=()=>{r.value=JSON.parse(JSON.stringify(Ta)),r.value.id="cw"+new Date().getTime(),u.value||(u.value=[]),u.value.push(r.value),m(u.value[u.value.length-1])},d=D=>{r.value=D,o.value=JSON.parse(JSON.stringify(D))},m=D=>{r.value=D,i.value=!0},f=de([]),y=(D,q)=>{switch(d(q),S.value=D,f.value.length=0,D){case"labs":f.value.push(0);break;case"vitals":f.value.push(1);break;case"outcomes":f.value.push(2);break;case"scores":f.value.push(3)}a.value=!0},b=Z(()=>{let D=[];return n.clinicalDateOptions&&n.clinicalDateOptions.forEach(q=>{let ve={type:"datetime",label:q.label,redcap_field_name:void 0,redcap_field_type:q.redcap_field_type,duster_field_name:q.duster_field_name,value_type:q.value_type,preposition:"",phi:"t",rp_date:void 0,interval:void 0};D.push(ve)}),n.rpDates&&n.rpDates.forEach(q=>{let ve=q.value_type=="date"?"date":"datetime";D.push({type:ve,label:q.label,redcap_field_name:q.redcap_field_name,interval:void 0,rp_date:q.redcap_field_name,redcap_field_type:q.redcap_field_type,duster_field_name:void 0,value_type:q.value_type,phi:"t"})}),D}),S=de(),_=D=>!!(F.value.localCollectionWindows.$each.$response&&F.value.localCollectionWindows.$each.$response.$errors&&F.value.localCollectionWindows.$each.$response.$errors[D]&&F.value.localCollectionWindows.$each.$response.$errors[D].label.length),I=(D,q,ve)=>u.value.findIndex(fe=>fe.id!=q.id&&fe.label==D)==-1,z=Z(()=>({localCollectionWindows:u.value})),x={localCollectionWindows:{$each:Ne.forEach({label:{required:Ne.withMessage("Labels are required",gr),uniqueLabel:Ne.withMessage("Labels must be unique",I)},timing_valid:{sameAs:Ne.withMessage("Timing Configuration is invalid.",V6(!0))}})}},F=er(x,z,{$lazy:!0}),ie=D=>{if(D&&D.id){let q=ue(D.id,u.value);u.value&&q>-1&&(u.value[q].type=D.type,u.value[q].timing_valid=!0,u.value[q].label=D.label,u.value[q].timing.start=D.timing.start,u.value[q].timing.end=D.timing.end,u.value[q].timing.repeat_interval=D.timing.repeat_interval)}F.value.$reset()},ae=()=>{F.value.$reset()},M=()=>{if(u.value&&r.value&&r.value.id){let D=ue(r.value.id,u.value);o.value&&D>-1&&(u.value[D]=o.value,r.value=u.value[D])}ae()},Q=D=>{if(u.value){let q=ue(D,u.value);u.value.splice(q,1)}},oe=D=>{if(u.value){const q=ue(D,u.value),ve=JSON.parse(JSON.stringify(u.value[q]));ve.id="cw"+new Date().getTime(),u.value.push(ve)}},ue=(D,q)=>q.findIndex(ve=>ve.id===D),j=D=>n.initialWindows.find(ve=>ve.id===D);return(D,q)=>{const ve=K("Button"),fe=K("Column"),ge=K("InputText"),me=K("Badge"),Ke=K("DataTable"),V=K("Panel"),R=K("Dialog"),k=et("tooltip");return p(),v(ne,null,[P(V,null,{header:L(()=>[g("span",w7,[ye("Data Collection Windows "),P(ve,{icon:"pi pi-info-circle",text:"",rounded:"","aria-label":"Info",class:"ml-2 pt-0 pb-0 mt-0 mb-0",style:{height:"1.3em"},onClick:q[0]||(q[0]=A=>l.value=!0)})])]),default:L(()=>[P(Ke,{editMode:"row",class:"p-datatable-sm",value:u.value,dataKey:"id"},{footer:L(()=>[g("div",E7,[P(ve,{label:"Add Data Collection Window",icon:"pi pi-plus",severity:"success",class:"mr-2",onClick:c})])]),empty:L(()=>[D7]),default:L(()=>[P(fe,{key:"timing_config",header:"Timing",style:{width:"5%"}},{body:L(({data:A})=>[Se(P(ve,{icon:"pi pi-pencil",class:"ml-2 p-1",size:"small",severity:!ee(F).$dirty||A.timing_valid?"primary":"danger",disabled:s.value.includes(A.id),onClick:be=>m(A)},null,8,["severity","disabled","onClick"]),[[k,"Configure Timing",void 0,{top:!0}]])]),_:1}),P(fe,{key:"timing_display",header:"Period",style:{width:"20%"}},{body:L(({data:A})=>[A.timing.start.label?(p(),v("div",{key:0,class:te({"p-invalid":!A.timing_valid})},[C7,ye(Y(A.timing.start.label),1),_7,S7,ye(Y(A.timing.end.label),1),O7,A.timing.repeat_interval&&A.timing.repeat_interval.label?(p(),v("span",P7,[I7,ye(" "+Y(A.timing.repeat_interval.label),1)])):T("",!0)],2)):(p(),v("div",k7," "))]),_:1}),P(fe,{key:"label",field:"label",header:"Label",style:{width:"25%"}},{body:L(A=>[g("div",null,[P(ge,{modelValue:A.data[A.field],"onUpdate:modelValue":be=>A.data[A.field]=be,class:te(["p-inputtext-sm","w-11",{"p-invalid":_(A.index)}]),onChange:q[1]||(q[1]=be=>ee(F).value.$reset()),disabled:s.value.includes(A.data.id)},null,8,["modelValue","onUpdate:modelValue","class","disabled"]),_(A.index)?(p(),v("small",T7,Y(ee(F).localCollectionWindows.$each.$response.$errors[A.index].label[0].$message),1)):T("",!0)])]),_:1}),P(fe,{key:"data",field:"data",header:"Clinical Data",style:{width:"40%"}},{body:L(A=>[P(ve,{onClick:be=>y("labs",A.data),size:"small",class:"ml-1 p-1 pr-2 pl-2",rounded:"",severity:ee(F).$dirty&&!A.data[A.field].valid?"danger":"primary"},{default:L(()=>[ye(" Labs"),P(me,{class:"p-badge-no-gutter"},{default:L(()=>[ye(Y(A.data[A.field].labs.length),1)]),_:2},1024)]),_:2},1032,["onClick","severity"]),P(ve,{onClick:be=>y("vitals",A.data),size:"small",class:"ml-1 p-1 pr-2 pl-2",rounded:"",severity:ee(F).$dirty&&!A.data[A.field].valid?"danger":"primary"},{default:L(()=>[ye(" Vitals"),P(me,{class:"p-badge-no-gutter"},{default:L(()=>[ye(Y(A.data[A.field].vitals.length),1)]),_:2},1024)]),_:2},1032,["onClick","severity"]),P(ve,{onClick:be=>y("outcomes",A.data),size:"small",class:"ml-1 p-1 pr-2 pl-2",rounded:""},{default:L(()=>[ye(" Outcomes"),P(me,{class:"p-badge-no-gutter"},{default:L(()=>[ye(Y(A.data[A.field].outcomes.length),1)]),_:2},1024)]),_:2},1032,["onClick"]),P(ve,{onClick:be=>y("scores",A.data),size:"small",class:"ml-1 p-1 pr-2 pl-2",rounded:""},{default:L(()=>[ye(" Scores"),P(me,{class:"p-badge-no-gutter"},{default:L(()=>[ye(Y(A.data[A.field].scores.length),1)]),_:2},1024)]),_:2},1032,["onClick"]),ee(F).$dirty&&!A.data[A.field].valid?(p(),v("small",x7,Y(A.data[A.field].errors[0].$message),1)):T("",!0)]),_:1}),P(fe,{key:"id",field:"id",header:"Actions",style:{width:"10%"}},{body:L(({data:A,field:be})=>[Se(P(ve,{icon:"pi pi-copy",outlined:"",rounded:"",severity:"success",class:"ml-2 p-1 small-icon",size:"small",onClick:Te=>oe(A[be])},null,8,["onClick"]),[[k,"Duplicate Data Collection Window",void 0,{top:!0}]]),s.value.includes(A.id)?T("",!0):Se((p(),$(ve,{key:0,icon:"pi pi-trash",outlined:"",rounded:"",severity:"danger",class:"ml-2 p-1 small-icon",size:"small",onClick:Te=>Q(A[be])},null,8,["onClick"])),[[k,"Delete Data Collection Window",void 0,{top:!0}]])]),_:1})]),_:1},8,["value"])]),_:1}),P(b7,{"show-timing-dialog":i.value,"onUpdate:showTimingDialog":q[2]||(q[2]=A=>i.value=A),"collection-window":r.value,"event-options":b.value,"rp-dates":t.rpDates,presets:ee(O9).cw_presets,onSaveTimingUpdate:ie,onCancelTimingUpdate:q[3]||(q[3]=A=>i.value=!1),"onUpdate:visible":q[4]||(q[4]=A=>i.value=!1)},null,8,["show-timing-dialog","collection-window","event-options","rp-dates","presets"]),P(x4,{"show-clinical-data-dialog":a.value,"onUpdate:showClinicalDataDialog":q[5]||(q[5]=A=>a.value=A),"clinical-data":r.value.data,"onUpdate:clinicalData":q[6]||(q[6]=A=>r.value.data=A),"aggregate-defaults":r.value.aggregate_defaults,"onUpdate:aggregateDefaults":q[7]||(q[7]=A=>r.value.aggregate_defaults=A),"initial-window":j(r.value.id),"clinical-data-category":S.value,timing:r.value.timing,"lab-options":t.labOptions,"vital-options":t.vitalOptions,"score-options":t.scoreOptions,"outcome-options":t.outcomeOptions,"active-options":f.value,"onUpdate:activeOptions":q[8]||(q[8]=A=>f.value=A),"closest-to-event":r.value.event,"onUpdate:closestToEvent":q[9]||(q[9]=A=>r.value.event=A),"closest-to-time":r.value.closest_time,"onUpdate:closestToTime":q[10]||(q[10]=A=>r.value.closest_time=A),"event-options":b.value,"rp-dates":t.rpDates,"onUpdate:visible":M,onSaveClinicalDataUpdate:ae,onCancelClinicalDataUpdate:M},null,8,["show-clinical-data-dialog","clinical-data","aggregate-defaults","initial-window","clinical-data-category","timing","lab-options","vital-options","score-options","outcome-options","active-options","closest-to-event","closest-to-time","event-options","rp-dates"]),P(R,{visible:l.value,"onUpdate:visible":q[12]||(q[12]=A=>l.value=A),modal:"",header:"Data Collection Windows",style:{width:"50vw"}},{footer:L(()=>[P(ve,{onClick:q[11]||(q[11]=A=>l.value=!1)},{default:L(()=>[ye("Close")]),_:1})]),default:L(()=>[R7,$7,A7]),_:1},8,["visible"])],64)}}});const bp=(t,e)=>{const n=t.__vccOpts||t;for(const[r,o]of e)n[r]=o;return n},L7=bp(M7,[["__scopeId","data-v-ddd0cefd"]]),F7={class:"flex flex-wrap align-items-center justify-content-between gap-2"},B7=g("span",{class:"text-0 text-900 font-bold"},"REDCap values",-1),j7={class:"font-bold"},V7=bt({__name:"ScoreSummaryTablePerScore",props:{score:{type:Array,required:!0},scoreLabel:String},emits:["update:score"],setup(t,{emit:e}){const n=t,r=Z({get(){return n.score},set(s){e("update:score",s)}});Z(()=>n.scoreLabel);const o=de(r.value.map(s=>s.label)),i=de(!0),a=de(!1),l=()=>{a.value=!1,o.value=[],o.value=r.value.map(s=>s.label)},u=()=>{i.value=!1,o.value=[]};return(s,c)=>{const d=K("Button"),m=K("Column"),f=K("DataTable"),y=K("Panel");return p(),$(y,{header:t.scoreLabel},{default:L(()=>[P(f,{rowGroupMode:"subheader",groupRowsBy:"category",value:r.value,sortMode:"single",sortField:"category",sortOrder:1,expandedRowGroups:o.value,"onUpdate:expandedRowGroups":c[0]||(c[0]=b=>o.value=b),expandableRowGroups:"",onRowgroupExpand:c[1]||(c[1]=b=>a.value=!1),onRowgroupCollapse:c[2]||(c[2]=b=>i.value=!1)},{header:L(()=>[g("div",F7,[B7,g("span",null,[P(d,{text:"",icon:"pi pi-plus",label:"Expand All",onClick:l}),P(d,{text:"",icon:"pi pi-minus",label:"Collapse All",onClick:u})])])]),groupheader:L(b=>[g("span",j7,Y(b.data.category),1)]),default:L(()=>[P(m,{field:"",header:""}),P(m,{field:"label",header:"Label"}),P(m,{field:"redcap_field_name",header:"REDCap Field Name"})]),_:1},8,["value","expandedRowGroups"])]),_:1},8,["header"])}}}),H7=g("div",{class:"flex flex-wrap align-items-center justify-content-between gap-2"},[g("span",{class:"text-sm text-900 font-bold"},"Identifiers")],-1),N7=g("div",{class:"flex flex-wrap align-items-center justify-content-between gap-2"},[g("span",{class:"text-sm text-900 font-bold"},"Dates and Datetimes")],-1),z7=g("div",{class:"flex flex-wrap align-items-center justify-content-between gap-2"},[g("span",{class:"text-0 text-900 font-bold"},"Timing")],-1),K7=g("div",{class:"flex flex-wrap align-items-center justify-content-between gap-2"},[g("span",{class:"text-0 text-900 font-bold"},"Repeat Instance")],-1),U7=g("div",{class:"flex flex-wrap align-items-center justify-content-between gap-2"},[g("span",{class:"text-0 text-900 font-bold"},"Labs")],-1),W7=g("div",{class:"flex flex-wrap align-items-center justify-content-between gap-2"},[g("span",{class:"text-0 text-900 font-bold"},"Vitals")],-1),G7=g("div",{class:"flex flex-wrap align-items-center justify-content-between gap-2"},[g("span",{class:"text-0 text-900 font-bold"},"Outcomes")],-1),q7={key:0},Y7=g("h1",{style:{color:"red"}}," WARNING: This REDCap project contains non-DUSTER REDCap fields/forms. ",-1),J7=g("h2",{style:{color:"red"}}," The following non-DUSTER REDCap fields may be lost if you decide to edit this DUSTER project: ",-1),Z7=g("div",{class:"text-center my-2"}," Are you sure you want to update this project? ",-1),X7=bt({__name:"ReviewPanel",props:{dev:{type:Boolean},showSummary:{type:Boolean,required:!0},rpData:{type:Array,required:!0},rpIdentifiers:{type:Array,required:!0},rpDates:{type:Array,required:!0},demographics:{type:Array,required:!0},collectionWindows:{type:Array,required:!0},projectInfo:{type:Object,required:!0}},emits:["update:showSummary","delete-auto-save"],setup(t,{emit:e}){const n=t,r=Z({get(){return n.showSummary},set(V){e("update:showSummary",V)}}),o=de([]),i=de([]),a=de([]);ut(r,V=>{V&&(i.value=JSON.parse(JSON.stringify(n.rpDates)),a.value=JSON.parse(JSON.stringify(n.demographics)),o.value=JSON.parse(JSON.stringify(n.collectionWindows)))});const l=Z(()=>n.projectInfo.edit_mode),u=Z(()=>{const V={rp_identifiers:{},rp_dates:{}};V.rp_identifiers=JSON.parse(JSON.stringify(n.rpIdentifiers));for(let R of i.value)R.redcap_field_name&&(V.rp_dates[R.redcap_field_name]={label:R.label,redcap_field_name:R.redcap_field_name,redcap_field_type:R.redcap_field_type,value_type:R.value_type,phi:R.phi});return V}),s=Z(()=>{const V=[];return a.value&&a.value.forEach(R=>V.push({duster_field_name:R.duster_field_name,redcap_field_name:R.duster_field_name,redcap_field_type:R.redcap_field_type,label:R.label,value_type:R.value_type,phi:R.phi})),V}),c=Z(()=>{const V=[];return o.value&&o.value.forEach((R,k)=>{let A={type:R.type,label:R.label,form_name:d(k,R.label),timing:y(R.timing,k),event:R.event?b(R.event,k):[]};const be=R.closest_time?R.closest_time+":00":void 0;A.data=z(R.data,k,R.aggregate_defaults,A.event,be),V.push(A)}),V}),d=(V,R)=>{let k="cw"+V+"_"+R.trim().toLowerCase().replace(/ +/g,"_").replace(/[^a-z_0-9]/g,"").replace(/[_+]/g,"_").replace(/_$/g,"");return k=k.substring(0,50),k},m=(V,R)=>{let k=[];return k.push({event:"Start",label:V.start.label,redcap_field_name:V.start.redcap_field_name,redcap_field_type:V.start.redcap_field_type,value_type:V.start.value_type,type:V.start.type}),k.push({event:"End",label:V.end.label,redcap_field_name:V.end.redcap_field_name,redcap_field_type:V.end.redcap_field_type,value_type:V.start.value_type,type:V.start.type}),R&&R.forEach(A=>{k.push({event:"Closest to Event",label:A.label,redcap_field_name:A.redcap_field_name,redcap_field_type:A.redcap_field_type,value_type:A.value_type,type:A.type})}),k},f=V=>{if(V.repeat_interval)return[{event:"Instance Start",label:"Instance Start Datetime - "+V.repeat_interval.label,redcap_field_name:I(V.start.redcap_field_name),redcap_field_type:"text",type:"datetime"},{event:"Interval End",label:"Interval End Datetime - "+V.repeat_interval.label,redcap_field_name:I(V.end.redcap_field_name),redcap_field_type:"text",type:"datetime"}]},y=(V,R)=>{let k={start:_(V.start,R,"start"),end:_(V.end,R,"end")};return V.repeat_interval&&V.repeat_interval.type&&(k.repeat_interval={...V.repeat_interval},k.repeat_interval.start_instance=S(k,"start"),k.repeat_interval.end_instance=S(k,"end")),k},b=(V,R)=>{let k=[];return V&&V.forEach((A,be)=>{A.type&&k.push(_(A,R,"closest_event"+be))}),k},S=(V,R)=>({label:"Instance "+Tn(R)+" Datetime - "+V.repeat_interval.label,redcap_field_name:I(V[R].redcap_field_name),phi:"t",redcap_field_type:"text",value_type:"datetime"}),_=(V,R,k)=>{let A={type:V.type,label:V.label,redcap_field_name:"cw"+R+"_"+k+"_datetime",phi:"t",redcap_field_type:"text"};if(V.type=="interval"&&V.interval)A.interval={},A.interval.type=V.interval.type,A.interval.length=V.interval.length,A.value_type="datetime";else if(A.value_type=V.value_type,V.duster_field_name)A.duster_field_name=V.duster_field_name,A.rp_date=V.rp_date;else{let be=i.value.findIndex(Te=>Te.redcap_field_name==V.rp_date);be>-1&&(A.rp_date=V.redcap_field_name,A.label=i.value[be].label,A.duster_field_name=null)}return A},I=V=>{if(V){const R=V.indexOf("_datetime");return V.substring(0,R)+"_interval"+V.substring(R)}return""},z=(V,R,k,A,be)=>{let Te={};return Te.labs=x(V.labs,R,k,A,be),Te.vitals=x(V.vitals,R,k,A,be),Te.outcomes=F(V.outcomes,R),Te.scores=M(V.scores,R),Te},x=(V,R,k,A,be)=>{let Te=[],Ee=A&&A[0]?A[0]:Bt;for(let ze of V){let Pe=ze.aggregates&&ze.aggregates.length>0?ze.aggregates:k||[];for(let Ve of Pe){let le=Ve.value.replace("_agg",""),B={label:ie(ze.label,Ve.value,Ee,be),duster_field_name:ze.duster_field_name,redcap_field_name:ze.duster_field_name+"_"+le+"_"+R,value_type:ze.value_type,redcap_field_type:ze.redcap_field_type,redcap_options:ze.redcap_options,redcap_field_note:ze.redcap_field_note,aggregate:Ve.value};Ve.value=="closest_event"&&Ee&&(B.aggregate_options={},B.aggregate_options.event=Ee.redcap_field_name),Ve.value=="closest_time"&&(B.aggregate_options={},B.aggregate_options.time=be),Te.push(B)}}return Te},F=(V,R)=>{let k=[];for(let A of V)k.push({label:A.label,duster_field_name:A.duster_field_name,redcap_field_name:A.duster_field_name+"_"+R,value_type:A.value_type,redcap_field_type:A.redcap_field_type,redcap_options:A.redcap_options,redcap_field_note:A.redcap_field_note});return k},ie=(V,R,k,A)=>{let be=cn.findIndex(Ee=>Ee.value==R),Te=cn[be].text;return R=="closest_event"&&k?V+" "+Te:R=="closest_time"?V+" "+Te+" "+A:Te+" "+V},ae=V=>{let R=[];return V.subscores&&(V.subscores.forEach(k=>{k.dependencies&&k.dependencies.forEach(A=>{R.push({label:A.label,redcap_field_name:A.redcap_field_name,category:k.label})}),R.push({label:k.label,redcap_field_name:k.redcap_field_name,category:k.label})}),R.push({label:V.label,redcap_field_name:V.redcap_field_name,category:V.label})),R},M=(V,R)=>{const k=[];return V.forEach(A=>{const be=[];let Te=A.redcap_options;A.subscores&&A.subscores.forEach(Ee=>{const ze=[];let Pe=Ee.redcap_options;Ee.dependencies&&Ee.dependencies.forEach(B=>{if(B.aggregates)B.aggregates.forEach(w=>{let O=Ee.duster_field_name+"_"+B.duster_field_name+"_"+w.replace("_agg","_")+R,E=new RegExp("\\["+B.duster_field_name+"_"+w.replace("_agg","")+"\\]","g");Pe=Pe&&Pe.length>0?Pe.replace(E,"["+O+"]"):Pe,ze.push({duster_field_name:B.duster_field_name,redcap_field_name:O,label:ie(B.label?B.label:"",w),redcap_field_type:B.redcap_field_type,redcap_options:B.redcap_options,value_type:B.value_type,redcap_field_note:B.redcap_field_note,aggregate:w})});else{let w=Ee.duster_field_name+"_"+B.duster_field_name+"_"+R,O=new RegExp("\\["+B.duster_field_name+"\\]","g");Pe=Pe&&Pe.length>0?Pe.replace(O,"["+w+"]"):Pe,ze.push({duster_field_name:B.duster_field_name,redcap_field_name:w,label:B.label,redcap_field_type:B.redcap_field_type,redcap_options:B.redcap_options,value_type:B.value_type,redcap_field_note:B.redcap_field_note})}});let Ve=Ee.duster_field_name+"_"+R,le=new RegExp("\\["+Ee.duster_field_name+"\\]","g");Te=Te&&Te.length>0?Te.replace(le,"["+Ve+"]"):Te,be.push({duster_field_name:Ee.duster_field_name,redcap_field_name:Ee.duster_field_name+"_"+R,score_duster_field_name:A.duster_field_name,label:Ee.label,redcap_field_type:Ee.redcap_field_type,redcap_field_note:Ee.redcap_field_note,redcap_options:Pe,value_type:Ee.value_type,dependencies:ze})}),k.push({duster_field_name:A.duster_field_name,redcap_field_name:A.duster_field_name+"_"+R,label:A.label,redcap_field_type:A.redcap_field_type,redcap_field_note:A.redcap_field_note,redcap_options:Te,value_type:A.value_type,subscores:be})}),k},Q=de(!1),oe=de(!1),ue=de(""),j=de(!1),D=de(""),q=de(!1),ve=()=>JSON.parse(JSON.stringify({rp_info:u.value,demographics:s.value,collection_windows:c.value})),fe=()=>JSON.parse(JSON.stringify({rpData:n.rpData,demographicsSelects:n.demographics,collectionWindows:n.collectionWindows})),ge=V=>{Q.value=!1,D.value=V,q.value=!0},me=()=>{if(ue.value="Creating REDCap Project. Please wait.",Q.value=!0,!n.dev){const V={surveys_enabled:n.projectInfo.surveys_enabled,repeatforms:n.projectInfo.repeatforms,scheduling:n.projectInfo.scheduling,randomization:n.projectInfo.randomization,app_title:n.projectInfo.app_title,purpose:n.projectInfo.purpose,project_pi_firstname:n.projectInfo.project_pi_firstname,project_pi_mi:n.projectInfo.project_pi_mi,project_pi_lastname:n.projectInfo.project_pi_lastname,project_pi_email:n.projectInfo.project_pi_email,project_pi_alias:n.projectInfo.project_pi_alias,project_irb_number:n.projectInfo.project_irb_number,purpose_other:n.projectInfo.purpose_other,project_note:n.projectInfo.project_note,projecttype:n.projectInfo.projecttype,repeatforms_chk:n.projectInfo.repeatforms_chk,project_template_radio:n.projectInfo.project_template_radio,config:ve(),design_config:fe()};let R=new FormData;R.append("redcap_csrf_token",n.projectInfo.redcap_csrf_token),R.append("data",JSON.stringify(V)),_t.post(n.projectInfo.create_project_url,R).then(function(k){if(k.data.toLowerCase().includes("fatal error")){ge("A project was not properly created and configured.");let A=new FormData;A.append("redcap_csrf_token",n.projectInfo.redcap_csrf_token),A.append("fatal_error",k.data),_t.post(n.projectInfo.report_fatal_error_url,A).then(function(be){}).catch(function(be){})}else k.data.toLowerCase().indexOf("error")>-1?ge("A project was not properly created and configured."):(e("delete-auto-save"),window.location.href=k.data)}).catch(function(k){if(k.response.status==400||k.response.status==500)switch(k.response.data){case"fail_project_post":ge("A project was created, but it was not properly configured.");break;case"fail_project":ge("A project was not created.");break;default:ge("A project was not properly created and configured.")}else ge("A project was not properly created and configured.")})}},Ke=()=>{oe.value=!1,ue.value="Updating REDCap Project. Please wait.",Q.value=!0;const V={redcap_project_id:n.projectInfo.redcap_project_id,config:ve(),design_config:fe()};let R=new FormData;R.append("redcap_csrf_token",n.projectInfo.redcap_csrf_token),R.append("data",JSON.stringify(V)),_t.post(n.projectInfo.update_project_url,R).then(function(k){if(console.log(k),k.data.toLowerCase().includes("fatal error")){ge("The project was not properly updated.");let A=new FormData;A.append("redcap_csrf_token",n.projectInfo.redcap_csrf_token),A.append("fatal_error",k.data),_t.post(n.projectInfo.report_fatal_error_url,A).then(function(be){}).catch(function(be){})}else k.data.toLowerCase().indexOf("error")>-1?ge("The project was not properly updated."):window.location.href=k.data}).catch(function(k){if(console.log(k),k.response.status==400||k.response.status==500)switch(k.response.data){case"fail_import":case"fail_duster_config":case"fail_rtosl_config":default:ge("The project was not properly updated.")}else ge("The project was not properly updated.")})};return(V,R)=>{const k=K("Column"),A=K("DataTable"),be=K("Panel"),Te=K("Button"),Ee=K("Toolbar"),ze=K("Dialog");return p(),v(ne,null,[P(be,{header:"Review Settings"},{default:L(()=>[P(be,{header:"Researcher Provided Data"},{default:L(()=>[P(A,{value:t.rpIdentifiers,tableStyle:"min-width: 50rem"},{header:L(()=>[H7]),default:L(()=>[P(k,{field:"label",header:"Label"}),P(k,{field:"redcap_field_name",header:"REDCap Field Name"}),P(k,{field:"redcap_field_note",header:"Value Type"})]),_:1},8,["value"]),P(A,{value:t.rpDates,tableStyle:"min-width: 50rem mt-2"},{header:L(()=>[N7]),default:L(()=>[P(k,{field:"label",header:"Label"}),P(k,{field:"redcap_field_name",header:"REDCap Field Name"}),P(k,{field:"value_type",header:"Value Type"})]),_:1},8,["value"])]),_:1}),s.value.length>0?(p(),$(be,{key:0,header:"Demographics",class:"mt-2"},{default:L(()=>[P(A,{value:s.value,tableStyle:"min-width: 50rem"},{default:L(()=>[P(k,{field:"label",header:"Label"}),P(k,{field:"redcap_field_name",header:"REDCap Field Name"}),P(k,{field:"redcap_field_type",header:"REDCap Field Type"})]),_:1},8,["value"])]),_:1})):T("",!0),(p(!0),v(ne,null,xe(c.value,Pe=>(p(),$(be,{key:Pe.form_name,header:Pe.label,class:"mt-2"},{default:L(()=>[P(A,{value:m(Pe.timing,Pe.event),class:"mt-2",tableStyle:"min-width: 50rem"},{header:L(()=>[z7]),default:L(()=>[P(k,{field:"event",header:"Date"}),P(k,{field:"label",header:"Label"}),P(k,{field:"redcap_field_name",header:"REDCap Field Name"}),P(k,{field:"type",header:"Type"}),P(k,{field:"redcap_field_type",header:"REDCap Field Type"})]),_:2},1032,["value"]),Pe.timing.repeat_interval?(p(),$(A,{key:0,value:f(Pe.timing),class:"mt-2",tableStyle:"min-width: 50rem"},{header:L(()=>[K7]),default:L(()=>[P(k,{field:"event",header:"Date"}),P(k,{field:"label",header:"Label"}),P(k,{field:"redcap_field_name",header:"REDCap Field Name"}),P(k,{field:"type",header:"Type"}),P(k,{field:"redcap_field_type",header:"REDCap Field Type"})]),_:2},1032,["value"])):T("",!0),Pe.data.labs.length>0?(p(),$(A,{key:1,value:Pe.data.labs,class:"mt-2",tableStyle:"min-width: 50rem"},{header:L(()=>[U7]),default:L(()=>[P(k,{field:"label",header:"Label"}),P(k,{field:"redcap_field_name",header:"REDCap Field Name"}),P(k,{field:"redcap_field_note",header:"REDCap Field Note"})]),_:2},1032,["value"])):T("",!0),Pe.data.vitals.length>0?(p(),$(A,{key:2,value:Pe.data.vitals,class:"mt-2",tableStyle:"min-width: 50rem"},{header:L(()=>[W7]),default:L(()=>[P(k,{field:"label",header:"Label"}),P(k,{field:"redcap_field_name",header:"REDCap Field Name"}),P(k,{field:"redcap_field_note",header:"REDCap Field Note"})]),_:2},1032,["value"])):T("",!0),Pe.data.outcomes.length>0?(p(),$(A,{key:3,value:Pe.data.outcomes,class:"mt-2",tableStyle:"min-width: 50rem"},{header:L(()=>[G7]),default:L(()=>[P(k,{field:"label",header:"Label"}),P(k,{field:"redcap_field_name",header:"REDCap Field Name"}),P(k,{field:"redcap_field_type",header:"REDCap Field Type"}),P(k,{field:"redcap_options",header:"REDCap Options"})]),_:2},1032,["value"])):T("",!0),(p(!0),v(ne,null,xe(Pe.data.scores,(Ve,le)=>(p(),v("div",{key:Ve.duster_field_name},[P(V7,{score:ae(Ve),"score-label":Pe.data.scores[le].label,class:"mt-2"},null,8,["score","score-label"])]))),128))]),_:2},1032,["header"]))),128)),P(Ee,null,{start:L(()=>[P(Te,{label:"Back",icon:"pi pi-angle-left",onClick:R[0]||(R[0]=Pe=>r.value=!1)})]),end:L(()=>[P(Te,{label:l.value?"Update Project":"Create Project",icon:"pi pi-check",severity:"success",onClick:R[1]||(R[1]=Pe=>l.value?oe.value=!0:me())},null,8,["label"])]),_:1})]),_:1}),P(ze,{visible:oe.value,modal:"",closable:!1,style:{width:"50vw"},header:"Update Project"},{footer:L(()=>[P(Te,{label:"No, Cancel",severity:"secondary",onClick:R[2]||(R[2]=Pe=>oe.value=!1),autofocus:""}),P(Te,{label:"Yes, Update",severity:"primary",onClick:R[3]||(R[3]=Pe=>Ke()),autofocus:""})]),default:L(()=>{var Pe,Ve;return[((Pe=n.projectInfo)==null?void 0:Pe.non_duster_fields.length)>0?(p(),v("div",q7,[Y7,J7,g("strong",null,[(p(!0),v(ne,null,xe((Ve=n.projectInfo)==null?void 0:Ve.non_duster_fields,le=>(p(),v("ol",{key:le.name},[ye(Y(le.label)+" ("+Y(le.name)+") ",1),(p(!0),v(ne,null,xe(le==null?void 0:le.fields,B=>(p(),v("li",{key:B},Y(B),1))),128))]))),128))])])):T("",!0),Z7]}),_:1},8,["visible"]),P(ze,{visible:Q.value,modal:"",closable:!1,style:{width:"50vw"},header:"Create Project"},{default:L(()=>[g("div",{class:te(["my-3",{"p-error":j.value}])},Y(ue.value),3)]),_:1},8,["visible"]),q.value===!0?(p(),$(Ud,{key:0,"error-message":D.value,"onUpdate:errorMessage":R[4]||(R[4]=Pe=>D.value=Pe)},null,8,["error-message"])):T("",!0)],64)}}}),Q7={demographics:[{duster_field_name:"sex",label:"Sex",category:"demographics",value_type:"text",redcap_field_type:"text",redcap_options:"",redcap_field_note:"assigned at birth",phi:"",description:"Biological sex assigned at birth.",description_short:"Biological sex assigned at birth.",loinc_code:"",unit:"",note:"",related:"",mdcalc:"",pubmed:""},{duster_field_name:"race",label:"Race",category:"demographics",value_type:"text",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"",description:"",description_short:"",loinc_code:"",unit:"",note:"",related:"",mdcalc:"",pubmed:""},{duster_field_name:"ethnicity",label:"Ethnicity",category:"demographics",value_type:"text",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"",description:"",description_short:"",loinc_code:"",unit:"",note:"",related:"",mdcalc:"",pubmed:""},{duster_field_name:"first_name",label:"First Name",category:"demographics",value_type:"text",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"t",description:"",description_short:"",loinc_code:"",unit:"",note:"",related:"",mdcalc:"",pubmed:""},{duster_field_name:"last_name",label:"Last Name",category:"demographics",value_type:"text",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"t",description:"",description_short:"",loinc_code:"",unit:"",note:"",related:"",mdcalc:"",pubmed:""},{duster_field_name:"birth_date",label:"Birth Date",category:"demographics",value_type:"text",redcap_field_type:"date",redcap_options:"",redcap_field_note:"",phi:"t",description:"",description_short:"",loinc_code:"",unit:"",note:"",related:"",mdcalc:"",pubmed:""},{duster_field_name:"death_date",label:"Death Date",category:"demographics",value_type:"text",redcap_field_type:"date",redcap_options:"",redcap_field_note:"",phi:"t",description:"",description_short:"",loinc_code:"",unit:"",note:"",related:"",mdcalc:"",pubmed:""}],labs:[{duster_field_name:"na",label:"Sodium (Na)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mmol/L",phi:""},{duster_field_name:"k",label:"Potassium (K)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mmol/L",phi:""},{duster_field_name:"hct",label:"Hematocrit (Hct)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"%",phi:""},{duster_field_name:"wbc",label:"White Blood Count (WBC)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"(1x10^3 cells)/(mm^3)",phi:"",description:"This clinical lab measures the number of white blood cells in a patient's blood.",description_short:"This clinical lab measures the number of white blood cells in a patient's blood.",loinc_code:"6690-2",unit:"1 x 10^3 cells/uL",note:"",related:"rbc,hgb,hct,plt,apache2_score",mdcalc:"",pubmed:""},{duster_field_name:"pha",label:"pH (Arterial)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:""},{duster_field_name:"albumin",label:"Albumin (serum/plasma)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"g/L",phi:""},{duster_field_name:"alt",label:"ALT",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"U/L",phi:""},{duster_field_name:"ast",label:"AST",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"U/L",phi:""},{duster_field_name:"tbil",label:"Bilirubin Total",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mg/dL",phi:""},{duster_field_name:"bun",label:"Blood Urea Nitrogen (BUN)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mg/dL",phi:""},{duster_field_name:"ca",label:"Calcium (serum/plasma)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mg/dL",phi:""},{duster_field_name:"cl",label:"Chloride (Cl) (serum/plasma)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mEq/L",phi:""},{duster_field_name:"co2",label:"Bicarbonate / Carbon Dioxide (HCO3 / CO2)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mEq/L or mmol/L",phi:""},{duster_field_name:"crp",label:"C-Reactive Protein (CRP)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mg/dL",phi:""},{duster_field_name:"cr",label:"Creatinine (serum/plasma)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mg/dL",phi:""},{duster_field_name:"ddimer",label:"D-Dimer",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"ng/mL",phi:""},{duster_field_name:"ferritin",label:"Ferritin",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"ng/mL",phi:""},{duster_field_name:"glucose",label:"Glucose",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mg/dL",phi:""},{duster_field_name:"hgb",label:"Hgb",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"gm/dL",phi:""},{duster_field_name:"hba1c",label:"Hemoglobin A1c (HbA1c)",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"%",phi:""},{duster_field_name:"il6",label:"IL6",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"pg/ml",phi:""},{duster_field_name:"inr",label:"INR",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:""},{duster_field_name:"lactate",label:"Lactate",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mg/dL",phi:""},{duster_field_name:"ldh",label:"LDH",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"IU/L",phi:""},{duster_field_name:"lymphocyte",label:"Lymphocytes",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"per mcL",phi:""},{duster_field_name:"ntprobnp",label:"NT-proBNP",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"pg/ml",phi:""},{duster_field_name:"paco2",label:"PaCO2",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mmHg",phi:""},{duster_field_name:"pao2",label:"PaO2",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mmHg",phi:""},{duster_field_name:"plt",label:"Platelets",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"per mcL",phi:""},{duster_field_name:"proctl",label:"Proctl",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"ng/mL",phi:""},{duster_field_name:"pt",label:"PT",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"sec",phi:""},{duster_field_name:"ptt",label:"PTT",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"sec",phi:""},{duster_field_name:"rbc",label:"Red Blood Cells",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"per mcL",phi:""},{duster_field_name:"troponin_i",label:"Troponin I",category:"labs",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"ng/mL",phi:""}],vitals:[{duster_field_name:"temp_c",label:"Temperature (Celsius)",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"Celsius",phi:""},{duster_field_name:"map",label:"Mean Arterial Pressure (MAP)",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mmHg",phi:""},{duster_field_name:"hr",label:"Heart Rate",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"beats/min",phi:""},{duster_field_name:"rr",label:"Respiratory Rate",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"breaths/min",phi:""},{duster_field_name:"gcs_total",label:"Glasgow Coma Scale (Total)",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:""},{duster_field_name:"fio2",label:"FiO2",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"%",phi:""},{duster_field_name:"height_cm",label:"Height (cm)",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"cm",phi:""},{duster_field_name:"weight_kg",label:"Weight (kg)",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"kg",phi:""},{duster_field_name:"bmi",label:"BMI (kg/m2)",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"kg/m2",phi:""},{duster_field_name:"pf_ratio",label:"P/F Ratio",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:""},{duster_field_name:"aa_gradient",label:"AA Gradient",category:"vitals",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:""}],outcomes:[{duster_field_name:"o2_modes",label:"O2 Delivery Modes",category:"outcomes",value_type:"checkbox",redcap_field_type:"checkbox",redcap_options:"1, Room Air | 2, Nasal Cannula | 3, High Flow Nasal Cannula | 4, CPAP | 5, BiPAP | 6, ETT",redcap_field_note:"",phi:""},{duster_field_name:"cw_death",label:"Death within Collection Window",category:"outcomes",value_type:"boolean",redcap_field_type:"yesno",redcap_options:"",redcap_field_note:"",phi:""},{duster_field_name:"iv_pressors",label:"IV Pressors Used",category:"outcomes",value_type:"boolean",redcap_field_type:"yesno",redcap_options:"",redcap_field_note:"",phi:""},{duster_field_name:"age",label:"Age @ CW start",category:"outcomes",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:""},{duster_field_name:"epi_inf_rate",label:"Epinephrine Infusion Rate",category:"outcomes",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mcg/kg/min",phi:""},{duster_field_name:"dopamine_inf_rate",label:"Dopamine Infusion Rate",category:"outcomes",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mcg/kg/min",phi:""},{duster_field_name:"norepi_inf_rate",label:"Norepinephrine Infusion Rate",category:"outcomes",value_type:"numeric",redcap_field_type:"text",redcap_options:"",redcap_field_note:"mcg/kg/min",phi:""}],clinical_dates:[{duster_field_name:"hospital_presentation_datetime",label:"Hospital Presentation Datetime",category:"clinical_dates",value_type:"datetime",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"t"},{duster_field_name:"hospital_discharge_datetime",label:"Hospital Discharge Datetime",category:"clinical_dates",value_type:"datetime",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"t"},{duster_field_name:"ed_admission_datetime",label:"ED Admission Datetime",category:"clinical_dates",value_type:"datetime",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"t"},{duster_field_name:"ed_discharge_datetime",label:"ED Discharge Datetime",category:"clinical_dates",value_type:"datetime",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"t"},{duster_field_name:"first_icu_admission_datetime",label:"First ICU Admission Datetime",category:"clinical_dates",value_type:"datetime",redcap_field_type:"text",redcap_options:"",redcap_field_note:"",phi:"t"}],scores:[{duster_field_name:"sofa_score",label:"SOFA Score",category:"scores",value_type:"text",redcap_field_type:"calc",redcap_options:`[sofa_tbil_subscore] + [sofa_cardio_subscore] + [sofa_plt_subscore] + [sofa_renal_subscore] + [sofa_resp_subscore] + [sofa_gcs_total_subscore]`,redcap_field_note:`[sofa_tbil_subscore] + [sofa_cardio_subscore] + [sofa_plt_subscore] + [sofa_renal_subscore] + [sofa_resp_subscore] + [sofa_gcs_total_subscore]`,phi:"",subscores:[{duster_field_name:"sofa_tbil_subscore",score_duster_field_name:"sofa_score",label:"Liver Subscore (Total Bilirubin)",redcap_field_note:"(+0) < 1.2
(+1) 1.2 - 1.9
(+2) 2.0 - 5.9
(+3) 6.0 - 11.9
(+4) >= 12.0",redcap_options:'if([tbil_max] != "", if([tbil_max] >= 12, 4, if([tbil_max] >= 6,3, if([tbil_max] >= 2, 2, if([tbil_max] >= 1.2, 1, 0)))), "")',dependencies:[{duster_field_name:"tbil",aggregates:["max_agg"],redcap_field_note:"mg/dL",label:"Bilirubin Total",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"sofa_plt_subscore",score_duster_field_name:"sofa_score",label:"Coagulation Subscore (Platelets)",redcap_field_note:"(+0) >= 150
(+1) 100 - 149
(+2) 50 - 99
(+3) 20 - 49
(+4) < 20",redcap_options:'if([plt_min] != "", if([plt_min] < 20, 4, if([plt_min] < 50, 3, if([plt_min] < 100, 2, if([plt_min] < 150, 1, 0)))), "")',dependencies:[{duster_field_name:"plt",aggregates:["min_agg"],redcap_field_note:"per mcL",label:"Platelets",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"sofa_renal_subscore",score_duster_field_name:"sofa_score",label:"Renal Subscore",redcap_field_note:"(+0) Cr < 1.2
(+1) Cr 1.2 - 1.9
(+2) Cr 2.0 - 3.4
(+3) Cr 3.5 - 4.9 or UOP < 500 mL/day
(+4) Cr >= 5 or UOP < 200 mL/day",redcap_options:'if([cr_max] != "", if([cr_max] >= 5 or [urine_24h_min] < 200, 4, if([cr_max] >= 3.5 or [urine_24h_min] < 500, 3, if([cr_max] >= 2, 2, if([cr_max] >= 1.2, 1, 0)))), "")',dependencies:[{duster_field_name:"cr",aggregates:["max_agg"],redcap_field_note:"mg/dL",label:"Creatinine (serum/plasma)",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"urine_24h",aggregates:["min_agg"],redcap_field_note:"mL",label:"24 Hr Urine Output",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"sofa_gcs_total_subscore",score_duster_field_name:"sofa_score",label:"Glasgow Coma Score (Total) Subscore",redcap_field_note:"(+0) 15
(+1) 13 - 14
(+2) 10 - 12
(+3) 6 - 9
(+4) < 6",redcap_options:'if([gcs_total_min] != "", if([gcs_total_min] < 6, 4, if([gcs_total_min] <= 9, 3, if([gcs_total_min] <= 12, 2, if([gcs_total_min] <= 14, 1, 0)))), "")',dependencies:[{duster_field_name:"gcs_total",aggregates:["min_agg"],redcap_field_note:"",label:"Glasgow Coma Scale (Total)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"sofa_resp_subscore",score_duster_field_name:"sofa_score",label:"Respiratory Subscore",redcap_field_note:"(+0) PF Ratio >= 400
(+1) PF Ratio 300 - 399
(+2) PF Ratio 200 - 299
(+2) PF Ratio 100 - 199 and NOT mechanically ventilated
(+3) PF Ratio 100 - 199 and mechanically ventilated
(+4) PF Ratio < 100 and mechanically ventilated",redcap_options:'if([pf_ratio_min] != "" and [o2_mode_vent] != "", if([pf_ratio_min] < 100 and [o2_mode_vent] = true, 4, if([pf_ratio_min] < 200 and [o2_mode_vent] = true, 3, if([pf_ratio_min] < 200 or ([pf_ratio_min] < 300 and [o2_mode_vent] = false), 2, if([pf_ratio_min] < 400, 1, 0)))), "")',dependencies:[{duster_field_name:"pf_ratio",aggregates:["min_agg"],redcap_field_note:"",label:"P/F Ratio",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"o2_mode_vent",redcap_field_note:"",label:"Mechanically Ventilated (includes CPAP)",value_type:"boolean",redcap_field_type:"yesno",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"sofa_cardio_subscore",score_duster_field_name:"sofa_score",label:"Cardiovascular Subscore",redcap_field_note:"(+0) No hypotension
(+1) MAP < 70 mmHg
(+2) DOPamine <= 5 or DOBUTamine (any dose)
(+3) DOPamine > 5, EPINEPHrine <= 0.1, or norEPINEPHrine <= 0.1
(+4) DOPamine > 15, EPINEPHrine > 0.1, or norEPINEPHrine > 0.1",redcap_options:'if([dopamine_inf_rate_max] > 15 or [epi_inf_rate_max] > 0.1 or [norepi_inf_rate_max] > 0.1 , 4, if([dopamine_inf_rate_max] > 5 or [epi_inf_rate_max] > 0 or [norepi_inf_rate_max] > 0, 3, if([dopamine_inf_rate_max] > 0 or [dobutamine_inf_rate_max] > 0, 2, if([map_min] = "", "", if([map_min] < 70, 1, 0)))))',dependencies:[{duster_field_name:"dopamine_inf_rate",aggregates:["max_agg"],redcap_field_note:"mcg/kg/min",label:"Dopamine Infusion Rate",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"dobutamine_inf_rate",aggregates:["max_agg"],redcap_field_note:"mcg/kg/min",label:"Dobutamine Infusion Rates",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"epi_inf_rate",aggregates:["max_agg"],redcap_field_note:"mcg/kg/min",label:"Epinephrine Infusion Rate",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"norepi_inf_rate",aggregates:["max_agg"],redcap_field_note:"mcg/kg/min",label:"Norepinephrine Infusion Rate",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"map",aggregates:["min_agg"],redcap_field_note:"mmHg",label:"Mean Arterial Pressure (MAP)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"}],description:"Predicts ICU mortality based on lab results and clinical data.",description_short:"Predicts ICU mortality based on lab results and clinical data.",loinc_code:"",unit:"",note:"",related:"apache2_score",mdcalc:"https://www.mdcalc.com/calc/691/sequential-organ-failure-assessment-sofa-score",pubmed:"https://pubmed.ncbi.nlm.nih.gov/8844239/"},{duster_field_name:"apache2_score",label:"APACHE II Score",category:"scores",value_type:"text",redcap_field_type:"calc",redcap_options:`[apache2_age_subscore] + [apache2_temp_c_subscore] + [apache2_map_subscore] + [apache2_hr_subscore] + [apache2_rr_subscore] + [apache2_oxy_subscore] + [apache2_pha_subscore] + @@ -1860,4 +1860,4 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho [apache2_wbc_subscore] + [apache2_gcs_total_subscore] + [apache2_chronic_health_subscore]`,redcap_field_note:`[apache2_age_subscore] + [apache2_temp_c_subscore] + [apache2_map_subscore] + [apache2_hr_subscore] + [apache2_rr_subscore] + [apache2_oxy_subscore] + [apache2_pha_subscore] + [apache2_na_subscore] + [apache2_k_subscore] + [apache2_cr_subscore] + [apache2_hct_subscore] + - [apache2_wbc_subscore] + [apache2_gcs_total_subscore] + [apache2_chronic_health_subscore]`,phi:"",subscores:[{duster_field_name:"apache2_age_subscore",score_duster_field_name:"apache2_score",label:"Age Subscore",redcap_field_note:"(+0) <= 44
(+2) 45 - 54
(+3) 55 - 64
(+5) 65 - 74
(+6) > 74",redcap_options:'if([age] != "", if([age] > 74, 6, if([age] >= 65, 5, if([age] >= 55, 3, if([age] >= 45, 2, 0)))), "")',dependencies:[{duster_field_name:"age",redcap_field_note:"",label:"Age @ CW start",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_map_subscore",score_duster_field_name:"apache2_score",label:"Mean Arterial Pressure (MAP) Subscore",redcap_field_note:"(+4) > 159
(+3) > 129 to 159
(+2) > 109 to 129
(+0) > 69 to 109
(+2) > 49 to 69
(+4) <= 49",redcap_options:'if([map_min] != "" and [map_max] != "", if([map_min] <= 49 or [map_max] > 159, 4, if([map_max] > 129, 3, if([map_min] <= 69 or [map_max] > 109, 2, 0))), "")',dependencies:[{duster_field_name:"map",aggregates:["max_agg","min_agg"],redcap_field_note:"mmHg",label:"Mean Arterial Pressure (MAP)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_pha_subscore",score_duster_field_name:"apache2_score",label:"Arterial pH Subscore",redcap_field_note:"(+4) >= 7.70
(+3) 7.60 to < 7.70
(+1) 7.50 to < 7.60
(+0) 7.33 to < 7.50
(+2) 7.25 to < 7.33
(+3) 7.15 to < 7.25
(+4) < 7.15",redcap_options:'if([pha_min] != "" and [pha_max] != "", if([pha_min] < 7.15 or [pha_max] >= 7.70, 4, if([pha_min] < 7.25 or [pha_max] >= 7.60, 3, if([pha_min] < 7.33, 2, if([pha_max] >= 7.50, 1, 0)))), "")',dependencies:[{duster_field_name:"pha",aggregates:["max_agg","min_agg"],redcap_field_note:"",label:"pH (Arterial)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_hr_subscore",score_duster_field_name:"apache2_score",label:"Heart Rate Subscore",redcap_field_note:"(+4) >= 180
(+3) 140 to < 180
(+2) 110 to < 140
(+0) 70 to < 110
(+2) 55 to < 70
(+3) 40 to < 55
(+4) < 40",redcap_options:'if([hr_min] != "" and [hr_max] != "", if([hr_min] < 40 or [hr_max] >= 180, 4, if([hr_min] < 55 or [hr_max] >= 140, 3, if([hr_min] < 70 or [hr_max] >= 110, 2, 0))), "")',dependencies:[{duster_field_name:"hr",aggregates:["max_agg","min_agg"],redcap_field_note:"beats/min",label:"Heart Rate",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_gcs_total_subscore",score_duster_field_name:"apache2_score",label:"Glasgow Coma Score (Total) Subscore",redcap_field_note:"15 - [Minimum Glasgow Coma Scale (GCS) Score]",redcap_options:'if([gcs_total_min] = "", "", 15 - [gcs_total_min])',dependencies:[{duster_field_name:"gcs_total",aggregates:["max_agg","min_agg"],redcap_field_note:"",label:"Glasgow Coma Scale (Total)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_chronic_health_subscore",score_duster_field_name:"apache2_score",label:"Chronic Health Subscore",redcap_field_note:"(+5) History of severe organ insufficiency or immunocompromised, and nonoperative or emergency postoperative patient
(+2) History of severe organ insufficiency or immunocompromised, and elective postoperative patient
(+0) No history of severe organ insufficiency or immunocompromised",redcap_options:'if([apache2_comorbidities] != "" and [patient_op_status] != "", if([apache2_comorbidities] = 1 and ([patient_op_status] = 0 or [patient_op_status] = 2), 5, if([apache2_comorbidities] = 1 and [patient_op_status] = 1, 2, 0)), "")',dependencies:[{duster_field_name:"apache2_comorbidities",redcap_field_note:"",label:"History of severe organ insufficiency/immunocompromised",value_type:"boolean",redcap_field_type:"yesno",redcap_options:""},{duster_field_name:"patient_op_status",redcap_field_note:"",label:"Patient Operative Status",value_type:"coded_value",redcap_field_type:"select",redcap_options:"0,None| 1, Elective Postop | 2,Emergent Postop | 3, Inoperable"}],redcap_field_type:"calc"},{duster_field_name:"apache2_rr_subscore",score_duster_field_name:"apache2_score",label:"Respiratory Rate Subscore",redcap_field_note:"(+4) >= 50
(+3) 35 to < 50
(+1) 25 to < 35
(+0) 12 to < 25
(+1) 10 to < 12
(+2) 6 to < 10
(+4) < 6",redcap_options:'if([rr_min] != "" and [rr_max] != "", if([rr_min] < 6 or [rr_max] >= 50, 4, if([rr_max] >= 35, 3, if([rr_min] < 10, 2, if([rr_min] < 12 or [rr_max] >= 25, 1, 0)))), "")',dependencies:[{duster_field_name:"rr",aggregates:["max_agg","min_agg"],redcap_field_note:"breaths/min",label:"Respiratory Rate",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_wbc_subscore",score_duster_field_name:"apache2_score",label:"White Blood Count Subscore",redcap_field_note:"(+4) >= 40
(+2) 20 to < 40
(+1) 15 to < 20
(+0) 3 to < 15
(+2) 1 to < 3
(+4) < 1",redcap_options:'if([wbc_min] != "" and [wbc_max] != "", if([wbc_min] < 1 or [wbc_max] >= 40, 4, if([wbc_min] < 3 or [wbc_max] >= 20, 2, if([wbc_max] >= 15, 1, 0))), "")',dependencies:[{duster_field_name:"wbc",aggregates:["max_agg","min_agg"],redcap_field_note:"(1x10^3 cells)/(mm^3)",label:"White Blood Count (WBC)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_temp_c_subscore",score_duster_field_name:"apache2_score",label:"Temperature Subscore",redcap_field_note:"(+4) >= 41
(+3) 39 to < 41
(+1) 38.5 to < 39
(+0) 36 to < 38.5
(+1) 34 to < 36
(+2) 32 to < 34
(+3) 30 to < 32
(+4) < 30",redcap_options:'if([temp_c_min] != "" and [temp_c_max] != "", if([temp_c_min] < 30 or [temp_c_max] >= 41, 4, if([temp_c_min] < 32 or [temp_c_max] >= 39, 3, if([temp_c_min] < 34, 2, if([temp_c_min] < 36 or [temp_c_max] >= 38.5, 1, 0)))), "")',dependencies:[{duster_field_name:"temp_c",aggregates:["max_agg","min_agg"],redcap_field_note:"Celsius",label:"Temperature (Celsius)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_cr_subscore",score_duster_field_name:"apache2_score",label:"Creatinine Subscore",redcap_field_note:"(+8) >= 3.5 and Acute Renal Failure
(+6) 2.0 to < 3.5 and Acute Renal Failure
(+4) >= 3.5 and Chronic Renal Failure
(+4) 1.5 to < 2.0 and Acute Renal Failure
(+3) 2.0 to < 3.5 and Chronic Renal Failure
(+2) 1.5 to < 2.0 and Chronic Renal Failure
(+0) 0.6 to < 1.5
(+2) < 0.6",redcap_options:'if([cr_max] != "" and [acute_renfail_diag] != "" and [chronic_renfail_diag] != "", if([cr_max] >= 3.5 and [acute_renfail_diag] = 1, 8, if([cr_max] >= 2.0 and [acute_renfail_diag] = 1, 6, if([cr_max] >= 1.5 and [acute_renfail_diag] = 1, 4, if([cr_max] >= 3.5 and [chronic_renfail_diag] = 1, 4, if([cr_max] >= 2.0 and [chronic_renfail_diag] = 1, 3, if([cr_max] >= 1.5 and [chronic_renfail_diag] = 1, 2, if([cr_min] < 0.6, 2, 0))))))), "")',dependencies:[{duster_field_name:"cr",aggregates:["max_agg","min_agg"],redcap_field_note:"mg/dL",label:"Creatinine (serum/plasma)",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"acute_renfail_diag",redcap_field_note:"",label:"Acute Renal Failure",value_type:"boolean",redcap_field_type:"yesno",redcap_options:""},{duster_field_name:"chronic_renfail_diag",redcap_field_note:"",label:"Chronic Renal Failure",value_type:"boolean",redcap_field_type:"yesno",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_hct_subscore",score_duster_field_name:"apache2_score",label:"Hematocrit Subscore",redcap_field_note:"(+4) >= 60
(+2) 50 to < 60
(+1) 46 to < 50
(+0) 30 to < 46
(+2) 20 to < 30
(+4) < 20",redcap_options:'if([hct_min] != "" and [hct_max] != "", if([hct_min] < 20 or [hct_max] >= 60, 4, if([hct_min] < 30 or [hct_max] >= 50, 2, if([hct_max] >= 46, 1, 0))), "")',dependencies:[{duster_field_name:"hct",aggregates:["max_agg","min_agg"],redcap_field_note:"%",label:"Hematocrit (Hct)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_na_subscore",score_duster_field_name:"apache2_score",label:"Sodium Subscore",redcap_field_note:"(+4) >= 180
(+3) 160 to < 180
(+2) 155 to < 160
(+1) 150 to < 155
(+0) 130 to < 150
(+2) 120 to < 130
(+3) 111 to < 120
(+4) < 111",redcap_options:'if([na_min] != "" and [na_max] != "", if([na_min] < 111 or [na_max] >= 180, 4, if([na_min] < 120 or [na_max] >= 160, 3, if([na_min] < 130 or [na_max] >= 155, 2, if([na_max] >= 150, 1, 0)))), "")',dependencies:[{duster_field_name:"na",aggregates:["max_agg","min_agg"],redcap_field_note:"mmol/L",label:"Sodium (Na)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_k_subscore",score_duster_field_name:"apache2_score",label:"Potassium Subscore",redcap_field_note:"(+4) >= 7.0
(+3) 6.0 to < 7.0
(+1) 5.5 to < 6.0
(+0) 3.5 to < 5.5
(+1) 3.0 to < 3.5
(+2) 2.5 to < 3.0
(+4) < 2.5",redcap_options:'if([k_max] != "" and [k_max] != "", if([k_max] < 2.5 or [k_max] >= 7.0, 4, if([k_max] >= 6.0, 3, if([k_max] < 3.0, 2, if([k_max] < 3.5 or [k_max] >= 5.5, 1, 0)))), "")',dependencies:[{duster_field_name:"k",aggregates:["max_agg","min_agg"],redcap_field_note:"mmol/L",label:"Potassium (K)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_oxy_subscore",score_duster_field_name:"apache2_score",label:"Oxygenation Subscore",redcap_field_note:"(+4) A-a gradient > 499
(+3) A-a gradient 350 - 499
(+2) A-a gradient 200 - 349
(+0) A-a gradient < 200 (if FiO2 over 0.49) or PaO2 > 70 (if FiO2 < 0.50)
(+1) PaO2 = 61 - 70
(+3) PaO2 = 55 - 60
(+4) PaO2 < 55",redcap_options:'if([fio2_max] != "", if([fio2_max] < 0.50, if([pao2_min] = "", "", if([pao2_min] < 55, 4, if([pao2_min] <= 60, 3, if([pao2_min] <= 70, 1, 0)))), if([aa_gradient_min] = "" or [aa_gradient_max] = "", "", if([aa_gradient_max] > 499, 4, if([aa_gradient_max] >= 350, 3, if([aa_gradient_max] >= 200, 2, 0))))), "")',dependencies:[{duster_field_name:"aa_gradient",aggregates:["max_agg","min_agg"],redcap_field_note:"",label:"AA Gradient",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"fio2",aggregates:["max_agg","min_agg"],redcap_field_note:"%",label:"FiO2",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"pao2",aggregates:["max_agg","min_agg"],redcap_field_note:"mmHg",label:"PaO2",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"}],description:"Estimates ICU mortality.",description_short:"Estimates ICU mortality.",loinc_code:"",unit:"",note:'"History of severe organ insufficiency or immunocompromised", "Patient Operative Status", "Acute Renal Failure", and "Chronic Renal Failure" will have provided REDCap fields. However, these clinical variables cannot be automated by DUSTER and require manual phenotyping by the researcher.',related:"sofa_score",mdcalc:"https://www.mdcalc.com/calc/1868/apache-ii-score",pubmed:"https://pubmed.ncbi.nlm.nih.gov/3928249/"}]},J7=200,Z7="OK",X7={"access-control-allow-origin":"*","cache-control":"no-store, no-cache, must-revalidate",connection:"Keep-Alive","content-encoding":"gzip","content-length":"4307","content-type":"text/html; charset=UTF-8",date:"Tue, 28 Mar 2023 21:40:40 GMT",expires:"Thu, 19 Nov 1981 08:52:00 GMT","keep-alive":"timeout=5, max=97",pragma:"no-cache","redcap-random-text":"FaGrGUMSpmxVUIrEQTs2aPV89y",server:"Apache/2.4.38 (Debian)",vary:"Accept-Encoding","x-content-type-options":"nosniff","x-xss-protection":"1; mode=block"},Q7={transitional:{silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},adapter:["xhr","http"],transformRequest:[null],transformResponse:[null],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{},headers:{Accept:"application/json, text/plain, */*"},method:"get",url:"http://localhost/redcap_v12.2.4/ExternalModules/?prefix=duster&page=services/callMetadata"},eS={},jn={data:Y7,status:J7,statusText:Z7,headers:X7,config:Q7,request:eS},wp=t=>(ac("data-v-2a7c999a"),t=t(),lc(),t),tS={class:"container"},nS={class:"grid"},rS={class:"col-offset-1 col-10"},iS=Xa('',1),oS={class:"grid"},aS={class:"col-6"},lS={class:"col-6"},sS={class:"grid"},uS={class:"col"},cS={class:"grid"},dS={class:"col"},pS=["innerHTML"],fS={key:0,class:"m-2"},mS=wp(()=>g("label",null,"IRB or DPA: ",-1)),hS=wp(()=>g("p",null,[ye(" It looks like you were previously in the middle of designing a dataset. "),g("br"),g("br"),ye(" Would you like to restore this design? ")],-1)),gS={class:"flex p-4"},vS={class:"pl-2"},yS=bt({__name:"App",setup(t){const e=JSON.parse(localStorage.getItem("postObj")||"{}");localStorage.removeItem("postObj"),setInterval(()=>{_t.get(e.refresh_session_url).then(function(ee){}).catch(function(ee){}),e.edit_mode===!1&&De("auto-save")},6e4);const n=fe(!1),r=fe(!1),o=fe(!1),i=fe([{redcap_field_name:"mrn",label:"Medical Record Number (MRN)",redcap_field_type:"text",value_type:"Identifier",redcap_field_note:"8-digit number (including leading zeros, e.g., '01234567')",phi:"t",id:"mrn",duster_field_name:void 0},{redcap_field_name:"enroll_date",redcap_field_type:"text",value_type:"date",label:"Study Enrollment Date",phi:"t",id:"enroll_date",duster_field_name:void 0}]),a=X(()=>i.value.filter(ee=>{var W;return((W=ee.value_type)==null?void 0:W.toLowerCase())==="identifier"})),l=X(()=>i.value.filter(ee=>{var W;return((W=ee.value_type)==null?void 0:W.toLowerCase())!=="identifier"})),u=fe([]),s=fe([]),c=fe([]),d=fe([]),m=fe([]),f=fe([]),y=X(()=>[].concat(u.value).concat(s.value).concat(c.value).concat(d.value).concat(m.value));Gi("metadata",y);const b=fe([]),S=fe([]),_=fe(e.project_irb_number),I=ee=>ee.startsWith("DPA")?ee:"IRB "+ee,V=fe(!1),T=fe("checking"),L=fe("Checking "+I(_.value)+" ..."),ae=fe(!1),le={},A={rpData:[],demographicsSelects:[],collectionWindows:[]},te=fe(!1);di(()=>{D(e.check_irb_url,e.redcap_csrf_token,e.project_irb_number,e.redcap_user)});const se=fe(!1);ut(se,ee=>{L.value="Fetching DUSTER Metadata ...",ee&&ce(e.metadata_url)});const pe=()=>{var w,O;let ee="";const W=[];if(!F.value.dpa)ee="No valid DPA was found for IRB "+F.value.irb_num+". Please add a DPA to your protocol with the necessary attestations. ",W.push("MRNs (required)"),W.push("Dates (required)"),W.push("Names"),W.push("Demographics"),W.push("Lab results"),W.push("Clinical notes (includes flowsheets)"),W.push("Medications"),W.push("Diagnosis codes"),W.push("Procedure codes");else{const E=F.value.dpa;E.approvedForMrn||W.push("MRNs (required)"),E.approvedForDates||W.push("Dates (required)"),E.approvedForName||W.push("Names"),E.approvedForDemographics||W.push("Demographics"),E.approvedForLabResult||W.push("Lab results"),E.approvedForClinicalNotes||W.push("Clinical notes (includes flowsheets)"),E.approvedForMedications||W.push("Medications"),E.approvedForDiagnosis||W.push("Diagnosis codes"),E.approvedForProcedure||W.push("Procedure codes")}if(W.length>0){if(F.value.dpa){ee+="";const E=!((w=F.value.irb_num)!=null&&w.startsWith("DPA-"));ee=I(F.value.irb_num),ee+=" does not include the following attestations which may be required to retrieve data for this project. If any of the following are included as part of your DUSTER project, you will need to ",E?ee+="modify your protocol and file a new DPA.
    ":ee+="file a new DPA with the required attestations.
      "}else ee+="The DPA must include all PHI and data attestations which will be accessed as part of this project. Please include the following items in your DPA as needed.
        ";W.forEach(E=>ee+="
      • "+E+"
      • "),ee+="

      "}return F.value.dpa&&!((O=F.value.user_permissions)!=null&&O.signedDpa)&&(ee+="User "+e.redcap_user+" does not have a DPA attestation associated with "+I(F.value.irb_num)+" and needs an add-on DPA.
      "),ee.length>0&&(ee+='
      You may continue to configure and create your DUSTER project. However, all IRB and/or DPA issues must be resolved before retrieving data. Click "OK" to continue project creation.'),ee},F=fe(),D=(ee,W,w,O)=>{if(n.value)V.value=!0;else if(w){ae.value=!0;let E=new FormData;E.append("redcap_csrf_token",W),E.append("project_irb_number",w),E.append("user",O),_t.post(ee,E).then(function(j){if(T.value="checked",F.value=j.data,L.value="",j.data.irb_status){w.startsWith("DPA")&&F.value.dpa.protocolNum&&(L.value=I(F.value.dpa.protocolNumStr)+" will be used in place of "+w+". ",w=F.value.dpa.protocolNumStr),e.project_irb_number=w;const U=pe();U.length>0?L.value+=I(w)+" is valid.

      "+U:(L.value+=I(w)+" is valid.
      Fetching DUSTER Metadata ...",se.value=!0),V.value=!0}else{if(typeof j.data=="string"&&j.data.toLowerCase().includes("fatal error")){r.value=!0;let U=new FormData;U.append("redcap_csrf_token",W),U.append("fatal_error",j.data),_t.post(e.report_fatal_error_url,U).then(function(q){}).catch(function(q){})}else L.value+=I(w)+' is invalid. Please enter a different IRB or DPA. (DPAs must start with "DPA-")';V.value=!1}}).catch(function(j){V.value=!1,L.value="IRB Check Error",r.value=!0,console.log(j)})}else L.value='You must have an IRB or DPA to use DUSTER. Please enter a valid IRB or DPA. (DPAs must start with "DPA-")',V.value=!1,T.value="checked",ae.value=!0},Y=()=>{T.value="retry",L.value="Checking "+I(_.value)+" ...",D(e.check_irb_url,e.redcap_csrf_token,_.value,e.redcap_user)},ve=()=>{ae.value=!1,(!V.value||!se.value)&&(window.location.href=e.redcap_new_project_url)},ce=ee=>{n.value?(u.value=Qe(jn.data.demographics),u.value=u.value.map(W=>({...W,edit:!0})),s.value=jn.data.labs,c.value=jn.data.vitals,d.value=jn.data.outcomes,m.value=jn.data.scores,f.value=jn.data.clinical_dates):_t.get(ee).then(function(W){u.value=Qe(W.data.demographics),s.value=W.data.labs,c.value=W.data.vitals,d.value=W.data.outcomes,m.value=W.data.scores,f.value=W.data.clinical_dates,ae.value=!1,_t.get(e.get_dataset_designs_url).then(function(w){const O=w.data;e.edit_mode===!1&&O.hasOwnProperty("auto-save")===!0?(le.value=JSON.parse(O["auto-save"]),te.value=!0):e.edit_mode===!0&&_e()}).catch(function(w){})}).catch(function(W){L.value="Unable to load DUSTER metadata",r.value=!0})},_e=()=>{A.value=JSON.parse(e.initial_design),A.collectionWindows=A.value.collectionWindows,A.value=JSON.parse(e.initial_design),i.value=A.value.rpData,i.value.forEach(W=>{W.edit=!1});let ee=A.value.demographicsSelects.map(W=>W.duster_field_name);Array.isArray(u.value)&&u.value.forEach(W=>{ee.includes(W.duster_field_name)&&(W.edit=!1,b.value.push(W))}),S.value=A.value.collectionWindows},he=()=>{S.value.forEach(ee=>{if(ee.timing.start.type!=="interval"&&(ee.timing_valid=l.value.findIndex(W=>W.redcap_field_name===ee.timing.start.rp_date)!==-1),ee.timing_valid&&ee.timing.end.type!=="interval"&&(ee.timing_valid=l.value.findIndex(W=>W.redcap_field_name===ee.timing.end.rp_date)!==-1),ee.event&&ee.event[0]&&ee.event[0].redcap_field_name){const W=l.value.findIndex(w=>w.redcap_field_name==ee.event[0].redcap_field_name);W!=-1?ee.data.valid=l.value[W].value_type=="datetime":ee.data.valid=!1}})},z=ol(),H=X(()=>u.value&&u.value.length>0?u.value.map(ee=>ee.duster_field_name):[]),k=l3(),R=ee=>{k.require({target:ee.currentTarget,header:"Back to REDCap New Project Page",message:"You will exit DUSTER's New Project Designer and will lose any changes made here. Are you sure you want to exit?",accept:()=>{window.history.go(-1)}})},G=er(),Ce=()=>(he(),G.value.$touch(),z.removeAllGroups(),G.value.$error?G.value.$errors.forEach(ee=>{typeof ee.$message=="object"?ee.$message.forEach(W=>{W.forEach(w=>{z.add({severity:"error",summary:"Error",detail:w,life:3e3})})}):z.add({severity:"error",summary:"Error",detail:ee.$message,life:3e3})}):(o.value=!0,e.edit_mode===!1&&De("auto-save")),!1),De=ee=>{let W=new FormData;W.append("redcap_csrf_token",e.redcap_csrf_token),W.append("title",ee);const w={rpData:i.value,demographicsSelects:b.value,collectionWindows:S.value};W.append("design",JSON.stringify(w)),_t.post(e.save_dataset_design_url,W).then(function(O){}).catch(function(O){})},Le=()=>{i.value=le.value.rpData,b.value=le.value.demographicsSelects,S.value=le.value.collectionWindows,te.value=!1},Ie=()=>{le.value=null,ot("auto-save")},ot=ee=>{let W=new FormData;W.append("redcap_csrf_token",e.redcap_csrf_token),W.append("title",ee),_t.post(e.delete_dataset_design_url,W).then(function(w){}).catch(function(w){})},Qe=ee=>{let W=JSON.parse(JSON.stringify(ee));return W.forEach(w=>{w.label.toLowerCase().indexOf("date")>-1?w.group=1:w.label.toLowerCase().indexOf("name")>-1?w.group=2:w.group=3}),W.sort(function(w,O){let E=w.label.toLowerCase(),j=O.label.toLowerCase();return w.groupO.group?1:Ej?1:0}),W};return(ee,W)=>{const w=N("Button"),O=N("Toolbar"),E=N("InputText"),j=N("Dialog"),U=N("ConfirmDialog");return p(),v(oe,null,[g("div",tS,[g("div",nS,[g("div",rS,[iS,Oe(g("div",null,[g("div",oS,[g("div",aS,[P(h9,{"rp-data":i.value,"onUpdate:rpData":W[0]||(W[0]=q=>i.value=q),"reserved-field-names":H.value},null,8,["rp-data","reserved-field-names"])]),g("div",lS,[P(_9,{class:"flex-1","demographics-options":u.value,"demographics-selects":b.value,"onUpdate:demographicsSelects":W[1]||(W[1]=q=>b.value=q)},null,8,["demographics-options","demographics-selects"])])]),g("div",sS,[g("div",uS,[P(L7,{"lab-options":s.value,"vital-options":c.value,"score-options":m.value,"outcome-options":d.value,"clinical-date-options":f.value,"rp-dates":l.value,"collection-windows":S.value,"onUpdate:collectionWindows":W[2]||(W[2]=q=>S.value=q),"initial-windows":A.collectionWindows},null,8,["lab-options","vital-options","score-options","outcome-options","clinical-date-options","rp-dates","collection-windows","initial-windows"])])]),g("div",cS,[g("div",dS,[P(ne(mo)),P(O,{class:"col"},{start:M(()=>[P(w,{label:ne(e).edit_mode?"Back to REDCap Project":"Back to REDCap New Project Page",icon:"pi pi-cross",severity:"secondary",class:"ml-2",onClick:W[3]||(W[3]=q=>R(q))},null,8,["label"])]),end:M(()=>[P(w,{type:"submit",label:ne(e).edit_mode?"Review & Update Project":"Review & Create Project",icon:"pi pi-check",class:"ml-2",onClick:Ce},null,8,["label"])]),_:1})])])],512),[[Un,!o.value]]),g("div",{style:qn(o.value?"":"display: none !important")},[P(q7,{"show-summary":o.value,"onUpdate:showSummary":W[4]||(W[4]=q=>o.value=q),dev:n.value,"rp-data":i.value,"rp-identifiers":a.value,"rp-dates":l.value,demographics:b.value,"collection-windows":S.value,"project-info":ne(e),onDeleteAutoSave:W[5]||(W[5]=q=>Ie())},null,8,["show-summary","dev","rp-data","rp-identifiers","rp-dates","demographics","collection-windows","project-info"])],4)])])]),P(j,{visible:ae.value,"onUpdate:visible":W[8]||(W[8]=q=>ae.value=q),modal:"",header:"Checking IRB or DPA",style:{width:"40vw"},closable:!1},{footer:M(()=>[!V.value&&T.value==="checked"?(p(),$(w,{key:0,label:"Submit",icon:"pi pi-refresh",class:"p-button-primary",onClick:Y,size:"small"})):x("",!0),V.value&&!se.value?(p(),$(w,{key:1,label:"OK",icon:"pi pi-check",class:"p-button-primary",onClick:W[7]||(W[7]=q=>se.value=!0),size:"small"})):x("",!0),P(w,{label:"Cancel",icon:"pi pi-times",class:"p-button-secondary",onClick:ve,size:"small"})]),default:M(()=>[g("p",null,[g("span",{innerHTML:L.value},null,8,pS)]),!V.value&&T.value==="checked"?(p(),v("div",fS,[mS,P(E,{modelValue:_.value,"onUpdate:modelValue":W[6]||(W[6]=q=>_.value=q)},null,8,["modelValue"])])):x("",!0)]),_:1},8,["visible"]),P(j,{visible:te.value,"onUpdate:visible":W[11]||(W[11]=q=>te.value=q),header:"Restore last design",modal:!0,closable:!1},{footer:M(()=>[P(w,{label:"Yes",icon:"pi pi-check",class:"p-button-primary",onClick:W[9]||(W[9]=q=>Le()),size:"small"}),P(w,{label:"No",icon:"pi pi-times",class:"p-button-secondary",onClick:W[10]||(W[10]=q=>(te.value=!1,Ie())),size:"small"})]),default:M(()=>[hS]),_:1},8,["visible"]),r.value?(p(),$(Ud,{key:0})):x("",!0),P(U,null,{message:M(q=>[g("div",gS,[g("i",{class:re(q.message.icon),style:{"font-size":"1.5rem"}},null,2),g("p",vS,J(q.message.message),1)])]),_:1})],64)}}});const bS=bp(yS,[["__scopeId","data-v-2a7c999a"]]);Qm(bS).use(Dh).use(h1).use(s3).component("Accordion",Bc).component("AccordionTab",jc).component("Badge",il).component("Button",Dn).component("Calendar",Kc).component("Card",Uc).component("Checkbox",Wc).component("Column",y1).component("DataTable",Ed).component("Dialog",hl).component("Dropdown",hi).component("InputNumber",ul).component("InputSwitch",$d).component("InputText",sl).component("Message",Ad).component("Panel",Ld).component("RadioButton",Fd).component("Divider",Bd).component("Chip",Vd).component("ConfirmPopup",Nd).component("ConfirmDialog",zd).component("Tag",jd).component("Toolbar",Hd).directive("tooltip",G_).mount("#app"); + [apache2_wbc_subscore] + [apache2_gcs_total_subscore] + [apache2_chronic_health_subscore]`,phi:"",subscores:[{duster_field_name:"apache2_age_subscore",score_duster_field_name:"apache2_score",label:"Age Subscore",redcap_field_note:"(+0) <= 44
      (+2) 45 - 54
      (+3) 55 - 64
      (+5) 65 - 74
      (+6) > 74",redcap_options:'if([age] != "", if([age] > 74, 6, if([age] >= 65, 5, if([age] >= 55, 3, if([age] >= 45, 2, 0)))), "")',dependencies:[{duster_field_name:"age",redcap_field_note:"",label:"Age @ CW start",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_map_subscore",score_duster_field_name:"apache2_score",label:"Mean Arterial Pressure (MAP) Subscore",redcap_field_note:"(+4) > 159
      (+3) > 129 to 159
      (+2) > 109 to 129
      (+0) > 69 to 109
      (+2) > 49 to 69
      (+4) <= 49",redcap_options:'if([map_min] != "" and [map_max] != "", if([map_min] <= 49 or [map_max] > 159, 4, if([map_max] > 129, 3, if([map_min] <= 69 or [map_max] > 109, 2, 0))), "")',dependencies:[{duster_field_name:"map",aggregates:["max_agg","min_agg"],redcap_field_note:"mmHg",label:"Mean Arterial Pressure (MAP)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_pha_subscore",score_duster_field_name:"apache2_score",label:"Arterial pH Subscore",redcap_field_note:"(+4) >= 7.70
      (+3) 7.60 to < 7.70
      (+1) 7.50 to < 7.60
      (+0) 7.33 to < 7.50
      (+2) 7.25 to < 7.33
      (+3) 7.15 to < 7.25
      (+4) < 7.15",redcap_options:'if([pha_min] != "" and [pha_max] != "", if([pha_min] < 7.15 or [pha_max] >= 7.70, 4, if([pha_min] < 7.25 or [pha_max] >= 7.60, 3, if([pha_min] < 7.33, 2, if([pha_max] >= 7.50, 1, 0)))), "")',dependencies:[{duster_field_name:"pha",aggregates:["max_agg","min_agg"],redcap_field_note:"",label:"pH (Arterial)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_hr_subscore",score_duster_field_name:"apache2_score",label:"Heart Rate Subscore",redcap_field_note:"(+4) >= 180
      (+3) 140 to < 180
      (+2) 110 to < 140
      (+0) 70 to < 110
      (+2) 55 to < 70
      (+3) 40 to < 55
      (+4) < 40",redcap_options:'if([hr_min] != "" and [hr_max] != "", if([hr_min] < 40 or [hr_max] >= 180, 4, if([hr_min] < 55 or [hr_max] >= 140, 3, if([hr_min] < 70 or [hr_max] >= 110, 2, 0))), "")',dependencies:[{duster_field_name:"hr",aggregates:["max_agg","min_agg"],redcap_field_note:"beats/min",label:"Heart Rate",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_gcs_total_subscore",score_duster_field_name:"apache2_score",label:"Glasgow Coma Score (Total) Subscore",redcap_field_note:"15 - [Minimum Glasgow Coma Scale (GCS) Score]",redcap_options:'if([gcs_total_min] = "", "", 15 - [gcs_total_min])',dependencies:[{duster_field_name:"gcs_total",aggregates:["max_agg","min_agg"],redcap_field_note:"",label:"Glasgow Coma Scale (Total)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_chronic_health_subscore",score_duster_field_name:"apache2_score",label:"Chronic Health Subscore",redcap_field_note:"(+5) History of severe organ insufficiency or immunocompromised, and nonoperative or emergency postoperative patient
      (+2) History of severe organ insufficiency or immunocompromised, and elective postoperative patient
      (+0) No history of severe organ insufficiency or immunocompromised",redcap_options:'if([apache2_comorbidities] != "" and [patient_op_status] != "", if([apache2_comorbidities] = 1 and ([patient_op_status] = 0 or [patient_op_status] = 2), 5, if([apache2_comorbidities] = 1 and [patient_op_status] = 1, 2, 0)), "")',dependencies:[{duster_field_name:"apache2_comorbidities",redcap_field_note:"",label:"History of severe organ insufficiency/immunocompromised",value_type:"boolean",redcap_field_type:"yesno",redcap_options:""},{duster_field_name:"patient_op_status",redcap_field_note:"",label:"Patient Operative Status",value_type:"coded_value",redcap_field_type:"select",redcap_options:"0,None| 1, Elective Postop | 2,Emergent Postop | 3, Inoperable"}],redcap_field_type:"calc"},{duster_field_name:"apache2_rr_subscore",score_duster_field_name:"apache2_score",label:"Respiratory Rate Subscore",redcap_field_note:"(+4) >= 50
      (+3) 35 to < 50
      (+1) 25 to < 35
      (+0) 12 to < 25
      (+1) 10 to < 12
      (+2) 6 to < 10
      (+4) < 6",redcap_options:'if([rr_min] != "" and [rr_max] != "", if([rr_min] < 6 or [rr_max] >= 50, 4, if([rr_max] >= 35, 3, if([rr_min] < 10, 2, if([rr_min] < 12 or [rr_max] >= 25, 1, 0)))), "")',dependencies:[{duster_field_name:"rr",aggregates:["max_agg","min_agg"],redcap_field_note:"breaths/min",label:"Respiratory Rate",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_wbc_subscore",score_duster_field_name:"apache2_score",label:"White Blood Count Subscore",redcap_field_note:"(+4) >= 40
      (+2) 20 to < 40
      (+1) 15 to < 20
      (+0) 3 to < 15
      (+2) 1 to < 3
      (+4) < 1",redcap_options:'if([wbc_min] != "" and [wbc_max] != "", if([wbc_min] < 1 or [wbc_max] >= 40, 4, if([wbc_min] < 3 or [wbc_max] >= 20, 2, if([wbc_max] >= 15, 1, 0))), "")',dependencies:[{duster_field_name:"wbc",aggregates:["max_agg","min_agg"],redcap_field_note:"(1x10^3 cells)/(mm^3)",label:"White Blood Count (WBC)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_temp_c_subscore",score_duster_field_name:"apache2_score",label:"Temperature Subscore",redcap_field_note:"(+4) >= 41
      (+3) 39 to < 41
      (+1) 38.5 to < 39
      (+0) 36 to < 38.5
      (+1) 34 to < 36
      (+2) 32 to < 34
      (+3) 30 to < 32
      (+4) < 30",redcap_options:'if([temp_c_min] != "" and [temp_c_max] != "", if([temp_c_min] < 30 or [temp_c_max] >= 41, 4, if([temp_c_min] < 32 or [temp_c_max] >= 39, 3, if([temp_c_min] < 34, 2, if([temp_c_min] < 36 or [temp_c_max] >= 38.5, 1, 0)))), "")',dependencies:[{duster_field_name:"temp_c",aggregates:["max_agg","min_agg"],redcap_field_note:"Celsius",label:"Temperature (Celsius)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_cr_subscore",score_duster_field_name:"apache2_score",label:"Creatinine Subscore",redcap_field_note:"(+8) >= 3.5 and Acute Renal Failure
      (+6) 2.0 to < 3.5 and Acute Renal Failure
      (+4) >= 3.5 and Chronic Renal Failure
      (+4) 1.5 to < 2.0 and Acute Renal Failure
      (+3) 2.0 to < 3.5 and Chronic Renal Failure
      (+2) 1.5 to < 2.0 and Chronic Renal Failure
      (+0) 0.6 to < 1.5
      (+2) < 0.6",redcap_options:'if([cr_max] != "" and [acute_renfail_diag] != "" and [chronic_renfail_diag] != "", if([cr_max] >= 3.5 and [acute_renfail_diag] = 1, 8, if([cr_max] >= 2.0 and [acute_renfail_diag] = 1, 6, if([cr_max] >= 1.5 and [acute_renfail_diag] = 1, 4, if([cr_max] >= 3.5 and [chronic_renfail_diag] = 1, 4, if([cr_max] >= 2.0 and [chronic_renfail_diag] = 1, 3, if([cr_max] >= 1.5 and [chronic_renfail_diag] = 1, 2, if([cr_min] < 0.6, 2, 0))))))), "")',dependencies:[{duster_field_name:"cr",aggregates:["max_agg","min_agg"],redcap_field_note:"mg/dL",label:"Creatinine (serum/plasma)",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"acute_renfail_diag",redcap_field_note:"",label:"Acute Renal Failure",value_type:"boolean",redcap_field_type:"yesno",redcap_options:""},{duster_field_name:"chronic_renfail_diag",redcap_field_note:"",label:"Chronic Renal Failure",value_type:"boolean",redcap_field_type:"yesno",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_hct_subscore",score_duster_field_name:"apache2_score",label:"Hematocrit Subscore",redcap_field_note:"(+4) >= 60
      (+2) 50 to < 60
      (+1) 46 to < 50
      (+0) 30 to < 46
      (+2) 20 to < 30
      (+4) < 20",redcap_options:'if([hct_min] != "" and [hct_max] != "", if([hct_min] < 20 or [hct_max] >= 60, 4, if([hct_min] < 30 or [hct_max] >= 50, 2, if([hct_max] >= 46, 1, 0))), "")',dependencies:[{duster_field_name:"hct",aggregates:["max_agg","min_agg"],redcap_field_note:"%",label:"Hematocrit (Hct)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_na_subscore",score_duster_field_name:"apache2_score",label:"Sodium Subscore",redcap_field_note:"(+4) >= 180
      (+3) 160 to < 180
      (+2) 155 to < 160
      (+1) 150 to < 155
      (+0) 130 to < 150
      (+2) 120 to < 130
      (+3) 111 to < 120
      (+4) < 111",redcap_options:'if([na_min] != "" and [na_max] != "", if([na_min] < 111 or [na_max] >= 180, 4, if([na_min] < 120 or [na_max] >= 160, 3, if([na_min] < 130 or [na_max] >= 155, 2, if([na_max] >= 150, 1, 0)))), "")',dependencies:[{duster_field_name:"na",aggregates:["max_agg","min_agg"],redcap_field_note:"mmol/L",label:"Sodium (Na)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_k_subscore",score_duster_field_name:"apache2_score",label:"Potassium Subscore",redcap_field_note:"(+4) >= 7.0
      (+3) 6.0 to < 7.0
      (+1) 5.5 to < 6.0
      (+0) 3.5 to < 5.5
      (+1) 3.0 to < 3.5
      (+2) 2.5 to < 3.0
      (+4) < 2.5",redcap_options:'if([k_max] != "" and [k_max] != "", if([k_max] < 2.5 or [k_max] >= 7.0, 4, if([k_max] >= 6.0, 3, if([k_max] < 3.0, 2, if([k_max] < 3.5 or [k_max] >= 5.5, 1, 0)))), "")',dependencies:[{duster_field_name:"k",aggregates:["max_agg","min_agg"],redcap_field_note:"mmol/L",label:"Potassium (K)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_oxy_subscore",score_duster_field_name:"apache2_score",label:"Oxygenation Subscore",redcap_field_note:"(+4) A-a gradient > 499
      (+3) A-a gradient 350 - 499
      (+2) A-a gradient 200 - 349
      (+0) A-a gradient < 200 (if FiO2 over 0.49) or PaO2 > 70 (if FiO2 < 0.50)
      (+1) PaO2 = 61 - 70
      (+3) PaO2 = 55 - 60
      (+4) PaO2 < 55",redcap_options:'if([fio2_max] != "", if([fio2_max] < 0.50, if([pao2_min] = "", "", if([pao2_min] < 55, 4, if([pao2_min] <= 60, 3, if([pao2_min] <= 70, 1, 0)))), if([aa_gradient_min] = "" or [aa_gradient_max] = "", "", if([aa_gradient_max] > 499, 4, if([aa_gradient_max] >= 350, 3, if([aa_gradient_max] >= 200, 2, 0))))), "")',dependencies:[{duster_field_name:"aa_gradient",aggregates:["max_agg","min_agg"],redcap_field_note:"",label:"AA Gradient",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"fio2",aggregates:["max_agg","min_agg"],redcap_field_note:"%",label:"FiO2",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"pao2",aggregates:["max_agg","min_agg"],redcap_field_note:"mmHg",label:"PaO2",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"}],description:"Estimates ICU mortality.",description_short:"Estimates ICU mortality.",loinc_code:"",unit:"",note:'"History of severe organ insufficiency or immunocompromised", "Patient Operative Status", "Acute Renal Failure", and "Chronic Renal Failure" will have provided REDCap fields. However, these clinical variables cannot be automated by DUSTER and require manual phenotyping by the researcher.',related:"sofa_score",mdcalc:"https://www.mdcalc.com/calc/1868/apache-ii-score",pubmed:"https://pubmed.ncbi.nlm.nih.gov/3928249/"}]},eS=200,tS="OK",nS={"access-control-allow-origin":"*","cache-control":"no-store, no-cache, must-revalidate",connection:"Keep-Alive","content-encoding":"gzip","content-length":"4307","content-type":"text/html; charset=UTF-8",date:"Tue, 28 Mar 2023 21:40:40 GMT",expires:"Thu, 19 Nov 1981 08:52:00 GMT","keep-alive":"timeout=5, max=97",pragma:"no-cache","redcap-random-text":"FaGrGUMSpmxVUIrEQTs2aPV89y",server:"Apache/2.4.38 (Debian)",vary:"Accept-Encoding","x-content-type-options":"nosniff","x-xss-protection":"1; mode=block"},rS={transitional:{silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},adapter:["xhr","http"],transformRequest:[null],transformResponse:[null],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{},headers:{Accept:"application/json, text/plain, */*"},method:"get",url:"http://localhost/redcap_v12.2.4/ExternalModules/?prefix=duster&page=services/callMetadata"},iS={},jn={data:Q7,status:eS,statusText:tS,headers:nS,config:rS,request:iS},wp=t=>(ac("data-v-2a7c999a"),t=t(),lc(),t),oS={class:"container"},aS={class:"grid"},lS={class:"col-offset-1 col-10"},sS=Xa('',1),uS={class:"grid"},cS={class:"col-6"},dS={class:"col-6"},pS={class:"grid"},fS={class:"col"},mS={class:"grid"},hS={class:"col"},gS=["innerHTML"],vS={key:0,class:"m-2"},yS=wp(()=>g("label",null,"IRB or DPA: ",-1)),bS=wp(()=>g("p",null,[ye(" It looks like you were previously in the middle of designing a dataset. "),g("br"),g("br"),ye(" Would you like to restore this design? ")],-1)),wS={class:"flex p-4"},CS={class:"pl-2"},_S=bt({__name:"App",setup(t){const e=JSON.parse(localStorage.getItem("postObj")||"{}");localStorage.removeItem("postObj"),setInterval(()=>{_t.get(e.refresh_session_url).then(function(le){}).catch(function(le){}),e.edit_mode===!1&&Te("auto-save")},6e4);const n=de(!1),r=de(!1),o=de(!1),i=de([{redcap_field_name:"mrn",label:"Medical Record Number (MRN)",redcap_field_type:"text",value_type:"Identifier",redcap_field_note:"8-digit number (including leading zeros, e.g., '01234567')",phi:"t",id:"mrn",duster_field_name:void 0},{redcap_field_name:"enroll_date",redcap_field_type:"text",value_type:"date",label:"Study Enrollment Date",phi:"t",id:"enroll_date",duster_field_name:void 0}]),a=Z(()=>i.value.filter(le=>{var B;return((B=le.value_type)==null?void 0:B.toLowerCase())==="identifier"})),l=Z(()=>i.value.filter(le=>{var B;return((B=le.value_type)==null?void 0:B.toLowerCase())!=="identifier"})),u=de([]),s=de([]),c=de([]),d=de([]),m=de([]),f=de([]),y=Z(()=>[].concat(u.value).concat(s.value).concat(c.value).concat(d.value).concat(m.value));Gi("metadata",y);const b=de([]),S=de([]),_=de(e.project_irb_number),I=le=>le.startsWith("DPA")?le:"IRB "+le,z=de(!1),x=de("checking"),F=de("Checking "+I(_.value)+" ..."),ie=de(!1),ae={},M={rpData:[],demographicsSelects:[],collectionWindows:[]},Q=de(!1);di(()=>{D(e.check_irb_url,e.redcap_csrf_token,e.project_irb_number,e.redcap_user)});const oe=de(!1);ut(oe,le=>{F.value="Fetching DUSTER Metadata ...",le&&fe(e.metadata_url)});const ue=()=>{var w,O;let le="";const B=[];if(!j.value.dpa)le="No valid DPA was found for IRB "+j.value.irb_num+". Please add a DPA to your protocol with the necessary attestations. ",B.push("MRNs (required)"),B.push("Dates (required)"),B.push("Names"),B.push("Demographics"),B.push("Lab results"),B.push("Clinical notes (includes flowsheets)"),B.push("Medications"),B.push("Diagnosis codes"),B.push("Procedure codes");else{const E=j.value.dpa;E.approvedForMrn||B.push("MRNs (required)"),E.approvedForDates||B.push("Dates (required)"),E.approvedForName||B.push("Names"),E.approvedForDemographics||B.push("Demographics"),E.approvedForLabResult||B.push("Lab results"),E.approvedForClinicalNotes||B.push("Clinical notes (includes flowsheets)"),E.approvedForMedications||B.push("Medications"),E.approvedForDiagnosis||B.push("Diagnosis codes"),E.approvedForProcedure||B.push("Procedure codes")}if(B.length>0){if(j.value.dpa){le+="";const E=!((w=j.value.irb_num)!=null&&w.startsWith("DPA-"));le=I(j.value.irb_num),le+=" does not include the following attestations which may be required to retrieve data for this project. If any of the following are included as part of your DUSTER project, you will need to ",E?le+="modify your protocol and file a new DPA.
        ":le+="file a new DPA with the required attestations.
          "}else le+="The DPA must include all PHI and data attestations which will be accessed as part of this project. Please include the following items in your DPA as needed.
            ";B.forEach(E=>le+="
          • "+E+"
          • "),le+="

          "}return j.value.dpa&&!((O=j.value.user_permissions)!=null&&O.signedDpa)&&(le+="User "+e.redcap_user+" does not have a DPA attestation associated with "+I(j.value.irb_num)+" and needs an add-on DPA.
          "),le.length>0&&(le+='
          You may continue to configure and create your DUSTER project. However, all IRB and/or DPA issues must be resolved before retrieving data. Click "OK" to continue project creation.'),le},j=de(),D=(le,B,w,O)=>{if(n.value)z.value=!0;else if(w){ie.value=!0;let E=new FormData;E.append("redcap_csrf_token",B),E.append("project_irb_number",w),E.append("user",O),_t.post(le,E).then(function(N){if(x.value="checked",j.value=N.data,F.value="",N.data.irb_status){w.startsWith("DPA")&&j.value.dpa.protocolNum&&(F.value=I(j.value.dpa.protocolNumStr)+" will be used in place of "+w+". ",w=j.value.dpa.protocolNumStr),e.project_irb_number=w;const W=ue();W.length>0?F.value+=I(w)+" is valid.

          "+W:(F.value+=I(w)+" is valid.
          Fetching DUSTER Metadata ...",oe.value=!0),z.value=!0}else{if(typeof N.data=="string"&&N.data.toLowerCase().includes("fatal error")){r.value=!0;let W=new FormData;W.append("redcap_csrf_token",B),W.append("fatal_error",N.data),_t.post(e.report_fatal_error_url,W).then(function(G){}).catch(function(G){})}else F.value+=I(w)+' is invalid. Please enter a different IRB or DPA. (DPAs must start with "DPA-")';z.value=!1}}).catch(function(N){z.value=!1,F.value="IRB Check Error",r.value=!0,console.log(N)})}else F.value='You must have an IRB or DPA to use DUSTER. Please enter a valid IRB or DPA. (DPAs must start with "DPA-")',z.value=!1,x.value="checked",ie.value=!0},q=()=>{x.value="retry",F.value="Checking "+I(_.value)+" ...",D(e.check_irb_url,e.redcap_csrf_token,_.value,e.redcap_user)},ve=()=>{ie.value=!1,(!z.value||!oe.value)&&(window.location.href=e.redcap_new_project_url)},fe=le=>{n.value?(u.value=Ve(jn.data.demographics),u.value=u.value.map(B=>({...B,edit:!0})),s.value=jn.data.labs,c.value=jn.data.vitals,d.value=jn.data.outcomes,m.value=jn.data.scores,f.value=jn.data.clinical_dates):_t.get(le).then(function(B){u.value=Ve(B.data.demographics),s.value=B.data.labs,c.value=B.data.vitals,d.value=B.data.outcomes,m.value=B.data.scores,f.value=B.data.clinical_dates,ie.value=!1,_t.get(e.get_dataset_designs_url).then(function(w){const O=w.data;e.edit_mode===!1&&O.hasOwnProperty("auto-save")===!0?(ae.value=JSON.parse(O["auto-save"]),Q.value=!0):e.edit_mode===!0&&ge()}).catch(function(w){})}).catch(function(B){F.value="Unable to load DUSTER metadata",r.value=!0})},ge=()=>{M.value=JSON.parse(e.initial_design),M.collectionWindows=M.value.collectionWindows,M.value=JSON.parse(e.initial_design),i.value=M.value.rpData,i.value.forEach(B=>{B.edit=!1});let le=M.value.demographicsSelects.map(B=>B.duster_field_name);Array.isArray(u.value)&&u.value.forEach(B=>{le.includes(B.duster_field_name)&&(B.edit=!1,b.value.push(B))}),S.value=M.value.collectionWindows},me=()=>{S.value.forEach(le=>{if(le.timing.start.type!=="interval"&&(le.timing_valid=l.value.findIndex(B=>B.redcap_field_name===le.timing.start.rp_date)!==-1),le.timing_valid&&le.timing.end.type!=="interval"&&(le.timing_valid=l.value.findIndex(B=>B.redcap_field_name===le.timing.end.rp_date)!==-1),le.event&&le.event[0]&&le.event[0].redcap_field_name){const B=l.value.findIndex(w=>w.redcap_field_name==le.event[0].redcap_field_name);B!=-1?le.data.valid=l.value[B].value_type=="datetime":le.data.valid=!1}})},Ke=ol(),V=Z(()=>u.value&&u.value.length>0?u.value.map(le=>le.duster_field_name):[]),R=l3(),k=le=>{R.require({target:le.currentTarget,header:"Back to REDCap New Project Page",message:"You will exit DUSTER's New Project Designer and will lose any changes made here. Are you sure you want to exit?",accept:()=>{window.history.go(-1)}})},A=er(),be=()=>(me(),A.value.$touch(),Ke.removeAllGroups(),A.value.$error?A.value.$errors.forEach(le=>{typeof le.$message=="object"?le.$message.forEach(B=>{B.forEach(w=>{Ke.add({severity:"error",summary:"Error",detail:w,life:3e3})})}):Ke.add({severity:"error",summary:"Error",detail:le.$message,life:3e3})}):(o.value=!0,e.edit_mode===!1&&Te("auto-save")),!1),Te=le=>{let B=new FormData;B.append("redcap_csrf_token",e.redcap_csrf_token),B.append("title",le);const w={rpData:i.value,demographicsSelects:b.value,collectionWindows:S.value};B.append("design",JSON.stringify(w)),_t.post(e.save_dataset_design_url,B).then(function(O){}).catch(function(O){})},Ee=()=>{i.value=ae.value.rpData,b.value=ae.value.demographicsSelects,S.value=ae.value.collectionWindows,Q.value=!1},ze=()=>{ae.value=null,Pe("auto-save")},Pe=le=>{let B=new FormData;B.append("redcap_csrf_token",e.redcap_csrf_token),B.append("title",le),_t.post(e.delete_dataset_design_url,B).then(function(w){}).catch(function(w){})},Ve=le=>{let B=JSON.parse(JSON.stringify(le));return B.forEach(w=>{w.label.toLowerCase().indexOf("date")>-1?w.group=1:w.label.toLowerCase().indexOf("name")>-1?w.group=2:w.group=3}),B.sort(function(w,O){let E=w.label.toLowerCase(),N=O.label.toLowerCase();return w.groupO.group?1:EN?1:0}),B};return(le,B)=>{const w=K("Button"),O=K("Toolbar"),E=K("InputText"),N=K("Dialog"),W=K("ConfirmDialog");return p(),v(ne,null,[g("div",oS,[g("div",aS,[g("div",lS,[sS,Se(g("div",null,[g("div",uS,[g("div",cS,[P(h9,{"rp-data":i.value,"onUpdate:rpData":B[0]||(B[0]=G=>i.value=G),"reserved-field-names":V.value},null,8,["rp-data","reserved-field-names"])]),g("div",dS,[P(_9,{class:"flex-1","demographics-options":u.value,"demographics-selects":b.value,"onUpdate:demographicsSelects":B[1]||(B[1]=G=>b.value=G)},null,8,["demographics-options","demographics-selects"])])]),g("div",pS,[g("div",fS,[P(L7,{"lab-options":s.value,"vital-options":c.value,"score-options":m.value,"outcome-options":d.value,"clinical-date-options":f.value,"rp-dates":l.value,"collection-windows":S.value,"onUpdate:collectionWindows":B[2]||(B[2]=G=>S.value=G),"initial-windows":M.collectionWindows},null,8,["lab-options","vital-options","score-options","outcome-options","clinical-date-options","rp-dates","collection-windows","initial-windows"])])]),g("div",mS,[g("div",hS,[P(ee(mo)),P(O,{class:"col"},{start:L(()=>[P(w,{label:ee(e).edit_mode?"Back to REDCap Project":"Back to REDCap New Project Page",icon:"pi pi-cross",severity:"secondary",class:"ml-2",onClick:B[3]||(B[3]=G=>k(G))},null,8,["label"])]),end:L(()=>[P(w,{type:"submit",label:ee(e).edit_mode?"Review & Update Project":"Review & Create Project",icon:"pi pi-check",class:"ml-2",onClick:be},null,8,["label"])]),_:1})])])],512),[[Un,!o.value]]),g("div",{style:qn(o.value?"":"display: none !important")},[P(X7,{"show-summary":o.value,"onUpdate:showSummary":B[4]||(B[4]=G=>o.value=G),dev:n.value,"rp-data":i.value,"rp-identifiers":a.value,"rp-dates":l.value,demographics:b.value,"collection-windows":S.value,"project-info":ee(e),onDeleteAutoSave:B[5]||(B[5]=G=>ze())},null,8,["show-summary","dev","rp-data","rp-identifiers","rp-dates","demographics","collection-windows","project-info"])],4)])])]),P(N,{visible:ie.value,"onUpdate:visible":B[8]||(B[8]=G=>ie.value=G),modal:"",header:"Checking IRB or DPA",style:{width:"40vw"},closable:!1},{footer:L(()=>[!z.value&&x.value==="checked"?(p(),$(w,{key:0,label:"Submit",icon:"pi pi-refresh",class:"p-button-primary",onClick:q,size:"small"})):T("",!0),z.value&&!oe.value?(p(),$(w,{key:1,label:"OK",icon:"pi pi-check",class:"p-button-primary",onClick:B[7]||(B[7]=G=>oe.value=!0),size:"small"})):T("",!0),P(w,{label:"Cancel",icon:"pi pi-times",class:"p-button-secondary",onClick:ve,size:"small"})]),default:L(()=>[g("p",null,[g("span",{innerHTML:F.value},null,8,gS)]),!z.value&&x.value==="checked"?(p(),v("div",vS,[yS,P(E,{modelValue:_.value,"onUpdate:modelValue":B[6]||(B[6]=G=>_.value=G)},null,8,["modelValue"])])):T("",!0)]),_:1},8,["visible"]),P(N,{visible:Q.value,"onUpdate:visible":B[11]||(B[11]=G=>Q.value=G),header:"Restore last design",modal:!0,closable:!1},{footer:L(()=>[P(w,{label:"Yes",icon:"pi pi-check",class:"p-button-primary",onClick:B[9]||(B[9]=G=>Ee()),size:"small"}),P(w,{label:"No",icon:"pi pi-times",class:"p-button-secondary",onClick:B[10]||(B[10]=G=>(Q.value=!1,ze())),size:"small"})]),default:L(()=>[bS]),_:1},8,["visible"]),r.value?(p(),$(Ud,{key:0})):T("",!0),P(W,null,{message:L(G=>[g("div",wS,[g("i",{class:te(G.message.icon),style:{"font-size":"1.5rem"}},null,2),g("p",CS,Y(G.message.message),1)])]),_:1})],64)}}});const SS=bp(_S,[["__scopeId","data-v-2a7c999a"]]);Qm(SS).use(Dh).use(h1).use(s3).component("Accordion",Bc).component("AccordionTab",jc).component("Badge",il).component("Button",Dn).component("Calendar",Kc).component("Card",Uc).component("Checkbox",Wc).component("Column",y1).component("DataTable",Ed).component("Dialog",hl).component("Dropdown",hi).component("InputNumber",ul).component("InputSwitch",$d).component("InputText",sl).component("Message",Ad).component("Panel",Ld).component("RadioButton",Fd).component("Divider",Bd).component("Chip",Vd).component("ConfirmPopup",Nd).component("ConfirmDialog",zd).component("Tag",jd).component("Toolbar",Hd).directive("tooltip",G_).mount("#app"); diff --git a/pages/js/duster/new-project/dist/index.html b/pages/js/duster/new-project/dist/index.html index ef35ab7..3101349 100644 --- a/pages/js/duster/new-project/dist/index.html +++ b/pages/js/duster/new-project/dist/index.html @@ -5,7 +5,7 @@ DUSTER - + diff --git a/pages/js/duster/new-project/src/components/ReviewPanel.vue b/pages/js/duster/new-project/src/components/ReviewPanel.vue index 82c174c..512e23e 100644 --- a/pages/js/duster/new-project/src/components/ReviewPanel.vue +++ b/pages/js/duster/new-project/src/components/ReviewPanel.vue @@ -151,13 +151,64 @@ :label="editMode ? 'Update Project' : 'Create Project'" icon="pi pi-check" severity="success" - @click="editMode ? updateProject() : createProject()" + @click="editMode ? showConfirmUpdateDialog = true : createProject()" /> +
          +

          + WARNING: This REDCap project contains non-DUSTER REDCap fields/forms. +

          +

          + The following non-DUSTER REDCap fields may be lost if you decide to edit this DUSTER project: +

          + +
            + {{form.label}} ({{form.name}}) +
          1. + {{field_name}} +
          2. +
          +
          +
          +
          + Are you sure you want to update this project? +
          + +
          + { } const showCreateProjectDialog = ref(false); +const showConfirmUpdateDialog = ref(false); const createProjectMessage = ref(""); const createProjectError = ref(false); const systemErrorMessage = ref(""); @@ -753,6 +805,7 @@ const createProject = () => { } const updateProject = () => { + showConfirmUpdateDialog.value = false; createProjectMessage.value = "Updating REDCap Project. Please wait."; showCreateProjectDialog.value = true; const data = { diff --git a/services/updateProject.php b/services/updateProject.php index d93635e..915ceab 100644 --- a/services/updateProject.php +++ b/services/updateProject.php @@ -70,6 +70,7 @@ function getFieldParams($field, string $form_name = "", string $section_header = $config = $data['config']; $project_object = new Project($project_id, false); // not the same object returned by $module->getProject() $project_designer = new ProjectDesigner($project_object); + $repeatable_forms = []; $new_forms = []; $project_metadata = "\"Variable / Field Name\",\"Form Name\",\"Section Header\",\"Field Type\",\"Field Label\",\"Choices, Calculations, OR Slider Labels\",\"Field Note\",\"Text Validation Type OR Show Slider Number\",\"Text Validation Min\",\"Text Validation Max\",Identifier?,\"Branching Logic (Show field only if...)\",\"Required Field?\",\"Custom Alignment\",\"Question Number (surveys only)\",\"Matrix Group Name\",\"Matrix Ranking?\",\"Field Annotation\"\n"; @@ -105,19 +106,21 @@ function getFieldParams($field, string $form_name = "", string $section_header = } // Timing - $timing_header = 'Timing'; + $project_metadata .= getFieldParams($collection_window['timing']['start'], $form_name, 'Timing'); + $project_metadata .= getFieldParams($collection_window['timing']['end'], $form_name, ''); if ($collection_window['type'] === 'repeating') { + $repeatable_forms[] = $form_name; + $repeat_field_params = array( 'label' => 'Unique Instance Token', 'redcap_field_name' => $form_name, 'redcap_field_type' => 'text', 'field_annotation' => ' @HIDDEN' ); - $project_metadata .= getFieldParams($repeat_field_params, $form_name, 'Timing'); - $timing_header = ''; + $project_metadata .= getFieldParams($repeat_field_params, $form_name, 'Repeat Instance'); + $project_metadata .= getFieldParams($collection_window['timing']['repeat_interval']['start_instance'], $form_name, ''); + $project_metadata .= getFieldParams($collection_window['timing']['repeat_interval']['end_instance'], $form_name, ''); } - $project_metadata .= getFieldParams($collection_window['timing']['start'], $form_name, $timing_header); - $project_metadata .= getFieldParams($collection_window['timing']['end'], $form_name, ''); // Closest Event Aggregation if (!empty($collection_window['event'])) { @@ -206,6 +209,11 @@ function getFieldParams($field, string $form_name = "", string $section_header = exit(); } + // Make forms repeatable + foreach ($repeatable_forms as $form_name) { + $project_designer->makeFormRepeatable($form_name, $module->getEventId(), NULL); + } + // Update form labels to "correct" labeling for each new data collection window foreach ($new_forms as $form_name => $label) { $module->query( From b76442c25384bd6d6f7387ea6c48979d2c7664c6 Mon Sep 17 00:00:00 2001 From: Jonasel Roque <38173852+roquej@users.noreply.github.com> Date: Tue, 7 May 2024 14:14:54 -0700 Subject: [PATCH 02/12] add logging to project updates (#82) --- services/updateProject.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/updateProject.php b/services/updateProject.php index 915ceab..af0119e 100644 --- a/services/updateProject.php +++ b/services/updateProject.php @@ -68,6 +68,7 @@ function getFieldParams($field, string $form_name = "", string $section_header = /* Update REDCap project's data dictionary */ try { $config = $data['config']; + $module->emDebug($config); $project_object = new Project($project_id, false); // not the same object returned by $module->getProject() $project_designer = new ProjectDesigner($project_object); $repeatable_forms = []; @@ -181,7 +182,7 @@ function getFieldParams($field, string $form_name = "", string $section_header = $ch = curl_init(); $api_url = $module->getRedcapApiUrl(); - $module->emDebug("Import Metadata POST Request to REDCap API URL $api_url"); + $module->emDebug("Import Metadata POST Request to REDCap API URL $api_url using the following metadata: $project_metadata"); curl_setopt($ch, CURLOPT_URL, $api_url); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($fields, '', '&')); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); From 6a74461a831eaa11879322ae459a79458df4a42a Mon Sep 17 00:00:00 2001 From: Jonasel Roque <38173852+roquej@users.noreply.github.com> Date: Wed, 5 Jun 2024 10:23:50 -0700 Subject: [PATCH 03/12] Roquej 20240529 mrn expansion (#83) * update text for 10-digit MRN expansion * bug fix handling JSON for duster config * disable option to create a project using DUSTER when not logged in with a SUNet * refactor so design config from DusterConfigClass is converted from string to json --- Duster.php | 9 ++++++--- classes/DusterConfigClass.php | 4 ++-- pages/editProject.php | 3 +-- .../assets/{index-3c7798d2.css => index-034d2d8b.css} | 2 +- .../dist/assets/{index-4102b31f.js => index-a4e4c74a.js} | 2 +- pages/js/duster/new-project/dist/index.html | 4 ++-- pages/js/duster/new-project/src/App.vue | 2 +- services/updateProject.php | 2 +- 8 files changed, 15 insertions(+), 13 deletions(-) rename pages/js/duster/new-project/dist/assets/{index-3c7798d2.css => index-034d2d8b.css} (99%) rename pages/js/duster/new-project/dist/assets/{index-4102b31f.js => index-a4e4c74a.js} (98%) diff --git a/Duster.php b/Duster.php index 6023e73..c4ca71a 100644 --- a/Duster.php +++ b/Duster.php @@ -31,9 +31,8 @@ public function redcap_every_page_top($project_id) { && strpos(PAGE, "index.php") !== false && isset($_GET['action']) && $_GET['action'] === 'create' && $this->isUserAllowed() === true) { - // $this->emDebug("In Every Page Top Hook project id :" . $this->getProjectId() . " Page is " . PAGE); - $some = ""; - echo $some; + echo ""; + echo ""; $script = << $(document).ready(function() { @@ -48,6 +47,10 @@ public function redcap_every_page_top($project_id) { div += ""; $("#project_template_radio0").closest('td').append(div) ; + if (!isSunet) { + $("#project_template_duster").attr('disabled', true); + $("#duster_option").append("
          You must be logged into REDCap with your SUNet to use DUSTER."); + } // show DUSTER radio button option if purpose is research $("#purpose").change(function() { diff --git a/classes/DusterConfigClass.php b/classes/DusterConfigClass.php index 4476acb..a834dc7 100644 --- a/classes/DusterConfigClass.php +++ b/classes/DusterConfigClass.php @@ -31,8 +31,8 @@ public function loadConfig() ((substr($config_url, -1) === '/') ? "" : "/") . SERVER_NAME . '/' . $this->project_id . '?redcap_user=' . $this->module->getUser()->getUserName(); $config_object = $this->module->starrApiGetRequest($config_url, 'ddp'); - $this->duster_config = $config_object['config']; - $this->design_config = $config_object['design_config']; + $this->duster_config = json_decode($config_object['config'], true); + $this->design_config = json_decode($config_object['design_config'], true); } public function loadDesignConfig () { diff --git a/pages/editProject.php b/pages/editProject.php index c964239..d7d27d7 100644 --- a/pages/editProject.php +++ b/pages/editProject.php @@ -15,10 +15,9 @@ $user_rights = $module->getUser()->getRights($pid); $irb = $module->getProjectIrb($pid); $duster_config_obj = new DusterConfigClass($pid, $module); -$duster_config = json_decode($duster_config_obj->getDusterConfig(), true); +$duster_config = $duster_config_obj->getDusterConfig(); $design_config = $duster_config_obj->getDesignConfig(); $has_design_config = $design_config !== NULL; // PHP 8.3 provides json_validate(), which checks if a string contains valid JSON. -$design_config = json_encode($design_config); $editable = $project_status === "DEV" && strlen($user_rights['api_token']) === 32 && $user_rights['api_import'] === '1' diff --git a/pages/js/duster/new-project/dist/assets/index-3c7798d2.css b/pages/js/duster/new-project/dist/assets/index-034d2d8b.css similarity index 99% rename from pages/js/duster/new-project/dist/assets/index-3c7798d2.css rename to pages/js/duster/new-project/dist/assets/index-034d2d8b.css index b83727b..16dd18b 100644 --- a/pages/js/duster/new-project/dist/assets/index-3c7798d2.css +++ b/pages/js/duster/new-project/dist/assets/index-034d2d8b.css @@ -1 +1 @@ -[data-v-ddd0cefd] .p-datatable-header{background:blue}nav[data-v-2a7c999a]{padding:10px;text-align:center}.brand-logo[data-v-2a7c999a]{position:relative;z-index:10;float:left;display:block;width:12em;height:3em;margin-right:.7em;text-indent:-9999px;background:url(./logo_uid_stanfordmedicine-65a2822b.svg) no-repeat;background-position:-11px -1px;background-position:-.7857142857rem -.0714285714rem;background-size:auto 111%;border-right:1px solid;border-right:.0714285714rem solid;border-right-color:#000}.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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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;-moz-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{backface-visibility:visible;animation:flip .15s linear}.flipup{backface-visibility:visible;animation:flipup .15s linear}.flipleft{backface-visibility:visible;animation:flipleft .15s linear}.flipright{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}:root{--surface-a:#ffffff;--surface-b:#f8f9fa;--surface-c:#e9ecef;--surface-d:#dee2e6;--surface-e:#ffffff;--surface-f:#ffffff;--text-color:#495057;--text-color-secondary:#6c757d;--primary-color: #006CB8;--primary-color-text:#ffffff;--font-family:"Source Sans Pro", sans-serif;--surface-0: #ffffff;--surface-50: #FAFAFA;--surface-100: #F5F5F5;--surface-200: #EEEEEE;--surface-300: #E0E0E0;--surface-400: #BDBDBD;--surface-500: #9E9E9E;--surface-600: #757575;--surface-700: #616161;--surface-800: #424242;--surface-900: #212121;--gray-50: #FAFAFA;--gray-100: #F5F5F5;--gray-200: #EEEEEE;--gray-300: #E0E0E0;--gray-400: #BDBDBD;--gray-500: #9E9E9E;--gray-600: #757575;--gray-700: #616161;--gray-800: #424242;--gray-900: #212121;--content-padding:1rem;--inline-spacing:.5rem;--border-radius:3px;--surface-ground:#f8f9fa;--surface-section:#ffffff;--surface-card:#ffffff;--surface-overlay:#ffffff;--surface-border:#dee2e6;--surface-hover:#e9ecef;--focus-ring: 0 0 0 .2rem #bfd1f6;--maskbg: rgba(0, 0, 0, .4);--highlight-bg: #006CB8;--highlight-text-color: #ffffff;color-scheme:light;--stanford-foreground-text-color:#333;--stanford-link-color:#006CB8;--stanford-link-hover-color:#E98300;--stanford-active-tab-color:#B1040E;--stanford-badge-bg-color-1:white;--stanford-badge-bg-color-2:white;--stanford-badge-bg-color-3:white;--stanford-badge-fg-text-color:#333;--stanford-page-bg-color:#f9f6ef;--stanford-lightest-contrast:#f1f1f1;--stanford-dashboard-card-bg-color:white}body{font-family:Source Sans Pro,sans-serif}a{text-decoration:none;color:var(--stanford-link-color)}a:hover{color:var(--stanford-link-hover-color)}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:400;src:url(./SourceSansPro-Regular-a4c07a3a.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-style:italic;font-weight:400;src:url(./SourceSansPro-Italic-bd77181e.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:700;src:url(./SourceSansPro-Bold-f205fb64.ttf) format("truetype")}*{box-sizing:border-box}.p-component{font-family:Source Sans Pro,sans-serif;font-size:1rem;font-weight:400}.p-component-overlay{background-color:#0006;transition-duration:.2s}.p-disabled,.p-component:disabled{opacity:.8}.p-error{color:#e4677e}.p-text-secondary{color:#6c757d}.pi{font-size:1rem}.p-link{font-size:1rem;font-family:Source Sans Pro,sans-serif;border-radius:3px}.p-link:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-component-overlay-enter{animation:p-component-overlay-enter-animation .15s forwards}.p-component-overlay-leave{animation:p-component-overlay-leave-animation .15s forwards}@keyframes p-component-overlay-enter-animation{0%{background-color:transparent}to{background-color:var(--maskbg)}}@keyframes p-component-overlay-leave-animation{0%{background-color:var(--maskbg)}to{background-color:transparent}}:root{--blue-50:#f4fafe;--blue-100:#cae6fc;--blue-200:#a0d2fa;--blue-300:#75bef8;--blue-400:#4baaf5;--blue-500:#2196f3;--blue-600:#1c80cf;--blue-700:#1769aa;--blue-800:#125386;--blue-900:#0d3c61;--green-50:#f6fbf6;--green-100:#d4ecd5;--green-200:#b2ddb4;--green-300:#90cd93;--green-400:#6ebe71;--green-500:#4caf50;--green-600:#419544;--green-700:#357b38;--green-800:#2a602c;--green-900:#1e4620;--yellow-50:#fffcf5;--yellow-100:#fef0cd;--yellow-200:#fde4a5;--yellow-300:#fdd87d;--yellow-400:#fccc55;--yellow-500:#fbc02d;--yellow-600:#d5a326;--yellow-700:#b08620;--yellow-800:#8a6a19;--yellow-900:#644d12;--cyan-50:#f2fcfd;--cyan-100:#c2eff5;--cyan-200:#91e2ed;--cyan-300:#61d5e4;--cyan-400:#30c9dc;--cyan-500:#00bcd4;--cyan-600:#00a0b4;--cyan-700:#008494;--cyan-800:#006775;--cyan-900:#004b55;--pink-50:#fef4f7;--pink-100:#fac9da;--pink-200:#f69ebc;--pink-300:#f1749e;--pink-400:#ed4981;--pink-500:#e91e63;--pink-600:#c61a54;--pink-700:#a31545;--pink-800:#801136;--pink-900:#5d0c28;--indigo-50:#f5f6fb;--indigo-100:#d1d5ed;--indigo-200:#acb4df;--indigo-300:#8893d1;--indigo-400:#6372c3;--indigo-500:#3f51b5;--indigo-600:#36459a;--indigo-700:#2c397f;--indigo-800:#232d64;--indigo-900:#192048;--teal-50:#f2faf9;--teal-100:#c2e6e2;--teal-200:#91d2cc;--teal-300:#61beb5;--teal-400:#30aa9f;--teal-500:#009688;--teal-600:#008074;--teal-700:#00695f;--teal-800:#00534b;--teal-900:#003c36;--orange-50:#fff8f2;--orange-100:#fde0c2;--orange-200:#fbc791;--orange-300:#f9ae61;--orange-400:#f79530;--orange-500:#f57c00;--orange-600:#d06900;--orange-700:#ac5700;--orange-800:#874400;--orange-900:#623200;--bluegray-50:#f7f9f9;--bluegray-100:#d9e0e3;--bluegray-200:#bbc7cd;--bluegray-300:#9caeb7;--bluegray-400:#7e96a1;--bluegray-500:#607d8b;--bluegray-600:#526a76;--bluegray-700:#435861;--bluegray-800:#35454c;--bluegray-900:#263238;--purple-50:#faf4fb;--purple-100:#e7cbec;--purple-200:#d4a2dd;--purple-300:#c279ce;--purple-400:#af50bf;--purple-500:#9c27b0;--purple-600:#852196;--purple-700:#6d1b7b;--purple-800:#561561;--purple-900:#3e1046;--red-50:#fff5f5;--red-100:#ffd1ce;--red-200:#ffada7;--red-300:#ff8980;--red-400:#ff6459;--red-500:#ff4032;--red-600:#d9362b;--red-700:#b32d23;--red-800:#8c231c;--red-900:#661a14;--primary-50:#f2f8fb;--primary-100:#c2dcee;--primary-200:#91c0e0;--primary-300:#61a4d3;--primary-400:#3088c5;--primary-500:#006cb8;--primary-600:#005c9c;--primary-700:#004c81;--primary-800:#003b65;--primary-900:#002b4a}.p-autocomplete .p-autocomplete-loader{right:.5rem}.p-autocomplete.p-autocomplete-dd .p-autocomplete-loader{right:2.25rem}.p-autocomplete:not(.p-disabled):hover .p-autocomplete-multiple-container{border-color:#006cb8}.p-autocomplete:not(.p-disabled).p-focus .p-autocomplete-multiple-container{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-autocomplete .p-autocomplete-multiple-container{padding:.25rem .5rem;gap:.5rem}.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-input-token{padding:.25rem 0}.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-input-token input{font-family:Source Sans Pro,sans-serif;font-size:1rem;color:#495057;padding:0;margin:0}.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token{padding:.25rem .5rem;background:#dee2e6;color:#495057;border-radius:16px}.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon{margin-left:.5rem}.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token.p-focus{background:#dee2e6;color:#495057}.p-autocomplete.p-invalid.p-component>.p-inputtext{border-color:#ced4da #ced4da #ced4da #e4677e}.p-autocomplete-panel{background:#ffffff;color:#495057;border:0 none;border-radius:3px;box-shadow:0 3px 6px #0000001a}.p-autocomplete-panel .p-autocomplete-items{padding:.5rem 0}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item{margin:0;padding:.5rem 1rem;border:0 none;color:#495057;background:transparent;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight{color:#fff;background:#006CB8}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight.p-focus{background:rgba(0,108,184,.24)}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:not(.p-highlight):not(.p-disabled).p-focus{color:#495057;background:#f8f9fa}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:not(.p-highlight):not(.p-disabled):hover{color:#495057;background:#e9ecef}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item-group{margin:0;padding:.75rem 1rem;color:#495057;background:#ffffff;font-weight:600}.p-calendar.p-invalid.p-component>.p-inputtext{border-color:#ced4da #ced4da #ced4da #e4677e}.p-datepicker{padding:.5rem;background:#ffffff;color:#495057;border:1px solid #ced4da;border-radius:3px}.p-datepicker:not(.p-datepicker-inline){background:#ffffff;border:0 none;box-shadow:0 3px 6px #0000001a}.p-datepicker:not(.p-datepicker-inline) .p-datepicker-header{background:#ffffff}.p-datepicker .p-datepicker-header{padding:.5rem;color:#495057;background:#ffffff;font-weight:600;margin:0;border-bottom:1px solid #dee2e6;border-top-right-radius:3px;border-top-left-radius:3px}.p-datepicker .p-datepicker-header .p-datepicker-prev,.p-datepicker .p-datepicker-header .p-datepicker-next{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover,.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-datepicker .p-datepicker-header .p-datepicker-prev:focus,.p-datepicker .p-datepicker-header .p-datepicker-next:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-datepicker .p-datepicker-header .p-datepicker-title{line-height:2rem}.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year,.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month{color:#495057;transition:background-color .2s,color .2s,box-shadow .2s;font-weight:600;padding:.5rem}.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover,.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover{color:#006cb8}.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month{margin-right:.5rem}.p-datepicker table{font-size:1rem;margin:.5rem 0}.p-datepicker table th{padding:.5rem}.p-datepicker table th>span{width:2.5rem;height:2.5rem}.p-datepicker table td{padding:.5rem}.p-datepicker table td>span{width:2.5rem;height:2.5rem;border-radius:50%;transition:background-color .2s,border-color .2s,box-shadow .2s;border:1px solid transparent}.p-datepicker table td>span.p-highlight{color:#fff;background:#006CB8}.p-datepicker table td>span:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-datepicker table td.p-datepicker-today>span{background:#ced4da;color:#495057;border-color:transparent}.p-datepicker table td.p-datepicker-today>span.p-highlight{color:#fff;background:#006CB8}.p-datepicker .p-datepicker-buttonbar{padding:1rem 0;border-top:1px solid #dee2e6}.p-datepicker .p-datepicker-buttonbar .p-button{width:auto}.p-datepicker .p-timepicker{border-top:1px solid #dee2e6;padding:.5rem}.p-datepicker .p-timepicker button{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-datepicker .p-timepicker button:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-datepicker .p-timepicker button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-datepicker .p-timepicker button:last-child{margin-top:.2em}.p-datepicker .p-timepicker span{font-size:1.286rem}.p-datepicker .p-timepicker>div{padding:0 .429rem}.p-datepicker.p-datepicker-timeonly .p-timepicker{border-top:0 none}.p-datepicker .p-monthpicker{margin:.5rem 0}.p-datepicker .p-monthpicker .p-monthpicker-month{padding:.5rem;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight{color:#fff;background:#006CB8}.p-datepicker .p-yearpicker{margin:.5rem 0}.p-datepicker .p-yearpicker .p-yearpicker-year{padding:.5rem;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-datepicker .p-yearpicker .p-yearpicker-year.p-highlight{color:#fff;background:#006CB8}.p-datepicker.p-datepicker-multiple-month .p-datepicker-group{border-left:1px solid #dee2e6;padding-right:.5rem;padding-left:.5rem;padding-top:0;padding-bottom:0}.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:first-child{padding-left:0;border-left:0 none}.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child{padding-right:0}.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover{background:#e9ecef}.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):not(.p-highlight):hover{background:#e9ecef}.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):not(.p-highlight):hover{background:#e9ecef}.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}@media screen and (max-width: 769px){.p-datepicker table th,.p-datepicker table td{padding:0}}.p-cascadeselect{background:#ffffff;border:1px solid #ced4da;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-cascadeselect:not(.p-disabled):hover{border-color:#006cb8}.p-cascadeselect:not(.p-disabled).p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-cascadeselect .p-cascadeselect-label{background:transparent;border:0 none;padding:.5rem}.p-cascadeselect .p-cascadeselect-label.p-placeholder{color:#6c757d}.p-cascadeselect .p-cascadeselect-label:enabled:focus{outline:0 none;box-shadow:none}.p-cascadeselect .p-cascadeselect-trigger{background:transparent;color:#495057;width:2.357rem;border-top-right-radius:3px;border-bottom-right-radius:3px}.p-cascadeselect.p-invalid.p-component{border-color:#ced4da #ced4da #ced4da #e4677e}.p-cascadeselect-panel{background:#ffffff;color:#495057;border:0 none;border-radius:3px;box-shadow:0 3px 6px #0000001a}.p-cascadeselect-panel .p-cascadeselect-items{padding:.5rem 0}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item{margin:0;border:0 none;color:#495057;background:transparent;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item.p-highlight{color:#fff;background:#006CB8}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item.p-highlight.p-focus{background:rgba(0,108,184,.24)}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled).p-focus{color:#495057;background:#f8f9fa}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled):hover{color:#495057;background:#e9ecef}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-item-content{padding:.5rem 1rem}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon{font-size:.875rem}.p-input-filled .p-cascadeselect{background:#f8f9fa}.p-input-filled .p-cascadeselect:not(.p-disabled):hover{background-color:#f8f9fa}.p-input-filled .p-cascadeselect:not(.p-disabled).p-focus{background-color:#f8f9fa}.p-checkbox{width:20px;height:20px}.p-checkbox .p-checkbox-box{border:2px solid #ced4da;background:#ffffff;width:20px;height:20px;color:#495057;border-radius:3px;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-checkbox .p-checkbox-box .p-checkbox-icon{transition-duration:.2s;color:#fff;font-size:14px}.p-checkbox .p-checkbox-box.p-highlight{border-color:#006cb8;background:#006CB8}.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover{border-color:#006cb8}.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover{border-color:#00548f;background:#00548f;color:#fff}.p-checkbox.p-invalid>.p-checkbox-box{border-color:#ced4da #ced4da #ced4da #e4677e}.p-input-filled .p-checkbox .p-checkbox-box{background-color:#f8f9fa}.p-input-filled .p-checkbox .p-checkbox-box.p-highlight{background:#006CB8}.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover{background-color:#f8f9fa}.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover{background:#00548f}.p-highlight .p-checkbox .p-checkbox-box{border-color:#fff}.p-chips:not(.p-disabled):hover .p-chips-multiple-container{border-color:#006cb8}.p-chips:not(.p-disabled).p-focus .p-chips-multiple-container{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-chips .p-chips-multiple-container{padding:.25rem .5rem}.p-chips .p-chips-multiple-container .p-chips-token{padding:.25rem .5rem;margin-right:.5rem;background:#dee2e6;color:#495057;border-radius:16px}.p-chips .p-chips-multiple-container .p-chips-token.p-focus{background:#dee2e6;color:#495057}.p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon{margin-left:.5rem}.p-chips .p-chips-multiple-container .p-chips-input-token{padding:.25rem 0}.p-chips .p-chips-multiple-container .p-chips-input-token input{font-family:Source Sans Pro,sans-serif;font-size:1rem;color:#495057;padding:0;margin:0}.p-chips.p-invalid.p-component>.p-inputtext{border-color:#ced4da #ced4da #ced4da #e4677e}.p-colorpicker-preview{width:2rem;height:2rem}.p-colorpicker-panel{background:#323232;border:1px solid #191919}.p-colorpicker-panel .p-colorpicker-color-handle,.p-colorpicker-panel .p-colorpicker-hue-handle{border-color:#fff}.p-colorpicker-overlay-panel{box-shadow:0 3px 6px #0000001a}.p-dropdown{background:#ffffff;border:1px solid #ced4da;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-dropdown:not(.p-disabled):hover{border-color:#006cb8}.p-dropdown:not(.p-disabled).p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-dropdown.p-dropdown-clearable .p-dropdown-label{padding-right:1.5rem}.p-dropdown .p-dropdown-label{background:transparent;border:0 none}.p-dropdown .p-dropdown-label.p-placeholder{color:#6c757d}.p-dropdown .p-dropdown-label:focus,.p-dropdown .p-dropdown-label:enabled:focus{outline:0 none;box-shadow:none}.p-dropdown .p-dropdown-trigger{background:transparent;color:#495057;width:2.357rem;border-top-right-radius:3px;border-bottom-right-radius:3px}.p-dropdown .p-dropdown-clear-icon{color:#495057;right:2.357rem}.p-dropdown.p-invalid.p-component{border-color:#ced4da #ced4da #ced4da #e4677e}.p-dropdown-panel{background:#ffffff;color:#495057;border:0 none;border-radius:3px;box-shadow:0 3px 6px #0000001a}.p-dropdown-panel .p-dropdown-header{padding:.5rem 1rem;border-bottom:0 none;color:#495057;background:#f8f9fa;margin:0;border-top-right-radius:3px;border-top-left-radius:3px}.p-dropdown-panel .p-dropdown-header .p-dropdown-filter{padding-right:1.5rem;margin-right:-1.5rem}.p-dropdown-panel .p-dropdown-header .p-dropdown-filter-icon{right:.5rem;color:#495057}.p-dropdown-panel .p-dropdown-items{padding:.5rem 0}.p-dropdown-panel .p-dropdown-items .p-dropdown-item{margin:0;padding:.5rem 1rem;border:0 none;color:#495057;background:transparent;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight{color:#fff;background:#006CB8}.p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight.p-focus{background:rgba(0,108,184,.24)}.p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled).p-focus{color:#495057;background:#f8f9fa}.p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover{color:#495057;background:#e9ecef}.p-dropdown-panel .p-dropdown-items .p-dropdown-item-group{margin:0;padding:.75rem 1rem;color:#495057;background:#ffffff;font-weight:600}.p-dropdown-panel .p-dropdown-items .p-dropdown-empty-message{padding:.5rem 1rem;color:#495057;background:transparent}.p-input-filled .p-dropdown{background:#f8f9fa}.p-input-filled .p-dropdown:not(.p-disabled):hover{background-color:#f8f9fa}.p-input-filled .p-dropdown:not(.p-disabled).p-focus{background-color:#f8f9fa}.p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext{background-color:transparent}.p-editor-container .p-editor-toolbar{background:#f8f9fa;border-top-right-radius:3px;border-top-left-radius:3px}.p-editor-container .p-editor-toolbar.ql-snow{border:1px solid #dee2e6}.p-editor-container .p-editor-toolbar.ql-snow .ql-stroke{stroke:#6c757d}.p-editor-container .p-editor-toolbar.ql-snow .ql-fill{fill:#6c757d}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label{border:0 none;color:#6c757d}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover{color:#495057}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover .ql-stroke{stroke:#495057}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover .ql-fill{fill:#495057}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label{color:#495057}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#495057}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#495057}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{background:#ffffff;border:0 none;box-shadow:0 3px 6px #0000001a;border-radius:3px;padding:.5rem 0}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item{color:#495057}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item:hover{color:#495057;background:#e9ecef}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded:not(.ql-icon-picker) .ql-picker-item{padding:.5rem 1rem}.p-editor-container .p-editor-content{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-editor-container .p-editor-content.ql-snow{border:1px solid #dee2e6}.p-editor-container .p-editor-content .ql-editor{background:#ffffff;color:#495057;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-editor-container .ql-snow.ql-toolbar button:hover,.p-editor-container .ql-snow.ql-toolbar button:focus{color:#495057}.p-editor-container .ql-snow.ql-toolbar button:hover .ql-stroke,.p-editor-container .ql-snow.ql-toolbar button:focus .ql-stroke{stroke:#495057}.p-editor-container .ql-snow.ql-toolbar button:hover .ql-fill,.p-editor-container .ql-snow.ql-toolbar button:focus .ql-fill{fill:#495057}.p-editor-container .ql-snow.ql-toolbar button.ql-active,.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active,.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected{color:#006cb8}.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-stroke,.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke{stroke:#006cb8}.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-fill,.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill{fill:#006cb8}.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-picker-label,.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-picker-label,.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-picker-label{color:#006cb8}.p-inputgroup-addon{background:#e9ecef;color:#6c757d;border-top:1px solid #ced4da;border-left:1px solid #ced4da;border-bottom:1px solid #ced4da;padding:.5rem;min-width:2.357rem}.p-inputgroup-addon:last-child{border-right:1px solid #ced4da}.p-inputgroup>.p-component,.p-inputgroup>.p-inputwrapper>.p-inputtext,.p-inputgroup>.p-float-label>.p-component{border-radius:0;margin:0}.p-inputgroup>.p-component+.p-inputgroup-addon,.p-inputgroup>.p-inputwrapper>.p-inputtext+.p-inputgroup-addon,.p-inputgroup>.p-float-label>.p-component+.p-inputgroup-addon{border-left:0 none}.p-inputgroup>.p-component:focus,.p-inputgroup>.p-inputwrapper>.p-inputtext:focus,.p-inputgroup>.p-float-label>.p-component:focus{z-index:1}.p-inputgroup>.p-component:focus~label,.p-inputgroup>.p-inputwrapper>.p-inputtext:focus~label,.p-inputgroup>.p-float-label>.p-component:focus~label{z-index:1}.p-inputgroup-addon:first-child,.p-inputgroup button:first-child,.p-inputgroup input:first-child,.p-inputgroup>.p-inputwrapper:first-child,.p-inputgroup>.p-inputwrapper:first-child>.p-inputtext{border-top-left-radius:3px;border-bottom-left-radius:3px}.p-inputgroup .p-float-label:first-child input{border-top-left-radius:3px;border-bottom-left-radius:3px}.p-inputgroup-addon:last-child,.p-inputgroup button:last-child,.p-inputgroup input:last-child,.p-inputgroup>.p-inputwrapper:last-child,.p-inputgroup>.p-inputwrapper:last-child>.p-inputtext{border-top-right-radius:3px;border-bottom-right-radius:3px}.p-inputgroup .p-float-label:last-child input{border-top-right-radius:3px;border-bottom-right-radius:3px}.p-fluid .p-inputgroup .p-button{width:auto}.p-fluid .p-inputgroup .p-button.p-button-icon-only{width:1.75rem}.p-inputnumber.p-invalid.p-component>.p-inputtext{border-color:#ced4da #ced4da #ced4da #e4677e}.p-inputswitch{width:3rem;height:1.75rem}.p-inputswitch .p-inputswitch-slider{background:#ced4da;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:30px}.p-inputswitch .p-inputswitch-slider:before{background:#ffffff;width:1.25rem;height:1.25rem;left:.25rem;margin-top:-.625rem;border-radius:50%;transition-duration:.2s}.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider:before{transform:translate(1.25rem)}.p-inputswitch.p-focus .p-inputswitch-slider{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-inputswitch:not(.p-disabled):hover .p-inputswitch-slider{background:#c3cad2}.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider{background:#006CB8}.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider:before{background:#ffffff}.p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider{background:#00548f}.p-inputswitch.p-invalid .p-inputswitch-slider{border-color:#ced4da #ced4da #ced4da #e4677e}.p-inputtext{font-family:Source Sans Pro,sans-serif;font-size:.8rem;color:#495057;background:#ffffff;padding:.5rem;border:1px solid #ced4da;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:3px}.p-inputtext:enabled:hover{border-color:#006cb8}.p-inputtext:enabled:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-inputtext.p-invalid.p-component{border-color:#ced4da #ced4da #ced4da #e4677e}.p-inputtext.p-inputtext-sm{font-size:.7rem;padding:.4375rem}.p-inputtext.p-inputtext-lg{font-size:1rem;padding:.625rem}.p-float-label>label{left:.5rem;color:#6c757d;transition-duration:.2s}.p-float-label>.p-invalid+label{color:#ced4da #ced4da #ced4da #e4677e}.p-input-icon-left>i:first-of-type{left:.5rem;color:#495057}.p-input-icon-left>.p-inputtext{padding-left:2rem}.p-input-icon-left.p-float-label>label{left:2rem}.p-input-icon-right>i:last-of-type{right:.5rem;color:#495057}.p-input-icon-right>.p-inputtext{padding-right:2rem}::-webkit-input-placeholder{color:#6c757d}:-moz-placeholder{color:#6c757d}::-moz-placeholder{color:#6c757d}:-ms-input-placeholder{color:#6c757d}.p-input-filled .p-inputtext{background-color:#f8f9fa}.p-input-filled .p-inputtext:enabled:hover{background-color:#f8f9fa}.p-input-filled .p-inputtext:enabled:focus{background-color:#f8f9fa}.p-inputtext-sm .p-inputtext{font-size:.7rem;padding:.4375rem}.p-inputtext-lg .p-inputtext{font-size:1rem;padding:.625rem}.p-listbox{background:#ffffff;color:#495057;border:1px solid #ced4da;border-radius:3px;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-listbox .p-listbox-header{padding:.5rem 1rem;border-bottom:0 none;color:#495057;background:#f8f9fa;margin:0;border-top-right-radius:3px;border-top-left-radius:3px}.p-listbox .p-listbox-header .p-listbox-filter{padding-right:1.5rem}.p-listbox .p-listbox-header .p-listbox-filter-icon{right:.5rem;color:#495057}.p-listbox .p-listbox-list{padding:.5rem 0;outline:0 none}.p-listbox .p-listbox-list .p-listbox-item{margin:0;padding:.5rem 1rem;border:0 none;color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-listbox .p-listbox-list .p-listbox-item.p-highlight{color:#fff;background:#006CB8}.p-listbox .p-listbox-list .p-listbox-item-group{margin:0;padding:.75rem 1rem;color:#495057;background:#ffffff;font-weight:600}.p-listbox .p-listbox-list .p-listbox-empty-message{padding:.5rem 1rem;color:#495057;background:transparent}.p-listbox:not(.p-disabled) .p-listbox-item.p-highlight.p-focus{background:rgba(0,108,184,.24)}.p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled).p-focus{color:#495057;background:#f8f9fa}.p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled):hover{color:#495057;background:#e9ecef}.p-listbox.p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-listbox.p-invalid{border-color:#ced4da #ced4da #ced4da #e4677e}.p-multiselect{background:#ffffff;border:1px solid #ced4da;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-multiselect:not(.p-disabled):hover{border-color:#006cb8}.p-multiselect:not(.p-disabled).p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-multiselect .p-multiselect-label{padding:.5rem;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-multiselect .p-multiselect-label.p-placeholder{color:#6c757d}.p-multiselect.p-multiselect-chip .p-multiselect-token{padding:.25rem .5rem;margin-right:.5rem;background:#dee2e6;color:#495057;border-radius:16px}.p-multiselect.p-multiselect-chip .p-multiselect-token .p-multiselect-token-icon{margin-left:.5rem}.p-multiselect .p-multiselect-trigger{background:transparent;color:#495057;width:2.357rem;border-top-right-radius:3px;border-bottom-right-radius:3px}.p-multiselect.p-invalid.p-component{border-color:#ced4da #ced4da #ced4da #e4677e}.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label{padding:.25rem .5rem}.p-multiselect-panel{background:#ffffff;color:#495057;border:0 none;border-radius:3px;box-shadow:0 3px 6px #0000001a}.p-multiselect-panel .p-multiselect-header{padding:.5rem 1rem;border-bottom:0 none;color:#495057;background:#f8f9fa;margin:0;border-top-right-radius:3px;border-top-left-radius:3px}.p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext{padding-right:1.5rem}.p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter-icon{right:.5rem;color:#495057}.p-multiselect-panel .p-multiselect-header .p-checkbox{margin-right:.5rem}.p-multiselect-panel .p-multiselect-header .p-multiselect-close{margin-left:.5rem;width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-multiselect-panel .p-multiselect-header .p-multiselect-close:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-multiselect-panel .p-multiselect-header .p-multiselect-close:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-multiselect-panel .p-multiselect-items{padding:.5rem 0}.p-multiselect-panel .p-multiselect-items .p-multiselect-item{margin:0;padding:.5rem 1rem;border:0 none;color:#495057;background:transparent;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight{color:#fff;background:#006CB8}.p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight.p-focus{background:rgba(0,108,184,.24)}.p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled).p-focus{color:#495057;background:#f8f9fa}.p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover{color:#495057;background:#e9ecef}.p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-checkbox{margin-right:.5rem}.p-multiselect-panel .p-multiselect-items .p-multiselect-item-group{margin:0;padding:.75rem 1rem;color:#495057;background:#ffffff;font-weight:600}.p-multiselect-panel .p-multiselect-items .p-multiselect-empty-message{padding:.5rem 1rem;color:#495057;background:transparent}.p-input-filled .p-multiselect{background:#f8f9fa}.p-input-filled .p-multiselect:not(.p-disabled):hover{background-color:#f8f9fa}.p-input-filled .p-multiselect:not(.p-disabled).p-focus{background-color:#f8f9fa}.p-password.p-invalid.p-component>.p-inputtext{border-color:#ced4da #ced4da #ced4da #e4677e}.p-password-panel{padding:1rem;background:#ffffff;color:#495057;border:0 none;box-shadow:0 3px 6px #0000001a;border-radius:3px}.p-password-panel .p-password-meter{margin-bottom:.5rem;background:#dee2e6}.p-password-panel .p-password-meter .p-password-strength.weak{background:#E53935}.p-password-panel .p-password-meter .p-password-strength.medium{background:#FFB300}.p-password-panel .p-password-meter .p-password-strength.strong{background:#43A047}.p-radiobutton{width:20px;height:20px}.p-radiobutton .p-radiobutton-box{border:2px solid #ced4da;background:#ffffff;width:20px;height:20px;color:#495057;border-radius:50%;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-radiobutton .p-radiobutton-box:not(.p-disabled):not(.p-highlight):hover{border-color:#006cb8}.p-radiobutton .p-radiobutton-box:not(.p-disabled).p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-radiobutton .p-radiobutton-box .p-radiobutton-icon{width:12px;height:12px;transition-duration:.2s;background-color:#fff}.p-radiobutton .p-radiobutton-box.p-highlight{border-color:#006cb8;background:#006CB8}.p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover{border-color:#00548f;background:#00548f;color:#fff}.p-radiobutton.p-invalid>.p-radiobutton-box{border-color:#ced4da #ced4da #ced4da #e4677e}.p-radiobutton:focus{outline:0 none}.p-input-filled .p-radiobutton .p-radiobutton-box{background-color:#f8f9fa}.p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover{background-color:#f8f9fa}.p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight{background:#006CB8}.p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover{background:#00548f}.p-highlight .p-radiobutton .p-radiobutton-box{border-color:#fff}.p-rating{gap:.5rem}.p-rating .p-rating-item .p-rating-icon{color:#495057;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;font-size:1.143rem}.p-rating .p-rating-item .p-rating-icon.p-rating-cancel{color:#e74c3c}.p-rating .p-rating-item.p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-rating .p-rating-item.p-rating-item-active .p-rating-icon{color:#006cb8}.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon{color:#006cb8}.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel{color:#c0392b}.p-highlight .p-rating .p-rating-item.p-rating-item-active .p-rating-icon{color:#fff}.p-selectbutton .p-button{background:#ffffff;border:1px solid #ced4da;color:#495057;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-selectbutton .p-button .p-button-icon-left,.p-selectbutton .p-button .p-button-icon-right{color:#6c757d}.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover{background:#e9ecef;border-color:#ced4da;color:#495057}.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left,.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right{color:#6c757d}.p-selectbutton .p-button.p-highlight{background:#006CB8;border-color:#006cb8;color:#fff}.p-selectbutton .p-button.p-highlight .p-button-icon-left,.p-selectbutton .p-button.p-highlight .p-button-icon-right{color:#fff}.p-selectbutton .p-button.p-highlight:hover{background:#00548f;border-color:#00548f;color:#fff}.p-selectbutton .p-button.p-highlight:hover .p-button-icon-left,.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right{color:#fff}.p-selectbutton.p-invalid>.p-button{border-color:#ced4da #ced4da #ced4da #e4677e}.p-slider{background:#dee2e6;border:0 none;border-radius:3px}.p-slider.p-slider-horizontal{height:.286rem}.p-slider.p-slider-horizontal .p-slider-handle{margin-top:-.5715rem;margin-left:-.5715rem}.p-slider.p-slider-vertical{width:.286rem}.p-slider.p-slider-vertical .p-slider-handle{margin-left:-.5715rem;margin-bottom:-.5715rem}.p-slider .p-slider-handle{height:1.143rem;width:1.143rem;background:#ffffff;border:2px solid #006CB8;border-radius:50%;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-slider .p-slider-handle:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-slider .p-slider-range{background:#006CB8}.p-slider:not(.p-disabled) .p-slider-handle:hover{background:#006CB8;border-color:#006cb8}.p-treeselect{background:#ffffff;border:1px solid #ced4da;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-treeselect:not(.p-disabled):hover{border-color:#006cb8}.p-treeselect:not(.p-disabled).p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-treeselect .p-treeselect-label{padding:.5rem;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-treeselect .p-treeselect-label.p-placeholder{color:#6c757d}.p-treeselect.p-treeselect-chip .p-treeselect-token{padding:.25rem .5rem;margin-right:.5rem;background:#dee2e6;color:#495057;border-radius:16px}.p-treeselect .p-treeselect-trigger{background:transparent;color:#495057;width:2.357rem;border-top-right-radius:3px;border-bottom-right-radius:3px}.p-treeselect.p-invalid.p-component{border-color:#ced4da #ced4da #ced4da #e4677e}.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label{padding:.25rem .5rem}.p-treeselect-panel{background:#ffffff;color:#495057;border:0 none;border-radius:3px;box-shadow:0 3px 6px #0000001a}.p-treeselect-panel .p-treeselect-items-wrapper .p-tree{border:0 none}.p-treeselect-panel .p-treeselect-items-wrapper .p-treeselect-empty-message{padding:.5rem 1rem;color:#495057;background:transparent}.p-input-filled .p-treeselect{background:#f8f9fa}.p-input-filled .p-treeselect:not(.p-disabled):hover{background-color:#f8f9fa}.p-input-filled .p-treeselect:not(.p-disabled).p-focus{background-color:#f8f9fa}.p-togglebutton.p-button{background:#ffffff;border:1px solid #ced4da;color:#495057;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-togglebutton.p-button .p-button-icon-left,.p-togglebutton.p-button .p-button-icon-right{color:#6c757d}.p-togglebutton.p-button:not(.p-disabled).p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover{background:#e9ecef;border-color:#ced4da;color:#495057}.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left,.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right{color:#6c757d}.p-togglebutton.p-button.p-highlight{background:#006CB8;border-color:#006cb8;color:#fff}.p-togglebutton.p-button.p-highlight .p-button-icon-left,.p-togglebutton.p-button.p-highlight .p-button-icon-right{color:#fff}.p-togglebutton.p-button.p-highlight:hover{background:#00548f;border-color:#00548f;color:#fff}.p-togglebutton.p-button.p-highlight:hover .p-button-icon-left,.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right{color:#fff}.p-togglebutton.p-button.p-invalid>.p-button{border-color:#ced4da #ced4da #ced4da #e4677e}.p-button{color:#fff;background:#006CB8;border:1px solid #006CB8;padding:.5rem 1rem;font-size:1rem;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-button:enabled:hover{background:#00548f;color:#fff;border-color:#00548f}.p-button:enabled:active{background:#00548f;color:#fff;border-color:#00548f}.p-button.p-button-outlined{background-color:transparent;color:#006cb8;border:1px solid}.p-button.p-button-outlined:enabled:hover{background:rgba(0,108,184,.04);color:#006cb8;border:1px solid}.p-button.p-button-outlined:enabled:active{background:rgba(0,108,184,.16);color:#006cb8;border:1px solid}.p-button.p-button-outlined.p-button-plain{color:#6c757d;border-color:#6c757d}.p-button.p-button-outlined.p-button-plain:enabled:hover{background:#e9ecef;color:#6c757d}.p-button.p-button-outlined.p-button-plain:enabled:active{background:#dee2e6;color:#6c757d}.p-button.p-button-text{background-color:transparent;color:#006cb8;border-color:transparent}.p-button.p-button-text:enabled:hover{background:rgba(0,108,184,.04);color:#006cb8;border-color:transparent}.p-button.p-button-text:enabled:active{background:rgba(0,108,184,.16);color:#006cb8;border-color:transparent}.p-button.p-button-text.p-button-plain{color:#6c757d}.p-button.p-button-text.p-button-plain:enabled:hover{background:#e9ecef;color:#6c757d}.p-button.p-button-text.p-button-plain:enabled:active{background:#dee2e6;color:#6c757d}.p-button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-button .p-button-label{transition-duration:.2s}.p-button .p-button-icon-left{margin-right:.5rem}.p-button .p-button-icon-right{margin-left:.5rem}.p-button .p-button-icon-bottom{margin-top:.5rem}.p-button .p-button-icon-top{margin-bottom:.5rem}.p-button .p-badge{margin-left:.5rem;min-width:1rem;height:1rem;line-height:1rem;color:#006cb8;background-color:#fff}.p-button.p-button-raised{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.p-button.p-button-rounded{border-radius:2rem}.p-button.p-button-icon-only{width:1.75rem;padding:.5rem 0}.p-button.p-button-icon-only .p-button-icon-left,.p-button.p-button-icon-only .p-button-icon-right{margin:0}.p-button.p-button-icon-only.p-button-rounded{border-radius:50%;height:1.75rem}.p-button.p-button-sm{font-size:.875rem;padding:.4375rem .875rem}.p-button.p-button-sm .p-button-icon{font-size:.875rem}.p-button.p-button-lg{font-size:1.25rem;padding:.625rem 1.25rem}.p-button.p-button-lg .p-button-icon{font-size:1.25rem}.p-button.p-button-loading-label-only .p-button-label{margin-left:.5rem}.p-button.p-button-loading-label-only .p-button-loading-icon{margin-right:0}.p-fluid .p-button{width:100%}.p-fluid .p-button-icon-only{width:1.75rem}.p-fluid .p-buttonset{display:flex}.p-fluid .p-buttonset .p-button{flex:1}.p-button.p-button-secondary,.p-buttonset.p-button-secondary>.p-button,.p-splitbutton.p-button-secondary>.p-button{color:#fff;background:#607D8B;border:1px solid #607D8B}.p-button.p-button-secondary:enabled:hover,.p-buttonset.p-button-secondary>.p-button:enabled:hover,.p-splitbutton.p-button-secondary>.p-button:enabled:hover{background:#546E7A;color:#fff;border-color:#546e7a}.p-button.p-button-secondary:enabled:focus,.p-buttonset.p-button-secondary>.p-button:enabled:focus,.p-splitbutton.p-button-secondary>.p-button:enabled:focus{box-shadow:0 0 0 .2rem #b0bec5}.p-button.p-button-secondary:enabled:active,.p-buttonset.p-button-secondary>.p-button:enabled:active,.p-splitbutton.p-button-secondary>.p-button:enabled:active{background:#455A64;color:#fff;border-color:#455a64}.p-button.p-button-secondary.p-button-outlined,.p-buttonset.p-button-secondary>.p-button.p-button-outlined,.p-splitbutton.p-button-secondary>.p-button.p-button-outlined{background-color:transparent;color:#607d8b;border:1px solid}.p-button.p-button-secondary.p-button-outlined:enabled:hover,.p-buttonset.p-button-secondary>.p-button.p-button-outlined:enabled:hover,.p-splitbutton.p-button-secondary>.p-button.p-button-outlined:enabled:hover{background:rgba(96,125,139,.04);color:#607d8b;border:1px solid}.p-button.p-button-secondary.p-button-outlined:enabled:active,.p-buttonset.p-button-secondary>.p-button.p-button-outlined:enabled:active,.p-splitbutton.p-button-secondary>.p-button.p-button-outlined:enabled:active{background:rgba(96,125,139,.16);color:#607d8b;border:1px solid}.p-button.p-button-secondary.p-button-text,.p-buttonset.p-button-secondary>.p-button.p-button-text,.p-splitbutton.p-button-secondary>.p-button.p-button-text{background-color:transparent;color:#607d8b;border-color:transparent}.p-button.p-button-secondary.p-button-text:enabled:hover,.p-buttonset.p-button-secondary>.p-button.p-button-text:enabled:hover,.p-splitbutton.p-button-secondary>.p-button.p-button-text:enabled:hover{background:rgba(96,125,139,.04);border-color:transparent;color:#607d8b}.p-button.p-button-secondary.p-button-text:enabled:active,.p-buttonset.p-button-secondary>.p-button.p-button-text:enabled:active,.p-splitbutton.p-button-secondary>.p-button.p-button-text:enabled:active{background:rgba(96,125,139,.16);border-color:transparent;color:#607d8b}.p-button.p-button-info,.p-buttonset.p-button-info>.p-button,.p-splitbutton.p-button-info>.p-button{color:#fff;background:#03A9F4;border:1px solid #03A9F4}.p-button.p-button-info:enabled:hover,.p-buttonset.p-button-info>.p-button:enabled:hover,.p-splitbutton.p-button-info>.p-button:enabled:hover{background:#039BE5;color:#fff;border-color:#039be5}.p-button.p-button-info:enabled:focus,.p-buttonset.p-button-info>.p-button:enabled:focus,.p-splitbutton.p-button-info>.p-button:enabled:focus{box-shadow:0 0 0 .2rem #ace4fe}.p-button.p-button-info:enabled:active,.p-buttonset.p-button-info>.p-button:enabled:active,.p-splitbutton.p-button-info>.p-button:enabled:active{background:#0288D1;color:#fff;border-color:#0288d1}.p-button.p-button-info.p-button-outlined,.p-buttonset.p-button-info>.p-button.p-button-outlined,.p-splitbutton.p-button-info>.p-button.p-button-outlined{background-color:transparent;color:#03a9f4;border:1px solid}.p-button.p-button-info.p-button-outlined:enabled:hover,.p-buttonset.p-button-info>.p-button.p-button-outlined:enabled:hover,.p-splitbutton.p-button-info>.p-button.p-button-outlined:enabled:hover{background:rgba(3,169,244,.04);color:#03a9f4;border:1px solid}.p-button.p-button-info.p-button-outlined:enabled:active,.p-buttonset.p-button-info>.p-button.p-button-outlined:enabled:active,.p-splitbutton.p-button-info>.p-button.p-button-outlined:enabled:active{background:rgba(3,169,244,.16);color:#03a9f4;border:1px solid}.p-button.p-button-info.p-button-text,.p-buttonset.p-button-info>.p-button.p-button-text,.p-splitbutton.p-button-info>.p-button.p-button-text{background-color:transparent;color:#03a9f4;border-color:transparent}.p-button.p-button-info.p-button-text:enabled:hover,.p-buttonset.p-button-info>.p-button.p-button-text:enabled:hover,.p-splitbutton.p-button-info>.p-button.p-button-text:enabled:hover{background:rgba(3,169,244,.04);border-color:transparent;color:#03a9f4}.p-button.p-button-info.p-button-text:enabled:active,.p-buttonset.p-button-info>.p-button.p-button-text:enabled:active,.p-splitbutton.p-button-info>.p-button.p-button-text:enabled:active{background:rgba(3,169,244,.16);border-color:transparent;color:#03a9f4}.p-button.p-button-success,.p-buttonset.p-button-success>.p-button,.p-splitbutton.p-button-success>.p-button{color:#fff;background:#4CAF50;border:1px solid #4CAF50}.p-button.p-button-success:enabled:hover,.p-buttonset.p-button-success>.p-button:enabled:hover,.p-splitbutton.p-button-success>.p-button:enabled:hover{background:#43A047;color:#fff;border-color:#43a047}.p-button.p-button-success:enabled:focus,.p-buttonset.p-button-success>.p-button:enabled:focus,.p-splitbutton.p-button-success>.p-button:enabled:focus{box-shadow:0 0 0 .2rem #c7e7c8}.p-button.p-button-success:enabled:active,.p-buttonset.p-button-success>.p-button:enabled:active,.p-splitbutton.p-button-success>.p-button:enabled:active{background:#388E3C;color:#fff;border-color:#388e3c}.p-button.p-button-success.p-button-outlined,.p-buttonset.p-button-success>.p-button.p-button-outlined,.p-splitbutton.p-button-success>.p-button.p-button-outlined{background-color:transparent;color:#4caf50;border:1px solid}.p-button.p-button-success.p-button-outlined:enabled:hover,.p-buttonset.p-button-success>.p-button.p-button-outlined:enabled:hover,.p-splitbutton.p-button-success>.p-button.p-button-outlined:enabled:hover{background:rgba(76,175,80,.04);color:#4caf50;border:1px solid}.p-button.p-button-success.p-button-outlined:enabled:active,.p-buttonset.p-button-success>.p-button.p-button-outlined:enabled:active,.p-splitbutton.p-button-success>.p-button.p-button-outlined:enabled:active{background:rgba(76,175,80,.16);color:#4caf50;border:1px solid}.p-button.p-button-success.p-button-text,.p-buttonset.p-button-success>.p-button.p-button-text,.p-splitbutton.p-button-success>.p-button.p-button-text{background-color:transparent;color:#4caf50;border-color:transparent}.p-button.p-button-success.p-button-text:enabled:hover,.p-buttonset.p-button-success>.p-button.p-button-text:enabled:hover,.p-splitbutton.p-button-success>.p-button.p-button-text:enabled:hover{background:rgba(76,175,80,.04);border-color:transparent;color:#4caf50}.p-button.p-button-success.p-button-text:enabled:active,.p-buttonset.p-button-success>.p-button.p-button-text:enabled:active,.p-splitbutton.p-button-success>.p-button.p-button-text:enabled:active{background:rgba(76,175,80,.16);border-color:transparent;color:#4caf50}.p-button.p-button-warning,.p-buttonset.p-button-warning>.p-button,.p-splitbutton.p-button-warning>.p-button{color:#495057;background:#FFC107;border:1px solid #FFC107}.p-button.p-button-warning:enabled:hover,.p-buttonset.p-button-warning>.p-button:enabled:hover,.p-splitbutton.p-button-warning>.p-button:enabled:hover{background:#FFB300;color:#495057;border-color:#ffb300}.p-button.p-button-warning:enabled:focus,.p-buttonset.p-button-warning>.p-button:enabled:focus,.p-splitbutton.p-button-warning>.p-button:enabled:focus{box-shadow:0 0 0 .2rem #ffeeba}.p-button.p-button-warning:enabled:active,.p-buttonset.p-button-warning>.p-button:enabled:active,.p-splitbutton.p-button-warning>.p-button:enabled:active{background:#FFA000;color:#495057;border-color:#ffa000}.p-button.p-button-warning.p-button-outlined,.p-buttonset.p-button-warning>.p-button.p-button-outlined,.p-splitbutton.p-button-warning>.p-button.p-button-outlined{background-color:transparent;color:#ffc107;border:1px solid}.p-button.p-button-warning.p-button-outlined:enabled:hover,.p-buttonset.p-button-warning>.p-button.p-button-outlined:enabled:hover,.p-splitbutton.p-button-warning>.p-button.p-button-outlined:enabled:hover{background:rgba(255,193,7,.04);color:#ffc107;border:1px solid}.p-button.p-button-warning.p-button-outlined:enabled:active,.p-buttonset.p-button-warning>.p-button.p-button-outlined:enabled:active,.p-splitbutton.p-button-warning>.p-button.p-button-outlined:enabled:active{background:rgba(255,193,7,.16);color:#ffc107;border:1px solid}.p-button.p-button-warning.p-button-text,.p-buttonset.p-button-warning>.p-button.p-button-text,.p-splitbutton.p-button-warning>.p-button.p-button-text{background-color:transparent;color:#ffc107;border-color:transparent}.p-button.p-button-warning.p-button-text:enabled:hover,.p-buttonset.p-button-warning>.p-button.p-button-text:enabled:hover,.p-splitbutton.p-button-warning>.p-button.p-button-text:enabled:hover{background:rgba(255,193,7,.04);border-color:transparent;color:#ffc107}.p-button.p-button-warning.p-button-text:enabled:active,.p-buttonset.p-button-warning>.p-button.p-button-text:enabled:active,.p-splitbutton.p-button-warning>.p-button.p-button-text:enabled:active{background:rgba(255,193,7,.16);border-color:transparent;color:#ffc107}.p-button.p-button-help,.p-buttonset.p-button-help>.p-button,.p-splitbutton.p-button-help>.p-button{color:#fff;background:#9C27B0;border:1px solid #9C27B0}.p-button.p-button-help:enabled:hover,.p-buttonset.p-button-help>.p-button:enabled:hover,.p-splitbutton.p-button-help>.p-button:enabled:hover{background:#8E24AA;color:#fff;border-color:#8e24aa}.p-button.p-button-help:enabled:focus,.p-buttonset.p-button-help>.p-button:enabled:focus,.p-splitbutton.p-button-help>.p-button:enabled:focus{box-shadow:0 0 0 .2rem #ce93d8}.p-button.p-button-help:enabled:active,.p-buttonset.p-button-help>.p-button:enabled:active,.p-splitbutton.p-button-help>.p-button:enabled:active{background:#7B1FA2;color:#fff;border-color:#7b1fa2}.p-button.p-button-help.p-button-outlined,.p-buttonset.p-button-help>.p-button.p-button-outlined,.p-splitbutton.p-button-help>.p-button.p-button-outlined{background-color:transparent;color:#9c27b0;border:1px solid}.p-button.p-button-help.p-button-outlined:enabled:hover,.p-buttonset.p-button-help>.p-button.p-button-outlined:enabled:hover,.p-splitbutton.p-button-help>.p-button.p-button-outlined:enabled:hover{background:rgba(156,39,176,.04);color:#9c27b0;border:1px solid}.p-button.p-button-help.p-button-outlined:enabled:active,.p-buttonset.p-button-help>.p-button.p-button-outlined:enabled:active,.p-splitbutton.p-button-help>.p-button.p-button-outlined:enabled:active{background:rgba(156,39,176,.16);color:#9c27b0;border:1px solid}.p-button.p-button-help.p-button-text,.p-buttonset.p-button-help>.p-button.p-button-text,.p-splitbutton.p-button-help>.p-button.p-button-text{background-color:transparent;color:#9c27b0;border-color:transparent}.p-button.p-button-help.p-button-text:enabled:hover,.p-buttonset.p-button-help>.p-button.p-button-text:enabled:hover,.p-splitbutton.p-button-help>.p-button.p-button-text:enabled:hover{background:rgba(156,39,176,.04);border-color:transparent;color:#9c27b0}.p-button.p-button-help.p-button-text:enabled:active,.p-buttonset.p-button-help>.p-button.p-button-text:enabled:active,.p-splitbutton.p-button-help>.p-button.p-button-text:enabled:active{background:rgba(156,39,176,.16);border-color:transparent;color:#9c27b0}.p-button.p-button-danger,.p-buttonset.p-button-danger>.p-button,.p-splitbutton.p-button-danger>.p-button{color:#fff;background:#f44336;border:1px solid #f44336}.p-button.p-button-danger:enabled:hover,.p-buttonset.p-button-danger>.p-button:enabled:hover,.p-splitbutton.p-button-danger>.p-button:enabled:hover{background:#e53935;color:#fff;border-color:#e53935}.p-button.p-button-danger:enabled:focus,.p-buttonset.p-button-danger>.p-button:enabled:focus,.p-splitbutton.p-button-danger>.p-button:enabled:focus{box-shadow:0 0 0 .2rem #fde1df}.p-button.p-button-danger:enabled:active,.p-buttonset.p-button-danger>.p-button:enabled:active,.p-splitbutton.p-button-danger>.p-button:enabled:active{background:#d32f2f;color:#fff;border-color:#d32f2f}.p-button.p-button-danger.p-button-outlined,.p-buttonset.p-button-danger>.p-button.p-button-outlined,.p-splitbutton.p-button-danger>.p-button.p-button-outlined{background-color:transparent;color:#f44336;border:1px solid}.p-button.p-button-danger.p-button-outlined:enabled:hover,.p-buttonset.p-button-danger>.p-button.p-button-outlined:enabled:hover,.p-splitbutton.p-button-danger>.p-button.p-button-outlined:enabled:hover{background:rgba(244,67,54,.04);color:#f44336;border:1px solid}.p-button.p-button-danger.p-button-outlined:enabled:active,.p-buttonset.p-button-danger>.p-button.p-button-outlined:enabled:active,.p-splitbutton.p-button-danger>.p-button.p-button-outlined:enabled:active{background:rgba(244,67,54,.16);color:#f44336;border:1px solid}.p-button.p-button-danger.p-button-text,.p-buttonset.p-button-danger>.p-button.p-button-text,.p-splitbutton.p-button-danger>.p-button.p-button-text{background-color:transparent;color:#f44336;border-color:transparent}.p-button.p-button-danger.p-button-text:enabled:hover,.p-buttonset.p-button-danger>.p-button.p-button-text:enabled:hover,.p-splitbutton.p-button-danger>.p-button.p-button-text:enabled:hover{background:rgba(244,67,54,.04);border-color:transparent;color:#f44336}.p-button.p-button-danger.p-button-text:enabled:active,.p-buttonset.p-button-danger>.p-button.p-button-text:enabled:active,.p-splitbutton.p-button-danger>.p-button.p-button-text:enabled:active{background:rgba(244,67,54,.16);border-color:transparent;color:#f44336}.p-button.p-button-link{color:#00548f;background:transparent;border:transparent}.p-button.p-button-link:enabled:hover{background:transparent;color:#00548f;border-color:transparent}.p-button.p-button-link:enabled:hover .p-button-label{text-decoration:underline}.p-button.p-button-link:enabled:focus{background:transparent;box-shadow:0 0 0 .2rem #bfd1f6;border-color:transparent}.p-button.p-button-link:enabled:active{background:transparent;color:#00548f;border-color:transparent}.p-speeddial-button.p-button.p-button-icon-only{width:4rem;height:4rem}.p-speeddial-button.p-button.p-button-icon-only .p-button-icon{font-size:1.3rem}.p-speeddial-list{outline:0 none}.p-speeddial-item.p-focus>.p-speeddial-action{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-speeddial-action{width:3rem;height:3rem;background:#ffffff;color:#212121}.p-speeddial-action:hover{background:#F5F5F5;color:#212121}.p-speeddial-direction-up .p-speeddial-item{margin:.25rem 0}.p-speeddial-direction-up .p-speeddial-item:first-child{margin-bottom:.5rem}.p-speeddial-direction-down .p-speeddial-item{margin:.25rem 0}.p-speeddial-direction-down .p-speeddial-item:first-child{margin-top:.5rem}.p-speeddial-direction-left .p-speeddial-item{margin:0 .25rem}.p-speeddial-direction-left .p-speeddial-item:first-child{margin-right:.5rem}.p-speeddial-direction-right .p-speeddial-item{margin:0 .25rem}.p-speeddial-direction-right .p-speeddial-item:first-child{margin-left:.5rem}.p-speeddial-circle .p-speeddial-item,.p-speeddial-semi-circle .p-speeddial-item,.p-speeddial-quarter-circle .p-speeddial-item{margin:0}.p-speeddial-circle .p-speeddial-item:first-child,.p-speeddial-circle .p-speeddial-item:last-child,.p-speeddial-semi-circle .p-speeddial-item:first-child,.p-speeddial-semi-circle .p-speeddial-item:last-child,.p-speeddial-quarter-circle .p-speeddial-item:first-child,.p-speeddial-quarter-circle .p-speeddial-item:last-child{margin:0}.p-speeddial-mask{background-color:#0006}.p-splitbutton{border-radius:3px}.p-splitbutton.p-button-outlined>.p-button{background-color:transparent;color:#006cb8;border:1px solid}.p-splitbutton.p-button-outlined>.p-button:enabled:hover,.p-splitbutton.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(0,108,184,.04);color:#006cb8}.p-splitbutton.p-button-outlined>.p-button:enabled:active,.p-splitbutton.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(0,108,184,.16);color:#006cb8}.p-splitbutton.p-button-outlined.p-button-plain>.p-button{color:#6c757d;border-color:#6c757d}.p-splitbutton.p-button-outlined.p-button-plain>.p-button:enabled:hover,.p-splitbutton.p-button-outlined.p-button-plain>.p-button:not(button):not(a):not(.p-disabled):hover{background:#e9ecef;color:#6c757d}.p-splitbutton.p-button-outlined.p-button-plain>.p-button:enabled:active,.p-splitbutton.p-button-outlined.p-button-plain>.p-button:not(button):not(a):not(.p-disabled):active{background:#dee2e6;color:#6c757d}.p-splitbutton.p-button-text>.p-button{background-color:transparent;color:#006cb8;border-color:transparent}.p-splitbutton.p-button-text>.p-button:enabled:hover,.p-splitbutton.p-button-text>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(0,108,184,.04);color:#006cb8;border-color:transparent}.p-splitbutton.p-button-text>.p-button:enabled:active,.p-splitbutton.p-button-text>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(0,108,184,.16);color:#006cb8;border-color:transparent}.p-splitbutton.p-button-text.p-button-plain>.p-button{color:#6c757d}.p-splitbutton.p-button-text.p-button-plain>.p-button:enabled:hover,.p-splitbutton.p-button-text.p-button-plain>.p-button:not(button):not(a):not(.p-disabled):hover{background:#e9ecef;color:#6c757d}.p-splitbutton.p-button-text.p-button-plain>.p-button:enabled:active,.p-splitbutton.p-button-text.p-button-plain>.p-button:not(button):not(a):not(.p-disabled):active{background:#dee2e6;color:#6c757d}.p-splitbutton.p-button-raised{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.p-splitbutton.p-button-rounded{border-radius:2rem}.p-splitbutton.p-button-rounded>.p-button{border-radius:2rem}.p-splitbutton.p-button-sm>.p-button{font-size:.875rem;padding:.4375rem .875rem}.p-splitbutton.p-button-sm>.p-button .p-button-icon{font-size:.875rem}.p-splitbutton.p-button-lg>.p-button{font-size:1.25rem;padding:.625rem 1.25rem}.p-splitbutton.p-button-lg>.p-button .p-button-icon{font-size:1.25rem}.p-splitbutton.p-button-secondary.p-button-outlined>.p-button{background-color:transparent;color:#607d8b;border:1px solid}.p-splitbutton.p-button-secondary.p-button-outlined>.p-button:enabled:hover,.p-splitbutton.p-button-secondary.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(96,125,139,.04);color:#607d8b}.p-splitbutton.p-button-secondary.p-button-outlined>.p-button:enabled:active,.p-splitbutton.p-button-secondary.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(96,125,139,.16);color:#607d8b}.p-splitbutton.p-button-secondary.p-button-text>.p-button{background-color:transparent;color:#607d8b;border-color:transparent}.p-splitbutton.p-button-secondary.p-button-text>.p-button:enabled:hover,.p-splitbutton.p-button-secondary.p-button-text>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(96,125,139,.04);border-color:transparent;color:#607d8b}.p-splitbutton.p-button-secondary.p-button-text>.p-button:enabled:active,.p-splitbutton.p-button-secondary.p-button-text>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(96,125,139,.16);border-color:transparent;color:#607d8b}.p-splitbutton.p-button-info.p-button-outlined>.p-button{background-color:transparent;color:#03a9f4;border:1px solid}.p-splitbutton.p-button-info.p-button-outlined>.p-button:enabled:hover,.p-splitbutton.p-button-info.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(3,169,244,.04);color:#03a9f4}.p-splitbutton.p-button-info.p-button-outlined>.p-button:enabled:active,.p-splitbutton.p-button-info.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(3,169,244,.16);color:#03a9f4}.p-splitbutton.p-button-info.p-button-text>.p-button{background-color:transparent;color:#03a9f4;border-color:transparent}.p-splitbutton.p-button-info.p-button-text>.p-button:enabled:hover,.p-splitbutton.p-button-info.p-button-text>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(3,169,244,.04);border-color:transparent;color:#03a9f4}.p-splitbutton.p-button-info.p-button-text>.p-button:enabled:active,.p-splitbutton.p-button-info.p-button-text>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(3,169,244,.16);border-color:transparent;color:#03a9f4}.p-splitbutton.p-button-success.p-button-outlined>.p-button{background-color:transparent;color:#4caf50;border:1px solid}.p-splitbutton.p-button-success.p-button-outlined>.p-button:enabled:hover,.p-splitbutton.p-button-success.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(76,175,80,.04);color:#4caf50}.p-splitbutton.p-button-success.p-button-outlined>.p-button:enabled:active,.p-splitbutton.p-button-success.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(76,175,80,.16);color:#4caf50}.p-splitbutton.p-button-success.p-button-text>.p-button{background-color:transparent;color:#4caf50;border-color:transparent}.p-splitbutton.p-button-success.p-button-text>.p-button:enabled:hover,.p-splitbutton.p-button-success.p-button-text>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(76,175,80,.04);border-color:transparent;color:#4caf50}.p-splitbutton.p-button-success.p-button-text>.p-button:enabled:active,.p-splitbutton.p-button-success.p-button-text>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(76,175,80,.16);border-color:transparent;color:#4caf50}.p-splitbutton.p-button-warning.p-button-outlined>.p-button{background-color:transparent;color:#ffc107;border:1px solid}.p-splitbutton.p-button-warning.p-button-outlined>.p-button:enabled:hover,.p-splitbutton.p-button-warning.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(255,193,7,.04);color:#ffc107}.p-splitbutton.p-button-warning.p-button-outlined>.p-button:enabled:active,.p-splitbutton.p-button-warning.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(255,193,7,.16);color:#ffc107}.p-splitbutton.p-button-warning.p-button-text>.p-button{background-color:transparent;color:#ffc107;border-color:transparent}.p-splitbutton.p-button-warning.p-button-text>.p-button:enabled:hover,.p-splitbutton.p-button-warning.p-button-text>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(255,193,7,.04);border-color:transparent;color:#ffc107}.p-splitbutton.p-button-warning.p-button-text>.p-button:enabled:active,.p-splitbutton.p-button-warning.p-button-text>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(255,193,7,.16);border-color:transparent;color:#ffc107}.p-splitbutton.p-button-help.p-button-outlined>.p-button{background-color:transparent;color:#9c27b0;border:1px solid}.p-splitbutton.p-button-help.p-button-outlined>.p-button:enabled:hover,.p-splitbutton.p-button-help.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(156,39,176,.04);color:#9c27b0}.p-splitbutton.p-button-help.p-button-outlined>.p-button:enabled:active,.p-splitbutton.p-button-help.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(156,39,176,.16);color:#9c27b0}.p-splitbutton.p-button-help.p-button-text>.p-button{background-color:transparent;color:#9c27b0;border-color:transparent}.p-splitbutton.p-button-help.p-button-text>.p-button:enabled:hover,.p-splitbutton.p-button-help.p-button-text>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(156,39,176,.04);border-color:transparent;color:#9c27b0}.p-splitbutton.p-button-help.p-button-text>.p-button:enabled:active,.p-splitbutton.p-button-help.p-button-text>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(156,39,176,.16);border-color:transparent;color:#9c27b0}.p-splitbutton.p-button-danger.p-button-outlined>.p-button{background-color:transparent;color:#f44336;border:1px solid}.p-splitbutton.p-button-danger.p-button-outlined>.p-button:enabled:hover,.p-splitbutton.p-button-danger.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(244,67,54,.04);color:#f44336}.p-splitbutton.p-button-danger.p-button-outlined>.p-button:enabled:active,.p-splitbutton.p-button-danger.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(244,67,54,.16);color:#f44336}.p-splitbutton.p-button-danger.p-button-text>.p-button{background-color:transparent;color:#f44336;border-color:transparent}.p-splitbutton.p-button-danger.p-button-text>.p-button:enabled:hover,.p-splitbutton.p-button-danger.p-button-text>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(244,67,54,.04);border-color:transparent;color:#f44336}.p-splitbutton.p-button-danger.p-button-text>.p-button:enabled:active,.p-splitbutton.p-button-danger.p-button-text>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(244,67,54,.16);border-color:transparent;color:#f44336}.p-carousel .p-carousel-content .p-carousel-prev,.p-carousel .p-carousel-content .p-carousel-next{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s;margin:.5rem}.p-carousel .p-carousel-content .p-carousel-prev:enabled:hover,.p-carousel .p-carousel-content .p-carousel-next:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-carousel .p-carousel-content .p-carousel-prev:focus,.p-carousel .p-carousel-content .p-carousel-next:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-carousel .p-carousel-indicators{padding:1rem}.p-carousel .p-carousel-indicators .p-carousel-indicator{margin-right:.5rem;margin-bottom:.5rem}.p-carousel .p-carousel-indicators .p-carousel-indicator button{background-color:#e9ecef;width:2rem;height:.5rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:0}.p-carousel .p-carousel-indicators .p-carousel-indicator button:hover{background:#dee2e6}.p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button{background:#006CB8;color:#fff}.p-datatable .p-paginator-top{border-width:1px 0 1px 0;border-radius:0}.p-datatable .p-paginator-bottom{border-width:0 0 1px 0;border-radius:0}.p-datatable .p-datatable-header,.p-datatable .p-datatable-footer{background:#f8f9fa;color:#495057;border:1px solid #e9ecef;border-width:0 0 1px 0;padding:1rem;font-weight:600}.p-datatable .p-datatable-thead>tr>th{text-align:left;padding:1rem;border:1px solid #e9ecef;border-width:0 0 1px 0;font-weight:600;color:#495057;background:#f8f9fa;transition:background-color .2s,border-color .2s,box-shadow .2s}.p-datatable .p-datatable-tfoot>tr>td{text-align:left;padding:1rem;border:1px solid #e9ecef;border-width:0 0 1px 0;font-weight:600;color:#495057;background:#f8f9fa}.p-datatable .p-sortable-column .p-sortable-column-icon{color:#6c757d;margin-left:.5rem}.p-datatable .p-sortable-column .p-sortable-column-badge{border-radius:50%;height:1.143rem;min-width:1.143rem;line-height:1.143rem;color:#fff;background:#006CB8;margin-left:.5rem}.p-datatable .p-sortable-column:not(.p-highlight):hover{background:#e9ecef;color:#495057}.p-datatable .p-sortable-column:not(.p-highlight):hover .p-sortable-column-icon{color:#6c757d}.p-datatable .p-sortable-column.p-highlight{background:#f8f9fa;color:#006cb8}.p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon{color:#006cb8}.p-datatable .p-sortable-column.p-highlight:hover{background:#e9ecef;color:#006cb8}.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon{color:#006cb8}.p-datatable .p-sortable-column:focus{box-shadow:inset 0 0 0 .15rem #bfd1f6;outline:0 none}.p-datatable .p-datatable-tbody>tr{background:#ffffff;color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s}.p-datatable .p-datatable-tbody>tr>td{text-align:left;border:1px solid rgba(0,0,0,.08);border-width:0 0 1px 0;padding:1rem}.p-datatable .p-datatable-tbody>tr>td .p-row-toggler,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-init,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-save,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-cancel{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-datatable .p-datatable-tbody>tr>td .p-row-toggler:enabled:hover,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-init:enabled:hover,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-save:enabled:hover,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-cancel:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-datatable .p-datatable-tbody>tr>td .p-row-toggler:focus,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-init:focus,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-save:focus,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-cancel:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-datatable .p-datatable-tbody>tr>td .p-row-editor-save{margin-right:.5rem}.p-datatable .p-datatable-tbody>tr>td>.p-column-title{font-weight:600}.p-datatable .p-datatable-tbody>tr:focus{outline:.15rem solid #bfd1f6;outline-offset:-.15rem}.p-datatable .p-datatable-tbody>tr.p-highlight{background:#006CB8;color:#fff}.p-datatable .p-datatable-tbody>tr.p-datatable-dragpoint-top>td{box-shadow:inset 0 2px #006cb8}.p-datatable .p-datatable-tbody>tr.p-datatable-dragpoint-bottom>td{box-shadow:inset 0 -2px #006cb8}.p-datatable.p-datatable-hoverable-rows .p-datatable-tbody>tr:not(.p-highlight):hover{background:#e9ecef;color:#495057}.p-datatable .p-column-resizer-helper{background:#006CB8}.p-datatable .p-datatable-scrollable-header,.p-datatable .p-datatable-scrollable-footer{background:#f8f9fa}.p-datatable.p-datatable-scrollable>.p-datatable-wrapper>.p-datatable-table>.p-datatable-thead,.p-datatable.p-datatable-scrollable>.p-datatable-wrapper>.p-datatable-table>.p-datatable-tfoot,.p-datatable.p-datatable-scrollable>.p-datatable-wrapper>.p-virtualscroller>.p-datatable-table>.p-datatable-thead,.p-datatable.p-datatable-scrollable>.p-datatable-wrapper>.p-virtualscroller>.p-datatable-table>.p-datatable-tfoot{background-color:#f8f9fa}.p-datatable .p-datatable-loading-icon{font-size:2rem}.p-datatable.p-datatable-gridlines .p-datatable-header{border-width:1px 1px 0 1px}.p-datatable.p-datatable-gridlines .p-datatable-footer{border-width:0 1px 1px 1px}.p-datatable.p-datatable-gridlines .p-paginator-top{border-width:0 1px 0 1px}.p-datatable.p-datatable-gridlines .p-paginator-bottom{border-width:0 1px 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-thead>tr>th{border-width:1px 0 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-thead>tr>th:last-child{border-width:1px}.p-datatable.p-datatable-gridlines .p-datatable-tbody>tr>td{border-width:1px 0 0 1px}.p-datatable.p-datatable-gridlines .p-datatable-tbody>tr>td:last-child{border-width:1px 1px 0 1px}.p-datatable.p-datatable-gridlines .p-datatable-tbody>tr:last-child>td{border-width:1px 0 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-tbody>tr:last-child>td:last-child{border-width:1px}.p-datatable.p-datatable-gridlines .p-datatable-tfoot>tr>td{border-width:1px 0 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-tfoot>tr>td:last-child{border-width:1px 1px 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-thead+.p-datatable-tfoot>tr>td{border-width:0 0 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-thead+.p-datatable-tfoot>tr>td:last-child{border-width:0 1px 1px 1px}.p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody>tr>td{border-width:0 0 1px 1px}.p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody>tr>td:last-child{border-width:0 1px 1px 1px}.p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody>tr:last-child>td{border-width:0 0 0 1px}.p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody>tr:last-child>td:last-child{border-width:0 1px 0 1px}.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(2n){background:#ffffff}.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(2n).p-highlight{background:#006CB8;color:#fff}.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(2n).p-highlight .p-row-toggler{color:#fff}.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(2n).p-highlight .p-row-toggler:hover{color:#fff}.p-datatable.p-datatable-sm .p-datatable-header{padding:.5rem}.p-datatable.p-datatable-sm .p-datatable-thead>tr>th{padding:.5rem}.p-datatable.p-datatable-sm .p-datatable-tbody>tr>td{padding:.5rem}.p-datatable.p-datatable-sm .p-datatable-tfoot>tr>td{padding:.5rem}.p-datatable.p-datatable-sm .p-datatable-footer{padding:.5rem}.p-datatable.p-datatable-lg .p-datatable-header{padding:1.25rem}.p-datatable.p-datatable-lg .p-datatable-thead>tr>th{padding:1.25rem}.p-datatable.p-datatable-lg .p-datatable-tbody>tr>td{padding:1.25rem}.p-datatable.p-datatable-lg .p-datatable-tfoot>tr>td{padding:1.25rem}.p-datatable.p-datatable-lg .p-datatable-footer{padding:1.25rem}.p-dataview .p-paginator-top{border-width:1px 0 1px 0;border-radius:0}.p-dataview .p-paginator-bottom{border-width:0 0 1px 0;border-radius:0}.p-dataview .p-dataview-header{background:#f8f9fa;color:#495057;border:1px solid #e9ecef;border-width:0 0 1px 0;padding:1rem;font-weight:600}.p-dataview .p-dataview-content{background:#ffffff;color:#495057;border:0 none;padding:0}.p-dataview.p-dataview-list .p-dataview-content>.p-grid>div{border:solid #e9ecef;border-width:0 0 1px 0}.p-dataview .p-dataview-footer{background:#f8f9fa;color:#495057;border:1px solid #e9ecef;border-width:0 0 1px 0;padding:1rem;font-weight:600;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.p-column-filter-row .p-column-filter-menu-button,.p-column-filter-row .p-column-filter-clear-button{margin-left:.5rem}.p-column-filter-menu-button{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-column-filter-menu-button:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-column-filter-menu-button.p-column-filter-menu-button-open,.p-column-filter-menu-button.p-column-filter-menu-button-open:hover{background:#e9ecef;color:#495057}.p-column-filter-menu-button.p-column-filter-menu-button-active,.p-column-filter-menu-button.p-column-filter-menu-button-active:hover{background:#006CB8;color:#fff}.p-column-filter-menu-button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-column-filter-clear-button{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-column-filter-clear-button:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-column-filter-clear-button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-column-filter-overlay{background:#ffffff;color:#495057;border:0 none;border-radius:3px;box-shadow:0 3px 6px #0000001a;min-width:12.5rem}.p-column-filter-overlay .p-column-filter-row-items{padding:.5rem 0}.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item{margin:0;padding:.5rem 1rem;border:0 none;color:#495057;background:transparent;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item.p-highlight{color:#fff;background:#006CB8}.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:not(.p-highlight):not(.p-disabled):hover{color:#495057;background:#e9ecef}.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:focus{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .15rem #bfd1f6}.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-separator{border-top:1px solid #dee2e6;margin:.25rem 0}.p-column-filter-overlay-menu .p-column-filter-operator{padding:.5rem 1rem;border-bottom:0 none;color:#495057;background:#f8f9fa;margin:0;border-top-right-radius:3px;border-top-left-radius:3px}.p-column-filter-overlay-menu .p-column-filter-constraint{padding:1rem;border-bottom:1px solid #dee2e6}.p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-matchmode-dropdown{margin-bottom:.5rem}.p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-remove-button{margin-top:.5rem}.p-column-filter-overlay-menu .p-column-filter-constraint:last-child{border-bottom:0 none}.p-column-filter-overlay-menu .p-column-filter-add-rule{padding:.5rem 1rem}.p-column-filter-overlay-menu .p-column-filter-buttonbar{padding:1rem}.fc.fc-unthemed .fc-view-container th{background:#f8f9fa;border:1px solid #dee2e6;color:#495057}.fc.fc-unthemed .fc-view-container td.fc-widget-content{border:1px solid #dee2e6;color:#495057}.fc.fc-unthemed .fc-view-container td.fc-head-container{border:1px solid #dee2e6}.fc.fc-unthemed .fc-view-container .fc-view{background:#ffffff}.fc.fc-unthemed .fc-view-container .fc-row{border-right:1px solid #dee2e6}.fc.fc-unthemed .fc-view-container .fc-event{background:#00548f;border:1px solid #00548f;color:#fff}.fc.fc-unthemed .fc-view-container .fc-divider{background:#f8f9fa;border:1px solid #dee2e6}.fc.fc-unthemed .fc-toolbar .fc-button{color:#fff;background:#006CB8;border:1px solid #006CB8;font-size:1rem;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:3px;display:flex;align-items:center}.fc.fc-unthemed .fc-toolbar .fc-button:enabled:hover{background:#00548f;color:#fff;border-color:#00548f}.fc.fc-unthemed .fc-toolbar .fc-button:enabled:active{background:#00548f;color:#fff;border-color:#00548f}.fc.fc-unthemed .fc-toolbar .fc-button:enabled:active:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.fc.fc-unthemed .fc-toolbar .fc-button .fc-icon-chevron-left{font-family:PrimeIcons!important;text-indent:0;font-size:1rem}.fc.fc-unthemed .fc-toolbar .fc-button .fc-icon-chevron-left:before{content:""}.fc.fc-unthemed .fc-toolbar .fc-button .fc-icon-chevron-right{font-family:PrimeIcons!important;text-indent:0;font-size:1rem}.fc.fc-unthemed .fc-toolbar .fc-button .fc-icon-chevron-right:before{content:""}.fc.fc-unthemed .fc-toolbar .fc-button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.fc.fc-unthemed .fc-toolbar .fc-button.fc-dayGridMonth-button,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridWeek-button,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridDay-button{background:#ffffff;border:1px solid #ced4da;color:#495057;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.fc.fc-unthemed .fc-toolbar .fc-button.fc-dayGridMonth-button:hover,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridWeek-button:hover,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridDay-button:hover{background:#e9ecef;border-color:#ced4da;color:#495057}.fc.fc-unthemed .fc-toolbar .fc-button.fc-dayGridMonth-button.fc-button-active,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridWeek-button.fc-button-active,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridDay-button.fc-button-active{background:#006CB8;border-color:#006cb8;color:#fff}.fc.fc-unthemed .fc-toolbar .fc-button.fc-dayGridMonth-button.fc-button-active:hover,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridWeek-button.fc-button-active:hover,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridDay-button.fc-button-active:hover{background:#00548f;border-color:#00548f;color:#fff}.fc.fc-unthemed .fc-toolbar .fc-button.fc-dayGridMonth-button:focus,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridWeek-button:focus,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridDay-button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;z-index:1}.fc.fc-unthemed .fc-toolbar .fc-button-group .fc-button{border-radius:0}.fc.fc-unthemed .fc-toolbar .fc-button-group .fc-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.fc.fc-unthemed .fc-toolbar .fc-button-group .fc-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.fc.fc-theme-standard .fc-view-harness .fc-scrollgrid{border-color:#dee2e6}.fc.fc-theme-standard .fc-view-harness th{background:#f8f9fa;border-color:#dee2e6;color:#495057}.fc.fc-theme-standard .fc-view-harness td{color:#495057;border-color:#dee2e6}.fc.fc-theme-standard .fc-view-harness .fc-view{background:#ffffff}.fc.fc-theme-standard .fc-view-harness .fc-popover{background:none;border:0 none}.fc.fc-theme-standard .fc-view-harness .fc-popover .fc-popover-header{border:1px solid #dee2e6;padding:1rem;background:#f8f9fa;color:#495057}.fc.fc-theme-standard .fc-view-harness .fc-popover .fc-popover-header .fc-popover-close{opacity:1;display:flex;align-items:center;justify-content:center;overflow:hidden;font-family:PrimeIcons!important;font-size:1rem;width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.fc.fc-theme-standard .fc-view-harness .fc-popover .fc-popover-header .fc-popover-close:before{content:""}.fc.fc-theme-standard .fc-view-harness .fc-popover .fc-popover-header .fc-popover-close:hover{color:#495057;border-color:transparent;background:#e9ecef}.fc.fc-theme-standard .fc-view-harness .fc-popover .fc-popover-header .fc-popover-close:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.fc.fc-theme-standard .fc-view-harness .fc-popover .fc-popover-body{padding:1rem;border:1px solid #dee2e6;background:#ffffff;color:#495057;border-top:0 none}.fc.fc-theme-standard .fc-view-harness .fc-event.fc-daygrid-block-event{color:#fff;background:#00548f;border-color:#00548f}.fc.fc-theme-standard .fc-view-harness .fc-event.fc-daygrid-block-event .fc-event-main{color:#fff}.fc.fc-theme-standard .fc-view-harness .fc-event.fc-daygrid-dot-event .fc-daygrid-event-dot{background:#00548f;border-color:#00548f}.fc.fc-theme-standard .fc-view-harness .fc-event.fc-daygrid-dot-event:hover{background:#e9ecef;color:#495057}.fc.fc-theme-standard .fc-view-harness .fc-cell-shaded{background:#f8f9fa}.fc.fc-theme-standard .fc-toolbar .fc-button{color:#fff;background:#006CB8;border:1px solid #006CB8;font-size:1rem;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.fc.fc-theme-standard .fc-toolbar .fc-button:enabled:hover{background:#00548f;color:#fff;border-color:#00548f}.fc.fc-theme-standard .fc-toolbar .fc-button:enabled:active{background:#00548f;color:#fff;border-color:#00548f}.fc.fc-theme-standard .fc-toolbar .fc-button:enabled:active:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.fc.fc-theme-standard .fc-toolbar .fc-button:disabled{opacity:.8;color:#fff;background:#006CB8;border:1px solid #006CB8}.fc.fc-theme-standard .fc-toolbar .fc-button .fc-icon-chevron-left{font-family:PrimeIcons!important;text-indent:0;font-size:1rem}.fc.fc-theme-standard .fc-toolbar .fc-button .fc-icon-chevron-left:before{content:""}.fc.fc-theme-standard .fc-toolbar .fc-button .fc-icon-chevron-right{font-family:PrimeIcons!important;text-indent:0;font-size:1rem}.fc.fc-theme-standard .fc-toolbar .fc-button .fc-icon-chevron-right:before{content:""}.fc.fc-theme-standard .fc-toolbar .fc-button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.fc.fc-theme-standard .fc-toolbar .fc-button.fc-dayGridMonth-button,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridWeek-button,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridDay-button{background:#ffffff;border:1px solid #ced4da;color:#495057;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.fc.fc-theme-standard .fc-toolbar .fc-button.fc-dayGridMonth-button:hover,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridWeek-button:hover,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridDay-button:hover{background:#e9ecef;border-color:#ced4da;color:#495057}.fc.fc-theme-standard .fc-toolbar .fc-button.fc-dayGridMonth-button.fc-button-active,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridWeek-button.fc-button-active,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridDay-button.fc-button-active{background:#006CB8;border-color:#006cb8;color:#fff}.fc.fc-theme-standard .fc-toolbar .fc-button.fc-dayGridMonth-button.fc-button-active:hover,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridWeek-button.fc-button-active:hover,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridDay-button.fc-button-active:hover{background:#00548f;border-color:#00548f;color:#fff}.fc.fc-theme-standard .fc-toolbar .fc-button.fc-dayGridMonth-button:not(:disabled):focus,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridWeek-button:not(:disabled):focus,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridDay-button:not(:disabled):focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;z-index:1}.fc.fc-theme-standard .fc-toolbar .fc-button-group .fc-button{border-radius:0}.fc.fc-theme-standard .fc-toolbar .fc-button-group .fc-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.fc.fc-theme-standard .fc-toolbar .fc-button-group .fc-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.fc.fc-theme-standard .fc-highlight{color:#fff;background:#006CB8}.p-orderlist .p-orderlist-controls{padding:1rem}.p-orderlist .p-orderlist-controls .p-button{margin-bottom:.5rem}.p-orderlist .p-orderlist-header{background:#f8f9fa;color:#495057;border:1px solid #dee2e6;padding:1rem;font-weight:600;border-bottom:0 none;border-top-right-radius:3px;border-top-left-radius:3px}.p-orderlist .p-orderlist-list{border:1px solid #dee2e6;background:#ffffff;color:#495057;padding:.5rem 0;border-bottom-right-radius:3px;border-bottom-left-radius:3px;outline:0 none}.p-orderlist .p-orderlist-list .p-orderlist-item{padding:.5rem 1rem;margin:0;border:0 none;color:#495057;background:transparent;transition:transform .2s,background-color .2s,border-color .2s,box-shadow .2s}.p-orderlist .p-orderlist-list .p-orderlist-item:not(.p-highlight):hover{background:#e9ecef;color:#495057}.p-orderlist .p-orderlist-list .p-orderlist-item.p-focus{color:#495057;background:#f8f9fa}.p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight{color:#fff;background:#006CB8}.p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight.p-focus{background:rgba(0,108,184,.24)}.p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(2n){background:#e9ecef}.p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(2n):hover{background:#e9ecef}.p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover{background:#e9ecef;color:#495057}.p-organizationchart .p-organizationchart-node-content.p-highlight{background:#006CB8;color:#fff}.p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i{color:#002139}.p-organizationchart .p-organizationchart-line-down{background:#dee2e6}.p-organizationchart .p-organizationchart-line-left{border-right:1px solid #dee2e6;border-color:#dee2e6}.p-organizationchart .p-organizationchart-line-top{border-top:1px solid #dee2e6;border-color:#dee2e6}.p-organizationchart .p-organizationchart-node-content{border:1px solid #dee2e6;background:#ffffff;color:#495057;padding:1rem}.p-organizationchart .p-organizationchart-node-content .p-node-toggler{background:inherit;color:inherit;border-radius:50%}.p-organizationchart .p-organizationchart-node-content .p-node-toggler:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-paginator{background:#ffffff;color:#6c757d;border:solid #e9ecef;border-width:0;padding:.5rem 1rem;border-radius:3px}.p-paginator .p-paginator-first,.p-paginator .p-paginator-prev,.p-paginator .p-paginator-next,.p-paginator .p-paginator-last{background-color:transparent;border:0 none;color:#6c757d;min-width:1.75rem;height:1.75rem;margin:.143rem;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover,.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover,.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover,.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover{background:#e9ecef;border-color:transparent;color:#6c757d}.p-paginator .p-paginator-first{border-top-left-radius:3px;border-bottom-left-radius:3px}.p-paginator .p-paginator-last{border-top-right-radius:3px;border-bottom-right-radius:3px}.p-paginator .p-dropdown{margin-left:.5rem;margin-right:.5rem;height:1.75rem}.p-paginator .p-dropdown .p-dropdown-label{padding-right:0}.p-paginator .p-paginator-page-input{margin-left:.5rem;margin-right:.5rem}.p-paginator .p-paginator-page-input .p-inputtext{max-width:1.75rem}.p-paginator .p-paginator-current{background-color:transparent;border:0 none;color:#6c757d;min-width:1.75rem;height:1.75rem;margin:.143rem;padding:0 .5rem}.p-paginator .p-paginator-pages .p-paginator-page{background-color:transparent;border:0 none;color:#6c757d;min-width:1.75rem;height:1.75rem;margin:.143rem;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-paginator .p-paginator-pages .p-paginator-page.p-highlight{background:#006CB8;border-color:#006cb8;color:#fff}.p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover{background:#e9ecef;border-color:transparent;color:#6c757d}.p-picklist .p-picklist-buttons{padding:1rem}.p-picklist .p-picklist-buttons .p-button{margin-bottom:.5rem}.p-picklist .p-picklist-header{background:#f8f9fa;color:#495057;border:1px solid #dee2e6;padding:1rem;font-weight:600;border-bottom:0 none;border-top-right-radius:3px;border-top-left-radius:3px}.p-picklist .p-picklist-list{border:1px solid #dee2e6;background:#ffffff;color:#495057;padding:.5rem 0;border-bottom-right-radius:3px;border-bottom-left-radius:3px;outline:0 none}.p-picklist .p-picklist-list .p-picklist-item{padding:.5rem 1rem;margin:0;border:0 none;color:#495057;background:transparent;transition:transform .2s,background-color .2s,border-color .2s,box-shadow .2s}.p-picklist .p-picklist-list .p-picklist-item:not(.p-highlight):hover{background:#e9ecef;color:#495057}.p-picklist .p-picklist-list .p-picklist-item.p-focus{color:#495057;background:#f8f9fa}.p-picklist .p-picklist-list .p-picklist-item.p-highlight{color:#fff;background:#006CB8}.p-picklist .p-picklist-list .p-picklist-item.p-highlight.p-focus{background:rgba(0,108,184,.24)}.p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(2n){background:#e9ecef}.p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(2n):hover{background:#e9ecef}.p-timeline .p-timeline-event-marker{border:2px solid #006CB8;border-radius:50%;width:1rem;height:1rem;background-color:#fff}.p-timeline .p-timeline-event-connector{background-color:#dee2e6}.p-timeline.p-timeline-vertical .p-timeline-event-opposite,.p-timeline.p-timeline-vertical .p-timeline-event-content{padding:0 1rem}.p-timeline.p-timeline-vertical .p-timeline-event-connector{width:2px}.p-timeline.p-timeline-horizontal .p-timeline-event-opposite,.p-timeline.p-timeline-horizontal .p-timeline-event-content{padding:1rem 0}.p-timeline.p-timeline-horizontal .p-timeline-event-connector{height:2px}.p-tree{border:1px solid #dee2e6;background:#ffffff;color:#495057;padding:1rem;border-radius:3px}.p-tree .p-tree-container .p-treenode{padding:.143rem;outline:0 none}.p-tree .p-tree-container .p-treenode:focus>.p-treenode-content{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .15rem #bfd1f6}.p-tree .p-tree-container .p-treenode .p-treenode-content{border-radius:3px;transition:background-color .2s,border-color .2s,box-shadow .2s;padding:.5rem}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler{margin-right:.5rem;width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-treenode-icon{margin-right:.5rem;color:#6c757d}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-checkbox{margin-right:.5rem}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-checkbox .p-indeterminate .p-checkbox-icon{color:#495057}.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight{background:#006CB8;color:#fff}.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler,.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon,.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover,.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover{color:#fff}.p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover{background:#e9ecef;color:#495057}.p-tree .p-tree-filter-container{margin-bottom:.5rem}.p-tree .p-tree-filter-container .p-tree-filter{width:100%;padding-right:1.5rem}.p-tree .p-tree-filter-container .p-tree-filter-icon{right:.5rem;color:#495057}.p-tree .p-treenode-children{padding:0 0 0 1rem}.p-tree .p-tree-loading-icon{font-size:2rem}.p-treetable .p-paginator-top{border-width:1px 0 1px 0;border-radius:0}.p-treetable .p-paginator-bottom{border-width:0 0 1px 0;border-radius:0}.p-treetable .p-treetable-header,.p-treetable .p-treetable-footer{background:#f8f9fa;color:#495057;border:1px solid #e9ecef;border-width:0 0 1px 0;padding:1rem;font-weight:600}.p-treetable .p-treetable-thead>tr>th{text-align:left;padding:1rem;border:1px solid #e9ecef;border-width:0 0 1px 0;font-weight:600;color:#495057;background:#f8f9fa;transition:background-color .2s,border-color .2s,box-shadow .2s}.p-treetable .p-treetable-tfoot>tr>td{text-align:left;padding:1rem;border:1px solid #e9ecef;border-width:0 0 1px 0;font-weight:600;color:#495057;background:#f8f9fa}.p-treetable .p-sortable-column{outline-color:#bfd1f6}.p-treetable .p-sortable-column .p-sortable-column-icon{color:#6c757d;margin-left:.5rem}.p-treetable .p-sortable-column .p-sortable-column-badge{border-radius:50%;height:1.143rem;min-width:1.143rem;line-height:1.143rem;color:#fff;background:#006CB8;margin-left:.5rem}.p-treetable .p-sortable-column:not(.p-highlight):hover{background:#e9ecef;color:#495057}.p-treetable .p-sortable-column:not(.p-highlight):hover .p-sortable-column-icon{color:#6c757d}.p-treetable .p-sortable-column.p-highlight{background:#f8f9fa;color:#006cb8}.p-treetable .p-sortable-column.p-highlight .p-sortable-column-icon{color:#006cb8}.p-treetable .p-treetable-tbody>tr{background:#ffffff;color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s}.p-treetable .p-treetable-tbody>tr>td{text-align:left;border:1px solid rgba(0,0,0,.08);border-width:0 0 1px 0;padding:1rem}.p-treetable .p-treetable-tbody>tr>td .p-treetable-toggler{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s;margin-right:.5rem}.p-treetable .p-treetable-tbody>tr>td .p-treetable-toggler:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-treetable .p-treetable-tbody>tr>td .p-treetable-toggler:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-treetable .p-treetable-tbody>tr>td .p-treetable-toggler+.p-checkbox{margin-right:.5rem}.p-treetable .p-treetable-tbody>tr>td .p-treetable-toggler+.p-checkbox .p-indeterminate .p-checkbox-icon{color:#495057}.p-treetable .p-treetable-tbody>tr:focus{outline:.15rem solid #bfd1f6;outline-offset:-.15rem}.p-treetable .p-treetable-tbody>tr.p-highlight{background:#006CB8;color:#fff}.p-treetable .p-treetable-tbody>tr.p-highlight .p-treetable-toggler{color:#fff}.p-treetable .p-treetable-tbody>tr.p-highlight .p-treetable-toggler:hover{color:#fff}.p-treetable.p-treetable-hoverable-rows .p-treetable-tbody>tr:not(.p-highlight):hover{background:#e9ecef;color:#495057}.p-treetable.p-treetable-hoverable-rows .p-treetable-tbody>tr:not(.p-highlight):hover .p-treetable-toggler{color:#495057}.p-treetable .p-column-resizer-helper{background:#006CB8}.p-treetable .p-treetable-scrollable-header,.p-treetable .p-treetable-scrollable-footer{background:#f8f9fa}.p-treetable .p-treetable-loading-icon{font-size:2rem}.p-treetable.p-treetable-gridlines .p-datatable-header{border-width:1px 1px 0 1px}.p-treetable.p-treetable-gridlines .p-treetable-footer{border-width:0 1px 1px 1px}.p-treetable.p-treetable-gridlines .p-treetable-top{border-width:0 1px 0 1px}.p-treetable.p-treetable-gridlines .p-treetable-bottom{border-width:0 1px 1px 1px}.p-treetable.p-treetable-gridlines .p-treetable-thead>tr>th{border-width:1px}.p-treetable.p-treetable-gridlines .p-treetable-tbody>tr>td{border-width:1px}.p-treetable.p-treetable-gridlines .p-treetable-tfoot>tr>td{border-width:1px}.p-treetable.p-treetable-sm .p-treetable-header{padding:.875rem}.p-treetable.p-treetable-sm .p-treetable-thead>tr>th{padding:.5rem}.p-treetable.p-treetable-sm .p-treetable-tbody>tr>td{padding:.5rem}.p-treetable.p-treetable-sm .p-treetable-tfoot>tr>td{padding:.5rem}.p-treetable.p-treetable-sm .p-treetable-footer{padding:.5rem}.p-treetable.p-treetable-lg .p-treetable-header{padding:1.25rem}.p-treetable.p-treetable-lg .p-treetable-thead>tr>th{padding:1.25rem}.p-treetable.p-treetable-lg .p-treetable-tbody>tr>td{padding:1.25rem}.p-treetable.p-treetable-lg .p-treetable-tfoot>tr>td{padding:1.25rem}.p-treetable.p-treetable-lg .p-treetable-footer{padding:1.25rem}.p-accordion .p-accordion-header .p-accordion-header-link{padding:1rem;border:1px solid #dee2e6;color:#495057;background:#f8f9fa;font-weight:600;border-radius:3px;transition:background-color .2s,border-color .2s,box-shadow .2s}.p-accordion .p-accordion-header .p-accordion-header-link .p-accordion-toggle-icon{margin-right:.5rem}.p-accordion .p-accordion-header:not(.p-disabled) .p-accordion-header-link:focus{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .2rem #bfd1f6}.p-accordion .p-accordion-header:not(.p-highlight):not(.p-disabled):hover .p-accordion-header-link{background:#e9ecef;border-color:1px solid #dee2e6;color:#495057}.p-accordion .p-accordion-header:not(.p-disabled).p-highlight .p-accordion-header-link{background:#f8f9fa;border-color:#dee2e6;color:#495057;border-bottom-right-radius:0;border-bottom-left-radius:0}.p-accordion .p-accordion-header:not(.p-disabled).p-highlight:hover .p-accordion-header-link{border-color:#dee2e6;background:#e9ecef;color:#495057}.p-accordion .p-accordion-content{padding:1rem;border:1px solid #dee2e6;background:#ffffff;color:#495057;border-top:0;border-radius:0 0 3px 3px}.p-accordion .p-accordion-tab{margin-bottom:0}.p-accordion .p-accordion-tab .p-accordion-header .p-accordion-header-link{border-radius:0}.p-accordion .p-accordion-tab .p-accordion-content{border-bottom-right-radius:0;border-bottom-left-radius:0}.p-accordion .p-accordion-tab:not(:first-child) .p-accordion-header .p-accordion-header-link{border-top:0 none}.p-accordion .p-accordion-tab:not(:first-child) .p-accordion-header:not(.p-highlight):not(.p-disabled):hover .p-accordion-header-link,.p-accordion .p-accordion-tab:not(:first-child) .p-accordion-header:not(.p-disabled).p-highlight:hover .p-accordion-header-link{border-top:0 none}.p-accordion .p-accordion-tab:first-child .p-accordion-header .p-accordion-header-link{border-top-right-radius:3px;border-top-left-radius:3px}.p-accordion .p-accordion-tab:last-child .p-accordion-header:not(.p-highlight) .p-accordion-header-link{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-accordion .p-accordion-tab:last-child .p-accordion-content{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-card{background:#ffffff;color:#495057;box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;border-radius:3px}.p-card .p-card-body{padding:1rem}.p-card .p-card-title{font-size:1.5rem;font-weight:700;margin-bottom:.5rem}.p-card .p-card-subtitle{font-weight:700;margin-bottom:.5rem;color:#6c757d}.p-card .p-card-content{padding:1rem 0}.p-card .p-card-footer{padding:1rem 0 0}.p-fieldset{border:1px solid #dee2e6;background:#ffffff;color:#495057;border-radius:3px}.p-fieldset .p-fieldset-legend{padding:1rem;border:1px solid #dee2e6;color:#495057;background:#f8f9fa;font-weight:600;border-radius:3px}.p-fieldset.p-fieldset-toggleable .p-fieldset-legend{padding:0;transition:background-color .2s,color .2s,box-shadow .2s}.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a{padding:1rem;color:#495057;border-radius:3px;transition:background-color .2s,border-color .2s,box-shadow .2s}.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a .p-fieldset-toggler{margin-right:.5rem}.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:hover{color:#495057}.p-fieldset.p-fieldset-toggleable .p-fieldset-legend:hover{background:#e9ecef;border-color:#dee2e6;color:#495057}.p-fieldset .p-fieldset-content{padding:1rem}.p-divider .p-divider-content{background-color:#fff}.p-divider.p-divider-horizontal{margin:1rem 0;padding:0 1rem}.p-divider.p-divider-horizontal:before{border-top:1px #dee2e6}.p-divider.p-divider-horizontal .p-divider-content{padding:0 .5rem}.p-divider.p-divider-vertical{margin:0 1rem;padding:1rem 0}.p-divider.p-divider-vertical:before{border-left:1px #dee2e6}.p-divider.p-divider-vertical .p-divider-content{padding:.5rem 0}.p-panel .p-panel-header{border:1px solid #dee2e6;padding:1rem;background:#f8f9fa;color:#495057;border-top-right-radius:3px;border-top-left-radius:3px}.p-panel .p-panel-header .p-panel-title{font-weight:600}.p-panel .p-panel-header .p-panel-header-icon{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-panel .p-panel-header .p-panel-header-icon:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-panel .p-panel-header .p-panel-header-icon:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-panel.p-panel-toggleable .p-panel-header{padding:.5rem 1rem}.p-panel .p-panel-content{padding:1rem;border:1px solid #dee2e6;background:#ffffff;color:#495057;border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-top:0 none}.p-panel .p-panel-footer{padding:.5rem 1rem;border:1px solid #dee2e6;background:#ffffff;color:#495057;border-top:0 none}.p-scrollpanel .p-scrollpanel-bar{background:#f8f9fa;border:0 none;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-scrollpanel .p-scrollpanel-bar:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-splitter{border:1px solid #dee2e6;background:#ffffff;border-radius:3px;color:#495057}.p-splitter .p-splitter-gutter{transition:background-color .2s,color .2s,box-shadow .2s;background:#f8f9fa}.p-splitter .p-splitter-gutter .p-splitter-gutter-handle{background:#dee2e6;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-splitter .p-splitter-gutter .p-splitter-gutter-handle:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-splitter .p-splitter-gutter-resizing{background:#dee2e6}.p-tabview .p-tabview-nav{background:#ffffff;border:1px solid #dee2e6;border-width:0 0 2px 0}.p-tabview .p-tabview-nav li{margin-right:0}.p-tabview .p-tabview-nav li .p-tabview-nav-link{border:solid #dee2e6;border-width:0 0 2px 0;border-color:transparent transparent #dee2e6 transparent;background:#ffffff;color:#6c757d;padding:1rem;font-weight:600;border-top-right-radius:3px;border-top-left-radius:3px;transition:background-color .2s,border-color .2s,box-shadow .2s;margin:0 0 -2px}.p-tabview .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .2rem #bfd1f6}.p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link{background:#ffffff;border-color:#9ba2aa;color:#6c757d}.p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link{background:#ffffff;border-color:#006cb8;color:#006cb8}.p-tabview .p-tabview-nav-btn.p-link{background:#ffffff;color:#006cb8;width:1.75rem;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f;border-radius:0}.p-tabview .p-tabview-nav-btn.p-link:focus{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .2rem #bfd1f6}.p-tabview .p-tabview-panels{background:#ffffff;padding:1rem;border:0 none;color:#495057;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-toolbar{background:#f8f9fa;border:1px solid #dee2e6;padding:1rem;border-radius:3px;gap:.5rem}.p-toolbar .p-toolbar-separator{margin:0 .5rem}.p-confirm-popup{background:#ffffff;color:#495057;border:0 none;border-radius:3px;box-shadow:0 0 14px #0000001a}.p-confirm-popup .p-confirm-popup-content{padding:1rem}.p-confirm-popup .p-confirm-popup-footer{text-align:right;padding:0 1rem 1rem}.p-confirm-popup .p-confirm-popup-footer button{margin:0 .5rem 0 0;width:auto}.p-confirm-popup .p-confirm-popup-footer button:last-child{margin:0}.p-confirm-popup:after{border:solid transparent;border-color:#fff0;border-bottom-color:#fff}.p-confirm-popup:before{border:solid transparent;border-color:#fff0;border-bottom-color:#fff}.p-confirm-popup.p-confirm-popup-flipped:after{border-top-color:#fff}.p-confirm-popup.p-confirm-popup-flipped:before{border-top-color:#fff}.p-confirm-popup .p-confirm-popup-icon{font-size:1.5rem}.p-confirm-popup .p-confirm-popup-message{margin-left:1rem}.p-dialog{border-radius:3px;box-shadow:0 0 14px #0000001a;border:0 none}.p-dialog .p-dialog-header{border-bottom:1px solid #dee2e6;background:#ffffff;color:#495057;padding:1.5rem;border-top-right-radius:3px;border-top-left-radius:3px}.p-dialog .p-dialog-header .p-dialog-title{font-weight:600;font-size:1.25rem}.p-dialog .p-dialog-header .p-dialog-header-icon{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s;margin-right:.5rem}.p-dialog .p-dialog-header .p-dialog-header-icon:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-dialog .p-dialog-header .p-dialog-header-icon:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-dialog .p-dialog-header .p-dialog-header-icon:last-child{margin-right:0}.p-dialog .p-dialog-content{background:#ffffff;color:#495057;padding:0 1.5rem}.p-dialog .p-dialog-content:last-of-type{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-dialog .p-dialog-footer{border-top:1px solid #dee2e6;background:#ffffff;color:#495057;padding:1.5rem;text-align:right;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-dialog .p-dialog-footer button{margin:0 .5rem 0 0;width:auto}.p-dialog.p-confirm-dialog .p-confirm-dialog-icon{font-size:2rem}.p-dialog.p-confirm-dialog .p-confirm-dialog-message:not(:first-child){margin-left:1rem}.p-overlaypanel{background:#ffffff;color:#495057;border:0 none;border-radius:3px;box-shadow:0 0 14px #0000001a}.p-overlaypanel .p-overlaypanel-content{padding:1rem}.p-overlaypanel .p-overlaypanel-close{background:#006CB8;color:#fff;width:2rem;height:2rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:50%;position:absolute;top:-1rem;right:-1rem}.p-overlaypanel .p-overlaypanel-close:enabled:hover{background:#00548f;color:#fff}.p-overlaypanel:after{border:solid transparent;border-color:#fff0;border-bottom-color:#fff}.p-overlaypanel:before{border:solid transparent;border-color:#fff0;border-bottom-color:#f2f2f2}.p-overlaypanel.p-overlaypanel-flipped:after{border-top-color:#fff}.p-overlaypanel.p-overlaypanel-flipped:before{border-top-color:#fff}.p-sidebar{background:#ffffff;color:#495057;border:0 none;box-shadow:0 0 14px #0000001a}.p-sidebar .p-sidebar-header{padding:1rem}.p-sidebar .p-sidebar-header .p-sidebar-close,.p-sidebar .p-sidebar-header .p-sidebar-icon{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover,.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-sidebar .p-sidebar-header .p-sidebar-close:focus,.p-sidebar .p-sidebar-header .p-sidebar-icon:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-sidebar .p-sidebar-header+.p-sidebar-content{padding-top:0}.p-sidebar .p-sidebar-content{padding:1rem}.p-tooltip .p-tooltip-text{background:#495057;color:#fff;padding:.5rem;box-shadow:0 3px 6px #0000001a;border-radius:3px}.p-tooltip.p-tooltip-right .p-tooltip-arrow{border-right-color:#495057}.p-tooltip.p-tooltip-left .p-tooltip-arrow{border-left-color:#495057}.p-tooltip.p-tooltip-top .p-tooltip-arrow{border-top-color:#495057}.p-tooltip.p-tooltip-bottom .p-tooltip-arrow{border-bottom-color:#495057}.p-fileupload .p-fileupload-buttonbar{background:#f8f9fa;padding:1rem;border:1px solid #dee2e6;color:#495057;border-bottom:0 none;border-top-right-radius:3px;border-top-left-radius:3px;gap:.5rem}.p-fileupload .p-fileupload-buttonbar .p-button.p-fileupload-choose.p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-fileupload .p-fileupload-content{background:#ffffff;padding:2rem 1rem;border:1px solid #dee2e6;color:#495057;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-fileupload .p-fileupload-file{padding:1rem;border:1px solid #c3cad2;border-radius:3px;gap:.5rem;margin-bottom:.5rem}.p-fileupload .p-fileupload-file:last-child{margin-bottom:0}.p-fileupload .p-fileupload-file-name{margin-bottom:.5rem}.p-fileupload .p-fileupload-file-size{margin-right:.5rem}.p-fileupload .p-progressbar{height:.25rem}.p-fileupload .p-fileupload-row>div{padding:1rem}.p-fileupload.p-fileupload-advanced .p-message{margin-top:0}.p-fileupload-choose:not(.p-disabled):hover{background:#00548f;color:#fff;border-color:#00548f}.p-fileupload-choose:not(.p-disabled):active{background:#00548f;color:#fff;border-color:#00548f}.p-breadcrumb{background:#ffffff;border:1px solid #dee2e6;border-radius:3px;padding:1rem}.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link{transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link .p-menuitem-text{color:#495057}.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link .p-menuitem-icon{color:#6c757d}.p-breadcrumb .p-breadcrumb-list li.p-menuitem-separator{margin:0 .5rem;color:#495057}.p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-text{color:#495057}.p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon{color:#6c757d}.p-contextmenu{padding:.25rem 0;background:#ffffff;color:#495057;border:0 none;box-shadow:0 1px 6px #0000001a;border-radius:3px;width:12.5rem}.p-contextmenu .p-contextmenu-root-list{outline:0 none}.p-contextmenu .p-submenu-list{padding:.25rem 0;background:#ffffff;border:0 none;box-shadow:0 1px 6px #0000001a;border-radius:3px}.p-contextmenu .p-menuitem>.p-menuitem-content{color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-contextmenu .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#495057;padding:.75rem 1rem;-webkit-user-select:none;user-select:none}.p-contextmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-contextmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6c757d;margin-right:.5rem}.p-contextmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-contextmenu .p-menuitem.p-highlight>.p-menuitem-content{color:#495057;background:#e9ecef}.p-contextmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-contextmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-contextmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-contextmenu .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#e9ecef}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#495057;background:#f8f9fa}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#495057}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#495057;background:#e9ecef}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#495057}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-contextmenu .p-menuitem-separator{border-top:1px solid #dee2e6;margin:.25rem 0}.p-contextmenu .p-submenu-icon{font-size:.875rem}.p-dock .p-dock-list-container{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);padding:.5rem;border-radius:.5rem}.p-dock .p-dock-list-container .p-dock-list{outline:0 none}.p-dock .p-dock-item{padding:.5rem;border-radius:3px}.p-dock .p-dock-item.p-focus{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .15rem #bfd1f6}.p-dock .p-dock-link{width:4rem;height:4rem}.p-dock.p-dock-top .p-dock-item-second-prev,.p-dock.p-dock-top .p-dock-item-second-next,.p-dock.p-dock-bottom .p-dock-item-second-prev,.p-dock.p-dock-bottom .p-dock-item-second-next{margin:0 .9rem}.p-dock.p-dock-top .p-dock-item-prev,.p-dock.p-dock-top .p-dock-item-next,.p-dock.p-dock-bottom .p-dock-item-prev,.p-dock.p-dock-bottom .p-dock-item-next{margin:0 1.3rem}.p-dock.p-dock-top .p-dock-item-current,.p-dock.p-dock-bottom .p-dock-item-current{margin:0 1.5rem}.p-dock.p-dock-left .p-dock-item-second-prev,.p-dock.p-dock-left .p-dock-item-second-next,.p-dock.p-dock-right .p-dock-item-second-prev,.p-dock.p-dock-right .p-dock-item-second-next{margin:.9rem 0}.p-dock.p-dock-left .p-dock-item-prev,.p-dock.p-dock-left .p-dock-item-next,.p-dock.p-dock-right .p-dock-item-prev,.p-dock.p-dock-right .p-dock-item-next{margin:1.3rem 0}.p-dock.p-dock-left .p-dock-item-current,.p-dock.p-dock-right .p-dock-item-current{margin:1.5rem 0}@media screen and (max-width: 960px){.p-dock.p-dock-top .p-dock-list-container,.p-dock.p-dock-bottom .p-dock-list-container{overflow-x:auto;width:100%}.p-dock.p-dock-top .p-dock-list-container .p-dock-list,.p-dock.p-dock-bottom .p-dock-list-container .p-dock-list{margin:0 auto}.p-dock.p-dock-left .p-dock-list-container,.p-dock.p-dock-right .p-dock-list-container{overflow-y:auto;height:100%}.p-dock.p-dock-left .p-dock-list-container .p-dock-list,.p-dock.p-dock-right .p-dock-list-container .p-dock-list{margin:auto 0}.p-dock .p-dock-list .p-dock-item{transform:none;margin:0}}.p-megamenu{padding:.5rem;background:#f8f9fa;color:#495057;border:1px solid #dee2e6;border-radius:3px}.p-megamenu .p-megamenu-root-list{outline:0 none}.p-megamenu .p-menuitem>.p-menuitem-content{color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-megamenu .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#495057;padding:.75rem 1rem;-webkit-user-select:none;user-select:none}.p-megamenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-megamenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6c757d;margin-right:.5rem}.p-megamenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-megamenu .p-menuitem.p-highlight>.p-menuitem-content{color:#495057;background:#e9ecef}.p-megamenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-megamenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-megamenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-megamenu .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#e9ecef}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#495057;background:#f8f9fa}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#495057}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#495057;background:#e9ecef}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#495057}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-megamenu .p-megamenu-panel{background:#ffffff;color:#495057;border:0 none;box-shadow:0 1px 6px #0000001a}.p-megamenu .p-submenu-header{margin:0;padding:.75rem 1rem;color:#495057;background:#ffffff;font-weight:600;border-top-right-radius:3px;border-top-left-radius:3px}.p-megamenu .p-submenu-list{padding:.25rem 0;width:12.5rem}.p-megamenu .p-submenu-list .p-menuitem-separator{border-top:1px solid #dee2e6;margin:.25rem 0}.p-megamenu.p-megamenu-vertical{width:12.5rem;padding:.25rem 0}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content{color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link{padding:.75rem 1rem;-webkit-user-select:none;user-select:none}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6c757d;margin-right:.5rem}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d;margin-left:.5rem}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#495057;background:#e9ecef}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#495057}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-menu{padding:.25rem 0;background:#ffffff;color:#495057;border:1px solid #dee2e6;border-radius:3px;width:12.5rem}.p-menu .p-menuitem>.p-menuitem-content{color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-menu .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#495057;padding:.75rem 1rem;-webkit-user-select:none;user-select:none}.p-menu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-menu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6c757d;margin-right:.5rem}.p-menu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-menu .p-menuitem.p-highlight>.p-menuitem-content{color:#495057;background:#e9ecef}.p-menu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-menu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-menu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-menu .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#e9ecef}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#495057;background:#f8f9fa}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#495057}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#495057;background:#e9ecef}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#495057}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-menu.p-menu-overlay{background:#ffffff;border:0 none;box-shadow:0 1px 6px #0000001a}.p-menu .p-submenu-header{margin:0;padding:.75rem 1rem;color:#495057;background:#ffffff;font-weight:600;border-top-right-radius:0;border-top-left-radius:0}.p-menu .p-menuitem-separator{border-top:1px solid #dee2e6;margin:.25rem 0}.p-menubar{padding:.5rem;background:#f8f9fa;color:#495057;border:1px solid #dee2e6;border-radius:3px}.p-menubar .p-menubar-root-list{outline:0 none}.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content{color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link{padding:.75rem 1rem;-webkit-user-select:none;user-select:none}.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6c757d;margin-right:.5rem}.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d;margin-left:.5rem}.p-menubar .p-menubar-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#495057;background:#e9ecef}.p-menubar .p-menubar-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#495057}.p-menubar .p-menubar-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-menubar .p-menubar-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-menubar .p-menuitem>.p-menuitem-content{color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-menubar .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#495057;padding:.75rem 1rem;-webkit-user-select:none;user-select:none}.p-menubar .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-menubar .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6c757d;margin-right:.5rem}.p-menubar .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-menubar .p-menuitem.p-highlight>.p-menuitem-content{color:#495057;background:#e9ecef}.p-menubar .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-menubar .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-menubar .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-menubar .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#e9ecef}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#495057;background:#f8f9fa}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#495057}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#495057;background:#e9ecef}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#495057}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-menubar .p-submenu-list{padding:.25rem 0;background:#ffffff;border:0 none;box-shadow:0 1px 6px #0000001a;width:12.5rem}.p-menubar .p-submenu-list .p-menuitem-separator{border-top:1px solid #dee2e6;margin:.25rem 0}.p-menubar .p-submenu-list .p-submenu-icon{font-size:.875rem}@media screen and (max-width: 960px){.p-menubar{position:relative}.p-menubar .p-menubar-button{display:flex;width:2rem;height:2rem;color:#6c757d;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-menubar .p-menubar-button:hover{color:#6c757d;background:#e9ecef}.p-menubar .p-menubar-button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-menubar .p-menubar-root-list{position:absolute;display:none;padding:.25rem 0;background:#ffffff;border:0 none;box-shadow:0 1px 6px #0000001a;width:100%}.p-menubar .p-menubar-root-list .p-menuitem-separator{border-top:1px solid #dee2e6;margin:.25rem 0}.p-menubar .p-menubar-root-list .p-submenu-icon{font-size:.875rem}.p-menubar .p-menubar-root-list .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon{margin-left:auto;transition:transform .2s}.p-menubar .p-menubar-root-list .p-menuitem.p-menuitem-active>.p-menuitem-content>.p-menuitem-link>.p-submenu-icon{transform:rotate(-180deg)}.p-menubar .p-menubar-root-list .p-submenu-list{width:100%;position:static;box-shadow:none;border:0 none}.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon{transition:transform .2s;transform:rotate(90deg)}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active>.p-menuitem-content>.p-menuitem-link>.p-submenu-icon{transform:rotate(-90deg)}.p-menubar .p-menubar-root-list .p-menuitem{width:100%;position:static}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link{padding-left:2.25rem}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link{padding-left:3.75rem}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link{padding-left:5.25rem}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link{padding-left:6.75rem}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link{padding-left:8.25rem}.p-menubar.p-menubar-mobile-active .p-menubar-root-list{display:flex;flex-direction:column;top:100%;left:0;z-index:1}}.p-panelmenu .p-panelmenu-header{outline:0 none}.p-panelmenu .p-panelmenu-header .p-panelmenu-header-content{border:1px solid #dee2e6;color:#495057;background:#f8f9fa;border-radius:3px;transition:background-color .2s,border-color .2s,box-shadow .2s}.p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action{color:#495057;padding:1rem;font-weight:600}.p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-submenu-icon,.p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-icon{margin-right:.5rem}.p-panelmenu .p-panelmenu-header:not(.p-disabled):focus .p-panelmenu-header-content{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .2rem #bfd1f6}.p-panelmenu .p-panelmenu-header:not(.p-highlight):not(.p-disabled):hover .p-panelmenu-header-content{background:#e9ecef;border-color:1px solid #dee2e6;color:#495057}.p-panelmenu .p-panelmenu-header:not(.p-disabled).p-highlight .p-panelmenu-header-content{background:#f8f9fa;border-color:#dee2e6;color:#495057;border-bottom-right-radius:0;border-bottom-left-radius:0;margin-bottom:0}.p-panelmenu .p-panelmenu-header:not(.p-disabled).p-highlight:hover .p-panelmenu-header-content{border-color:#dee2e6;background:#e9ecef;color:#495057}.p-panelmenu .p-panelmenu-content{padding:.25rem 0;border:1px solid #dee2e6;background:#ffffff;color:#495057;border-top:0;border-radius:0 0 3px 3px}.p-panelmenu .p-panelmenu-content .p-panelmenu-root-list{outline:0 none}.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content{color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#495057;padding:.75rem 1rem;-webkit-user-select:none;user-select:none}.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6c757d;margin-right:.5rem}.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight>.p-menuitem-content{color:#495057;background:#e9ecef}.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#e9ecef}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#495057;background:#f8f9fa}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#495057}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#495057;background:#e9ecef}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#495057}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon{margin-right:.5rem}.p-panelmenu .p-panelmenu-content .p-menuitem-separator{border-top:1px solid #dee2e6;margin:.25rem 0}.p-panelmenu .p-panelmenu-content .p-submenu-list:not(.p-panelmenu-root-list){padding:0 0 0 1rem}.p-panelmenu .p-panelmenu-panel{margin-bottom:0}.p-panelmenu .p-panelmenu-panel .p-panelmenu-header .p-panelmenu-header-content,.p-panelmenu .p-panelmenu-panel .p-panelmenu-content{border-radius:0}.p-panelmenu .p-panelmenu-panel:not(:first-child) .p-panelmenu-header .p-panelmenu-header-content{border-top:0 none}.p-panelmenu .p-panelmenu-panel:not(:first-child) .p-panelmenu-header:not(.p-highlight):not(.p-disabled):hover .p-panelmenu-header-content,.p-panelmenu .p-panelmenu-panel:not(:first-child) .p-panelmenu-header:not(.p-disabled).p-highlight:hover .p-panelmenu-header-content{border-top:0 none}.p-panelmenu .p-panelmenu-panel:first-child .p-panelmenu-header .p-panelmenu-header-content{border-top-right-radius:3px;border-top-left-radius:3px}.p-panelmenu .p-panelmenu-panel:last-child .p-panelmenu-header:not(.p-highlight) .p-panelmenu-header-content{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-panelmenu .p-panelmenu-panel:last-child .p-panelmenu-content{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-steps .p-steps-item .p-menuitem-link{background:transparent;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:3px;background:#ffffff}.p-steps .p-steps-item .p-menuitem-link .p-steps-number{color:#495057;border:1px solid #c8c8c8;background:#ffffff;min-width:2rem;height:2rem;line-height:2rem;font-size:1.143rem;z-index:1;border-radius:50%}.p-steps .p-steps-item .p-menuitem-link .p-steps-title{margin-top:.5rem;color:#6c757d}.p-steps .p-steps-item .p-menuitem-link:not(.p-disabled):focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-steps .p-steps-item.p-highlight .p-steps-number{background:#006CB8;color:#fff}.p-steps .p-steps-item.p-highlight .p-steps-title{font-weight:600;color:#495057}.p-steps .p-steps-item:before{content:" ";border-top:1px solid #dee2e6;width:100%;top:50%;left:0;display:block;position:absolute;margin-top:-1rem}.p-tabmenu .p-tabmenu-nav{background:#ffffff;border:1px solid #dee2e6;border-width:0 0 2px 0}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem{margin-right:0}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link{border:solid #dee2e6;border-width:0 0 2px 0;border-color:transparent transparent #dee2e6 transparent;background:#ffffff;color:#6c757d;padding:1rem;font-weight:600;border-top-right-radius:3px;border-top-left-radius:3px;transition:background-color .2s,border-color .2s,box-shadow .2s;margin:0 0 -2px}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link .p-menuitem-icon{margin-right:.5rem}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link:not(.p-disabled):focus{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .2rem #bfd1f6}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem:not(.p-highlight):not(.p-disabled):hover .p-menuitem-link{background:#ffffff;border-color:#9ba2aa;color:#6c757d}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link{background:#ffffff;border-color:#006cb8;color:#006cb8}.p-tieredmenu{padding:.25rem 0;background:#ffffff;color:#495057;border:1px solid #dee2e6;border-radius:3px;width:12.5rem}.p-tieredmenu.p-tieredmenu-overlay{background:#ffffff;border:0 none;box-shadow:0 1px 6px #0000001a}.p-tieredmenu .p-tieredmenu-root-list{outline:0 none}.p-tieredmenu .p-submenu-list{padding:.25rem 0;background:#ffffff;border:0 none;box-shadow:0 1px 6px #0000001a}.p-tieredmenu .p-menuitem>.p-menuitem-content{color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-tieredmenu .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#495057;padding:.75rem 1rem;-webkit-user-select:none;user-select:none}.p-tieredmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-tieredmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6c757d;margin-right:.5rem}.p-tieredmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-tieredmenu .p-menuitem.p-highlight>.p-menuitem-content{color:#495057;background:#e9ecef}.p-tieredmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-tieredmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-tieredmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-tieredmenu .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#e9ecef}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#495057;background:#f8f9fa}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#495057}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#495057;background:#e9ecef}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#495057}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-tieredmenu .p-menuitem-separator{border-top:1px solid #dee2e6;margin:.25rem 0}.p-tieredmenu .p-submenu-icon{font-size:.875rem}.p-inline-message{padding:.5rem;margin:0;border-radius:3px}.p-inline-message.p-inline-message-info{background:rgba(219,234,254,.7);border:solid #3b82f6;border-width:1px;color:#3b82f6}.p-inline-message.p-inline-message-info .p-inline-message-icon{color:#3b82f6}.p-inline-message.p-inline-message-success{background:rgba(228,248,240,.7);border:0 none;border-width:1px;color:#1ea97c}.p-inline-message.p-inline-message-success .p-inline-message-icon{color:#1ea97c}.p-inline-message.p-inline-message-warn{background:rgba(255,242,226,.7);border:0 none;border-width:1px;color:#cc8925}.p-inline-message.p-inline-message-warn .p-inline-message-icon{color:#cc8925}.p-inline-message.p-inline-message-error{background:rgba(255,231,230,.7);border:0 none;border-width:1px;color:#ff5757}.p-inline-message.p-inline-message-error .p-inline-message-icon{color:#ff5757}.p-inline-message .p-inline-message-icon{font-size:1rem;margin-right:.5rem}.p-inline-message .p-inline-message-text{font-size:1rem}.p-inline-message.p-inline-message-icon-only .p-inline-message-icon{margin-right:0}.p-message{margin:1rem 0;border-radius:3px}.p-message .p-message-wrapper{padding:1rem 1.5rem}.p-message .p-message-close{width:2rem;height:2rem;border-radius:50%;background:transparent;transition:background-color .2s,color .2s,box-shadow .2s}.p-message .p-message-close:hover{background:rgba(255,255,255,.3)}.p-message .p-message-close:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-message.p-message-info{background:rgba(219,234,254,.7);border:solid #3b82f6;border-width:0 0 0 4px;color:#3b82f6}.p-message.p-message-info .p-message-icon,.p-message.p-message-info .p-message-close{color:#3b82f6}.p-message.p-message-success{background:rgba(228,248,240,.7);border:0 none;border-width:0 0 0 4px;color:#1ea97c}.p-message.p-message-success .p-message-icon,.p-message.p-message-success .p-message-close{color:#1ea97c}.p-message.p-message-warn{background:rgba(255,242,226,.7);border:0 none;border-width:0 0 0 4px;color:#cc8925}.p-message.p-message-warn .p-message-icon,.p-message.p-message-warn .p-message-close{color:#cc8925}.p-message.p-message-error{background:rgba(255,231,230,.7);border:0 none;border-width:0 0 0 4px;color:#ff5757}.p-message.p-message-error .p-message-icon,.p-message.p-message-error .p-message-close{color:#ff5757}.p-message .p-message-text{font-size:1rem;font-weight:500}.p-message .p-message-icon{font-size:1.5rem;margin-right:.5rem}.p-toast{opacity:.9}.p-toast .p-toast-message{margin:0 0 1rem;box-shadow:0 3px 14px #0000004d;border-radius:3px}.p-toast .p-toast-message .p-toast-message-content{padding:1rem;border-width:0 0 0 4px}.p-toast .p-toast-message .p-toast-message-content .p-toast-message-text{margin:0 0 0 1rem}.p-toast .p-toast-message .p-toast-message-content .p-toast-message-icon{font-size:2rem}.p-toast .p-toast-message .p-toast-message-content .p-toast-summary{font-weight:700}.p-toast .p-toast-message .p-toast-message-content .p-toast-detail{margin:.5rem 0 0}.p-toast .p-toast-message .p-toast-icon-close{width:2rem;height:2rem;border-radius:50%;background:transparent;transition:background-color .2s,color .2s,box-shadow .2s}.p-toast .p-toast-message .p-toast-icon-close:hover{background:rgba(255,255,255,.3)}.p-toast .p-toast-message .p-toast-icon-close:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-toast .p-toast-message.p-toast-message-info{background:rgba(219,234,254,.7);border:solid #3b82f6;border-width:0 0 0 4px;color:#3b82f6}.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close{color:#3b82f6}.p-toast .p-toast-message.p-toast-message-success{background:rgba(228,248,240,.7);border:0 none;border-width:0 0 0 4px;color:#1ea97c}.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close{color:#1ea97c}.p-toast .p-toast-message.p-toast-message-warn{background:rgba(255,242,226,.7);border:0 none;border-width:0 0 0 4px;color:#cc8925}.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close{color:#cc8925}.p-toast .p-toast-message.p-toast-message-error{background:rgba(255,231,230,.7);border:0 none;border-width:0 0 0 4px;color:#ff5757}.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close{color:#ff5757}.p-galleria .p-galleria-close{margin:.5rem;background:transparent;color:#ebedef;width:4rem;height:4rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:50%}.p-galleria .p-galleria-close .p-galleria-close-icon{font-size:2rem}.p-galleria .p-galleria-close:hover{background:rgba(255,255,255,.1);color:#ebedef}.p-galleria .p-galleria-item-nav{background:rgba(0,0,0,.2);color:#aeb6bf;width:4rem;height:4rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:3px;margin:.5rem 0}.p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon,.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon{font-size:2rem}.p-galleria .p-galleria-item-nav:not(.p-disabled):hover{background:rgba(0,0,0,.3);color:#ebedef}.p-galleria .p-galleria-caption{background:rgba(0,0,0,.5);color:#ebedef;padding:1rem}.p-galleria .p-galleria-indicators{padding:1rem}.p-galleria .p-galleria-indicators .p-galleria-indicator button{background-color:#e9ecef;width:1rem;height:1rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:50%}.p-galleria .p-galleria-indicators .p-galleria-indicator button:hover{background:#dee2e6}.p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button{background:#006CB8;color:#fff}.p-galleria.p-galleria-indicators-bottom .p-galleria-indicator,.p-galleria.p-galleria-indicators-top .p-galleria-indicator{margin-right:.5rem}.p-galleria.p-galleria-indicators-left .p-galleria-indicator,.p-galleria.p-galleria-indicators-right .p-galleria-indicator{margin-bottom:.5rem}.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators{background:rgba(0,0,0,.5)}.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator button{background:rgba(255,255,255,.4)}.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator button:hover{background:rgba(255,255,255,.6)}.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button{background:#006CB8;color:#fff}.p-galleria .p-galleria-thumbnail-container{background:rgba(0,0,0,.9);padding:1rem .25rem}.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev,.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next{margin:.5rem;background-color:transparent;color:#aeb6bf;width:2rem;height:2rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:50%}.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover,.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover{background:rgba(255,255,255,.1);color:#aeb6bf}.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-item-content:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-galleria-mask,.p-image-mask{--maskbg: rgba(0, 0, 0, .9)}.p-image-preview-indicator{background-color:transparent;color:#f8f9fa;transition:background-color .2s,color .2s,box-shadow .2s}.p-image-preview-container:hover>.p-image-preview-indicator{background-color:#00000080}.p-image-toolbar{padding:1rem}.p-image-action.p-link{color:#f8f9fa;background-color:transparent;width:3rem;height:3rem;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s;margin-right:.5rem}.p-image-action.p-link:last-child{margin-right:0}.p-image-action.p-link:hover{color:#f8f9fa;background-color:#ffffff1a}.p-image-action.p-link i{font-size:1.5rem}.p-avatar{background-color:#dee2e6;border-radius:3px}.p-avatar.p-avatar-lg{width:3rem;height:3rem;font-size:1.5rem}.p-avatar.p-avatar-lg .p-avatar-icon{font-size:1.5rem}.p-avatar.p-avatar-xl{width:4rem;height:4rem;font-size:2rem}.p-avatar.p-avatar-xl .p-avatar-icon{font-size:2rem}.p-avatar-group .p-avatar{border:2px solid #ffffff}.p-badge{background:#006CB8;color:#fff;font-size:.75rem;font-weight:700;min-width:1.5rem;height:1.5rem;line-height:1.5rem}.p-badge.p-badge-secondary{background-color:#607d8b;color:#fff}.p-badge.p-badge-success{background-color:#4caf50;color:#fff}.p-badge.p-badge-info{background-color:#03a9f4;color:#fff}.p-badge.p-badge-warning{background-color:#ffc107;color:#495057}.p-badge.p-badge-danger{background-color:#f44336;color:#fff}.p-badge.p-badge-lg{font-size:1.125rem;min-width:2.25rem;height:2.25rem;line-height:2.25rem}.p-badge.p-badge-xl{font-size:1.5rem;min-width:3rem;height:3rem;line-height:3rem}.p-chip{background-color:#dee2e6;color:#495057;border-radius:16px;padding:0 .5rem}.p-chip .p-chip-text{line-height:1.5;margin-top:.25rem;margin-bottom:.25rem}.p-chip .p-chip-icon{margin-right:.5rem}.p-chip img{width:2rem;height:2rem;margin-left:-.5rem;margin-right:.5rem}.p-chip .p-chip-remove-icon{margin-left:.5rem;border-radius:3px;transition:background-color .2s,color .2s,box-shadow .2s}.p-chip .p-chip-remove-icon:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-inplace .p-inplace-display{padding:.5rem;border-radius:3px;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-inplace .p-inplace-display:not(.p-disabled):hover{background:#e9ecef;color:#495057}.p-inplace .p-inplace-display:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-progressbar{border:0 none;height:1.5rem;background:#dee2e6;border-radius:3px}.p-progressbar .p-progressbar-value{border:0 none;margin:0;background:#006CB8}.p-progressbar .p-progressbar-label{color:#fff;line-height:1.5rem}.p-progress-spinner-svg{animation:p-progress-spinner-rotate 2s linear infinite}.p-progress-spinner-circle{stroke-dasharray:89,200;stroke-dashoffset:0;stroke:#ff5757;animation:p-progress-spinner-dash 1.5s ease-in-out infinite,p-progress-spinner-color 6s ease-in-out infinite;stroke-linecap:round}@keyframes p-progress-spinner-rotate{to{transform:rotate(360deg)}}@keyframes p-progress-spinner-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}to{stroke-dasharray:89,200;stroke-dashoffset:-124px}}@keyframes p-progress-spinner-color{to,0%{stroke:#ff5757}40%{stroke:#3b82f6}66%{stroke:#1ea97c}80%,90%{stroke:#cc8925}}.p-scrolltop{width:3rem;height:3rem;border-radius:50%;box-shadow:0 3px 6px #0000001a;transition:background-color .2s,color .2s,box-shadow .2s}.p-scrolltop.p-link{background:rgba(0,0,0,.7)}.p-scrolltop.p-link:hover{background:rgba(0,0,0,.8)}.p-scrolltop .p-scrolltop-icon{font-size:1.5rem;color:#f8f9fa}.p-skeleton{background-color:#e9ecef;border-radius:3px}.p-skeleton:after{background:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.4),rgba(255,255,255,0))}.p-tag{background:#006CB8;color:#fff;font-size:.75rem;font-weight:700;padding:.25rem .4rem;border-radius:3px}.p-tag.p-tag-success{background-color:#4caf50;color:#fff}.p-tag.p-tag-info{background-color:#03a9f4;color:#fff}.p-tag.p-tag-warning{background-color:#ffc107;color:#495057}.p-tag.p-tag-danger{background-color:#f44336;color:#fff}.p-tag .p-tag-icon{margin-right:.25rem;font-size:.75rem}.p-terminal{background:#ffffff;color:#495057;border:1px solid #dee2e6;padding:1rem}.p-terminal .p-terminal-input{font-size:1rem;font-family:Source Sans Pro,sans-serif}@font-face{font-family:primeicons;font-display:block;src:url(./primeicons-ce852338.eot);src:url(./primeicons-ce852338.eot?#iefix) format("embedded-opentype"),url(./primeicons-3824be50.woff2) format("woff2"),url(./primeicons-90a58d3a.woff) format("woff"),url(./primeicons-131bc3bf.ttf) format("truetype"),url(./primeicons-5e10f102.svg?#primeicons) format("svg");font-weight:400;font-style:normal}.pi{font-family:primeicons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.pi:before{--webkit-backface-visibility:hidden;backface-visibility:hidden}.pi-fw{width:1.28571429em;text-align:center}.pi-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.pi-eraser:before{content:""}.pi-stopwatch:before{content:""}.pi-verified:before{content:""}.pi-delete-left:before{content:""}.pi-hourglass:before{content:""}.pi-truck:before{content:""}.pi-wrench:before{content:""}.pi-microphone:before{content:""}.pi-megaphone:before{content:""}.pi-arrow-right-arrow-left:before{content:""}.pi-bitcoin:before{content:""}.pi-file-edit:before{content:""}.pi-language:before{content:""}.pi-file-export:before{content:""}.pi-file-import:before{content:""}.pi-file-word:before{content:""}.pi-gift:before{content:""}.pi-cart-plus:before{content:""}.pi-thumbs-down-fill:before{content:""}.pi-thumbs-up-fill:before{content:""}.pi-arrows-alt:before{content:""}.pi-calculator:before{content:""}.pi-sort-alt-slash:before{content:""}.pi-arrows-h:before{content:""}.pi-arrows-v:before{content:""}.pi-pound:before{content:""}.pi-prime:before{content:""}.pi-chart-pie:before{content:""}.pi-reddit:before{content:""}.pi-code:before{content:""}.pi-sync:before{content:""}.pi-shopping-bag:before{content:""}.pi-server:before{content:""}.pi-database:before{content:""}.pi-hashtag:before{content:""}.pi-bookmark-fill:before{content:""}.pi-filter-fill:before{content:""}.pi-heart-fill:before{content:""}.pi-flag-fill:before{content:""}.pi-circle:before{content:""}.pi-circle-fill:before{content:""}.pi-bolt:before{content:""}.pi-history:before{content:""}.pi-box:before{content:""}.pi-at:before{content:""}.pi-arrow-up-right:before{content:""}.pi-arrow-up-left:before{content:""}.pi-arrow-down-left:before{content:""}.pi-arrow-down-right:before{content:""}.pi-telegram:before{content:""}.pi-stop-circle:before{content:""}.pi-stop:before{content:""}.pi-whatsapp:before{content:""}.pi-building:before{content:""}.pi-qrcode:before{content:""}.pi-car:before{content:""}.pi-instagram:before{content:""}.pi-linkedin:before{content:""}.pi-send:before{content:""}.pi-slack:before{content:""}.pi-sun:before{content:""}.pi-moon:before{content:""}.pi-vimeo:before{content:""}.pi-youtube:before{content:""}.pi-flag:before{content:""}.pi-wallet:before{content:""}.pi-map:before{content:""}.pi-link:before{content:""}.pi-credit-card:before{content:""}.pi-discord:before{content:""}.pi-percentage:before{content:""}.pi-euro:before{content:""}.pi-book:before{content:""}.pi-shield:before{content:""}.pi-paypal:before{content:""}.pi-amazon:before{content:""}.pi-phone:before{content:""}.pi-filter-slash:before{content:""}.pi-facebook:before{content:""}.pi-github:before{content:""}.pi-twitter:before{content:""}.pi-step-backward-alt:before{content:""}.pi-step-forward-alt:before{content:""}.pi-forward:before{content:""}.pi-backward:before{content:""}.pi-fast-backward:before{content:""}.pi-fast-forward:before{content:""}.pi-pause:before{content:""}.pi-play:before{content:""}.pi-compass:before{content:""}.pi-id-card:before{content:""}.pi-ticket:before{content:""}.pi-file-o:before{content:""}.pi-reply:before{content:""}.pi-directions-alt:before{content:""}.pi-directions:before{content:""}.pi-thumbs-up:before{content:""}.pi-thumbs-down:before{content:""}.pi-sort-numeric-down-alt:before{content:""}.pi-sort-numeric-up-alt:before{content:""}.pi-sort-alpha-down-alt:before{content:""}.pi-sort-alpha-up-alt:before{content:""}.pi-sort-numeric-down:before{content:""}.pi-sort-numeric-up:before{content:""}.pi-sort-alpha-down:before{content:""}.pi-sort-alpha-up:before{content:""}.pi-sort-alt:before{content:""}.pi-sort-amount-up:before{content:""}.pi-sort-amount-down:before{content:""}.pi-sort-amount-down-alt:before{content:""}.pi-sort-amount-up-alt:before{content:""}.pi-palette:before{content:""}.pi-undo:before{content:""}.pi-desktop:before{content:""}.pi-sliders-v:before{content:""}.pi-sliders-h:before{content:""}.pi-search-plus:before{content:""}.pi-search-minus:before{content:""}.pi-file-excel:before{content:""}.pi-file-pdf:before{content:""}.pi-check-square:before{content:""}.pi-chart-line:before{content:""}.pi-user-edit:before{content:""}.pi-exclamation-circle:before{content:""}.pi-android:before{content:""}.pi-google:before{content:""}.pi-apple:before{content:""}.pi-microsoft:before{content:""}.pi-heart:before{content:""}.pi-mobile:before{content:""}.pi-tablet:before{content:""}.pi-key:before{content:""}.pi-shopping-cart:before{content:""}.pi-comments:before{content:""}.pi-comment:before{content:""}.pi-briefcase:before{content:""}.pi-bell:before{content:""}.pi-paperclip:before{content:""}.pi-share-alt:before{content:""}.pi-envelope:before{content:""}.pi-volume-down:before{content:""}.pi-volume-up:before{content:""}.pi-volume-off:before{content:""}.pi-eject:before{content:""}.pi-money-bill:before{content:""}.pi-images:before{content:""}.pi-image:before{content:""}.pi-sign-in:before{content:""}.pi-sign-out:before{content:""}.pi-wifi:before{content:""}.pi-sitemap:before{content:""}.pi-chart-bar:before{content:""}.pi-camera:before{content:""}.pi-dollar:before{content:""}.pi-lock-open:before{content:""}.pi-table:before{content:""}.pi-map-marker:before{content:""}.pi-list:before{content:""}.pi-eye-slash:before{content:""}.pi-eye:before{content:""}.pi-folder-open:before{content:""}.pi-folder:before{content:""}.pi-video:before{content:""}.pi-inbox:before{content:""}.pi-lock:before{content:""}.pi-unlock:before{content:""}.pi-tags:before{content:""}.pi-tag:before{content:""}.pi-power-off:before{content:""}.pi-save:before{content:""}.pi-question-circle:before{content:""}.pi-question:before{content:""}.pi-copy:before{content:""}.pi-file:before{content:""}.pi-clone:before{content:""}.pi-calendar-times:before{content:""}.pi-calendar-minus:before{content:""}.pi-calendar-plus:before{content:""}.pi-ellipsis-v:before{content:""}.pi-ellipsis-h:before{content:""}.pi-bookmark:before{content:""}.pi-globe:before{content:""}.pi-replay:before{content:""}.pi-filter:before{content:""}.pi-print:before{content:""}.pi-align-right:before{content:""}.pi-align-left:before{content:""}.pi-align-center:before{content:""}.pi-align-justify:before{content:""}.pi-cog:before{content:""}.pi-cloud-download:before{content:""}.pi-cloud-upload:before{content:""}.pi-cloud:before{content:""}.pi-pencil:before{content:""}.pi-users:before{content:""}.pi-clock:before{content:""}.pi-user-minus:before{content:""}.pi-user-plus:before{content:""}.pi-trash:before{content:""}.pi-external-link:before{content:""}.pi-window-maximize:before{content:""}.pi-window-minimize:before{content:""}.pi-refresh:before{content:""}.pi-user:before{content:""}.pi-exclamation-triangle:before{content:""}.pi-calendar:before{content:""}.pi-chevron-circle-left:before{content:""}.pi-chevron-circle-down:before{content:""}.pi-chevron-circle-right:before{content:""}.pi-chevron-circle-up:before{content:""}.pi-angle-double-down:before{content:""}.pi-angle-double-left:before{content:""}.pi-angle-double-right:before{content:""}.pi-angle-double-up:before{content:""}.pi-angle-down:before{content:""}.pi-angle-left:before{content:""}.pi-angle-right:before{content:""}.pi-angle-up:before{content:""}.pi-upload:before{content:""}.pi-download:before{content:""}.pi-ban:before{content:""}.pi-star-fill:before{content:""}.pi-star:before{content:""}.pi-chevron-left:before{content:""}.pi-chevron-right:before{content:""}.pi-chevron-down:before{content:""}.pi-chevron-up:before{content:""}.pi-caret-left:before{content:""}.pi-caret-right:before{content:""}.pi-caret-down:before{content:""}.pi-caret-up:before{content:""}.pi-search:before{content:""}.pi-check:before{content:""}.pi-check-circle:before{content:""}.pi-times:before{content:""}.pi-times-circle:before{content:""}.pi-plus:before{content:""}.pi-plus-circle:before{content:""}.pi-minus:before{content:""}.pi-minus-circle:before{content:""}.pi-circle-on:before{content:""}.pi-circle-off:before{content:""}.pi-sort-down:before{content:""}.pi-sort-up:before{content:""}.pi-sort:before{content:""}.pi-step-backward:before{content:""}.pi-step-forward:before{content:""}.pi-th-large:before{content:""}.pi-arrow-down:before{content:""}.pi-arrow-left:before{content:""}.pi-arrow-right:before{content:""}.pi-arrow-up:before{content:""}.pi-bars:before{content:""}.pi-arrow-circle-down:before{content:""}.pi-arrow-circle-left:before{content:""}.pi-arrow-circle-right:before{content:""}.pi-arrow-circle-up:before{content:""}.pi-info:before{content:""}.pi-info-circle:before{content:""}.pi-home:before{content:""}.pi-spinner:before{content:""} +[data-v-ddd0cefd] .p-datatable-header{background:blue}nav[data-v-d3c2f2c9]{padding:10px;text-align:center}.brand-logo[data-v-d3c2f2c9]{position:relative;z-index:10;float:left;display:block;width:12em;height:3em;margin-right:.7em;text-indent:-9999px;background:url(./logo_uid_stanfordmedicine-65a2822b.svg) no-repeat;background-position:-11px -1px;background-position:-.7857142857rem -.0714285714rem;background-size:auto 111%;border-right:1px solid;border-right:.0714285714rem solid;border-right-color:#000}.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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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;-moz-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{backface-visibility:visible;animation:flip .15s linear}.flipup{backface-visibility:visible;animation:flipup .15s linear}.flipleft{backface-visibility:visible;animation:flipleft .15s linear}.flipright{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}:root{--surface-a:#ffffff;--surface-b:#f8f9fa;--surface-c:#e9ecef;--surface-d:#dee2e6;--surface-e:#ffffff;--surface-f:#ffffff;--text-color:#495057;--text-color-secondary:#6c757d;--primary-color: #006CB8;--primary-color-text:#ffffff;--font-family:"Source Sans Pro", sans-serif;--surface-0: #ffffff;--surface-50: #FAFAFA;--surface-100: #F5F5F5;--surface-200: #EEEEEE;--surface-300: #E0E0E0;--surface-400: #BDBDBD;--surface-500: #9E9E9E;--surface-600: #757575;--surface-700: #616161;--surface-800: #424242;--surface-900: #212121;--gray-50: #FAFAFA;--gray-100: #F5F5F5;--gray-200: #EEEEEE;--gray-300: #E0E0E0;--gray-400: #BDBDBD;--gray-500: #9E9E9E;--gray-600: #757575;--gray-700: #616161;--gray-800: #424242;--gray-900: #212121;--content-padding:1rem;--inline-spacing:.5rem;--border-radius:3px;--surface-ground:#f8f9fa;--surface-section:#ffffff;--surface-card:#ffffff;--surface-overlay:#ffffff;--surface-border:#dee2e6;--surface-hover:#e9ecef;--focus-ring: 0 0 0 .2rem #bfd1f6;--maskbg: rgba(0, 0, 0, .4);--highlight-bg: #006CB8;--highlight-text-color: #ffffff;color-scheme:light;--stanford-foreground-text-color:#333;--stanford-link-color:#006CB8;--stanford-link-hover-color:#E98300;--stanford-active-tab-color:#B1040E;--stanford-badge-bg-color-1:white;--stanford-badge-bg-color-2:white;--stanford-badge-bg-color-3:white;--stanford-badge-fg-text-color:#333;--stanford-page-bg-color:#f9f6ef;--stanford-lightest-contrast:#f1f1f1;--stanford-dashboard-card-bg-color:white}body{font-family:Source Sans Pro,sans-serif}a{text-decoration:none;color:var(--stanford-link-color)}a:hover{color:var(--stanford-link-hover-color)}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:400;src:url(./SourceSansPro-Regular-a4c07a3a.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-style:italic;font-weight:400;src:url(./SourceSansPro-Italic-bd77181e.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:700;src:url(./SourceSansPro-Bold-f205fb64.ttf) format("truetype")}*{box-sizing:border-box}.p-component{font-family:Source Sans Pro,sans-serif;font-size:1rem;font-weight:400}.p-component-overlay{background-color:#0006;transition-duration:.2s}.p-disabled,.p-component:disabled{opacity:.8}.p-error{color:#e4677e}.p-text-secondary{color:#6c757d}.pi{font-size:1rem}.p-link{font-size:1rem;font-family:Source Sans Pro,sans-serif;border-radius:3px}.p-link:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-component-overlay-enter{animation:p-component-overlay-enter-animation .15s forwards}.p-component-overlay-leave{animation:p-component-overlay-leave-animation .15s forwards}@keyframes p-component-overlay-enter-animation{0%{background-color:transparent}to{background-color:var(--maskbg)}}@keyframes p-component-overlay-leave-animation{0%{background-color:var(--maskbg)}to{background-color:transparent}}:root{--blue-50:#f4fafe;--blue-100:#cae6fc;--blue-200:#a0d2fa;--blue-300:#75bef8;--blue-400:#4baaf5;--blue-500:#2196f3;--blue-600:#1c80cf;--blue-700:#1769aa;--blue-800:#125386;--blue-900:#0d3c61;--green-50:#f6fbf6;--green-100:#d4ecd5;--green-200:#b2ddb4;--green-300:#90cd93;--green-400:#6ebe71;--green-500:#4caf50;--green-600:#419544;--green-700:#357b38;--green-800:#2a602c;--green-900:#1e4620;--yellow-50:#fffcf5;--yellow-100:#fef0cd;--yellow-200:#fde4a5;--yellow-300:#fdd87d;--yellow-400:#fccc55;--yellow-500:#fbc02d;--yellow-600:#d5a326;--yellow-700:#b08620;--yellow-800:#8a6a19;--yellow-900:#644d12;--cyan-50:#f2fcfd;--cyan-100:#c2eff5;--cyan-200:#91e2ed;--cyan-300:#61d5e4;--cyan-400:#30c9dc;--cyan-500:#00bcd4;--cyan-600:#00a0b4;--cyan-700:#008494;--cyan-800:#006775;--cyan-900:#004b55;--pink-50:#fef4f7;--pink-100:#fac9da;--pink-200:#f69ebc;--pink-300:#f1749e;--pink-400:#ed4981;--pink-500:#e91e63;--pink-600:#c61a54;--pink-700:#a31545;--pink-800:#801136;--pink-900:#5d0c28;--indigo-50:#f5f6fb;--indigo-100:#d1d5ed;--indigo-200:#acb4df;--indigo-300:#8893d1;--indigo-400:#6372c3;--indigo-500:#3f51b5;--indigo-600:#36459a;--indigo-700:#2c397f;--indigo-800:#232d64;--indigo-900:#192048;--teal-50:#f2faf9;--teal-100:#c2e6e2;--teal-200:#91d2cc;--teal-300:#61beb5;--teal-400:#30aa9f;--teal-500:#009688;--teal-600:#008074;--teal-700:#00695f;--teal-800:#00534b;--teal-900:#003c36;--orange-50:#fff8f2;--orange-100:#fde0c2;--orange-200:#fbc791;--orange-300:#f9ae61;--orange-400:#f79530;--orange-500:#f57c00;--orange-600:#d06900;--orange-700:#ac5700;--orange-800:#874400;--orange-900:#623200;--bluegray-50:#f7f9f9;--bluegray-100:#d9e0e3;--bluegray-200:#bbc7cd;--bluegray-300:#9caeb7;--bluegray-400:#7e96a1;--bluegray-500:#607d8b;--bluegray-600:#526a76;--bluegray-700:#435861;--bluegray-800:#35454c;--bluegray-900:#263238;--purple-50:#faf4fb;--purple-100:#e7cbec;--purple-200:#d4a2dd;--purple-300:#c279ce;--purple-400:#af50bf;--purple-500:#9c27b0;--purple-600:#852196;--purple-700:#6d1b7b;--purple-800:#561561;--purple-900:#3e1046;--red-50:#fff5f5;--red-100:#ffd1ce;--red-200:#ffada7;--red-300:#ff8980;--red-400:#ff6459;--red-500:#ff4032;--red-600:#d9362b;--red-700:#b32d23;--red-800:#8c231c;--red-900:#661a14;--primary-50:#f2f8fb;--primary-100:#c2dcee;--primary-200:#91c0e0;--primary-300:#61a4d3;--primary-400:#3088c5;--primary-500:#006cb8;--primary-600:#005c9c;--primary-700:#004c81;--primary-800:#003b65;--primary-900:#002b4a}.p-autocomplete .p-autocomplete-loader{right:.5rem}.p-autocomplete.p-autocomplete-dd .p-autocomplete-loader{right:2.25rem}.p-autocomplete:not(.p-disabled):hover .p-autocomplete-multiple-container{border-color:#006cb8}.p-autocomplete:not(.p-disabled).p-focus .p-autocomplete-multiple-container{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-autocomplete .p-autocomplete-multiple-container{padding:.25rem .5rem;gap:.5rem}.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-input-token{padding:.25rem 0}.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-input-token input{font-family:Source Sans Pro,sans-serif;font-size:1rem;color:#495057;padding:0;margin:0}.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token{padding:.25rem .5rem;background:#dee2e6;color:#495057;border-radius:16px}.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon{margin-left:.5rem}.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token.p-focus{background:#dee2e6;color:#495057}.p-autocomplete.p-invalid.p-component>.p-inputtext{border-color:#ced4da #ced4da #ced4da #e4677e}.p-autocomplete-panel{background:#ffffff;color:#495057;border:0 none;border-radius:3px;box-shadow:0 3px 6px #0000001a}.p-autocomplete-panel .p-autocomplete-items{padding:.5rem 0}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item{margin:0;padding:.5rem 1rem;border:0 none;color:#495057;background:transparent;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight{color:#fff;background:#006CB8}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight.p-focus{background:rgba(0,108,184,.24)}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:not(.p-highlight):not(.p-disabled).p-focus{color:#495057;background:#f8f9fa}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:not(.p-highlight):not(.p-disabled):hover{color:#495057;background:#e9ecef}.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item-group{margin:0;padding:.75rem 1rem;color:#495057;background:#ffffff;font-weight:600}.p-calendar.p-invalid.p-component>.p-inputtext{border-color:#ced4da #ced4da #ced4da #e4677e}.p-datepicker{padding:.5rem;background:#ffffff;color:#495057;border:1px solid #ced4da;border-radius:3px}.p-datepicker:not(.p-datepicker-inline){background:#ffffff;border:0 none;box-shadow:0 3px 6px #0000001a}.p-datepicker:not(.p-datepicker-inline) .p-datepicker-header{background:#ffffff}.p-datepicker .p-datepicker-header{padding:.5rem;color:#495057;background:#ffffff;font-weight:600;margin:0;border-bottom:1px solid #dee2e6;border-top-right-radius:3px;border-top-left-radius:3px}.p-datepicker .p-datepicker-header .p-datepicker-prev,.p-datepicker .p-datepicker-header .p-datepicker-next{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover,.p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-datepicker .p-datepicker-header .p-datepicker-prev:focus,.p-datepicker .p-datepicker-header .p-datepicker-next:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-datepicker .p-datepicker-header .p-datepicker-title{line-height:2rem}.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year,.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month{color:#495057;transition:background-color .2s,color .2s,box-shadow .2s;font-weight:600;padding:.5rem}.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover,.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover{color:#006cb8}.p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month{margin-right:.5rem}.p-datepicker table{font-size:1rem;margin:.5rem 0}.p-datepicker table th{padding:.5rem}.p-datepicker table th>span{width:2.5rem;height:2.5rem}.p-datepicker table td{padding:.5rem}.p-datepicker table td>span{width:2.5rem;height:2.5rem;border-radius:50%;transition:background-color .2s,border-color .2s,box-shadow .2s;border:1px solid transparent}.p-datepicker table td>span.p-highlight{color:#fff;background:#006CB8}.p-datepicker table td>span:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-datepicker table td.p-datepicker-today>span{background:#ced4da;color:#495057;border-color:transparent}.p-datepicker table td.p-datepicker-today>span.p-highlight{color:#fff;background:#006CB8}.p-datepicker .p-datepicker-buttonbar{padding:1rem 0;border-top:1px solid #dee2e6}.p-datepicker .p-datepicker-buttonbar .p-button{width:auto}.p-datepicker .p-timepicker{border-top:1px solid #dee2e6;padding:.5rem}.p-datepicker .p-timepicker button{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-datepicker .p-timepicker button:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-datepicker .p-timepicker button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-datepicker .p-timepicker button:last-child{margin-top:.2em}.p-datepicker .p-timepicker span{font-size:1.286rem}.p-datepicker .p-timepicker>div{padding:0 .429rem}.p-datepicker.p-datepicker-timeonly .p-timepicker{border-top:0 none}.p-datepicker .p-monthpicker{margin:.5rem 0}.p-datepicker .p-monthpicker .p-monthpicker-month{padding:.5rem;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight{color:#fff;background:#006CB8}.p-datepicker .p-yearpicker{margin:.5rem 0}.p-datepicker .p-yearpicker .p-yearpicker-year{padding:.5rem;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-datepicker .p-yearpicker .p-yearpicker-year.p-highlight{color:#fff;background:#006CB8}.p-datepicker.p-datepicker-multiple-month .p-datepicker-group{border-left:1px solid #dee2e6;padding-right:.5rem;padding-left:.5rem;padding-top:0;padding-bottom:0}.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:first-child{padding-left:0;border-left:0 none}.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child{padding-right:0}.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover{background:#e9ecef}.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):not(.p-highlight):hover{background:#e9ecef}.p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):not(.p-highlight):hover{background:#e9ecef}.p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}@media screen and (max-width: 769px){.p-datepicker table th,.p-datepicker table td{padding:0}}.p-cascadeselect{background:#ffffff;border:1px solid #ced4da;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-cascadeselect:not(.p-disabled):hover{border-color:#006cb8}.p-cascadeselect:not(.p-disabled).p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-cascadeselect .p-cascadeselect-label{background:transparent;border:0 none;padding:.5rem}.p-cascadeselect .p-cascadeselect-label.p-placeholder{color:#6c757d}.p-cascadeselect .p-cascadeselect-label:enabled:focus{outline:0 none;box-shadow:none}.p-cascadeselect .p-cascadeselect-trigger{background:transparent;color:#495057;width:2.357rem;border-top-right-radius:3px;border-bottom-right-radius:3px}.p-cascadeselect.p-invalid.p-component{border-color:#ced4da #ced4da #ced4da #e4677e}.p-cascadeselect-panel{background:#ffffff;color:#495057;border:0 none;border-radius:3px;box-shadow:0 3px 6px #0000001a}.p-cascadeselect-panel .p-cascadeselect-items{padding:.5rem 0}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item{margin:0;border:0 none;color:#495057;background:transparent;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item.p-highlight{color:#fff;background:#006CB8}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item.p-highlight.p-focus{background:rgba(0,108,184,.24)}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled).p-focus{color:#495057;background:#f8f9fa}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled):hover{color:#495057;background:#e9ecef}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-item-content{padding:.5rem 1rem}.p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon{font-size:.875rem}.p-input-filled .p-cascadeselect{background:#f8f9fa}.p-input-filled .p-cascadeselect:not(.p-disabled):hover{background-color:#f8f9fa}.p-input-filled .p-cascadeselect:not(.p-disabled).p-focus{background-color:#f8f9fa}.p-checkbox{width:20px;height:20px}.p-checkbox .p-checkbox-box{border:2px solid #ced4da;background:#ffffff;width:20px;height:20px;color:#495057;border-radius:3px;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-checkbox .p-checkbox-box .p-checkbox-icon{transition-duration:.2s;color:#fff;font-size:14px}.p-checkbox .p-checkbox-box.p-highlight{border-color:#006cb8;background:#006CB8}.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover{border-color:#006cb8}.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover{border-color:#00548f;background:#00548f;color:#fff}.p-checkbox.p-invalid>.p-checkbox-box{border-color:#ced4da #ced4da #ced4da #e4677e}.p-input-filled .p-checkbox .p-checkbox-box{background-color:#f8f9fa}.p-input-filled .p-checkbox .p-checkbox-box.p-highlight{background:#006CB8}.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box:hover{background-color:#f8f9fa}.p-input-filled .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover{background:#00548f}.p-highlight .p-checkbox .p-checkbox-box{border-color:#fff}.p-chips:not(.p-disabled):hover .p-chips-multiple-container{border-color:#006cb8}.p-chips:not(.p-disabled).p-focus .p-chips-multiple-container{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-chips .p-chips-multiple-container{padding:.25rem .5rem}.p-chips .p-chips-multiple-container .p-chips-token{padding:.25rem .5rem;margin-right:.5rem;background:#dee2e6;color:#495057;border-radius:16px}.p-chips .p-chips-multiple-container .p-chips-token.p-focus{background:#dee2e6;color:#495057}.p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon{margin-left:.5rem}.p-chips .p-chips-multiple-container .p-chips-input-token{padding:.25rem 0}.p-chips .p-chips-multiple-container .p-chips-input-token input{font-family:Source Sans Pro,sans-serif;font-size:1rem;color:#495057;padding:0;margin:0}.p-chips.p-invalid.p-component>.p-inputtext{border-color:#ced4da #ced4da #ced4da #e4677e}.p-colorpicker-preview{width:2rem;height:2rem}.p-colorpicker-panel{background:#323232;border:1px solid #191919}.p-colorpicker-panel .p-colorpicker-color-handle,.p-colorpicker-panel .p-colorpicker-hue-handle{border-color:#fff}.p-colorpicker-overlay-panel{box-shadow:0 3px 6px #0000001a}.p-dropdown{background:#ffffff;border:1px solid #ced4da;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-dropdown:not(.p-disabled):hover{border-color:#006cb8}.p-dropdown:not(.p-disabled).p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-dropdown.p-dropdown-clearable .p-dropdown-label{padding-right:1.5rem}.p-dropdown .p-dropdown-label{background:transparent;border:0 none}.p-dropdown .p-dropdown-label.p-placeholder{color:#6c757d}.p-dropdown .p-dropdown-label:focus,.p-dropdown .p-dropdown-label:enabled:focus{outline:0 none;box-shadow:none}.p-dropdown .p-dropdown-trigger{background:transparent;color:#495057;width:2.357rem;border-top-right-radius:3px;border-bottom-right-radius:3px}.p-dropdown .p-dropdown-clear-icon{color:#495057;right:2.357rem}.p-dropdown.p-invalid.p-component{border-color:#ced4da #ced4da #ced4da #e4677e}.p-dropdown-panel{background:#ffffff;color:#495057;border:0 none;border-radius:3px;box-shadow:0 3px 6px #0000001a}.p-dropdown-panel .p-dropdown-header{padding:.5rem 1rem;border-bottom:0 none;color:#495057;background:#f8f9fa;margin:0;border-top-right-radius:3px;border-top-left-radius:3px}.p-dropdown-panel .p-dropdown-header .p-dropdown-filter{padding-right:1.5rem;margin-right:-1.5rem}.p-dropdown-panel .p-dropdown-header .p-dropdown-filter-icon{right:.5rem;color:#495057}.p-dropdown-panel .p-dropdown-items{padding:.5rem 0}.p-dropdown-panel .p-dropdown-items .p-dropdown-item{margin:0;padding:.5rem 1rem;border:0 none;color:#495057;background:transparent;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight{color:#fff;background:#006CB8}.p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight.p-focus{background:rgba(0,108,184,.24)}.p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled).p-focus{color:#495057;background:#f8f9fa}.p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover{color:#495057;background:#e9ecef}.p-dropdown-panel .p-dropdown-items .p-dropdown-item-group{margin:0;padding:.75rem 1rem;color:#495057;background:#ffffff;font-weight:600}.p-dropdown-panel .p-dropdown-items .p-dropdown-empty-message{padding:.5rem 1rem;color:#495057;background:transparent}.p-input-filled .p-dropdown{background:#f8f9fa}.p-input-filled .p-dropdown:not(.p-disabled):hover{background-color:#f8f9fa}.p-input-filled .p-dropdown:not(.p-disabled).p-focus{background-color:#f8f9fa}.p-input-filled .p-dropdown:not(.p-disabled).p-focus .p-inputtext{background-color:transparent}.p-editor-container .p-editor-toolbar{background:#f8f9fa;border-top-right-radius:3px;border-top-left-radius:3px}.p-editor-container .p-editor-toolbar.ql-snow{border:1px solid #dee2e6}.p-editor-container .p-editor-toolbar.ql-snow .ql-stroke{stroke:#6c757d}.p-editor-container .p-editor-toolbar.ql-snow .ql-fill{fill:#6c757d}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label{border:0 none;color:#6c757d}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover{color:#495057}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover .ql-stroke{stroke:#495057}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover .ql-fill{fill:#495057}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label{color:#495057}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#495057}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#495057}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{background:#ffffff;border:0 none;box-shadow:0 3px 6px #0000001a;border-radius:3px;padding:.5rem 0}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item{color:#495057}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item:hover{color:#495057;background:#e9ecef}.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded:not(.ql-icon-picker) .ql-picker-item{padding:.5rem 1rem}.p-editor-container .p-editor-content{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-editor-container .p-editor-content.ql-snow{border:1px solid #dee2e6}.p-editor-container .p-editor-content .ql-editor{background:#ffffff;color:#495057;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-editor-container .ql-snow.ql-toolbar button:hover,.p-editor-container .ql-snow.ql-toolbar button:focus{color:#495057}.p-editor-container .ql-snow.ql-toolbar button:hover .ql-stroke,.p-editor-container .ql-snow.ql-toolbar button:focus .ql-stroke{stroke:#495057}.p-editor-container .ql-snow.ql-toolbar button:hover .ql-fill,.p-editor-container .ql-snow.ql-toolbar button:focus .ql-fill{fill:#495057}.p-editor-container .ql-snow.ql-toolbar button.ql-active,.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active,.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected{color:#006cb8}.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-stroke,.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke{stroke:#006cb8}.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-fill,.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill{fill:#006cb8}.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-picker-label,.p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-picker-label,.p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-picker-label{color:#006cb8}.p-inputgroup-addon{background:#e9ecef;color:#6c757d;border-top:1px solid #ced4da;border-left:1px solid #ced4da;border-bottom:1px solid #ced4da;padding:.5rem;min-width:2.357rem}.p-inputgroup-addon:last-child{border-right:1px solid #ced4da}.p-inputgroup>.p-component,.p-inputgroup>.p-inputwrapper>.p-inputtext,.p-inputgroup>.p-float-label>.p-component{border-radius:0;margin:0}.p-inputgroup>.p-component+.p-inputgroup-addon,.p-inputgroup>.p-inputwrapper>.p-inputtext+.p-inputgroup-addon,.p-inputgroup>.p-float-label>.p-component+.p-inputgroup-addon{border-left:0 none}.p-inputgroup>.p-component:focus,.p-inputgroup>.p-inputwrapper>.p-inputtext:focus,.p-inputgroup>.p-float-label>.p-component:focus{z-index:1}.p-inputgroup>.p-component:focus~label,.p-inputgroup>.p-inputwrapper>.p-inputtext:focus~label,.p-inputgroup>.p-float-label>.p-component:focus~label{z-index:1}.p-inputgroup-addon:first-child,.p-inputgroup button:first-child,.p-inputgroup input:first-child,.p-inputgroup>.p-inputwrapper:first-child,.p-inputgroup>.p-inputwrapper:first-child>.p-inputtext{border-top-left-radius:3px;border-bottom-left-radius:3px}.p-inputgroup .p-float-label:first-child input{border-top-left-radius:3px;border-bottom-left-radius:3px}.p-inputgroup-addon:last-child,.p-inputgroup button:last-child,.p-inputgroup input:last-child,.p-inputgroup>.p-inputwrapper:last-child,.p-inputgroup>.p-inputwrapper:last-child>.p-inputtext{border-top-right-radius:3px;border-bottom-right-radius:3px}.p-inputgroup .p-float-label:last-child input{border-top-right-radius:3px;border-bottom-right-radius:3px}.p-fluid .p-inputgroup .p-button{width:auto}.p-fluid .p-inputgroup .p-button.p-button-icon-only{width:1.75rem}.p-inputnumber.p-invalid.p-component>.p-inputtext{border-color:#ced4da #ced4da #ced4da #e4677e}.p-inputswitch{width:3rem;height:1.75rem}.p-inputswitch .p-inputswitch-slider{background:#ced4da;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:30px}.p-inputswitch .p-inputswitch-slider:before{background:#ffffff;width:1.25rem;height:1.25rem;left:.25rem;margin-top:-.625rem;border-radius:50%;transition-duration:.2s}.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider:before{transform:translate(1.25rem)}.p-inputswitch.p-focus .p-inputswitch-slider{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-inputswitch:not(.p-disabled):hover .p-inputswitch-slider{background:#c3cad2}.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider{background:#006CB8}.p-inputswitch.p-inputswitch-checked .p-inputswitch-slider:before{background:#ffffff}.p-inputswitch.p-inputswitch-checked:not(.p-disabled):hover .p-inputswitch-slider{background:#00548f}.p-inputswitch.p-invalid .p-inputswitch-slider{border-color:#ced4da #ced4da #ced4da #e4677e}.p-inputtext{font-family:Source Sans Pro,sans-serif;font-size:.8rem;color:#495057;background:#ffffff;padding:.5rem;border:1px solid #ced4da;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:3px}.p-inputtext:enabled:hover{border-color:#006cb8}.p-inputtext:enabled:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-inputtext.p-invalid.p-component{border-color:#ced4da #ced4da #ced4da #e4677e}.p-inputtext.p-inputtext-sm{font-size:.7rem;padding:.4375rem}.p-inputtext.p-inputtext-lg{font-size:1rem;padding:.625rem}.p-float-label>label{left:.5rem;color:#6c757d;transition-duration:.2s}.p-float-label>.p-invalid+label{color:#ced4da #ced4da #ced4da #e4677e}.p-input-icon-left>i:first-of-type{left:.5rem;color:#495057}.p-input-icon-left>.p-inputtext{padding-left:2rem}.p-input-icon-left.p-float-label>label{left:2rem}.p-input-icon-right>i:last-of-type{right:.5rem;color:#495057}.p-input-icon-right>.p-inputtext{padding-right:2rem}::-webkit-input-placeholder{color:#6c757d}:-moz-placeholder{color:#6c757d}::-moz-placeholder{color:#6c757d}:-ms-input-placeholder{color:#6c757d}.p-input-filled .p-inputtext{background-color:#f8f9fa}.p-input-filled .p-inputtext:enabled:hover{background-color:#f8f9fa}.p-input-filled .p-inputtext:enabled:focus{background-color:#f8f9fa}.p-inputtext-sm .p-inputtext{font-size:.7rem;padding:.4375rem}.p-inputtext-lg .p-inputtext{font-size:1rem;padding:.625rem}.p-listbox{background:#ffffff;color:#495057;border:1px solid #ced4da;border-radius:3px;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-listbox .p-listbox-header{padding:.5rem 1rem;border-bottom:0 none;color:#495057;background:#f8f9fa;margin:0;border-top-right-radius:3px;border-top-left-radius:3px}.p-listbox .p-listbox-header .p-listbox-filter{padding-right:1.5rem}.p-listbox .p-listbox-header .p-listbox-filter-icon{right:.5rem;color:#495057}.p-listbox .p-listbox-list{padding:.5rem 0;outline:0 none}.p-listbox .p-listbox-list .p-listbox-item{margin:0;padding:.5rem 1rem;border:0 none;color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-listbox .p-listbox-list .p-listbox-item.p-highlight{color:#fff;background:#006CB8}.p-listbox .p-listbox-list .p-listbox-item-group{margin:0;padding:.75rem 1rem;color:#495057;background:#ffffff;font-weight:600}.p-listbox .p-listbox-list .p-listbox-empty-message{padding:.5rem 1rem;color:#495057;background:transparent}.p-listbox:not(.p-disabled) .p-listbox-item.p-highlight.p-focus{background:rgba(0,108,184,.24)}.p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled).p-focus{color:#495057;background:#f8f9fa}.p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled):hover{color:#495057;background:#e9ecef}.p-listbox.p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-listbox.p-invalid{border-color:#ced4da #ced4da #ced4da #e4677e}.p-multiselect{background:#ffffff;border:1px solid #ced4da;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-multiselect:not(.p-disabled):hover{border-color:#006cb8}.p-multiselect:not(.p-disabled).p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-multiselect .p-multiselect-label{padding:.5rem;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-multiselect .p-multiselect-label.p-placeholder{color:#6c757d}.p-multiselect.p-multiselect-chip .p-multiselect-token{padding:.25rem .5rem;margin-right:.5rem;background:#dee2e6;color:#495057;border-radius:16px}.p-multiselect.p-multiselect-chip .p-multiselect-token .p-multiselect-token-icon{margin-left:.5rem}.p-multiselect .p-multiselect-trigger{background:transparent;color:#495057;width:2.357rem;border-top-right-radius:3px;border-bottom-right-radius:3px}.p-multiselect.p-invalid.p-component{border-color:#ced4da #ced4da #ced4da #e4677e}.p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label{padding:.25rem .5rem}.p-multiselect-panel{background:#ffffff;color:#495057;border:0 none;border-radius:3px;box-shadow:0 3px 6px #0000001a}.p-multiselect-panel .p-multiselect-header{padding:.5rem 1rem;border-bottom:0 none;color:#495057;background:#f8f9fa;margin:0;border-top-right-radius:3px;border-top-left-radius:3px}.p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext{padding-right:1.5rem}.p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter-icon{right:.5rem;color:#495057}.p-multiselect-panel .p-multiselect-header .p-checkbox{margin-right:.5rem}.p-multiselect-panel .p-multiselect-header .p-multiselect-close{margin-left:.5rem;width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-multiselect-panel .p-multiselect-header .p-multiselect-close:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-multiselect-panel .p-multiselect-header .p-multiselect-close:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-multiselect-panel .p-multiselect-items{padding:.5rem 0}.p-multiselect-panel .p-multiselect-items .p-multiselect-item{margin:0;padding:.5rem 1rem;border:0 none;color:#495057;background:transparent;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight{color:#fff;background:#006CB8}.p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight.p-focus{background:rgba(0,108,184,.24)}.p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled).p-focus{color:#495057;background:#f8f9fa}.p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover{color:#495057;background:#e9ecef}.p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-checkbox{margin-right:.5rem}.p-multiselect-panel .p-multiselect-items .p-multiselect-item-group{margin:0;padding:.75rem 1rem;color:#495057;background:#ffffff;font-weight:600}.p-multiselect-panel .p-multiselect-items .p-multiselect-empty-message{padding:.5rem 1rem;color:#495057;background:transparent}.p-input-filled .p-multiselect{background:#f8f9fa}.p-input-filled .p-multiselect:not(.p-disabled):hover{background-color:#f8f9fa}.p-input-filled .p-multiselect:not(.p-disabled).p-focus{background-color:#f8f9fa}.p-password.p-invalid.p-component>.p-inputtext{border-color:#ced4da #ced4da #ced4da #e4677e}.p-password-panel{padding:1rem;background:#ffffff;color:#495057;border:0 none;box-shadow:0 3px 6px #0000001a;border-radius:3px}.p-password-panel .p-password-meter{margin-bottom:.5rem;background:#dee2e6}.p-password-panel .p-password-meter .p-password-strength.weak{background:#E53935}.p-password-panel .p-password-meter .p-password-strength.medium{background:#FFB300}.p-password-panel .p-password-meter .p-password-strength.strong{background:#43A047}.p-radiobutton{width:20px;height:20px}.p-radiobutton .p-radiobutton-box{border:2px solid #ced4da;background:#ffffff;width:20px;height:20px;color:#495057;border-radius:50%;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-radiobutton .p-radiobutton-box:not(.p-disabled):not(.p-highlight):hover{border-color:#006cb8}.p-radiobutton .p-radiobutton-box:not(.p-disabled).p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-radiobutton .p-radiobutton-box .p-radiobutton-icon{width:12px;height:12px;transition-duration:.2s;background-color:#fff}.p-radiobutton .p-radiobutton-box.p-highlight{border-color:#006cb8;background:#006CB8}.p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover{border-color:#00548f;background:#00548f;color:#fff}.p-radiobutton.p-invalid>.p-radiobutton-box{border-color:#ced4da #ced4da #ced4da #e4677e}.p-radiobutton:focus{outline:0 none}.p-input-filled .p-radiobutton .p-radiobutton-box{background-color:#f8f9fa}.p-input-filled .p-radiobutton .p-radiobutton-box:not(.p-disabled):hover{background-color:#f8f9fa}.p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight{background:#006CB8}.p-input-filled .p-radiobutton .p-radiobutton-box.p-highlight:not(.p-disabled):hover{background:#00548f}.p-highlight .p-radiobutton .p-radiobutton-box{border-color:#fff}.p-rating{gap:.5rem}.p-rating .p-rating-item .p-rating-icon{color:#495057;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;font-size:1.143rem}.p-rating .p-rating-item .p-rating-icon.p-rating-cancel{color:#e74c3c}.p-rating .p-rating-item.p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-rating .p-rating-item.p-rating-item-active .p-rating-icon{color:#006cb8}.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon{color:#006cb8}.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel{color:#c0392b}.p-highlight .p-rating .p-rating-item.p-rating-item-active .p-rating-icon{color:#fff}.p-selectbutton .p-button{background:#ffffff;border:1px solid #ced4da;color:#495057;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-selectbutton .p-button .p-button-icon-left,.p-selectbutton .p-button .p-button-icon-right{color:#6c757d}.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover{background:#e9ecef;border-color:#ced4da;color:#495057}.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left,.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right{color:#6c757d}.p-selectbutton .p-button.p-highlight{background:#006CB8;border-color:#006cb8;color:#fff}.p-selectbutton .p-button.p-highlight .p-button-icon-left,.p-selectbutton .p-button.p-highlight .p-button-icon-right{color:#fff}.p-selectbutton .p-button.p-highlight:hover{background:#00548f;border-color:#00548f;color:#fff}.p-selectbutton .p-button.p-highlight:hover .p-button-icon-left,.p-selectbutton .p-button.p-highlight:hover .p-button-icon-right{color:#fff}.p-selectbutton.p-invalid>.p-button{border-color:#ced4da #ced4da #ced4da #e4677e}.p-slider{background:#dee2e6;border:0 none;border-radius:3px}.p-slider.p-slider-horizontal{height:.286rem}.p-slider.p-slider-horizontal .p-slider-handle{margin-top:-.5715rem;margin-left:-.5715rem}.p-slider.p-slider-vertical{width:.286rem}.p-slider.p-slider-vertical .p-slider-handle{margin-left:-.5715rem;margin-bottom:-.5715rem}.p-slider .p-slider-handle{height:1.143rem;width:1.143rem;background:#ffffff;border:2px solid #006CB8;border-radius:50%;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-slider .p-slider-handle:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-slider .p-slider-range{background:#006CB8}.p-slider:not(.p-disabled) .p-slider-handle:hover{background:#006CB8;border-color:#006cb8}.p-treeselect{background:#ffffff;border:1px solid #ced4da;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-treeselect:not(.p-disabled):hover{border-color:#006cb8}.p-treeselect:not(.p-disabled).p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-treeselect .p-treeselect-label{padding:.5rem;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-treeselect .p-treeselect-label.p-placeholder{color:#6c757d}.p-treeselect.p-treeselect-chip .p-treeselect-token{padding:.25rem .5rem;margin-right:.5rem;background:#dee2e6;color:#495057;border-radius:16px}.p-treeselect .p-treeselect-trigger{background:transparent;color:#495057;width:2.357rem;border-top-right-radius:3px;border-bottom-right-radius:3px}.p-treeselect.p-invalid.p-component{border-color:#ced4da #ced4da #ced4da #e4677e}.p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label{padding:.25rem .5rem}.p-treeselect-panel{background:#ffffff;color:#495057;border:0 none;border-radius:3px;box-shadow:0 3px 6px #0000001a}.p-treeselect-panel .p-treeselect-items-wrapper .p-tree{border:0 none}.p-treeselect-panel .p-treeselect-items-wrapper .p-treeselect-empty-message{padding:.5rem 1rem;color:#495057;background:transparent}.p-input-filled .p-treeselect{background:#f8f9fa}.p-input-filled .p-treeselect:not(.p-disabled):hover{background-color:#f8f9fa}.p-input-filled .p-treeselect:not(.p-disabled).p-focus{background-color:#f8f9fa}.p-togglebutton.p-button{background:#ffffff;border:1px solid #ced4da;color:#495057;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-togglebutton.p-button .p-button-icon-left,.p-togglebutton.p-button .p-button-icon-right{color:#6c757d}.p-togglebutton.p-button:not(.p-disabled).p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;border-color:#006cb8}.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover{background:#e9ecef;border-color:#ced4da;color:#495057}.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left,.p-togglebutton.p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right{color:#6c757d}.p-togglebutton.p-button.p-highlight{background:#006CB8;border-color:#006cb8;color:#fff}.p-togglebutton.p-button.p-highlight .p-button-icon-left,.p-togglebutton.p-button.p-highlight .p-button-icon-right{color:#fff}.p-togglebutton.p-button.p-highlight:hover{background:#00548f;border-color:#00548f;color:#fff}.p-togglebutton.p-button.p-highlight:hover .p-button-icon-left,.p-togglebutton.p-button.p-highlight:hover .p-button-icon-right{color:#fff}.p-togglebutton.p-button.p-invalid>.p-button{border-color:#ced4da #ced4da #ced4da #e4677e}.p-button{color:#fff;background:#006CB8;border:1px solid #006CB8;padding:.5rem 1rem;font-size:1rem;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-button:enabled:hover{background:#00548f;color:#fff;border-color:#00548f}.p-button:enabled:active{background:#00548f;color:#fff;border-color:#00548f}.p-button.p-button-outlined{background-color:transparent;color:#006cb8;border:1px solid}.p-button.p-button-outlined:enabled:hover{background:rgba(0,108,184,.04);color:#006cb8;border:1px solid}.p-button.p-button-outlined:enabled:active{background:rgba(0,108,184,.16);color:#006cb8;border:1px solid}.p-button.p-button-outlined.p-button-plain{color:#6c757d;border-color:#6c757d}.p-button.p-button-outlined.p-button-plain:enabled:hover{background:#e9ecef;color:#6c757d}.p-button.p-button-outlined.p-button-plain:enabled:active{background:#dee2e6;color:#6c757d}.p-button.p-button-text{background-color:transparent;color:#006cb8;border-color:transparent}.p-button.p-button-text:enabled:hover{background:rgba(0,108,184,.04);color:#006cb8;border-color:transparent}.p-button.p-button-text:enabled:active{background:rgba(0,108,184,.16);color:#006cb8;border-color:transparent}.p-button.p-button-text.p-button-plain{color:#6c757d}.p-button.p-button-text.p-button-plain:enabled:hover{background:#e9ecef;color:#6c757d}.p-button.p-button-text.p-button-plain:enabled:active{background:#dee2e6;color:#6c757d}.p-button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-button .p-button-label{transition-duration:.2s}.p-button .p-button-icon-left{margin-right:.5rem}.p-button .p-button-icon-right{margin-left:.5rem}.p-button .p-button-icon-bottom{margin-top:.5rem}.p-button .p-button-icon-top{margin-bottom:.5rem}.p-button .p-badge{margin-left:.5rem;min-width:1rem;height:1rem;line-height:1rem;color:#006cb8;background-color:#fff}.p-button.p-button-raised{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.p-button.p-button-rounded{border-radius:2rem}.p-button.p-button-icon-only{width:1.75rem;padding:.5rem 0}.p-button.p-button-icon-only .p-button-icon-left,.p-button.p-button-icon-only .p-button-icon-right{margin:0}.p-button.p-button-icon-only.p-button-rounded{border-radius:50%;height:1.75rem}.p-button.p-button-sm{font-size:.875rem;padding:.4375rem .875rem}.p-button.p-button-sm .p-button-icon{font-size:.875rem}.p-button.p-button-lg{font-size:1.25rem;padding:.625rem 1.25rem}.p-button.p-button-lg .p-button-icon{font-size:1.25rem}.p-button.p-button-loading-label-only .p-button-label{margin-left:.5rem}.p-button.p-button-loading-label-only .p-button-loading-icon{margin-right:0}.p-fluid .p-button{width:100%}.p-fluid .p-button-icon-only{width:1.75rem}.p-fluid .p-buttonset{display:flex}.p-fluid .p-buttonset .p-button{flex:1}.p-button.p-button-secondary,.p-buttonset.p-button-secondary>.p-button,.p-splitbutton.p-button-secondary>.p-button{color:#fff;background:#607D8B;border:1px solid #607D8B}.p-button.p-button-secondary:enabled:hover,.p-buttonset.p-button-secondary>.p-button:enabled:hover,.p-splitbutton.p-button-secondary>.p-button:enabled:hover{background:#546E7A;color:#fff;border-color:#546e7a}.p-button.p-button-secondary:enabled:focus,.p-buttonset.p-button-secondary>.p-button:enabled:focus,.p-splitbutton.p-button-secondary>.p-button:enabled:focus{box-shadow:0 0 0 .2rem #b0bec5}.p-button.p-button-secondary:enabled:active,.p-buttonset.p-button-secondary>.p-button:enabled:active,.p-splitbutton.p-button-secondary>.p-button:enabled:active{background:#455A64;color:#fff;border-color:#455a64}.p-button.p-button-secondary.p-button-outlined,.p-buttonset.p-button-secondary>.p-button.p-button-outlined,.p-splitbutton.p-button-secondary>.p-button.p-button-outlined{background-color:transparent;color:#607d8b;border:1px solid}.p-button.p-button-secondary.p-button-outlined:enabled:hover,.p-buttonset.p-button-secondary>.p-button.p-button-outlined:enabled:hover,.p-splitbutton.p-button-secondary>.p-button.p-button-outlined:enabled:hover{background:rgba(96,125,139,.04);color:#607d8b;border:1px solid}.p-button.p-button-secondary.p-button-outlined:enabled:active,.p-buttonset.p-button-secondary>.p-button.p-button-outlined:enabled:active,.p-splitbutton.p-button-secondary>.p-button.p-button-outlined:enabled:active{background:rgba(96,125,139,.16);color:#607d8b;border:1px solid}.p-button.p-button-secondary.p-button-text,.p-buttonset.p-button-secondary>.p-button.p-button-text,.p-splitbutton.p-button-secondary>.p-button.p-button-text{background-color:transparent;color:#607d8b;border-color:transparent}.p-button.p-button-secondary.p-button-text:enabled:hover,.p-buttonset.p-button-secondary>.p-button.p-button-text:enabled:hover,.p-splitbutton.p-button-secondary>.p-button.p-button-text:enabled:hover{background:rgba(96,125,139,.04);border-color:transparent;color:#607d8b}.p-button.p-button-secondary.p-button-text:enabled:active,.p-buttonset.p-button-secondary>.p-button.p-button-text:enabled:active,.p-splitbutton.p-button-secondary>.p-button.p-button-text:enabled:active{background:rgba(96,125,139,.16);border-color:transparent;color:#607d8b}.p-button.p-button-info,.p-buttonset.p-button-info>.p-button,.p-splitbutton.p-button-info>.p-button{color:#fff;background:#03A9F4;border:1px solid #03A9F4}.p-button.p-button-info:enabled:hover,.p-buttonset.p-button-info>.p-button:enabled:hover,.p-splitbutton.p-button-info>.p-button:enabled:hover{background:#039BE5;color:#fff;border-color:#039be5}.p-button.p-button-info:enabled:focus,.p-buttonset.p-button-info>.p-button:enabled:focus,.p-splitbutton.p-button-info>.p-button:enabled:focus{box-shadow:0 0 0 .2rem #ace4fe}.p-button.p-button-info:enabled:active,.p-buttonset.p-button-info>.p-button:enabled:active,.p-splitbutton.p-button-info>.p-button:enabled:active{background:#0288D1;color:#fff;border-color:#0288d1}.p-button.p-button-info.p-button-outlined,.p-buttonset.p-button-info>.p-button.p-button-outlined,.p-splitbutton.p-button-info>.p-button.p-button-outlined{background-color:transparent;color:#03a9f4;border:1px solid}.p-button.p-button-info.p-button-outlined:enabled:hover,.p-buttonset.p-button-info>.p-button.p-button-outlined:enabled:hover,.p-splitbutton.p-button-info>.p-button.p-button-outlined:enabled:hover{background:rgba(3,169,244,.04);color:#03a9f4;border:1px solid}.p-button.p-button-info.p-button-outlined:enabled:active,.p-buttonset.p-button-info>.p-button.p-button-outlined:enabled:active,.p-splitbutton.p-button-info>.p-button.p-button-outlined:enabled:active{background:rgba(3,169,244,.16);color:#03a9f4;border:1px solid}.p-button.p-button-info.p-button-text,.p-buttonset.p-button-info>.p-button.p-button-text,.p-splitbutton.p-button-info>.p-button.p-button-text{background-color:transparent;color:#03a9f4;border-color:transparent}.p-button.p-button-info.p-button-text:enabled:hover,.p-buttonset.p-button-info>.p-button.p-button-text:enabled:hover,.p-splitbutton.p-button-info>.p-button.p-button-text:enabled:hover{background:rgba(3,169,244,.04);border-color:transparent;color:#03a9f4}.p-button.p-button-info.p-button-text:enabled:active,.p-buttonset.p-button-info>.p-button.p-button-text:enabled:active,.p-splitbutton.p-button-info>.p-button.p-button-text:enabled:active{background:rgba(3,169,244,.16);border-color:transparent;color:#03a9f4}.p-button.p-button-success,.p-buttonset.p-button-success>.p-button,.p-splitbutton.p-button-success>.p-button{color:#fff;background:#4CAF50;border:1px solid #4CAF50}.p-button.p-button-success:enabled:hover,.p-buttonset.p-button-success>.p-button:enabled:hover,.p-splitbutton.p-button-success>.p-button:enabled:hover{background:#43A047;color:#fff;border-color:#43a047}.p-button.p-button-success:enabled:focus,.p-buttonset.p-button-success>.p-button:enabled:focus,.p-splitbutton.p-button-success>.p-button:enabled:focus{box-shadow:0 0 0 .2rem #c7e7c8}.p-button.p-button-success:enabled:active,.p-buttonset.p-button-success>.p-button:enabled:active,.p-splitbutton.p-button-success>.p-button:enabled:active{background:#388E3C;color:#fff;border-color:#388e3c}.p-button.p-button-success.p-button-outlined,.p-buttonset.p-button-success>.p-button.p-button-outlined,.p-splitbutton.p-button-success>.p-button.p-button-outlined{background-color:transparent;color:#4caf50;border:1px solid}.p-button.p-button-success.p-button-outlined:enabled:hover,.p-buttonset.p-button-success>.p-button.p-button-outlined:enabled:hover,.p-splitbutton.p-button-success>.p-button.p-button-outlined:enabled:hover{background:rgba(76,175,80,.04);color:#4caf50;border:1px solid}.p-button.p-button-success.p-button-outlined:enabled:active,.p-buttonset.p-button-success>.p-button.p-button-outlined:enabled:active,.p-splitbutton.p-button-success>.p-button.p-button-outlined:enabled:active{background:rgba(76,175,80,.16);color:#4caf50;border:1px solid}.p-button.p-button-success.p-button-text,.p-buttonset.p-button-success>.p-button.p-button-text,.p-splitbutton.p-button-success>.p-button.p-button-text{background-color:transparent;color:#4caf50;border-color:transparent}.p-button.p-button-success.p-button-text:enabled:hover,.p-buttonset.p-button-success>.p-button.p-button-text:enabled:hover,.p-splitbutton.p-button-success>.p-button.p-button-text:enabled:hover{background:rgba(76,175,80,.04);border-color:transparent;color:#4caf50}.p-button.p-button-success.p-button-text:enabled:active,.p-buttonset.p-button-success>.p-button.p-button-text:enabled:active,.p-splitbutton.p-button-success>.p-button.p-button-text:enabled:active{background:rgba(76,175,80,.16);border-color:transparent;color:#4caf50}.p-button.p-button-warning,.p-buttonset.p-button-warning>.p-button,.p-splitbutton.p-button-warning>.p-button{color:#495057;background:#FFC107;border:1px solid #FFC107}.p-button.p-button-warning:enabled:hover,.p-buttonset.p-button-warning>.p-button:enabled:hover,.p-splitbutton.p-button-warning>.p-button:enabled:hover{background:#FFB300;color:#495057;border-color:#ffb300}.p-button.p-button-warning:enabled:focus,.p-buttonset.p-button-warning>.p-button:enabled:focus,.p-splitbutton.p-button-warning>.p-button:enabled:focus{box-shadow:0 0 0 .2rem #ffeeba}.p-button.p-button-warning:enabled:active,.p-buttonset.p-button-warning>.p-button:enabled:active,.p-splitbutton.p-button-warning>.p-button:enabled:active{background:#FFA000;color:#495057;border-color:#ffa000}.p-button.p-button-warning.p-button-outlined,.p-buttonset.p-button-warning>.p-button.p-button-outlined,.p-splitbutton.p-button-warning>.p-button.p-button-outlined{background-color:transparent;color:#ffc107;border:1px solid}.p-button.p-button-warning.p-button-outlined:enabled:hover,.p-buttonset.p-button-warning>.p-button.p-button-outlined:enabled:hover,.p-splitbutton.p-button-warning>.p-button.p-button-outlined:enabled:hover{background:rgba(255,193,7,.04);color:#ffc107;border:1px solid}.p-button.p-button-warning.p-button-outlined:enabled:active,.p-buttonset.p-button-warning>.p-button.p-button-outlined:enabled:active,.p-splitbutton.p-button-warning>.p-button.p-button-outlined:enabled:active{background:rgba(255,193,7,.16);color:#ffc107;border:1px solid}.p-button.p-button-warning.p-button-text,.p-buttonset.p-button-warning>.p-button.p-button-text,.p-splitbutton.p-button-warning>.p-button.p-button-text{background-color:transparent;color:#ffc107;border-color:transparent}.p-button.p-button-warning.p-button-text:enabled:hover,.p-buttonset.p-button-warning>.p-button.p-button-text:enabled:hover,.p-splitbutton.p-button-warning>.p-button.p-button-text:enabled:hover{background:rgba(255,193,7,.04);border-color:transparent;color:#ffc107}.p-button.p-button-warning.p-button-text:enabled:active,.p-buttonset.p-button-warning>.p-button.p-button-text:enabled:active,.p-splitbutton.p-button-warning>.p-button.p-button-text:enabled:active{background:rgba(255,193,7,.16);border-color:transparent;color:#ffc107}.p-button.p-button-help,.p-buttonset.p-button-help>.p-button,.p-splitbutton.p-button-help>.p-button{color:#fff;background:#9C27B0;border:1px solid #9C27B0}.p-button.p-button-help:enabled:hover,.p-buttonset.p-button-help>.p-button:enabled:hover,.p-splitbutton.p-button-help>.p-button:enabled:hover{background:#8E24AA;color:#fff;border-color:#8e24aa}.p-button.p-button-help:enabled:focus,.p-buttonset.p-button-help>.p-button:enabled:focus,.p-splitbutton.p-button-help>.p-button:enabled:focus{box-shadow:0 0 0 .2rem #ce93d8}.p-button.p-button-help:enabled:active,.p-buttonset.p-button-help>.p-button:enabled:active,.p-splitbutton.p-button-help>.p-button:enabled:active{background:#7B1FA2;color:#fff;border-color:#7b1fa2}.p-button.p-button-help.p-button-outlined,.p-buttonset.p-button-help>.p-button.p-button-outlined,.p-splitbutton.p-button-help>.p-button.p-button-outlined{background-color:transparent;color:#9c27b0;border:1px solid}.p-button.p-button-help.p-button-outlined:enabled:hover,.p-buttonset.p-button-help>.p-button.p-button-outlined:enabled:hover,.p-splitbutton.p-button-help>.p-button.p-button-outlined:enabled:hover{background:rgba(156,39,176,.04);color:#9c27b0;border:1px solid}.p-button.p-button-help.p-button-outlined:enabled:active,.p-buttonset.p-button-help>.p-button.p-button-outlined:enabled:active,.p-splitbutton.p-button-help>.p-button.p-button-outlined:enabled:active{background:rgba(156,39,176,.16);color:#9c27b0;border:1px solid}.p-button.p-button-help.p-button-text,.p-buttonset.p-button-help>.p-button.p-button-text,.p-splitbutton.p-button-help>.p-button.p-button-text{background-color:transparent;color:#9c27b0;border-color:transparent}.p-button.p-button-help.p-button-text:enabled:hover,.p-buttonset.p-button-help>.p-button.p-button-text:enabled:hover,.p-splitbutton.p-button-help>.p-button.p-button-text:enabled:hover{background:rgba(156,39,176,.04);border-color:transparent;color:#9c27b0}.p-button.p-button-help.p-button-text:enabled:active,.p-buttonset.p-button-help>.p-button.p-button-text:enabled:active,.p-splitbutton.p-button-help>.p-button.p-button-text:enabled:active{background:rgba(156,39,176,.16);border-color:transparent;color:#9c27b0}.p-button.p-button-danger,.p-buttonset.p-button-danger>.p-button,.p-splitbutton.p-button-danger>.p-button{color:#fff;background:#f44336;border:1px solid #f44336}.p-button.p-button-danger:enabled:hover,.p-buttonset.p-button-danger>.p-button:enabled:hover,.p-splitbutton.p-button-danger>.p-button:enabled:hover{background:#e53935;color:#fff;border-color:#e53935}.p-button.p-button-danger:enabled:focus,.p-buttonset.p-button-danger>.p-button:enabled:focus,.p-splitbutton.p-button-danger>.p-button:enabled:focus{box-shadow:0 0 0 .2rem #fde1df}.p-button.p-button-danger:enabled:active,.p-buttonset.p-button-danger>.p-button:enabled:active,.p-splitbutton.p-button-danger>.p-button:enabled:active{background:#d32f2f;color:#fff;border-color:#d32f2f}.p-button.p-button-danger.p-button-outlined,.p-buttonset.p-button-danger>.p-button.p-button-outlined,.p-splitbutton.p-button-danger>.p-button.p-button-outlined{background-color:transparent;color:#f44336;border:1px solid}.p-button.p-button-danger.p-button-outlined:enabled:hover,.p-buttonset.p-button-danger>.p-button.p-button-outlined:enabled:hover,.p-splitbutton.p-button-danger>.p-button.p-button-outlined:enabled:hover{background:rgba(244,67,54,.04);color:#f44336;border:1px solid}.p-button.p-button-danger.p-button-outlined:enabled:active,.p-buttonset.p-button-danger>.p-button.p-button-outlined:enabled:active,.p-splitbutton.p-button-danger>.p-button.p-button-outlined:enabled:active{background:rgba(244,67,54,.16);color:#f44336;border:1px solid}.p-button.p-button-danger.p-button-text,.p-buttonset.p-button-danger>.p-button.p-button-text,.p-splitbutton.p-button-danger>.p-button.p-button-text{background-color:transparent;color:#f44336;border-color:transparent}.p-button.p-button-danger.p-button-text:enabled:hover,.p-buttonset.p-button-danger>.p-button.p-button-text:enabled:hover,.p-splitbutton.p-button-danger>.p-button.p-button-text:enabled:hover{background:rgba(244,67,54,.04);border-color:transparent;color:#f44336}.p-button.p-button-danger.p-button-text:enabled:active,.p-buttonset.p-button-danger>.p-button.p-button-text:enabled:active,.p-splitbutton.p-button-danger>.p-button.p-button-text:enabled:active{background:rgba(244,67,54,.16);border-color:transparent;color:#f44336}.p-button.p-button-link{color:#00548f;background:transparent;border:transparent}.p-button.p-button-link:enabled:hover{background:transparent;color:#00548f;border-color:transparent}.p-button.p-button-link:enabled:hover .p-button-label{text-decoration:underline}.p-button.p-button-link:enabled:focus{background:transparent;box-shadow:0 0 0 .2rem #bfd1f6;border-color:transparent}.p-button.p-button-link:enabled:active{background:transparent;color:#00548f;border-color:transparent}.p-speeddial-button.p-button.p-button-icon-only{width:4rem;height:4rem}.p-speeddial-button.p-button.p-button-icon-only .p-button-icon{font-size:1.3rem}.p-speeddial-list{outline:0 none}.p-speeddial-item.p-focus>.p-speeddial-action{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-speeddial-action{width:3rem;height:3rem;background:#ffffff;color:#212121}.p-speeddial-action:hover{background:#F5F5F5;color:#212121}.p-speeddial-direction-up .p-speeddial-item{margin:.25rem 0}.p-speeddial-direction-up .p-speeddial-item:first-child{margin-bottom:.5rem}.p-speeddial-direction-down .p-speeddial-item{margin:.25rem 0}.p-speeddial-direction-down .p-speeddial-item:first-child{margin-top:.5rem}.p-speeddial-direction-left .p-speeddial-item{margin:0 .25rem}.p-speeddial-direction-left .p-speeddial-item:first-child{margin-right:.5rem}.p-speeddial-direction-right .p-speeddial-item{margin:0 .25rem}.p-speeddial-direction-right .p-speeddial-item:first-child{margin-left:.5rem}.p-speeddial-circle .p-speeddial-item,.p-speeddial-semi-circle .p-speeddial-item,.p-speeddial-quarter-circle .p-speeddial-item{margin:0}.p-speeddial-circle .p-speeddial-item:first-child,.p-speeddial-circle .p-speeddial-item:last-child,.p-speeddial-semi-circle .p-speeddial-item:first-child,.p-speeddial-semi-circle .p-speeddial-item:last-child,.p-speeddial-quarter-circle .p-speeddial-item:first-child,.p-speeddial-quarter-circle .p-speeddial-item:last-child{margin:0}.p-speeddial-mask{background-color:#0006}.p-splitbutton{border-radius:3px}.p-splitbutton.p-button-outlined>.p-button{background-color:transparent;color:#006cb8;border:1px solid}.p-splitbutton.p-button-outlined>.p-button:enabled:hover,.p-splitbutton.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(0,108,184,.04);color:#006cb8}.p-splitbutton.p-button-outlined>.p-button:enabled:active,.p-splitbutton.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(0,108,184,.16);color:#006cb8}.p-splitbutton.p-button-outlined.p-button-plain>.p-button{color:#6c757d;border-color:#6c757d}.p-splitbutton.p-button-outlined.p-button-plain>.p-button:enabled:hover,.p-splitbutton.p-button-outlined.p-button-plain>.p-button:not(button):not(a):not(.p-disabled):hover{background:#e9ecef;color:#6c757d}.p-splitbutton.p-button-outlined.p-button-plain>.p-button:enabled:active,.p-splitbutton.p-button-outlined.p-button-plain>.p-button:not(button):not(a):not(.p-disabled):active{background:#dee2e6;color:#6c757d}.p-splitbutton.p-button-text>.p-button{background-color:transparent;color:#006cb8;border-color:transparent}.p-splitbutton.p-button-text>.p-button:enabled:hover,.p-splitbutton.p-button-text>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(0,108,184,.04);color:#006cb8;border-color:transparent}.p-splitbutton.p-button-text>.p-button:enabled:active,.p-splitbutton.p-button-text>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(0,108,184,.16);color:#006cb8;border-color:transparent}.p-splitbutton.p-button-text.p-button-plain>.p-button{color:#6c757d}.p-splitbutton.p-button-text.p-button-plain>.p-button:enabled:hover,.p-splitbutton.p-button-text.p-button-plain>.p-button:not(button):not(a):not(.p-disabled):hover{background:#e9ecef;color:#6c757d}.p-splitbutton.p-button-text.p-button-plain>.p-button:enabled:active,.p-splitbutton.p-button-text.p-button-plain>.p-button:not(button):not(a):not(.p-disabled):active{background:#dee2e6;color:#6c757d}.p-splitbutton.p-button-raised{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.p-splitbutton.p-button-rounded{border-radius:2rem}.p-splitbutton.p-button-rounded>.p-button{border-radius:2rem}.p-splitbutton.p-button-sm>.p-button{font-size:.875rem;padding:.4375rem .875rem}.p-splitbutton.p-button-sm>.p-button .p-button-icon{font-size:.875rem}.p-splitbutton.p-button-lg>.p-button{font-size:1.25rem;padding:.625rem 1.25rem}.p-splitbutton.p-button-lg>.p-button .p-button-icon{font-size:1.25rem}.p-splitbutton.p-button-secondary.p-button-outlined>.p-button{background-color:transparent;color:#607d8b;border:1px solid}.p-splitbutton.p-button-secondary.p-button-outlined>.p-button:enabled:hover,.p-splitbutton.p-button-secondary.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(96,125,139,.04);color:#607d8b}.p-splitbutton.p-button-secondary.p-button-outlined>.p-button:enabled:active,.p-splitbutton.p-button-secondary.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(96,125,139,.16);color:#607d8b}.p-splitbutton.p-button-secondary.p-button-text>.p-button{background-color:transparent;color:#607d8b;border-color:transparent}.p-splitbutton.p-button-secondary.p-button-text>.p-button:enabled:hover,.p-splitbutton.p-button-secondary.p-button-text>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(96,125,139,.04);border-color:transparent;color:#607d8b}.p-splitbutton.p-button-secondary.p-button-text>.p-button:enabled:active,.p-splitbutton.p-button-secondary.p-button-text>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(96,125,139,.16);border-color:transparent;color:#607d8b}.p-splitbutton.p-button-info.p-button-outlined>.p-button{background-color:transparent;color:#03a9f4;border:1px solid}.p-splitbutton.p-button-info.p-button-outlined>.p-button:enabled:hover,.p-splitbutton.p-button-info.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(3,169,244,.04);color:#03a9f4}.p-splitbutton.p-button-info.p-button-outlined>.p-button:enabled:active,.p-splitbutton.p-button-info.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(3,169,244,.16);color:#03a9f4}.p-splitbutton.p-button-info.p-button-text>.p-button{background-color:transparent;color:#03a9f4;border-color:transparent}.p-splitbutton.p-button-info.p-button-text>.p-button:enabled:hover,.p-splitbutton.p-button-info.p-button-text>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(3,169,244,.04);border-color:transparent;color:#03a9f4}.p-splitbutton.p-button-info.p-button-text>.p-button:enabled:active,.p-splitbutton.p-button-info.p-button-text>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(3,169,244,.16);border-color:transparent;color:#03a9f4}.p-splitbutton.p-button-success.p-button-outlined>.p-button{background-color:transparent;color:#4caf50;border:1px solid}.p-splitbutton.p-button-success.p-button-outlined>.p-button:enabled:hover,.p-splitbutton.p-button-success.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(76,175,80,.04);color:#4caf50}.p-splitbutton.p-button-success.p-button-outlined>.p-button:enabled:active,.p-splitbutton.p-button-success.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(76,175,80,.16);color:#4caf50}.p-splitbutton.p-button-success.p-button-text>.p-button{background-color:transparent;color:#4caf50;border-color:transparent}.p-splitbutton.p-button-success.p-button-text>.p-button:enabled:hover,.p-splitbutton.p-button-success.p-button-text>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(76,175,80,.04);border-color:transparent;color:#4caf50}.p-splitbutton.p-button-success.p-button-text>.p-button:enabled:active,.p-splitbutton.p-button-success.p-button-text>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(76,175,80,.16);border-color:transparent;color:#4caf50}.p-splitbutton.p-button-warning.p-button-outlined>.p-button{background-color:transparent;color:#ffc107;border:1px solid}.p-splitbutton.p-button-warning.p-button-outlined>.p-button:enabled:hover,.p-splitbutton.p-button-warning.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(255,193,7,.04);color:#ffc107}.p-splitbutton.p-button-warning.p-button-outlined>.p-button:enabled:active,.p-splitbutton.p-button-warning.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(255,193,7,.16);color:#ffc107}.p-splitbutton.p-button-warning.p-button-text>.p-button{background-color:transparent;color:#ffc107;border-color:transparent}.p-splitbutton.p-button-warning.p-button-text>.p-button:enabled:hover,.p-splitbutton.p-button-warning.p-button-text>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(255,193,7,.04);border-color:transparent;color:#ffc107}.p-splitbutton.p-button-warning.p-button-text>.p-button:enabled:active,.p-splitbutton.p-button-warning.p-button-text>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(255,193,7,.16);border-color:transparent;color:#ffc107}.p-splitbutton.p-button-help.p-button-outlined>.p-button{background-color:transparent;color:#9c27b0;border:1px solid}.p-splitbutton.p-button-help.p-button-outlined>.p-button:enabled:hover,.p-splitbutton.p-button-help.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(156,39,176,.04);color:#9c27b0}.p-splitbutton.p-button-help.p-button-outlined>.p-button:enabled:active,.p-splitbutton.p-button-help.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(156,39,176,.16);color:#9c27b0}.p-splitbutton.p-button-help.p-button-text>.p-button{background-color:transparent;color:#9c27b0;border-color:transparent}.p-splitbutton.p-button-help.p-button-text>.p-button:enabled:hover,.p-splitbutton.p-button-help.p-button-text>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(156,39,176,.04);border-color:transparent;color:#9c27b0}.p-splitbutton.p-button-help.p-button-text>.p-button:enabled:active,.p-splitbutton.p-button-help.p-button-text>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(156,39,176,.16);border-color:transparent;color:#9c27b0}.p-splitbutton.p-button-danger.p-button-outlined>.p-button{background-color:transparent;color:#f44336;border:1px solid}.p-splitbutton.p-button-danger.p-button-outlined>.p-button:enabled:hover,.p-splitbutton.p-button-danger.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(244,67,54,.04);color:#f44336}.p-splitbutton.p-button-danger.p-button-outlined>.p-button:enabled:active,.p-splitbutton.p-button-danger.p-button-outlined>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(244,67,54,.16);color:#f44336}.p-splitbutton.p-button-danger.p-button-text>.p-button{background-color:transparent;color:#f44336;border-color:transparent}.p-splitbutton.p-button-danger.p-button-text>.p-button:enabled:hover,.p-splitbutton.p-button-danger.p-button-text>.p-button:not(button):not(a):not(.p-disabled):hover{background:rgba(244,67,54,.04);border-color:transparent;color:#f44336}.p-splitbutton.p-button-danger.p-button-text>.p-button:enabled:active,.p-splitbutton.p-button-danger.p-button-text>.p-button:not(button):not(a):not(.p-disabled):active{background:rgba(244,67,54,.16);border-color:transparent;color:#f44336}.p-carousel .p-carousel-content .p-carousel-prev,.p-carousel .p-carousel-content .p-carousel-next{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s;margin:.5rem}.p-carousel .p-carousel-content .p-carousel-prev:enabled:hover,.p-carousel .p-carousel-content .p-carousel-next:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-carousel .p-carousel-content .p-carousel-prev:focus,.p-carousel .p-carousel-content .p-carousel-next:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-carousel .p-carousel-indicators{padding:1rem}.p-carousel .p-carousel-indicators .p-carousel-indicator{margin-right:.5rem;margin-bottom:.5rem}.p-carousel .p-carousel-indicators .p-carousel-indicator button{background-color:#e9ecef;width:2rem;height:.5rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:0}.p-carousel .p-carousel-indicators .p-carousel-indicator button:hover{background:#dee2e6}.p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button{background:#006CB8;color:#fff}.p-datatable .p-paginator-top{border-width:1px 0 1px 0;border-radius:0}.p-datatable .p-paginator-bottom{border-width:0 0 1px 0;border-radius:0}.p-datatable .p-datatable-header,.p-datatable .p-datatable-footer{background:#f8f9fa;color:#495057;border:1px solid #e9ecef;border-width:0 0 1px 0;padding:1rem;font-weight:600}.p-datatable .p-datatable-thead>tr>th{text-align:left;padding:1rem;border:1px solid #e9ecef;border-width:0 0 1px 0;font-weight:600;color:#495057;background:#f8f9fa;transition:background-color .2s,border-color .2s,box-shadow .2s}.p-datatable .p-datatable-tfoot>tr>td{text-align:left;padding:1rem;border:1px solid #e9ecef;border-width:0 0 1px 0;font-weight:600;color:#495057;background:#f8f9fa}.p-datatable .p-sortable-column .p-sortable-column-icon{color:#6c757d;margin-left:.5rem}.p-datatable .p-sortable-column .p-sortable-column-badge{border-radius:50%;height:1.143rem;min-width:1.143rem;line-height:1.143rem;color:#fff;background:#006CB8;margin-left:.5rem}.p-datatable .p-sortable-column:not(.p-highlight):hover{background:#e9ecef;color:#495057}.p-datatable .p-sortable-column:not(.p-highlight):hover .p-sortable-column-icon{color:#6c757d}.p-datatable .p-sortable-column.p-highlight{background:#f8f9fa;color:#006cb8}.p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon{color:#006cb8}.p-datatable .p-sortable-column.p-highlight:hover{background:#e9ecef;color:#006cb8}.p-datatable .p-sortable-column.p-highlight:hover .p-sortable-column-icon{color:#006cb8}.p-datatable .p-sortable-column:focus{box-shadow:inset 0 0 0 .15rem #bfd1f6;outline:0 none}.p-datatable .p-datatable-tbody>tr{background:#ffffff;color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s}.p-datatable .p-datatable-tbody>tr>td{text-align:left;border:1px solid rgba(0,0,0,.08);border-width:0 0 1px 0;padding:1rem}.p-datatable .p-datatable-tbody>tr>td .p-row-toggler,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-init,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-save,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-cancel{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-datatable .p-datatable-tbody>tr>td .p-row-toggler:enabled:hover,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-init:enabled:hover,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-save:enabled:hover,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-cancel:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-datatable .p-datatable-tbody>tr>td .p-row-toggler:focus,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-init:focus,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-save:focus,.p-datatable .p-datatable-tbody>tr>td .p-row-editor-cancel:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-datatable .p-datatable-tbody>tr>td .p-row-editor-save{margin-right:.5rem}.p-datatable .p-datatable-tbody>tr>td>.p-column-title{font-weight:600}.p-datatable .p-datatable-tbody>tr:focus{outline:.15rem solid #bfd1f6;outline-offset:-.15rem}.p-datatable .p-datatable-tbody>tr.p-highlight{background:#006CB8;color:#fff}.p-datatable .p-datatable-tbody>tr.p-datatable-dragpoint-top>td{box-shadow:inset 0 2px #006cb8}.p-datatable .p-datatable-tbody>tr.p-datatable-dragpoint-bottom>td{box-shadow:inset 0 -2px #006cb8}.p-datatable.p-datatable-hoverable-rows .p-datatable-tbody>tr:not(.p-highlight):hover{background:#e9ecef;color:#495057}.p-datatable .p-column-resizer-helper{background:#006CB8}.p-datatable .p-datatable-scrollable-header,.p-datatable .p-datatable-scrollable-footer{background:#f8f9fa}.p-datatable.p-datatable-scrollable>.p-datatable-wrapper>.p-datatable-table>.p-datatable-thead,.p-datatable.p-datatable-scrollable>.p-datatable-wrapper>.p-datatable-table>.p-datatable-tfoot,.p-datatable.p-datatable-scrollable>.p-datatable-wrapper>.p-virtualscroller>.p-datatable-table>.p-datatable-thead,.p-datatable.p-datatable-scrollable>.p-datatable-wrapper>.p-virtualscroller>.p-datatable-table>.p-datatable-tfoot{background-color:#f8f9fa}.p-datatable .p-datatable-loading-icon{font-size:2rem}.p-datatable.p-datatable-gridlines .p-datatable-header{border-width:1px 1px 0 1px}.p-datatable.p-datatable-gridlines .p-datatable-footer{border-width:0 1px 1px 1px}.p-datatable.p-datatable-gridlines .p-paginator-top{border-width:0 1px 0 1px}.p-datatable.p-datatable-gridlines .p-paginator-bottom{border-width:0 1px 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-thead>tr>th{border-width:1px 0 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-thead>tr>th:last-child{border-width:1px}.p-datatable.p-datatable-gridlines .p-datatable-tbody>tr>td{border-width:1px 0 0 1px}.p-datatable.p-datatable-gridlines .p-datatable-tbody>tr>td:last-child{border-width:1px 1px 0 1px}.p-datatable.p-datatable-gridlines .p-datatable-tbody>tr:last-child>td{border-width:1px 0 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-tbody>tr:last-child>td:last-child{border-width:1px}.p-datatable.p-datatable-gridlines .p-datatable-tfoot>tr>td{border-width:1px 0 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-tfoot>tr>td:last-child{border-width:1px 1px 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-thead+.p-datatable-tfoot>tr>td{border-width:0 0 1px 1px}.p-datatable.p-datatable-gridlines .p-datatable-thead+.p-datatable-tfoot>tr>td:last-child{border-width:0 1px 1px 1px}.p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody>tr>td{border-width:0 0 1px 1px}.p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody>tr>td:last-child{border-width:0 1px 1px 1px}.p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody>tr:last-child>td{border-width:0 0 0 1px}.p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody>tr:last-child>td:last-child{border-width:0 1px 0 1px}.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(2n){background:#ffffff}.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(2n).p-highlight{background:#006CB8;color:#fff}.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(2n).p-highlight .p-row-toggler{color:#fff}.p-datatable.p-datatable-striped .p-datatable-tbody>tr:nth-child(2n).p-highlight .p-row-toggler:hover{color:#fff}.p-datatable.p-datatable-sm .p-datatable-header{padding:.5rem}.p-datatable.p-datatable-sm .p-datatable-thead>tr>th{padding:.5rem}.p-datatable.p-datatable-sm .p-datatable-tbody>tr>td{padding:.5rem}.p-datatable.p-datatable-sm .p-datatable-tfoot>tr>td{padding:.5rem}.p-datatable.p-datatable-sm .p-datatable-footer{padding:.5rem}.p-datatable.p-datatable-lg .p-datatable-header{padding:1.25rem}.p-datatable.p-datatable-lg .p-datatable-thead>tr>th{padding:1.25rem}.p-datatable.p-datatable-lg .p-datatable-tbody>tr>td{padding:1.25rem}.p-datatable.p-datatable-lg .p-datatable-tfoot>tr>td{padding:1.25rem}.p-datatable.p-datatable-lg .p-datatable-footer{padding:1.25rem}.p-dataview .p-paginator-top{border-width:1px 0 1px 0;border-radius:0}.p-dataview .p-paginator-bottom{border-width:0 0 1px 0;border-radius:0}.p-dataview .p-dataview-header{background:#f8f9fa;color:#495057;border:1px solid #e9ecef;border-width:0 0 1px 0;padding:1rem;font-weight:600}.p-dataview .p-dataview-content{background:#ffffff;color:#495057;border:0 none;padding:0}.p-dataview.p-dataview-list .p-dataview-content>.p-grid>div{border:solid #e9ecef;border-width:0 0 1px 0}.p-dataview .p-dataview-footer{background:#f8f9fa;color:#495057;border:1px solid #e9ecef;border-width:0 0 1px 0;padding:1rem;font-weight:600;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.p-column-filter-row .p-column-filter-menu-button,.p-column-filter-row .p-column-filter-clear-button{margin-left:.5rem}.p-column-filter-menu-button{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-column-filter-menu-button:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-column-filter-menu-button.p-column-filter-menu-button-open,.p-column-filter-menu-button.p-column-filter-menu-button-open:hover{background:#e9ecef;color:#495057}.p-column-filter-menu-button.p-column-filter-menu-button-active,.p-column-filter-menu-button.p-column-filter-menu-button-active:hover{background:#006CB8;color:#fff}.p-column-filter-menu-button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-column-filter-clear-button{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-column-filter-clear-button:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-column-filter-clear-button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-column-filter-overlay{background:#ffffff;color:#495057;border:0 none;border-radius:3px;box-shadow:0 3px 6px #0000001a;min-width:12.5rem}.p-column-filter-overlay .p-column-filter-row-items{padding:.5rem 0}.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item{margin:0;padding:.5rem 1rem;border:0 none;color:#495057;background:transparent;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item.p-highlight{color:#fff;background:#006CB8}.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:not(.p-highlight):not(.p-disabled):hover{color:#495057;background:#e9ecef}.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:focus{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .15rem #bfd1f6}.p-column-filter-overlay .p-column-filter-row-items .p-column-filter-separator{border-top:1px solid #dee2e6;margin:.25rem 0}.p-column-filter-overlay-menu .p-column-filter-operator{padding:.5rem 1rem;border-bottom:0 none;color:#495057;background:#f8f9fa;margin:0;border-top-right-radius:3px;border-top-left-radius:3px}.p-column-filter-overlay-menu .p-column-filter-constraint{padding:1rem;border-bottom:1px solid #dee2e6}.p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-matchmode-dropdown{margin-bottom:.5rem}.p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-remove-button{margin-top:.5rem}.p-column-filter-overlay-menu .p-column-filter-constraint:last-child{border-bottom:0 none}.p-column-filter-overlay-menu .p-column-filter-add-rule{padding:.5rem 1rem}.p-column-filter-overlay-menu .p-column-filter-buttonbar{padding:1rem}.fc.fc-unthemed .fc-view-container th{background:#f8f9fa;border:1px solid #dee2e6;color:#495057}.fc.fc-unthemed .fc-view-container td.fc-widget-content{border:1px solid #dee2e6;color:#495057}.fc.fc-unthemed .fc-view-container td.fc-head-container{border:1px solid #dee2e6}.fc.fc-unthemed .fc-view-container .fc-view{background:#ffffff}.fc.fc-unthemed .fc-view-container .fc-row{border-right:1px solid #dee2e6}.fc.fc-unthemed .fc-view-container .fc-event{background:#00548f;border:1px solid #00548f;color:#fff}.fc.fc-unthemed .fc-view-container .fc-divider{background:#f8f9fa;border:1px solid #dee2e6}.fc.fc-unthemed .fc-toolbar .fc-button{color:#fff;background:#006CB8;border:1px solid #006CB8;font-size:1rem;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:3px;display:flex;align-items:center}.fc.fc-unthemed .fc-toolbar .fc-button:enabled:hover{background:#00548f;color:#fff;border-color:#00548f}.fc.fc-unthemed .fc-toolbar .fc-button:enabled:active{background:#00548f;color:#fff;border-color:#00548f}.fc.fc-unthemed .fc-toolbar .fc-button:enabled:active:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.fc.fc-unthemed .fc-toolbar .fc-button .fc-icon-chevron-left{font-family:PrimeIcons!important;text-indent:0;font-size:1rem}.fc.fc-unthemed .fc-toolbar .fc-button .fc-icon-chevron-left:before{content:""}.fc.fc-unthemed .fc-toolbar .fc-button .fc-icon-chevron-right{font-family:PrimeIcons!important;text-indent:0;font-size:1rem}.fc.fc-unthemed .fc-toolbar .fc-button .fc-icon-chevron-right:before{content:""}.fc.fc-unthemed .fc-toolbar .fc-button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.fc.fc-unthemed .fc-toolbar .fc-button.fc-dayGridMonth-button,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridWeek-button,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridDay-button{background:#ffffff;border:1px solid #ced4da;color:#495057;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.fc.fc-unthemed .fc-toolbar .fc-button.fc-dayGridMonth-button:hover,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridWeek-button:hover,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridDay-button:hover{background:#e9ecef;border-color:#ced4da;color:#495057}.fc.fc-unthemed .fc-toolbar .fc-button.fc-dayGridMonth-button.fc-button-active,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridWeek-button.fc-button-active,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridDay-button.fc-button-active{background:#006CB8;border-color:#006cb8;color:#fff}.fc.fc-unthemed .fc-toolbar .fc-button.fc-dayGridMonth-button.fc-button-active:hover,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridWeek-button.fc-button-active:hover,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridDay-button.fc-button-active:hover{background:#00548f;border-color:#00548f;color:#fff}.fc.fc-unthemed .fc-toolbar .fc-button.fc-dayGridMonth-button:focus,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridWeek-button:focus,.fc.fc-unthemed .fc-toolbar .fc-button.fc-timeGridDay-button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;z-index:1}.fc.fc-unthemed .fc-toolbar .fc-button-group .fc-button{border-radius:0}.fc.fc-unthemed .fc-toolbar .fc-button-group .fc-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.fc.fc-unthemed .fc-toolbar .fc-button-group .fc-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.fc.fc-theme-standard .fc-view-harness .fc-scrollgrid{border-color:#dee2e6}.fc.fc-theme-standard .fc-view-harness th{background:#f8f9fa;border-color:#dee2e6;color:#495057}.fc.fc-theme-standard .fc-view-harness td{color:#495057;border-color:#dee2e6}.fc.fc-theme-standard .fc-view-harness .fc-view{background:#ffffff}.fc.fc-theme-standard .fc-view-harness .fc-popover{background:none;border:0 none}.fc.fc-theme-standard .fc-view-harness .fc-popover .fc-popover-header{border:1px solid #dee2e6;padding:1rem;background:#f8f9fa;color:#495057}.fc.fc-theme-standard .fc-view-harness .fc-popover .fc-popover-header .fc-popover-close{opacity:1;display:flex;align-items:center;justify-content:center;overflow:hidden;font-family:PrimeIcons!important;font-size:1rem;width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.fc.fc-theme-standard .fc-view-harness .fc-popover .fc-popover-header .fc-popover-close:before{content:""}.fc.fc-theme-standard .fc-view-harness .fc-popover .fc-popover-header .fc-popover-close:hover{color:#495057;border-color:transparent;background:#e9ecef}.fc.fc-theme-standard .fc-view-harness .fc-popover .fc-popover-header .fc-popover-close:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.fc.fc-theme-standard .fc-view-harness .fc-popover .fc-popover-body{padding:1rem;border:1px solid #dee2e6;background:#ffffff;color:#495057;border-top:0 none}.fc.fc-theme-standard .fc-view-harness .fc-event.fc-daygrid-block-event{color:#fff;background:#00548f;border-color:#00548f}.fc.fc-theme-standard .fc-view-harness .fc-event.fc-daygrid-block-event .fc-event-main{color:#fff}.fc.fc-theme-standard .fc-view-harness .fc-event.fc-daygrid-dot-event .fc-daygrid-event-dot{background:#00548f;border-color:#00548f}.fc.fc-theme-standard .fc-view-harness .fc-event.fc-daygrid-dot-event:hover{background:#e9ecef;color:#495057}.fc.fc-theme-standard .fc-view-harness .fc-cell-shaded{background:#f8f9fa}.fc.fc-theme-standard .fc-toolbar .fc-button{color:#fff;background:#006CB8;border:1px solid #006CB8;font-size:1rem;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.fc.fc-theme-standard .fc-toolbar .fc-button:enabled:hover{background:#00548f;color:#fff;border-color:#00548f}.fc.fc-theme-standard .fc-toolbar .fc-button:enabled:active{background:#00548f;color:#fff;border-color:#00548f}.fc.fc-theme-standard .fc-toolbar .fc-button:enabled:active:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.fc.fc-theme-standard .fc-toolbar .fc-button:disabled{opacity:.8;color:#fff;background:#006CB8;border:1px solid #006CB8}.fc.fc-theme-standard .fc-toolbar .fc-button .fc-icon-chevron-left{font-family:PrimeIcons!important;text-indent:0;font-size:1rem}.fc.fc-theme-standard .fc-toolbar .fc-button .fc-icon-chevron-left:before{content:""}.fc.fc-theme-standard .fc-toolbar .fc-button .fc-icon-chevron-right{font-family:PrimeIcons!important;text-indent:0;font-size:1rem}.fc.fc-theme-standard .fc-toolbar .fc-button .fc-icon-chevron-right:before{content:""}.fc.fc-theme-standard .fc-toolbar .fc-button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.fc.fc-theme-standard .fc-toolbar .fc-button.fc-dayGridMonth-button,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridWeek-button,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridDay-button{background:#ffffff;border:1px solid #ced4da;color:#495057;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.fc.fc-theme-standard .fc-toolbar .fc-button.fc-dayGridMonth-button:hover,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridWeek-button:hover,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridDay-button:hover{background:#e9ecef;border-color:#ced4da;color:#495057}.fc.fc-theme-standard .fc-toolbar .fc-button.fc-dayGridMonth-button.fc-button-active,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridWeek-button.fc-button-active,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridDay-button.fc-button-active{background:#006CB8;border-color:#006cb8;color:#fff}.fc.fc-theme-standard .fc-toolbar .fc-button.fc-dayGridMonth-button.fc-button-active:hover,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridWeek-button.fc-button-active:hover,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridDay-button.fc-button-active:hover{background:#00548f;border-color:#00548f;color:#fff}.fc.fc-theme-standard .fc-toolbar .fc-button.fc-dayGridMonth-button:not(:disabled):focus,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridWeek-button:not(:disabled):focus,.fc.fc-theme-standard .fc-toolbar .fc-button.fc-timeGridDay-button:not(:disabled):focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6;z-index:1}.fc.fc-theme-standard .fc-toolbar .fc-button-group .fc-button{border-radius:0}.fc.fc-theme-standard .fc-toolbar .fc-button-group .fc-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.fc.fc-theme-standard .fc-toolbar .fc-button-group .fc-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.fc.fc-theme-standard .fc-highlight{color:#fff;background:#006CB8}.p-orderlist .p-orderlist-controls{padding:1rem}.p-orderlist .p-orderlist-controls .p-button{margin-bottom:.5rem}.p-orderlist .p-orderlist-header{background:#f8f9fa;color:#495057;border:1px solid #dee2e6;padding:1rem;font-weight:600;border-bottom:0 none;border-top-right-radius:3px;border-top-left-radius:3px}.p-orderlist .p-orderlist-list{border:1px solid #dee2e6;background:#ffffff;color:#495057;padding:.5rem 0;border-bottom-right-radius:3px;border-bottom-left-radius:3px;outline:0 none}.p-orderlist .p-orderlist-list .p-orderlist-item{padding:.5rem 1rem;margin:0;border:0 none;color:#495057;background:transparent;transition:transform .2s,background-color .2s,border-color .2s,box-shadow .2s}.p-orderlist .p-orderlist-list .p-orderlist-item:not(.p-highlight):hover{background:#e9ecef;color:#495057}.p-orderlist .p-orderlist-list .p-orderlist-item.p-focus{color:#495057;background:#f8f9fa}.p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight{color:#fff;background:#006CB8}.p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight.p-focus{background:rgba(0,108,184,.24)}.p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(2n){background:#e9ecef}.p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(2n):hover{background:#e9ecef}.p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover{background:#e9ecef;color:#495057}.p-organizationchart .p-organizationchart-node-content.p-highlight{background:#006CB8;color:#fff}.p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i{color:#002139}.p-organizationchart .p-organizationchart-line-down{background:#dee2e6}.p-organizationchart .p-organizationchart-line-left{border-right:1px solid #dee2e6;border-color:#dee2e6}.p-organizationchart .p-organizationchart-line-top{border-top:1px solid #dee2e6;border-color:#dee2e6}.p-organizationchart .p-organizationchart-node-content{border:1px solid #dee2e6;background:#ffffff;color:#495057;padding:1rem}.p-organizationchart .p-organizationchart-node-content .p-node-toggler{background:inherit;color:inherit;border-radius:50%}.p-organizationchart .p-organizationchart-node-content .p-node-toggler:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-paginator{background:#ffffff;color:#6c757d;border:solid #e9ecef;border-width:0;padding:.5rem 1rem;border-radius:3px}.p-paginator .p-paginator-first,.p-paginator .p-paginator-prev,.p-paginator .p-paginator-next,.p-paginator .p-paginator-last{background-color:transparent;border:0 none;color:#6c757d;min-width:1.75rem;height:1.75rem;margin:.143rem;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover,.p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover,.p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover,.p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover{background:#e9ecef;border-color:transparent;color:#6c757d}.p-paginator .p-paginator-first{border-top-left-radius:3px;border-bottom-left-radius:3px}.p-paginator .p-paginator-last{border-top-right-radius:3px;border-bottom-right-radius:3px}.p-paginator .p-dropdown{margin-left:.5rem;margin-right:.5rem;height:1.75rem}.p-paginator .p-dropdown .p-dropdown-label{padding-right:0}.p-paginator .p-paginator-page-input{margin-left:.5rem;margin-right:.5rem}.p-paginator .p-paginator-page-input .p-inputtext{max-width:1.75rem}.p-paginator .p-paginator-current{background-color:transparent;border:0 none;color:#6c757d;min-width:1.75rem;height:1.75rem;margin:.143rem;padding:0 .5rem}.p-paginator .p-paginator-pages .p-paginator-page{background-color:transparent;border:0 none;color:#6c757d;min-width:1.75rem;height:1.75rem;margin:.143rem;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-paginator .p-paginator-pages .p-paginator-page.p-highlight{background:#006CB8;border-color:#006cb8;color:#fff}.p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover{background:#e9ecef;border-color:transparent;color:#6c757d}.p-picklist .p-picklist-buttons{padding:1rem}.p-picklist .p-picklist-buttons .p-button{margin-bottom:.5rem}.p-picklist .p-picklist-header{background:#f8f9fa;color:#495057;border:1px solid #dee2e6;padding:1rem;font-weight:600;border-bottom:0 none;border-top-right-radius:3px;border-top-left-radius:3px}.p-picklist .p-picklist-list{border:1px solid #dee2e6;background:#ffffff;color:#495057;padding:.5rem 0;border-bottom-right-radius:3px;border-bottom-left-radius:3px;outline:0 none}.p-picklist .p-picklist-list .p-picklist-item{padding:.5rem 1rem;margin:0;border:0 none;color:#495057;background:transparent;transition:transform .2s,background-color .2s,border-color .2s,box-shadow .2s}.p-picklist .p-picklist-list .p-picklist-item:not(.p-highlight):hover{background:#e9ecef;color:#495057}.p-picklist .p-picklist-list .p-picklist-item.p-focus{color:#495057;background:#f8f9fa}.p-picklist .p-picklist-list .p-picklist-item.p-highlight{color:#fff;background:#006CB8}.p-picklist .p-picklist-list .p-picklist-item.p-highlight.p-focus{background:rgba(0,108,184,.24)}.p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(2n){background:#e9ecef}.p-picklist.p-picklist-striped .p-picklist-list .p-picklist-item:nth-child(2n):hover{background:#e9ecef}.p-timeline .p-timeline-event-marker{border:2px solid #006CB8;border-radius:50%;width:1rem;height:1rem;background-color:#fff}.p-timeline .p-timeline-event-connector{background-color:#dee2e6}.p-timeline.p-timeline-vertical .p-timeline-event-opposite,.p-timeline.p-timeline-vertical .p-timeline-event-content{padding:0 1rem}.p-timeline.p-timeline-vertical .p-timeline-event-connector{width:2px}.p-timeline.p-timeline-horizontal .p-timeline-event-opposite,.p-timeline.p-timeline-horizontal .p-timeline-event-content{padding:1rem 0}.p-timeline.p-timeline-horizontal .p-timeline-event-connector{height:2px}.p-tree{border:1px solid #dee2e6;background:#ffffff;color:#495057;padding:1rem;border-radius:3px}.p-tree .p-tree-container .p-treenode{padding:.143rem;outline:0 none}.p-tree .p-tree-container .p-treenode:focus>.p-treenode-content{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .15rem #bfd1f6}.p-tree .p-tree-container .p-treenode .p-treenode-content{border-radius:3px;transition:background-color .2s,border-color .2s,box-shadow .2s;padding:.5rem}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler{margin-right:.5rem;width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-treenode-icon{margin-right:.5rem;color:#6c757d}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-checkbox{margin-right:.5rem}.p-tree .p-tree-container .p-treenode .p-treenode-content .p-checkbox .p-indeterminate .p-checkbox-icon{color:#495057}.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight{background:#006CB8;color:#fff}.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler,.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon,.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover,.p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover{color:#fff}.p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover{background:#e9ecef;color:#495057}.p-tree .p-tree-filter-container{margin-bottom:.5rem}.p-tree .p-tree-filter-container .p-tree-filter{width:100%;padding-right:1.5rem}.p-tree .p-tree-filter-container .p-tree-filter-icon{right:.5rem;color:#495057}.p-tree .p-treenode-children{padding:0 0 0 1rem}.p-tree .p-tree-loading-icon{font-size:2rem}.p-treetable .p-paginator-top{border-width:1px 0 1px 0;border-radius:0}.p-treetable .p-paginator-bottom{border-width:0 0 1px 0;border-radius:0}.p-treetable .p-treetable-header,.p-treetable .p-treetable-footer{background:#f8f9fa;color:#495057;border:1px solid #e9ecef;border-width:0 0 1px 0;padding:1rem;font-weight:600}.p-treetable .p-treetable-thead>tr>th{text-align:left;padding:1rem;border:1px solid #e9ecef;border-width:0 0 1px 0;font-weight:600;color:#495057;background:#f8f9fa;transition:background-color .2s,border-color .2s,box-shadow .2s}.p-treetable .p-treetable-tfoot>tr>td{text-align:left;padding:1rem;border:1px solid #e9ecef;border-width:0 0 1px 0;font-weight:600;color:#495057;background:#f8f9fa}.p-treetable .p-sortable-column{outline-color:#bfd1f6}.p-treetable .p-sortable-column .p-sortable-column-icon{color:#6c757d;margin-left:.5rem}.p-treetable .p-sortable-column .p-sortable-column-badge{border-radius:50%;height:1.143rem;min-width:1.143rem;line-height:1.143rem;color:#fff;background:#006CB8;margin-left:.5rem}.p-treetable .p-sortable-column:not(.p-highlight):hover{background:#e9ecef;color:#495057}.p-treetable .p-sortable-column:not(.p-highlight):hover .p-sortable-column-icon{color:#6c757d}.p-treetable .p-sortable-column.p-highlight{background:#f8f9fa;color:#006cb8}.p-treetable .p-sortable-column.p-highlight .p-sortable-column-icon{color:#006cb8}.p-treetable .p-treetable-tbody>tr{background:#ffffff;color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s}.p-treetable .p-treetable-tbody>tr>td{text-align:left;border:1px solid rgba(0,0,0,.08);border-width:0 0 1px 0;padding:1rem}.p-treetable .p-treetable-tbody>tr>td .p-treetable-toggler{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s;margin-right:.5rem}.p-treetable .p-treetable-tbody>tr>td .p-treetable-toggler:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-treetable .p-treetable-tbody>tr>td .p-treetable-toggler:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-treetable .p-treetable-tbody>tr>td .p-treetable-toggler+.p-checkbox{margin-right:.5rem}.p-treetable .p-treetable-tbody>tr>td .p-treetable-toggler+.p-checkbox .p-indeterminate .p-checkbox-icon{color:#495057}.p-treetable .p-treetable-tbody>tr:focus{outline:.15rem solid #bfd1f6;outline-offset:-.15rem}.p-treetable .p-treetable-tbody>tr.p-highlight{background:#006CB8;color:#fff}.p-treetable .p-treetable-tbody>tr.p-highlight .p-treetable-toggler{color:#fff}.p-treetable .p-treetable-tbody>tr.p-highlight .p-treetable-toggler:hover{color:#fff}.p-treetable.p-treetable-hoverable-rows .p-treetable-tbody>tr:not(.p-highlight):hover{background:#e9ecef;color:#495057}.p-treetable.p-treetable-hoverable-rows .p-treetable-tbody>tr:not(.p-highlight):hover .p-treetable-toggler{color:#495057}.p-treetable .p-column-resizer-helper{background:#006CB8}.p-treetable .p-treetable-scrollable-header,.p-treetable .p-treetable-scrollable-footer{background:#f8f9fa}.p-treetable .p-treetable-loading-icon{font-size:2rem}.p-treetable.p-treetable-gridlines .p-datatable-header{border-width:1px 1px 0 1px}.p-treetable.p-treetable-gridlines .p-treetable-footer{border-width:0 1px 1px 1px}.p-treetable.p-treetable-gridlines .p-treetable-top{border-width:0 1px 0 1px}.p-treetable.p-treetable-gridlines .p-treetable-bottom{border-width:0 1px 1px 1px}.p-treetable.p-treetable-gridlines .p-treetable-thead>tr>th{border-width:1px}.p-treetable.p-treetable-gridlines .p-treetable-tbody>tr>td{border-width:1px}.p-treetable.p-treetable-gridlines .p-treetable-tfoot>tr>td{border-width:1px}.p-treetable.p-treetable-sm .p-treetable-header{padding:.875rem}.p-treetable.p-treetable-sm .p-treetable-thead>tr>th{padding:.5rem}.p-treetable.p-treetable-sm .p-treetable-tbody>tr>td{padding:.5rem}.p-treetable.p-treetable-sm .p-treetable-tfoot>tr>td{padding:.5rem}.p-treetable.p-treetable-sm .p-treetable-footer{padding:.5rem}.p-treetable.p-treetable-lg .p-treetable-header{padding:1.25rem}.p-treetable.p-treetable-lg .p-treetable-thead>tr>th{padding:1.25rem}.p-treetable.p-treetable-lg .p-treetable-tbody>tr>td{padding:1.25rem}.p-treetable.p-treetable-lg .p-treetable-tfoot>tr>td{padding:1.25rem}.p-treetable.p-treetable-lg .p-treetable-footer{padding:1.25rem}.p-accordion .p-accordion-header .p-accordion-header-link{padding:1rem;border:1px solid #dee2e6;color:#495057;background:#f8f9fa;font-weight:600;border-radius:3px;transition:background-color .2s,border-color .2s,box-shadow .2s}.p-accordion .p-accordion-header .p-accordion-header-link .p-accordion-toggle-icon{margin-right:.5rem}.p-accordion .p-accordion-header:not(.p-disabled) .p-accordion-header-link:focus{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .2rem #bfd1f6}.p-accordion .p-accordion-header:not(.p-highlight):not(.p-disabled):hover .p-accordion-header-link{background:#e9ecef;border-color:1px solid #dee2e6;color:#495057}.p-accordion .p-accordion-header:not(.p-disabled).p-highlight .p-accordion-header-link{background:#f8f9fa;border-color:#dee2e6;color:#495057;border-bottom-right-radius:0;border-bottom-left-radius:0}.p-accordion .p-accordion-header:not(.p-disabled).p-highlight:hover .p-accordion-header-link{border-color:#dee2e6;background:#e9ecef;color:#495057}.p-accordion .p-accordion-content{padding:1rem;border:1px solid #dee2e6;background:#ffffff;color:#495057;border-top:0;border-radius:0 0 3px 3px}.p-accordion .p-accordion-tab{margin-bottom:0}.p-accordion .p-accordion-tab .p-accordion-header .p-accordion-header-link{border-radius:0}.p-accordion .p-accordion-tab .p-accordion-content{border-bottom-right-radius:0;border-bottom-left-radius:0}.p-accordion .p-accordion-tab:not(:first-child) .p-accordion-header .p-accordion-header-link{border-top:0 none}.p-accordion .p-accordion-tab:not(:first-child) .p-accordion-header:not(.p-highlight):not(.p-disabled):hover .p-accordion-header-link,.p-accordion .p-accordion-tab:not(:first-child) .p-accordion-header:not(.p-disabled).p-highlight:hover .p-accordion-header-link{border-top:0 none}.p-accordion .p-accordion-tab:first-child .p-accordion-header .p-accordion-header-link{border-top-right-radius:3px;border-top-left-radius:3px}.p-accordion .p-accordion-tab:last-child .p-accordion-header:not(.p-highlight) .p-accordion-header-link{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-accordion .p-accordion-tab:last-child .p-accordion-content{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-card{background:#ffffff;color:#495057;box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;border-radius:3px}.p-card .p-card-body{padding:1rem}.p-card .p-card-title{font-size:1.5rem;font-weight:700;margin-bottom:.5rem}.p-card .p-card-subtitle{font-weight:700;margin-bottom:.5rem;color:#6c757d}.p-card .p-card-content{padding:1rem 0}.p-card .p-card-footer{padding:1rem 0 0}.p-fieldset{border:1px solid #dee2e6;background:#ffffff;color:#495057;border-radius:3px}.p-fieldset .p-fieldset-legend{padding:1rem;border:1px solid #dee2e6;color:#495057;background:#f8f9fa;font-weight:600;border-radius:3px}.p-fieldset.p-fieldset-toggleable .p-fieldset-legend{padding:0;transition:background-color .2s,color .2s,box-shadow .2s}.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a{padding:1rem;color:#495057;border-radius:3px;transition:background-color .2s,border-color .2s,box-shadow .2s}.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a .p-fieldset-toggler{margin-right:.5rem}.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:hover{color:#495057}.p-fieldset.p-fieldset-toggleable .p-fieldset-legend:hover{background:#e9ecef;border-color:#dee2e6;color:#495057}.p-fieldset .p-fieldset-content{padding:1rem}.p-divider .p-divider-content{background-color:#fff}.p-divider.p-divider-horizontal{margin:1rem 0;padding:0 1rem}.p-divider.p-divider-horizontal:before{border-top:1px #dee2e6}.p-divider.p-divider-horizontal .p-divider-content{padding:0 .5rem}.p-divider.p-divider-vertical{margin:0 1rem;padding:1rem 0}.p-divider.p-divider-vertical:before{border-left:1px #dee2e6}.p-divider.p-divider-vertical .p-divider-content{padding:.5rem 0}.p-panel .p-panel-header{border:1px solid #dee2e6;padding:1rem;background:#f8f9fa;color:#495057;border-top-right-radius:3px;border-top-left-radius:3px}.p-panel .p-panel-header .p-panel-title{font-weight:600}.p-panel .p-panel-header .p-panel-header-icon{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-panel .p-panel-header .p-panel-header-icon:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-panel .p-panel-header .p-panel-header-icon:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-panel.p-panel-toggleable .p-panel-header{padding:.5rem 1rem}.p-panel .p-panel-content{padding:1rem;border:1px solid #dee2e6;background:#ffffff;color:#495057;border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-top:0 none}.p-panel .p-panel-footer{padding:.5rem 1rem;border:1px solid #dee2e6;background:#ffffff;color:#495057;border-top:0 none}.p-scrollpanel .p-scrollpanel-bar{background:#f8f9fa;border:0 none;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-scrollpanel .p-scrollpanel-bar:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-splitter{border:1px solid #dee2e6;background:#ffffff;border-radius:3px;color:#495057}.p-splitter .p-splitter-gutter{transition:background-color .2s,color .2s,box-shadow .2s;background:#f8f9fa}.p-splitter .p-splitter-gutter .p-splitter-gutter-handle{background:#dee2e6;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-splitter .p-splitter-gutter .p-splitter-gutter-handle:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-splitter .p-splitter-gutter-resizing{background:#dee2e6}.p-tabview .p-tabview-nav{background:#ffffff;border:1px solid #dee2e6;border-width:0 0 2px 0}.p-tabview .p-tabview-nav li{margin-right:0}.p-tabview .p-tabview-nav li .p-tabview-nav-link{border:solid #dee2e6;border-width:0 0 2px 0;border-color:transparent transparent #dee2e6 transparent;background:#ffffff;color:#6c757d;padding:1rem;font-weight:600;border-top-right-radius:3px;border-top-left-radius:3px;transition:background-color .2s,border-color .2s,box-shadow .2s;margin:0 0 -2px}.p-tabview .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .2rem #bfd1f6}.p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link{background:#ffffff;border-color:#9ba2aa;color:#6c757d}.p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link{background:#ffffff;border-color:#006cb8;color:#006cb8}.p-tabview .p-tabview-nav-btn.p-link{background:#ffffff;color:#006cb8;width:1.75rem;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f;border-radius:0}.p-tabview .p-tabview-nav-btn.p-link:focus{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .2rem #bfd1f6}.p-tabview .p-tabview-panels{background:#ffffff;padding:1rem;border:0 none;color:#495057;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-toolbar{background:#f8f9fa;border:1px solid #dee2e6;padding:1rem;border-radius:3px;gap:.5rem}.p-toolbar .p-toolbar-separator{margin:0 .5rem}.p-confirm-popup{background:#ffffff;color:#495057;border:0 none;border-radius:3px;box-shadow:0 0 14px #0000001a}.p-confirm-popup .p-confirm-popup-content{padding:1rem}.p-confirm-popup .p-confirm-popup-footer{text-align:right;padding:0 1rem 1rem}.p-confirm-popup .p-confirm-popup-footer button{margin:0 .5rem 0 0;width:auto}.p-confirm-popup .p-confirm-popup-footer button:last-child{margin:0}.p-confirm-popup:after{border:solid transparent;border-color:#fff0;border-bottom-color:#fff}.p-confirm-popup:before{border:solid transparent;border-color:#fff0;border-bottom-color:#fff}.p-confirm-popup.p-confirm-popup-flipped:after{border-top-color:#fff}.p-confirm-popup.p-confirm-popup-flipped:before{border-top-color:#fff}.p-confirm-popup .p-confirm-popup-icon{font-size:1.5rem}.p-confirm-popup .p-confirm-popup-message{margin-left:1rem}.p-dialog{border-radius:3px;box-shadow:0 0 14px #0000001a;border:0 none}.p-dialog .p-dialog-header{border-bottom:1px solid #dee2e6;background:#ffffff;color:#495057;padding:1.5rem;border-top-right-radius:3px;border-top-left-radius:3px}.p-dialog .p-dialog-header .p-dialog-title{font-weight:600;font-size:1.25rem}.p-dialog .p-dialog-header .p-dialog-header-icon{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s;margin-right:.5rem}.p-dialog .p-dialog-header .p-dialog-header-icon:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-dialog .p-dialog-header .p-dialog-header-icon:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-dialog .p-dialog-header .p-dialog-header-icon:last-child{margin-right:0}.p-dialog .p-dialog-content{background:#ffffff;color:#495057;padding:0 1.5rem}.p-dialog .p-dialog-content:last-of-type{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-dialog .p-dialog-footer{border-top:1px solid #dee2e6;background:#ffffff;color:#495057;padding:1.5rem;text-align:right;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-dialog .p-dialog-footer button{margin:0 .5rem 0 0;width:auto}.p-dialog.p-confirm-dialog .p-confirm-dialog-icon{font-size:2rem}.p-dialog.p-confirm-dialog .p-confirm-dialog-message:not(:first-child){margin-left:1rem}.p-overlaypanel{background:#ffffff;color:#495057;border:0 none;border-radius:3px;box-shadow:0 0 14px #0000001a}.p-overlaypanel .p-overlaypanel-content{padding:1rem}.p-overlaypanel .p-overlaypanel-close{background:#006CB8;color:#fff;width:2rem;height:2rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:50%;position:absolute;top:-1rem;right:-1rem}.p-overlaypanel .p-overlaypanel-close:enabled:hover{background:#00548f;color:#fff}.p-overlaypanel:after{border:solid transparent;border-color:#fff0;border-bottom-color:#fff}.p-overlaypanel:before{border:solid transparent;border-color:#fff0;border-bottom-color:#f2f2f2}.p-overlaypanel.p-overlaypanel-flipped:after{border-top-color:#fff}.p-overlaypanel.p-overlaypanel-flipped:before{border-top-color:#fff}.p-sidebar{background:#ffffff;color:#495057;border:0 none;box-shadow:0 0 14px #0000001a}.p-sidebar .p-sidebar-header{padding:1rem}.p-sidebar .p-sidebar-header .p-sidebar-close,.p-sidebar .p-sidebar-header .p-sidebar-icon{width:2rem;height:2rem;color:#6c757d;border:0 none;background:transparent;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover,.p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover{color:#495057;border-color:transparent;background:#e9ecef}.p-sidebar .p-sidebar-header .p-sidebar-close:focus,.p-sidebar .p-sidebar-header .p-sidebar-icon:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-sidebar .p-sidebar-header+.p-sidebar-content{padding-top:0}.p-sidebar .p-sidebar-content{padding:1rem}.p-tooltip .p-tooltip-text{background:#495057;color:#fff;padding:.5rem;box-shadow:0 3px 6px #0000001a;border-radius:3px}.p-tooltip.p-tooltip-right .p-tooltip-arrow{border-right-color:#495057}.p-tooltip.p-tooltip-left .p-tooltip-arrow{border-left-color:#495057}.p-tooltip.p-tooltip-top .p-tooltip-arrow{border-top-color:#495057}.p-tooltip.p-tooltip-bottom .p-tooltip-arrow{border-bottom-color:#495057}.p-fileupload .p-fileupload-buttonbar{background:#f8f9fa;padding:1rem;border:1px solid #dee2e6;color:#495057;border-bottom:0 none;border-top-right-radius:3px;border-top-left-radius:3px;gap:.5rem}.p-fileupload .p-fileupload-buttonbar .p-button.p-fileupload-choose.p-focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-fileupload .p-fileupload-content{background:#ffffff;padding:2rem 1rem;border:1px solid #dee2e6;color:#495057;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-fileupload .p-fileupload-file{padding:1rem;border:1px solid #c3cad2;border-radius:3px;gap:.5rem;margin-bottom:.5rem}.p-fileupload .p-fileupload-file:last-child{margin-bottom:0}.p-fileupload .p-fileupload-file-name{margin-bottom:.5rem}.p-fileupload .p-fileupload-file-size{margin-right:.5rem}.p-fileupload .p-progressbar{height:.25rem}.p-fileupload .p-fileupload-row>div{padding:1rem}.p-fileupload.p-fileupload-advanced .p-message{margin-top:0}.p-fileupload-choose:not(.p-disabled):hover{background:#00548f;color:#fff;border-color:#00548f}.p-fileupload-choose:not(.p-disabled):active{background:#00548f;color:#fff;border-color:#00548f}.p-breadcrumb{background:#ffffff;border:1px solid #dee2e6;border-radius:3px;padding:1rem}.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link{transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link .p-menuitem-text{color:#495057}.p-breadcrumb .p-breadcrumb-list li .p-menuitem-link .p-menuitem-icon{color:#6c757d}.p-breadcrumb .p-breadcrumb-list li.p-menuitem-separator{margin:0 .5rem;color:#495057}.p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-text{color:#495057}.p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon{color:#6c757d}.p-contextmenu{padding:.25rem 0;background:#ffffff;color:#495057;border:0 none;box-shadow:0 1px 6px #0000001a;border-radius:3px;width:12.5rem}.p-contextmenu .p-contextmenu-root-list{outline:0 none}.p-contextmenu .p-submenu-list{padding:.25rem 0;background:#ffffff;border:0 none;box-shadow:0 1px 6px #0000001a;border-radius:3px}.p-contextmenu .p-menuitem>.p-menuitem-content{color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-contextmenu .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#495057;padding:.75rem 1rem;-webkit-user-select:none;user-select:none}.p-contextmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-contextmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6c757d;margin-right:.5rem}.p-contextmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-contextmenu .p-menuitem.p-highlight>.p-menuitem-content{color:#495057;background:#e9ecef}.p-contextmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-contextmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-contextmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-contextmenu .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#e9ecef}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#495057;background:#f8f9fa}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#495057}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#495057;background:#e9ecef}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#495057}.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-contextmenu .p-menuitem-separator{border-top:1px solid #dee2e6;margin:.25rem 0}.p-contextmenu .p-submenu-icon{font-size:.875rem}.p-dock .p-dock-list-container{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);padding:.5rem;border-radius:.5rem}.p-dock .p-dock-list-container .p-dock-list{outline:0 none}.p-dock .p-dock-item{padding:.5rem;border-radius:3px}.p-dock .p-dock-item.p-focus{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .15rem #bfd1f6}.p-dock .p-dock-link{width:4rem;height:4rem}.p-dock.p-dock-top .p-dock-item-second-prev,.p-dock.p-dock-top .p-dock-item-second-next,.p-dock.p-dock-bottom .p-dock-item-second-prev,.p-dock.p-dock-bottom .p-dock-item-second-next{margin:0 .9rem}.p-dock.p-dock-top .p-dock-item-prev,.p-dock.p-dock-top .p-dock-item-next,.p-dock.p-dock-bottom .p-dock-item-prev,.p-dock.p-dock-bottom .p-dock-item-next{margin:0 1.3rem}.p-dock.p-dock-top .p-dock-item-current,.p-dock.p-dock-bottom .p-dock-item-current{margin:0 1.5rem}.p-dock.p-dock-left .p-dock-item-second-prev,.p-dock.p-dock-left .p-dock-item-second-next,.p-dock.p-dock-right .p-dock-item-second-prev,.p-dock.p-dock-right .p-dock-item-second-next{margin:.9rem 0}.p-dock.p-dock-left .p-dock-item-prev,.p-dock.p-dock-left .p-dock-item-next,.p-dock.p-dock-right .p-dock-item-prev,.p-dock.p-dock-right .p-dock-item-next{margin:1.3rem 0}.p-dock.p-dock-left .p-dock-item-current,.p-dock.p-dock-right .p-dock-item-current{margin:1.5rem 0}@media screen and (max-width: 960px){.p-dock.p-dock-top .p-dock-list-container,.p-dock.p-dock-bottom .p-dock-list-container{overflow-x:auto;width:100%}.p-dock.p-dock-top .p-dock-list-container .p-dock-list,.p-dock.p-dock-bottom .p-dock-list-container .p-dock-list{margin:0 auto}.p-dock.p-dock-left .p-dock-list-container,.p-dock.p-dock-right .p-dock-list-container{overflow-y:auto;height:100%}.p-dock.p-dock-left .p-dock-list-container .p-dock-list,.p-dock.p-dock-right .p-dock-list-container .p-dock-list{margin:auto 0}.p-dock .p-dock-list .p-dock-item{transform:none;margin:0}}.p-megamenu{padding:.5rem;background:#f8f9fa;color:#495057;border:1px solid #dee2e6;border-radius:3px}.p-megamenu .p-megamenu-root-list{outline:0 none}.p-megamenu .p-menuitem>.p-menuitem-content{color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-megamenu .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#495057;padding:.75rem 1rem;-webkit-user-select:none;user-select:none}.p-megamenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-megamenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6c757d;margin-right:.5rem}.p-megamenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-megamenu .p-menuitem.p-highlight>.p-menuitem-content{color:#495057;background:#e9ecef}.p-megamenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-megamenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-megamenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-megamenu .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#e9ecef}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#495057;background:#f8f9fa}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#495057}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#495057;background:#e9ecef}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#495057}.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-megamenu .p-megamenu-panel{background:#ffffff;color:#495057;border:0 none;box-shadow:0 1px 6px #0000001a}.p-megamenu .p-submenu-header{margin:0;padding:.75rem 1rem;color:#495057;background:#ffffff;font-weight:600;border-top-right-radius:3px;border-top-left-radius:3px}.p-megamenu .p-submenu-list{padding:.25rem 0;width:12.5rem}.p-megamenu .p-submenu-list .p-menuitem-separator{border-top:1px solid #dee2e6;margin:.25rem 0}.p-megamenu.p-megamenu-vertical{width:12.5rem;padding:.25rem 0}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content{color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link{padding:.75rem 1rem;-webkit-user-select:none;user-select:none}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6c757d;margin-right:.5rem}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d;margin-left:.5rem}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#495057;background:#e9ecef}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#495057}.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-megamenu.p-megamenu-horizontal .p-megamenu-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-menu{padding:.25rem 0;background:#ffffff;color:#495057;border:1px solid #dee2e6;border-radius:3px;width:12.5rem}.p-menu .p-menuitem>.p-menuitem-content{color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-menu .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#495057;padding:.75rem 1rem;-webkit-user-select:none;user-select:none}.p-menu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-menu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6c757d;margin-right:.5rem}.p-menu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-menu .p-menuitem.p-highlight>.p-menuitem-content{color:#495057;background:#e9ecef}.p-menu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-menu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-menu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-menu .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#e9ecef}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#495057;background:#f8f9fa}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#495057}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#495057;background:#e9ecef}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#495057}.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-menu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-menu.p-menu-overlay{background:#ffffff;border:0 none;box-shadow:0 1px 6px #0000001a}.p-menu .p-submenu-header{margin:0;padding:.75rem 1rem;color:#495057;background:#ffffff;font-weight:600;border-top-right-radius:0;border-top-left-radius:0}.p-menu .p-menuitem-separator{border-top:1px solid #dee2e6;margin:.25rem 0}.p-menubar{padding:.5rem;background:#f8f9fa;color:#495057;border:1px solid #dee2e6;border-radius:3px}.p-menubar .p-menubar-root-list{outline:0 none}.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content{color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:3px}.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link{padding:.75rem 1rem;-webkit-user-select:none;user-select:none}.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6c757d;margin-right:.5rem}.p-menubar .p-menubar-root-list>.p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d;margin-left:.5rem}.p-menubar .p-menubar-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#495057;background:#e9ecef}.p-menubar .p-menubar-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#495057}.p-menubar .p-menubar-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-menubar .p-menubar-root-list>.p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-menubar .p-menuitem>.p-menuitem-content{color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-menubar .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#495057;padding:.75rem 1rem;-webkit-user-select:none;user-select:none}.p-menubar .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-menubar .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6c757d;margin-right:.5rem}.p-menubar .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-menubar .p-menuitem.p-highlight>.p-menuitem-content{color:#495057;background:#e9ecef}.p-menubar .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-menubar .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-menubar .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-menubar .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#e9ecef}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#495057;background:#f8f9fa}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#495057}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#495057;background:#e9ecef}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#495057}.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-menubar .p-submenu-list{padding:.25rem 0;background:#ffffff;border:0 none;box-shadow:0 1px 6px #0000001a;width:12.5rem}.p-menubar .p-submenu-list .p-menuitem-separator{border-top:1px solid #dee2e6;margin:.25rem 0}.p-menubar .p-submenu-list .p-submenu-icon{font-size:.875rem}@media screen and (max-width: 960px){.p-menubar{position:relative}.p-menubar .p-menubar-button{display:flex;width:2rem;height:2rem;color:#6c757d;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s}.p-menubar .p-menubar-button:hover{color:#6c757d;background:#e9ecef}.p-menubar .p-menubar-button:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-menubar .p-menubar-root-list{position:absolute;display:none;padding:.25rem 0;background:#ffffff;border:0 none;box-shadow:0 1px 6px #0000001a;width:100%}.p-menubar .p-menubar-root-list .p-menuitem-separator{border-top:1px solid #dee2e6;margin:.25rem 0}.p-menubar .p-menubar-root-list .p-submenu-icon{font-size:.875rem}.p-menubar .p-menubar-root-list .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon{margin-left:auto;transition:transform .2s}.p-menubar .p-menubar-root-list .p-menuitem.p-menuitem-active>.p-menuitem-content>.p-menuitem-link>.p-submenu-icon{transform:rotate(-180deg)}.p-menubar .p-menubar-root-list .p-submenu-list{width:100%;position:static;box-shadow:none;border:0 none}.p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon{transition:transform .2s;transform:rotate(90deg)}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active>.p-menuitem-content>.p-menuitem-link>.p-submenu-icon{transform:rotate(-90deg)}.p-menubar .p-menubar-root-list .p-menuitem{width:100%;position:static}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link{padding-left:2.25rem}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link{padding-left:3.75rem}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link{padding-left:5.25rem}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link{padding-left:6.75rem}.p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-submenu-list .p-menuitem .p-menuitem-content .p-menuitem-link{padding-left:8.25rem}.p-menubar.p-menubar-mobile-active .p-menubar-root-list{display:flex;flex-direction:column;top:100%;left:0;z-index:1}}.p-panelmenu .p-panelmenu-header{outline:0 none}.p-panelmenu .p-panelmenu-header .p-panelmenu-header-content{border:1px solid #dee2e6;color:#495057;background:#f8f9fa;border-radius:3px;transition:background-color .2s,border-color .2s,box-shadow .2s}.p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action{color:#495057;padding:1rem;font-weight:600}.p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-submenu-icon,.p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-action .p-menuitem-icon{margin-right:.5rem}.p-panelmenu .p-panelmenu-header:not(.p-disabled):focus .p-panelmenu-header-content{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .2rem #bfd1f6}.p-panelmenu .p-panelmenu-header:not(.p-highlight):not(.p-disabled):hover .p-panelmenu-header-content{background:#e9ecef;border-color:1px solid #dee2e6;color:#495057}.p-panelmenu .p-panelmenu-header:not(.p-disabled).p-highlight .p-panelmenu-header-content{background:#f8f9fa;border-color:#dee2e6;color:#495057;border-bottom-right-radius:0;border-bottom-left-radius:0;margin-bottom:0}.p-panelmenu .p-panelmenu-header:not(.p-disabled).p-highlight:hover .p-panelmenu-header-content{border-color:#dee2e6;background:#e9ecef;color:#495057}.p-panelmenu .p-panelmenu-content{padding:.25rem 0;border:1px solid #dee2e6;background:#ffffff;color:#495057;border-top:0;border-radius:0 0 3px 3px}.p-panelmenu .p-panelmenu-content .p-panelmenu-root-list{outline:0 none}.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content{color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#495057;padding:.75rem 1rem;-webkit-user-select:none;user-select:none}.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6c757d;margin-right:.5rem}.p-panelmenu .p-panelmenu-content .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight>.p-menuitem-content{color:#495057;background:#e9ecef}.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#e9ecef}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#495057;background:#f8f9fa}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#495057}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#495057;background:#e9ecef}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#495057}.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon{margin-right:.5rem}.p-panelmenu .p-panelmenu-content .p-menuitem-separator{border-top:1px solid #dee2e6;margin:.25rem 0}.p-panelmenu .p-panelmenu-content .p-submenu-list:not(.p-panelmenu-root-list){padding:0 0 0 1rem}.p-panelmenu .p-panelmenu-panel{margin-bottom:0}.p-panelmenu .p-panelmenu-panel .p-panelmenu-header .p-panelmenu-header-content,.p-panelmenu .p-panelmenu-panel .p-panelmenu-content{border-radius:0}.p-panelmenu .p-panelmenu-panel:not(:first-child) .p-panelmenu-header .p-panelmenu-header-content{border-top:0 none}.p-panelmenu .p-panelmenu-panel:not(:first-child) .p-panelmenu-header:not(.p-highlight):not(.p-disabled):hover .p-panelmenu-header-content,.p-panelmenu .p-panelmenu-panel:not(:first-child) .p-panelmenu-header:not(.p-disabled).p-highlight:hover .p-panelmenu-header-content{border-top:0 none}.p-panelmenu .p-panelmenu-panel:first-child .p-panelmenu-header .p-panelmenu-header-content{border-top-right-radius:3px;border-top-left-radius:3px}.p-panelmenu .p-panelmenu-panel:last-child .p-panelmenu-header:not(.p-highlight) .p-panelmenu-header-content{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-panelmenu .p-panelmenu-panel:last-child .p-panelmenu-content{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.p-steps .p-steps-item .p-menuitem-link{background:transparent;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:3px;background:#ffffff}.p-steps .p-steps-item .p-menuitem-link .p-steps-number{color:#495057;border:1px solid #c8c8c8;background:#ffffff;min-width:2rem;height:2rem;line-height:2rem;font-size:1.143rem;z-index:1;border-radius:50%}.p-steps .p-steps-item .p-menuitem-link .p-steps-title{margin-top:.5rem;color:#6c757d}.p-steps .p-steps-item .p-menuitem-link:not(.p-disabled):focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-steps .p-steps-item.p-highlight .p-steps-number{background:#006CB8;color:#fff}.p-steps .p-steps-item.p-highlight .p-steps-title{font-weight:600;color:#495057}.p-steps .p-steps-item:before{content:" ";border-top:1px solid #dee2e6;width:100%;top:50%;left:0;display:block;position:absolute;margin-top:-1rem}.p-tabmenu .p-tabmenu-nav{background:#ffffff;border:1px solid #dee2e6;border-width:0 0 2px 0}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem{margin-right:0}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link{border:solid #dee2e6;border-width:0 0 2px 0;border-color:transparent transparent #dee2e6 transparent;background:#ffffff;color:#6c757d;padding:1rem;font-weight:600;border-top-right-radius:3px;border-top-left-radius:3px;transition:background-color .2s,border-color .2s,box-shadow .2s;margin:0 0 -2px}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link .p-menuitem-icon{margin-right:.5rem}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link:not(.p-disabled):focus{outline:0 none;outline-offset:0;box-shadow:inset 0 0 0 .2rem #bfd1f6}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem:not(.p-highlight):not(.p-disabled):hover .p-menuitem-link{background:#ffffff;border-color:#9ba2aa;color:#6c757d}.p-tabmenu .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link{background:#ffffff;border-color:#006cb8;color:#006cb8}.p-tieredmenu{padding:.25rem 0;background:#ffffff;color:#495057;border:1px solid #dee2e6;border-radius:3px;width:12.5rem}.p-tieredmenu.p-tieredmenu-overlay{background:#ffffff;border:0 none;box-shadow:0 1px 6px #0000001a}.p-tieredmenu .p-tieredmenu-root-list{outline:0 none}.p-tieredmenu .p-submenu-list{padding:.25rem 0;background:#ffffff;border:0 none;box-shadow:0 1px 6px #0000001a}.p-tieredmenu .p-menuitem>.p-menuitem-content{color:#495057;transition:background-color .2s,border-color .2s,box-shadow .2s;border-radius:0}.p-tieredmenu .p-menuitem>.p-menuitem-content .p-menuitem-link{color:#495057;padding:.75rem 1rem;-webkit-user-select:none;user-select:none}.p-tieredmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-tieredmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-menuitem-icon{color:#6c757d;margin-right:.5rem}.p-tieredmenu .p-menuitem>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-tieredmenu .p-menuitem.p-highlight>.p-menuitem-content{color:#495057;background:#e9ecef}.p-tieredmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-tieredmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-tieredmenu .p-menuitem.p-highlight>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-tieredmenu .p-menuitem.p-highlight.p-focus>.p-menuitem-content{background:#e9ecef}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content{color:#495057;background:#f8f9fa}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-text{color:#495057}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-menuitem-icon,.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus>.p-menuitem-content .p-menuitem-link .p-submenu-icon{color:#495057}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover{color:#495057;background:#e9ecef}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-text{color:#495057}.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon,.p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled)>.p-menuitem-content:hover .p-menuitem-link .p-submenu-icon{color:#6c757d}.p-tieredmenu .p-menuitem-separator{border-top:1px solid #dee2e6;margin:.25rem 0}.p-tieredmenu .p-submenu-icon{font-size:.875rem}.p-inline-message{padding:.5rem;margin:0;border-radius:3px}.p-inline-message.p-inline-message-info{background:rgba(219,234,254,.7);border:solid #3b82f6;border-width:1px;color:#3b82f6}.p-inline-message.p-inline-message-info .p-inline-message-icon{color:#3b82f6}.p-inline-message.p-inline-message-success{background:rgba(228,248,240,.7);border:0 none;border-width:1px;color:#1ea97c}.p-inline-message.p-inline-message-success .p-inline-message-icon{color:#1ea97c}.p-inline-message.p-inline-message-warn{background:rgba(255,242,226,.7);border:0 none;border-width:1px;color:#cc8925}.p-inline-message.p-inline-message-warn .p-inline-message-icon{color:#cc8925}.p-inline-message.p-inline-message-error{background:rgba(255,231,230,.7);border:0 none;border-width:1px;color:#ff5757}.p-inline-message.p-inline-message-error .p-inline-message-icon{color:#ff5757}.p-inline-message .p-inline-message-icon{font-size:1rem;margin-right:.5rem}.p-inline-message .p-inline-message-text{font-size:1rem}.p-inline-message.p-inline-message-icon-only .p-inline-message-icon{margin-right:0}.p-message{margin:1rem 0;border-radius:3px}.p-message .p-message-wrapper{padding:1rem 1.5rem}.p-message .p-message-close{width:2rem;height:2rem;border-radius:50%;background:transparent;transition:background-color .2s,color .2s,box-shadow .2s}.p-message .p-message-close:hover{background:rgba(255,255,255,.3)}.p-message .p-message-close:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-message.p-message-info{background:rgba(219,234,254,.7);border:solid #3b82f6;border-width:0 0 0 4px;color:#3b82f6}.p-message.p-message-info .p-message-icon,.p-message.p-message-info .p-message-close{color:#3b82f6}.p-message.p-message-success{background:rgba(228,248,240,.7);border:0 none;border-width:0 0 0 4px;color:#1ea97c}.p-message.p-message-success .p-message-icon,.p-message.p-message-success .p-message-close{color:#1ea97c}.p-message.p-message-warn{background:rgba(255,242,226,.7);border:0 none;border-width:0 0 0 4px;color:#cc8925}.p-message.p-message-warn .p-message-icon,.p-message.p-message-warn .p-message-close{color:#cc8925}.p-message.p-message-error{background:rgba(255,231,230,.7);border:0 none;border-width:0 0 0 4px;color:#ff5757}.p-message.p-message-error .p-message-icon,.p-message.p-message-error .p-message-close{color:#ff5757}.p-message .p-message-text{font-size:1rem;font-weight:500}.p-message .p-message-icon{font-size:1.5rem;margin-right:.5rem}.p-toast{opacity:.9}.p-toast .p-toast-message{margin:0 0 1rem;box-shadow:0 3px 14px #0000004d;border-radius:3px}.p-toast .p-toast-message .p-toast-message-content{padding:1rem;border-width:0 0 0 4px}.p-toast .p-toast-message .p-toast-message-content .p-toast-message-text{margin:0 0 0 1rem}.p-toast .p-toast-message .p-toast-message-content .p-toast-message-icon{font-size:2rem}.p-toast .p-toast-message .p-toast-message-content .p-toast-summary{font-weight:700}.p-toast .p-toast-message .p-toast-message-content .p-toast-detail{margin:.5rem 0 0}.p-toast .p-toast-message .p-toast-icon-close{width:2rem;height:2rem;border-radius:50%;background:transparent;transition:background-color .2s,color .2s,box-shadow .2s}.p-toast .p-toast-message .p-toast-icon-close:hover{background:rgba(255,255,255,.3)}.p-toast .p-toast-message .p-toast-icon-close:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-toast .p-toast-message.p-toast-message-info{background:rgba(219,234,254,.7);border:solid #3b82f6;border-width:0 0 0 4px;color:#3b82f6}.p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon,.p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close{color:#3b82f6}.p-toast .p-toast-message.p-toast-message-success{background:rgba(228,248,240,.7);border:0 none;border-width:0 0 0 4px;color:#1ea97c}.p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon,.p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close{color:#1ea97c}.p-toast .p-toast-message.p-toast-message-warn{background:rgba(255,242,226,.7);border:0 none;border-width:0 0 0 4px;color:#cc8925}.p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon,.p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close{color:#cc8925}.p-toast .p-toast-message.p-toast-message-error{background:rgba(255,231,230,.7);border:0 none;border-width:0 0 0 4px;color:#ff5757}.p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon,.p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close{color:#ff5757}.p-galleria .p-galleria-close{margin:.5rem;background:transparent;color:#ebedef;width:4rem;height:4rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:50%}.p-galleria .p-galleria-close .p-galleria-close-icon{font-size:2rem}.p-galleria .p-galleria-close:hover{background:rgba(255,255,255,.1);color:#ebedef}.p-galleria .p-galleria-item-nav{background:rgba(0,0,0,.2);color:#aeb6bf;width:4rem;height:4rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:3px;margin:.5rem 0}.p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon,.p-galleria .p-galleria-item-nav .p-galleria-item-next-icon{font-size:2rem}.p-galleria .p-galleria-item-nav:not(.p-disabled):hover{background:rgba(0,0,0,.3);color:#ebedef}.p-galleria .p-galleria-caption{background:rgba(0,0,0,.5);color:#ebedef;padding:1rem}.p-galleria .p-galleria-indicators{padding:1rem}.p-galleria .p-galleria-indicators .p-galleria-indicator button{background-color:#e9ecef;width:1rem;height:1rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:50%}.p-galleria .p-galleria-indicators .p-galleria-indicator button:hover{background:#dee2e6}.p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button{background:#006CB8;color:#fff}.p-galleria.p-galleria-indicators-bottom .p-galleria-indicator,.p-galleria.p-galleria-indicators-top .p-galleria-indicator{margin-right:.5rem}.p-galleria.p-galleria-indicators-left .p-galleria-indicator,.p-galleria.p-galleria-indicators-right .p-galleria-indicator{margin-bottom:.5rem}.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators{background:rgba(0,0,0,.5)}.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator button{background:rgba(255,255,255,.4)}.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator button:hover{background:rgba(255,255,255,.6)}.p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button{background:#006CB8;color:#fff}.p-galleria .p-galleria-thumbnail-container{background:rgba(0,0,0,.9);padding:1rem .25rem}.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev,.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next{margin:.5rem;background-color:transparent;color:#aeb6bf;width:2rem;height:2rem;transition:background-color .2s,color .2s,box-shadow .2s;border-radius:50%}.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover,.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover{background:rgba(255,255,255,.1);color:#aeb6bf}.p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-item-content:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-galleria-mask,.p-image-mask{--maskbg: rgba(0, 0, 0, .9)}.p-image-preview-indicator{background-color:transparent;color:#f8f9fa;transition:background-color .2s,color .2s,box-shadow .2s}.p-image-preview-container:hover>.p-image-preview-indicator{background-color:#00000080}.p-image-toolbar{padding:1rem}.p-image-action.p-link{color:#f8f9fa;background-color:transparent;width:3rem;height:3rem;border-radius:50%;transition:background-color .2s,color .2s,box-shadow .2s;margin-right:.5rem}.p-image-action.p-link:last-child{margin-right:0}.p-image-action.p-link:hover{color:#f8f9fa;background-color:#ffffff1a}.p-image-action.p-link i{font-size:1.5rem}.p-avatar{background-color:#dee2e6;border-radius:3px}.p-avatar.p-avatar-lg{width:3rem;height:3rem;font-size:1.5rem}.p-avatar.p-avatar-lg .p-avatar-icon{font-size:1.5rem}.p-avatar.p-avatar-xl{width:4rem;height:4rem;font-size:2rem}.p-avatar.p-avatar-xl .p-avatar-icon{font-size:2rem}.p-avatar-group .p-avatar{border:2px solid #ffffff}.p-badge{background:#006CB8;color:#fff;font-size:.75rem;font-weight:700;min-width:1.5rem;height:1.5rem;line-height:1.5rem}.p-badge.p-badge-secondary{background-color:#607d8b;color:#fff}.p-badge.p-badge-success{background-color:#4caf50;color:#fff}.p-badge.p-badge-info{background-color:#03a9f4;color:#fff}.p-badge.p-badge-warning{background-color:#ffc107;color:#495057}.p-badge.p-badge-danger{background-color:#f44336;color:#fff}.p-badge.p-badge-lg{font-size:1.125rem;min-width:2.25rem;height:2.25rem;line-height:2.25rem}.p-badge.p-badge-xl{font-size:1.5rem;min-width:3rem;height:3rem;line-height:3rem}.p-chip{background-color:#dee2e6;color:#495057;border-radius:16px;padding:0 .5rem}.p-chip .p-chip-text{line-height:1.5;margin-top:.25rem;margin-bottom:.25rem}.p-chip .p-chip-icon{margin-right:.5rem}.p-chip img{width:2rem;height:2rem;margin-left:-.5rem;margin-right:.5rem}.p-chip .p-chip-remove-icon{margin-left:.5rem;border-radius:3px;transition:background-color .2s,color .2s,box-shadow .2s}.p-chip .p-chip-remove-icon:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-inplace .p-inplace-display{padding:.5rem;border-radius:3px;transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s}.p-inplace .p-inplace-display:not(.p-disabled):hover{background:#e9ecef;color:#495057}.p-inplace .p-inplace-display:focus{outline:0 none;outline-offset:0;box-shadow:0 0 0 .2rem #bfd1f6}.p-progressbar{border:0 none;height:1.5rem;background:#dee2e6;border-radius:3px}.p-progressbar .p-progressbar-value{border:0 none;margin:0;background:#006CB8}.p-progressbar .p-progressbar-label{color:#fff;line-height:1.5rem}.p-progress-spinner-svg{animation:p-progress-spinner-rotate 2s linear infinite}.p-progress-spinner-circle{stroke-dasharray:89,200;stroke-dashoffset:0;stroke:#ff5757;animation:p-progress-spinner-dash 1.5s ease-in-out infinite,p-progress-spinner-color 6s ease-in-out infinite;stroke-linecap:round}@keyframes p-progress-spinner-rotate{to{transform:rotate(360deg)}}@keyframes p-progress-spinner-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}to{stroke-dasharray:89,200;stroke-dashoffset:-124px}}@keyframes p-progress-spinner-color{to,0%{stroke:#ff5757}40%{stroke:#3b82f6}66%{stroke:#1ea97c}80%,90%{stroke:#cc8925}}.p-scrolltop{width:3rem;height:3rem;border-radius:50%;box-shadow:0 3px 6px #0000001a;transition:background-color .2s,color .2s,box-shadow .2s}.p-scrolltop.p-link{background:rgba(0,0,0,.7)}.p-scrolltop.p-link:hover{background:rgba(0,0,0,.8)}.p-scrolltop .p-scrolltop-icon{font-size:1.5rem;color:#f8f9fa}.p-skeleton{background-color:#e9ecef;border-radius:3px}.p-skeleton:after{background:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.4),rgba(255,255,255,0))}.p-tag{background:#006CB8;color:#fff;font-size:.75rem;font-weight:700;padding:.25rem .4rem;border-radius:3px}.p-tag.p-tag-success{background-color:#4caf50;color:#fff}.p-tag.p-tag-info{background-color:#03a9f4;color:#fff}.p-tag.p-tag-warning{background-color:#ffc107;color:#495057}.p-tag.p-tag-danger{background-color:#f44336;color:#fff}.p-tag .p-tag-icon{margin-right:.25rem;font-size:.75rem}.p-terminal{background:#ffffff;color:#495057;border:1px solid #dee2e6;padding:1rem}.p-terminal .p-terminal-input{font-size:1rem;font-family:Source Sans Pro,sans-serif}@font-face{font-family:primeicons;font-display:block;src:url(./primeicons-ce852338.eot);src:url(./primeicons-ce852338.eot?#iefix) format("embedded-opentype"),url(./primeicons-3824be50.woff2) format("woff2"),url(./primeicons-90a58d3a.woff) format("woff"),url(./primeicons-131bc3bf.ttf) format("truetype"),url(./primeicons-5e10f102.svg?#primeicons) format("svg");font-weight:400;font-style:normal}.pi{font-family:primeicons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.pi:before{--webkit-backface-visibility:hidden;backface-visibility:hidden}.pi-fw{width:1.28571429em;text-align:center}.pi-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.pi-eraser:before{content:""}.pi-stopwatch:before{content:""}.pi-verified:before{content:""}.pi-delete-left:before{content:""}.pi-hourglass:before{content:""}.pi-truck:before{content:""}.pi-wrench:before{content:""}.pi-microphone:before{content:""}.pi-megaphone:before{content:""}.pi-arrow-right-arrow-left:before{content:""}.pi-bitcoin:before{content:""}.pi-file-edit:before{content:""}.pi-language:before{content:""}.pi-file-export:before{content:""}.pi-file-import:before{content:""}.pi-file-word:before{content:""}.pi-gift:before{content:""}.pi-cart-plus:before{content:""}.pi-thumbs-down-fill:before{content:""}.pi-thumbs-up-fill:before{content:""}.pi-arrows-alt:before{content:""}.pi-calculator:before{content:""}.pi-sort-alt-slash:before{content:""}.pi-arrows-h:before{content:""}.pi-arrows-v:before{content:""}.pi-pound:before{content:""}.pi-prime:before{content:""}.pi-chart-pie:before{content:""}.pi-reddit:before{content:""}.pi-code:before{content:""}.pi-sync:before{content:""}.pi-shopping-bag:before{content:""}.pi-server:before{content:""}.pi-database:before{content:""}.pi-hashtag:before{content:""}.pi-bookmark-fill:before{content:""}.pi-filter-fill:before{content:""}.pi-heart-fill:before{content:""}.pi-flag-fill:before{content:""}.pi-circle:before{content:""}.pi-circle-fill:before{content:""}.pi-bolt:before{content:""}.pi-history:before{content:""}.pi-box:before{content:""}.pi-at:before{content:""}.pi-arrow-up-right:before{content:""}.pi-arrow-up-left:before{content:""}.pi-arrow-down-left:before{content:""}.pi-arrow-down-right:before{content:""}.pi-telegram:before{content:""}.pi-stop-circle:before{content:""}.pi-stop:before{content:""}.pi-whatsapp:before{content:""}.pi-building:before{content:""}.pi-qrcode:before{content:""}.pi-car:before{content:""}.pi-instagram:before{content:""}.pi-linkedin:before{content:""}.pi-send:before{content:""}.pi-slack:before{content:""}.pi-sun:before{content:""}.pi-moon:before{content:""}.pi-vimeo:before{content:""}.pi-youtube:before{content:""}.pi-flag:before{content:""}.pi-wallet:before{content:""}.pi-map:before{content:""}.pi-link:before{content:""}.pi-credit-card:before{content:""}.pi-discord:before{content:""}.pi-percentage:before{content:""}.pi-euro:before{content:""}.pi-book:before{content:""}.pi-shield:before{content:""}.pi-paypal:before{content:""}.pi-amazon:before{content:""}.pi-phone:before{content:""}.pi-filter-slash:before{content:""}.pi-facebook:before{content:""}.pi-github:before{content:""}.pi-twitter:before{content:""}.pi-step-backward-alt:before{content:""}.pi-step-forward-alt:before{content:""}.pi-forward:before{content:""}.pi-backward:before{content:""}.pi-fast-backward:before{content:""}.pi-fast-forward:before{content:""}.pi-pause:before{content:""}.pi-play:before{content:""}.pi-compass:before{content:""}.pi-id-card:before{content:""}.pi-ticket:before{content:""}.pi-file-o:before{content:""}.pi-reply:before{content:""}.pi-directions-alt:before{content:""}.pi-directions:before{content:""}.pi-thumbs-up:before{content:""}.pi-thumbs-down:before{content:""}.pi-sort-numeric-down-alt:before{content:""}.pi-sort-numeric-up-alt:before{content:""}.pi-sort-alpha-down-alt:before{content:""}.pi-sort-alpha-up-alt:before{content:""}.pi-sort-numeric-down:before{content:""}.pi-sort-numeric-up:before{content:""}.pi-sort-alpha-down:before{content:""}.pi-sort-alpha-up:before{content:""}.pi-sort-alt:before{content:""}.pi-sort-amount-up:before{content:""}.pi-sort-amount-down:before{content:""}.pi-sort-amount-down-alt:before{content:""}.pi-sort-amount-up-alt:before{content:""}.pi-palette:before{content:""}.pi-undo:before{content:""}.pi-desktop:before{content:""}.pi-sliders-v:before{content:""}.pi-sliders-h:before{content:""}.pi-search-plus:before{content:""}.pi-search-minus:before{content:""}.pi-file-excel:before{content:""}.pi-file-pdf:before{content:""}.pi-check-square:before{content:""}.pi-chart-line:before{content:""}.pi-user-edit:before{content:""}.pi-exclamation-circle:before{content:""}.pi-android:before{content:""}.pi-google:before{content:""}.pi-apple:before{content:""}.pi-microsoft:before{content:""}.pi-heart:before{content:""}.pi-mobile:before{content:""}.pi-tablet:before{content:""}.pi-key:before{content:""}.pi-shopping-cart:before{content:""}.pi-comments:before{content:""}.pi-comment:before{content:""}.pi-briefcase:before{content:""}.pi-bell:before{content:""}.pi-paperclip:before{content:""}.pi-share-alt:before{content:""}.pi-envelope:before{content:""}.pi-volume-down:before{content:""}.pi-volume-up:before{content:""}.pi-volume-off:before{content:""}.pi-eject:before{content:""}.pi-money-bill:before{content:""}.pi-images:before{content:""}.pi-image:before{content:""}.pi-sign-in:before{content:""}.pi-sign-out:before{content:""}.pi-wifi:before{content:""}.pi-sitemap:before{content:""}.pi-chart-bar:before{content:""}.pi-camera:before{content:""}.pi-dollar:before{content:""}.pi-lock-open:before{content:""}.pi-table:before{content:""}.pi-map-marker:before{content:""}.pi-list:before{content:""}.pi-eye-slash:before{content:""}.pi-eye:before{content:""}.pi-folder-open:before{content:""}.pi-folder:before{content:""}.pi-video:before{content:""}.pi-inbox:before{content:""}.pi-lock:before{content:""}.pi-unlock:before{content:""}.pi-tags:before{content:""}.pi-tag:before{content:""}.pi-power-off:before{content:""}.pi-save:before{content:""}.pi-question-circle:before{content:""}.pi-question:before{content:""}.pi-copy:before{content:""}.pi-file:before{content:""}.pi-clone:before{content:""}.pi-calendar-times:before{content:""}.pi-calendar-minus:before{content:""}.pi-calendar-plus:before{content:""}.pi-ellipsis-v:before{content:""}.pi-ellipsis-h:before{content:""}.pi-bookmark:before{content:""}.pi-globe:before{content:""}.pi-replay:before{content:""}.pi-filter:before{content:""}.pi-print:before{content:""}.pi-align-right:before{content:""}.pi-align-left:before{content:""}.pi-align-center:before{content:""}.pi-align-justify:before{content:""}.pi-cog:before{content:""}.pi-cloud-download:before{content:""}.pi-cloud-upload:before{content:""}.pi-cloud:before{content:""}.pi-pencil:before{content:""}.pi-users:before{content:""}.pi-clock:before{content:""}.pi-user-minus:before{content:""}.pi-user-plus:before{content:""}.pi-trash:before{content:""}.pi-external-link:before{content:""}.pi-window-maximize:before{content:""}.pi-window-minimize:before{content:""}.pi-refresh:before{content:""}.pi-user:before{content:""}.pi-exclamation-triangle:before{content:""}.pi-calendar:before{content:""}.pi-chevron-circle-left:before{content:""}.pi-chevron-circle-down:before{content:""}.pi-chevron-circle-right:before{content:""}.pi-chevron-circle-up:before{content:""}.pi-angle-double-down:before{content:""}.pi-angle-double-left:before{content:""}.pi-angle-double-right:before{content:""}.pi-angle-double-up:before{content:""}.pi-angle-down:before{content:""}.pi-angle-left:before{content:""}.pi-angle-right:before{content:""}.pi-angle-up:before{content:""}.pi-upload:before{content:""}.pi-download:before{content:""}.pi-ban:before{content:""}.pi-star-fill:before{content:""}.pi-star:before{content:""}.pi-chevron-left:before{content:""}.pi-chevron-right:before{content:""}.pi-chevron-down:before{content:""}.pi-chevron-up:before{content:""}.pi-caret-left:before{content:""}.pi-caret-right:before{content:""}.pi-caret-down:before{content:""}.pi-caret-up:before{content:""}.pi-search:before{content:""}.pi-check:before{content:""}.pi-check-circle:before{content:""}.pi-times:before{content:""}.pi-times-circle:before{content:""}.pi-plus:before{content:""}.pi-plus-circle:before{content:""}.pi-minus:before{content:""}.pi-minus-circle:before{content:""}.pi-circle-on:before{content:""}.pi-circle-off:before{content:""}.pi-sort-down:before{content:""}.pi-sort-up:before{content:""}.pi-sort:before{content:""}.pi-step-backward:before{content:""}.pi-step-forward:before{content:""}.pi-th-large:before{content:""}.pi-arrow-down:before{content:""}.pi-arrow-left:before{content:""}.pi-arrow-right:before{content:""}.pi-arrow-up:before{content:""}.pi-bars:before{content:""}.pi-arrow-circle-down:before{content:""}.pi-arrow-circle-left:before{content:""}.pi-arrow-circle-right:before{content:""}.pi-arrow-circle-up:before{content:""}.pi-info:before{content:""}.pi-info-circle:before{content:""}.pi-home:before{content:""}.pi-spinner:before{content:""} diff --git a/pages/js/duster/new-project/dist/assets/index-4102b31f.js b/pages/js/duster/new-project/dist/assets/index-a4e4c74a.js similarity index 98% rename from pages/js/duster/new-project/dist/assets/index-4102b31f.js rename to pages/js/duster/new-project/dist/assets/index-a4e4c74a.js index ebaea4f..499ce95 100644 --- a/pages/js/duster/new-project/dist/assets/index-4102b31f.js +++ b/pages/js/duster/new-project/dist/assets/index-a4e4c74a.js @@ -1860,4 +1860,4 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho [apache2_wbc_subscore] + [apache2_gcs_total_subscore] + [apache2_chronic_health_subscore]`,redcap_field_note:`[apache2_age_subscore] + [apache2_temp_c_subscore] + [apache2_map_subscore] + [apache2_hr_subscore] + [apache2_rr_subscore] + [apache2_oxy_subscore] + [apache2_pha_subscore] + [apache2_na_subscore] + [apache2_k_subscore] + [apache2_cr_subscore] + [apache2_hct_subscore] + - [apache2_wbc_subscore] + [apache2_gcs_total_subscore] + [apache2_chronic_health_subscore]`,phi:"",subscores:[{duster_field_name:"apache2_age_subscore",score_duster_field_name:"apache2_score",label:"Age Subscore",redcap_field_note:"(+0) <= 44
          (+2) 45 - 54
          (+3) 55 - 64
          (+5) 65 - 74
          (+6) > 74",redcap_options:'if([age] != "", if([age] > 74, 6, if([age] >= 65, 5, if([age] >= 55, 3, if([age] >= 45, 2, 0)))), "")',dependencies:[{duster_field_name:"age",redcap_field_note:"",label:"Age @ CW start",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_map_subscore",score_duster_field_name:"apache2_score",label:"Mean Arterial Pressure (MAP) Subscore",redcap_field_note:"(+4) > 159
          (+3) > 129 to 159
          (+2) > 109 to 129
          (+0) > 69 to 109
          (+2) > 49 to 69
          (+4) <= 49",redcap_options:'if([map_min] != "" and [map_max] != "", if([map_min] <= 49 or [map_max] > 159, 4, if([map_max] > 129, 3, if([map_min] <= 69 or [map_max] > 109, 2, 0))), "")',dependencies:[{duster_field_name:"map",aggregates:["max_agg","min_agg"],redcap_field_note:"mmHg",label:"Mean Arterial Pressure (MAP)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_pha_subscore",score_duster_field_name:"apache2_score",label:"Arterial pH Subscore",redcap_field_note:"(+4) >= 7.70
          (+3) 7.60 to < 7.70
          (+1) 7.50 to < 7.60
          (+0) 7.33 to < 7.50
          (+2) 7.25 to < 7.33
          (+3) 7.15 to < 7.25
          (+4) < 7.15",redcap_options:'if([pha_min] != "" and [pha_max] != "", if([pha_min] < 7.15 or [pha_max] >= 7.70, 4, if([pha_min] < 7.25 or [pha_max] >= 7.60, 3, if([pha_min] < 7.33, 2, if([pha_max] >= 7.50, 1, 0)))), "")',dependencies:[{duster_field_name:"pha",aggregates:["max_agg","min_agg"],redcap_field_note:"",label:"pH (Arterial)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_hr_subscore",score_duster_field_name:"apache2_score",label:"Heart Rate Subscore",redcap_field_note:"(+4) >= 180
          (+3) 140 to < 180
          (+2) 110 to < 140
          (+0) 70 to < 110
          (+2) 55 to < 70
          (+3) 40 to < 55
          (+4) < 40",redcap_options:'if([hr_min] != "" and [hr_max] != "", if([hr_min] < 40 or [hr_max] >= 180, 4, if([hr_min] < 55 or [hr_max] >= 140, 3, if([hr_min] < 70 or [hr_max] >= 110, 2, 0))), "")',dependencies:[{duster_field_name:"hr",aggregates:["max_agg","min_agg"],redcap_field_note:"beats/min",label:"Heart Rate",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_gcs_total_subscore",score_duster_field_name:"apache2_score",label:"Glasgow Coma Score (Total) Subscore",redcap_field_note:"15 - [Minimum Glasgow Coma Scale (GCS) Score]",redcap_options:'if([gcs_total_min] = "", "", 15 - [gcs_total_min])',dependencies:[{duster_field_name:"gcs_total",aggregates:["max_agg","min_agg"],redcap_field_note:"",label:"Glasgow Coma Scale (Total)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_chronic_health_subscore",score_duster_field_name:"apache2_score",label:"Chronic Health Subscore",redcap_field_note:"(+5) History of severe organ insufficiency or immunocompromised, and nonoperative or emergency postoperative patient
          (+2) History of severe organ insufficiency or immunocompromised, and elective postoperative patient
          (+0) No history of severe organ insufficiency or immunocompromised",redcap_options:'if([apache2_comorbidities] != "" and [patient_op_status] != "", if([apache2_comorbidities] = 1 and ([patient_op_status] = 0 or [patient_op_status] = 2), 5, if([apache2_comorbidities] = 1 and [patient_op_status] = 1, 2, 0)), "")',dependencies:[{duster_field_name:"apache2_comorbidities",redcap_field_note:"",label:"History of severe organ insufficiency/immunocompromised",value_type:"boolean",redcap_field_type:"yesno",redcap_options:""},{duster_field_name:"patient_op_status",redcap_field_note:"",label:"Patient Operative Status",value_type:"coded_value",redcap_field_type:"select",redcap_options:"0,None| 1, Elective Postop | 2,Emergent Postop | 3, Inoperable"}],redcap_field_type:"calc"},{duster_field_name:"apache2_rr_subscore",score_duster_field_name:"apache2_score",label:"Respiratory Rate Subscore",redcap_field_note:"(+4) >= 50
          (+3) 35 to < 50
          (+1) 25 to < 35
          (+0) 12 to < 25
          (+1) 10 to < 12
          (+2) 6 to < 10
          (+4) < 6",redcap_options:'if([rr_min] != "" and [rr_max] != "", if([rr_min] < 6 or [rr_max] >= 50, 4, if([rr_max] >= 35, 3, if([rr_min] < 10, 2, if([rr_min] < 12 or [rr_max] >= 25, 1, 0)))), "")',dependencies:[{duster_field_name:"rr",aggregates:["max_agg","min_agg"],redcap_field_note:"breaths/min",label:"Respiratory Rate",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_wbc_subscore",score_duster_field_name:"apache2_score",label:"White Blood Count Subscore",redcap_field_note:"(+4) >= 40
          (+2) 20 to < 40
          (+1) 15 to < 20
          (+0) 3 to < 15
          (+2) 1 to < 3
          (+4) < 1",redcap_options:'if([wbc_min] != "" and [wbc_max] != "", if([wbc_min] < 1 or [wbc_max] >= 40, 4, if([wbc_min] < 3 or [wbc_max] >= 20, 2, if([wbc_max] >= 15, 1, 0))), "")',dependencies:[{duster_field_name:"wbc",aggregates:["max_agg","min_agg"],redcap_field_note:"(1x10^3 cells)/(mm^3)",label:"White Blood Count (WBC)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_temp_c_subscore",score_duster_field_name:"apache2_score",label:"Temperature Subscore",redcap_field_note:"(+4) >= 41
          (+3) 39 to < 41
          (+1) 38.5 to < 39
          (+0) 36 to < 38.5
          (+1) 34 to < 36
          (+2) 32 to < 34
          (+3) 30 to < 32
          (+4) < 30",redcap_options:'if([temp_c_min] != "" and [temp_c_max] != "", if([temp_c_min] < 30 or [temp_c_max] >= 41, 4, if([temp_c_min] < 32 or [temp_c_max] >= 39, 3, if([temp_c_min] < 34, 2, if([temp_c_min] < 36 or [temp_c_max] >= 38.5, 1, 0)))), "")',dependencies:[{duster_field_name:"temp_c",aggregates:["max_agg","min_agg"],redcap_field_note:"Celsius",label:"Temperature (Celsius)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_cr_subscore",score_duster_field_name:"apache2_score",label:"Creatinine Subscore",redcap_field_note:"(+8) >= 3.5 and Acute Renal Failure
          (+6) 2.0 to < 3.5 and Acute Renal Failure
          (+4) >= 3.5 and Chronic Renal Failure
          (+4) 1.5 to < 2.0 and Acute Renal Failure
          (+3) 2.0 to < 3.5 and Chronic Renal Failure
          (+2) 1.5 to < 2.0 and Chronic Renal Failure
          (+0) 0.6 to < 1.5
          (+2) < 0.6",redcap_options:'if([cr_max] != "" and [acute_renfail_diag] != "" and [chronic_renfail_diag] != "", if([cr_max] >= 3.5 and [acute_renfail_diag] = 1, 8, if([cr_max] >= 2.0 and [acute_renfail_diag] = 1, 6, if([cr_max] >= 1.5 and [acute_renfail_diag] = 1, 4, if([cr_max] >= 3.5 and [chronic_renfail_diag] = 1, 4, if([cr_max] >= 2.0 and [chronic_renfail_diag] = 1, 3, if([cr_max] >= 1.5 and [chronic_renfail_diag] = 1, 2, if([cr_min] < 0.6, 2, 0))))))), "")',dependencies:[{duster_field_name:"cr",aggregates:["max_agg","min_agg"],redcap_field_note:"mg/dL",label:"Creatinine (serum/plasma)",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"acute_renfail_diag",redcap_field_note:"",label:"Acute Renal Failure",value_type:"boolean",redcap_field_type:"yesno",redcap_options:""},{duster_field_name:"chronic_renfail_diag",redcap_field_note:"",label:"Chronic Renal Failure",value_type:"boolean",redcap_field_type:"yesno",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_hct_subscore",score_duster_field_name:"apache2_score",label:"Hematocrit Subscore",redcap_field_note:"(+4) >= 60
          (+2) 50 to < 60
          (+1) 46 to < 50
          (+0) 30 to < 46
          (+2) 20 to < 30
          (+4) < 20",redcap_options:'if([hct_min] != "" and [hct_max] != "", if([hct_min] < 20 or [hct_max] >= 60, 4, if([hct_min] < 30 or [hct_max] >= 50, 2, if([hct_max] >= 46, 1, 0))), "")',dependencies:[{duster_field_name:"hct",aggregates:["max_agg","min_agg"],redcap_field_note:"%",label:"Hematocrit (Hct)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_na_subscore",score_duster_field_name:"apache2_score",label:"Sodium Subscore",redcap_field_note:"(+4) >= 180
          (+3) 160 to < 180
          (+2) 155 to < 160
          (+1) 150 to < 155
          (+0) 130 to < 150
          (+2) 120 to < 130
          (+3) 111 to < 120
          (+4) < 111",redcap_options:'if([na_min] != "" and [na_max] != "", if([na_min] < 111 or [na_max] >= 180, 4, if([na_min] < 120 or [na_max] >= 160, 3, if([na_min] < 130 or [na_max] >= 155, 2, if([na_max] >= 150, 1, 0)))), "")',dependencies:[{duster_field_name:"na",aggregates:["max_agg","min_agg"],redcap_field_note:"mmol/L",label:"Sodium (Na)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_k_subscore",score_duster_field_name:"apache2_score",label:"Potassium Subscore",redcap_field_note:"(+4) >= 7.0
          (+3) 6.0 to < 7.0
          (+1) 5.5 to < 6.0
          (+0) 3.5 to < 5.5
          (+1) 3.0 to < 3.5
          (+2) 2.5 to < 3.0
          (+4) < 2.5",redcap_options:'if([k_max] != "" and [k_max] != "", if([k_max] < 2.5 or [k_max] >= 7.0, 4, if([k_max] >= 6.0, 3, if([k_max] < 3.0, 2, if([k_max] < 3.5 or [k_max] >= 5.5, 1, 0)))), "")',dependencies:[{duster_field_name:"k",aggregates:["max_agg","min_agg"],redcap_field_note:"mmol/L",label:"Potassium (K)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_oxy_subscore",score_duster_field_name:"apache2_score",label:"Oxygenation Subscore",redcap_field_note:"(+4) A-a gradient > 499
          (+3) A-a gradient 350 - 499
          (+2) A-a gradient 200 - 349
          (+0) A-a gradient < 200 (if FiO2 over 0.49) or PaO2 > 70 (if FiO2 < 0.50)
          (+1) PaO2 = 61 - 70
          (+3) PaO2 = 55 - 60
          (+4) PaO2 < 55",redcap_options:'if([fio2_max] != "", if([fio2_max] < 0.50, if([pao2_min] = "", "", if([pao2_min] < 55, 4, if([pao2_min] <= 60, 3, if([pao2_min] <= 70, 1, 0)))), if([aa_gradient_min] = "" or [aa_gradient_max] = "", "", if([aa_gradient_max] > 499, 4, if([aa_gradient_max] >= 350, 3, if([aa_gradient_max] >= 200, 2, 0))))), "")',dependencies:[{duster_field_name:"aa_gradient",aggregates:["max_agg","min_agg"],redcap_field_note:"",label:"AA Gradient",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"fio2",aggregates:["max_agg","min_agg"],redcap_field_note:"%",label:"FiO2",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"pao2",aggregates:["max_agg","min_agg"],redcap_field_note:"mmHg",label:"PaO2",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"}],description:"Estimates ICU mortality.",description_short:"Estimates ICU mortality.",loinc_code:"",unit:"",note:'"History of severe organ insufficiency or immunocompromised", "Patient Operative Status", "Acute Renal Failure", and "Chronic Renal Failure" will have provided REDCap fields. However, these clinical variables cannot be automated by DUSTER and require manual phenotyping by the researcher.',related:"sofa_score",mdcalc:"https://www.mdcalc.com/calc/1868/apache-ii-score",pubmed:"https://pubmed.ncbi.nlm.nih.gov/3928249/"}]},eS=200,tS="OK",nS={"access-control-allow-origin":"*","cache-control":"no-store, no-cache, must-revalidate",connection:"Keep-Alive","content-encoding":"gzip","content-length":"4307","content-type":"text/html; charset=UTF-8",date:"Tue, 28 Mar 2023 21:40:40 GMT",expires:"Thu, 19 Nov 1981 08:52:00 GMT","keep-alive":"timeout=5, max=97",pragma:"no-cache","redcap-random-text":"FaGrGUMSpmxVUIrEQTs2aPV89y",server:"Apache/2.4.38 (Debian)",vary:"Accept-Encoding","x-content-type-options":"nosniff","x-xss-protection":"1; mode=block"},rS={transitional:{silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},adapter:["xhr","http"],transformRequest:[null],transformResponse:[null],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{},headers:{Accept:"application/json, text/plain, */*"},method:"get",url:"http://localhost/redcap_v12.2.4/ExternalModules/?prefix=duster&page=services/callMetadata"},iS={},jn={data:Q7,status:eS,statusText:tS,headers:nS,config:rS,request:iS},wp=t=>(ac("data-v-2a7c999a"),t=t(),lc(),t),oS={class:"container"},aS={class:"grid"},lS={class:"col-offset-1 col-10"},sS=Xa('',1),uS={class:"grid"},cS={class:"col-6"},dS={class:"col-6"},pS={class:"grid"},fS={class:"col"},mS={class:"grid"},hS={class:"col"},gS=["innerHTML"],vS={key:0,class:"m-2"},yS=wp(()=>g("label",null,"IRB or DPA: ",-1)),bS=wp(()=>g("p",null,[ye(" It looks like you were previously in the middle of designing a dataset. "),g("br"),g("br"),ye(" Would you like to restore this design? ")],-1)),wS={class:"flex p-4"},CS={class:"pl-2"},_S=bt({__name:"App",setup(t){const e=JSON.parse(localStorage.getItem("postObj")||"{}");localStorage.removeItem("postObj"),setInterval(()=>{_t.get(e.refresh_session_url).then(function(le){}).catch(function(le){}),e.edit_mode===!1&&Te("auto-save")},6e4);const n=de(!1),r=de(!1),o=de(!1),i=de([{redcap_field_name:"mrn",label:"Medical Record Number (MRN)",redcap_field_type:"text",value_type:"Identifier",redcap_field_note:"8-digit number (including leading zeros, e.g., '01234567')",phi:"t",id:"mrn",duster_field_name:void 0},{redcap_field_name:"enroll_date",redcap_field_type:"text",value_type:"date",label:"Study Enrollment Date",phi:"t",id:"enroll_date",duster_field_name:void 0}]),a=Z(()=>i.value.filter(le=>{var B;return((B=le.value_type)==null?void 0:B.toLowerCase())==="identifier"})),l=Z(()=>i.value.filter(le=>{var B;return((B=le.value_type)==null?void 0:B.toLowerCase())!=="identifier"})),u=de([]),s=de([]),c=de([]),d=de([]),m=de([]),f=de([]),y=Z(()=>[].concat(u.value).concat(s.value).concat(c.value).concat(d.value).concat(m.value));Gi("metadata",y);const b=de([]),S=de([]),_=de(e.project_irb_number),I=le=>le.startsWith("DPA")?le:"IRB "+le,z=de(!1),x=de("checking"),F=de("Checking "+I(_.value)+" ..."),ie=de(!1),ae={},M={rpData:[],demographicsSelects:[],collectionWindows:[]},Q=de(!1);di(()=>{D(e.check_irb_url,e.redcap_csrf_token,e.project_irb_number,e.redcap_user)});const oe=de(!1);ut(oe,le=>{F.value="Fetching DUSTER Metadata ...",le&&fe(e.metadata_url)});const ue=()=>{var w,O;let le="";const B=[];if(!j.value.dpa)le="No valid DPA was found for IRB "+j.value.irb_num+". Please add a DPA to your protocol with the necessary attestations. ",B.push("MRNs (required)"),B.push("Dates (required)"),B.push("Names"),B.push("Demographics"),B.push("Lab results"),B.push("Clinical notes (includes flowsheets)"),B.push("Medications"),B.push("Diagnosis codes"),B.push("Procedure codes");else{const E=j.value.dpa;E.approvedForMrn||B.push("MRNs (required)"),E.approvedForDates||B.push("Dates (required)"),E.approvedForName||B.push("Names"),E.approvedForDemographics||B.push("Demographics"),E.approvedForLabResult||B.push("Lab results"),E.approvedForClinicalNotes||B.push("Clinical notes (includes flowsheets)"),E.approvedForMedications||B.push("Medications"),E.approvedForDiagnosis||B.push("Diagnosis codes"),E.approvedForProcedure||B.push("Procedure codes")}if(B.length>0){if(j.value.dpa){le+="";const E=!((w=j.value.irb_num)!=null&&w.startsWith("DPA-"));le=I(j.value.irb_num),le+=" does not include the following attestations which may be required to retrieve data for this project. If any of the following are included as part of your DUSTER project, you will need to ",E?le+="modify your protocol and file a new DPA.
            ":le+="file a new DPA with the required attestations.
              "}else le+="The DPA must include all PHI and data attestations which will be accessed as part of this project. Please include the following items in your DPA as needed.
                ";B.forEach(E=>le+="
              • "+E+"
              • "),le+="

              "}return j.value.dpa&&!((O=j.value.user_permissions)!=null&&O.signedDpa)&&(le+="User "+e.redcap_user+" does not have a DPA attestation associated with "+I(j.value.irb_num)+" and needs an add-on DPA.
              "),le.length>0&&(le+='
              You may continue to configure and create your DUSTER project. However, all IRB and/or DPA issues must be resolved before retrieving data. Click "OK" to continue project creation.'),le},j=de(),D=(le,B,w,O)=>{if(n.value)z.value=!0;else if(w){ie.value=!0;let E=new FormData;E.append("redcap_csrf_token",B),E.append("project_irb_number",w),E.append("user",O),_t.post(le,E).then(function(N){if(x.value="checked",j.value=N.data,F.value="",N.data.irb_status){w.startsWith("DPA")&&j.value.dpa.protocolNum&&(F.value=I(j.value.dpa.protocolNumStr)+" will be used in place of "+w+". ",w=j.value.dpa.protocolNumStr),e.project_irb_number=w;const W=ue();W.length>0?F.value+=I(w)+" is valid.

              "+W:(F.value+=I(w)+" is valid.
              Fetching DUSTER Metadata ...",oe.value=!0),z.value=!0}else{if(typeof N.data=="string"&&N.data.toLowerCase().includes("fatal error")){r.value=!0;let W=new FormData;W.append("redcap_csrf_token",B),W.append("fatal_error",N.data),_t.post(e.report_fatal_error_url,W).then(function(G){}).catch(function(G){})}else F.value+=I(w)+' is invalid. Please enter a different IRB or DPA. (DPAs must start with "DPA-")';z.value=!1}}).catch(function(N){z.value=!1,F.value="IRB Check Error",r.value=!0,console.log(N)})}else F.value='You must have an IRB or DPA to use DUSTER. Please enter a valid IRB or DPA. (DPAs must start with "DPA-")',z.value=!1,x.value="checked",ie.value=!0},q=()=>{x.value="retry",F.value="Checking "+I(_.value)+" ...",D(e.check_irb_url,e.redcap_csrf_token,_.value,e.redcap_user)},ve=()=>{ie.value=!1,(!z.value||!oe.value)&&(window.location.href=e.redcap_new_project_url)},fe=le=>{n.value?(u.value=Ve(jn.data.demographics),u.value=u.value.map(B=>({...B,edit:!0})),s.value=jn.data.labs,c.value=jn.data.vitals,d.value=jn.data.outcomes,m.value=jn.data.scores,f.value=jn.data.clinical_dates):_t.get(le).then(function(B){u.value=Ve(B.data.demographics),s.value=B.data.labs,c.value=B.data.vitals,d.value=B.data.outcomes,m.value=B.data.scores,f.value=B.data.clinical_dates,ie.value=!1,_t.get(e.get_dataset_designs_url).then(function(w){const O=w.data;e.edit_mode===!1&&O.hasOwnProperty("auto-save")===!0?(ae.value=JSON.parse(O["auto-save"]),Q.value=!0):e.edit_mode===!0&&ge()}).catch(function(w){})}).catch(function(B){F.value="Unable to load DUSTER metadata",r.value=!0})},ge=()=>{M.value=JSON.parse(e.initial_design),M.collectionWindows=M.value.collectionWindows,M.value=JSON.parse(e.initial_design),i.value=M.value.rpData,i.value.forEach(B=>{B.edit=!1});let le=M.value.demographicsSelects.map(B=>B.duster_field_name);Array.isArray(u.value)&&u.value.forEach(B=>{le.includes(B.duster_field_name)&&(B.edit=!1,b.value.push(B))}),S.value=M.value.collectionWindows},me=()=>{S.value.forEach(le=>{if(le.timing.start.type!=="interval"&&(le.timing_valid=l.value.findIndex(B=>B.redcap_field_name===le.timing.start.rp_date)!==-1),le.timing_valid&&le.timing.end.type!=="interval"&&(le.timing_valid=l.value.findIndex(B=>B.redcap_field_name===le.timing.end.rp_date)!==-1),le.event&&le.event[0]&&le.event[0].redcap_field_name){const B=l.value.findIndex(w=>w.redcap_field_name==le.event[0].redcap_field_name);B!=-1?le.data.valid=l.value[B].value_type=="datetime":le.data.valid=!1}})},Ke=ol(),V=Z(()=>u.value&&u.value.length>0?u.value.map(le=>le.duster_field_name):[]),R=l3(),k=le=>{R.require({target:le.currentTarget,header:"Back to REDCap New Project Page",message:"You will exit DUSTER's New Project Designer and will lose any changes made here. Are you sure you want to exit?",accept:()=>{window.history.go(-1)}})},A=er(),be=()=>(me(),A.value.$touch(),Ke.removeAllGroups(),A.value.$error?A.value.$errors.forEach(le=>{typeof le.$message=="object"?le.$message.forEach(B=>{B.forEach(w=>{Ke.add({severity:"error",summary:"Error",detail:w,life:3e3})})}):Ke.add({severity:"error",summary:"Error",detail:le.$message,life:3e3})}):(o.value=!0,e.edit_mode===!1&&Te("auto-save")),!1),Te=le=>{let B=new FormData;B.append("redcap_csrf_token",e.redcap_csrf_token),B.append("title",le);const w={rpData:i.value,demographicsSelects:b.value,collectionWindows:S.value};B.append("design",JSON.stringify(w)),_t.post(e.save_dataset_design_url,B).then(function(O){}).catch(function(O){})},Ee=()=>{i.value=ae.value.rpData,b.value=ae.value.demographicsSelects,S.value=ae.value.collectionWindows,Q.value=!1},ze=()=>{ae.value=null,Pe("auto-save")},Pe=le=>{let B=new FormData;B.append("redcap_csrf_token",e.redcap_csrf_token),B.append("title",le),_t.post(e.delete_dataset_design_url,B).then(function(w){}).catch(function(w){})},Ve=le=>{let B=JSON.parse(JSON.stringify(le));return B.forEach(w=>{w.label.toLowerCase().indexOf("date")>-1?w.group=1:w.label.toLowerCase().indexOf("name")>-1?w.group=2:w.group=3}),B.sort(function(w,O){let E=w.label.toLowerCase(),N=O.label.toLowerCase();return w.groupO.group?1:EN?1:0}),B};return(le,B)=>{const w=K("Button"),O=K("Toolbar"),E=K("InputText"),N=K("Dialog"),W=K("ConfirmDialog");return p(),v(ne,null,[g("div",oS,[g("div",aS,[g("div",lS,[sS,Se(g("div",null,[g("div",uS,[g("div",cS,[P(h9,{"rp-data":i.value,"onUpdate:rpData":B[0]||(B[0]=G=>i.value=G),"reserved-field-names":V.value},null,8,["rp-data","reserved-field-names"])]),g("div",dS,[P(_9,{class:"flex-1","demographics-options":u.value,"demographics-selects":b.value,"onUpdate:demographicsSelects":B[1]||(B[1]=G=>b.value=G)},null,8,["demographics-options","demographics-selects"])])]),g("div",pS,[g("div",fS,[P(L7,{"lab-options":s.value,"vital-options":c.value,"score-options":m.value,"outcome-options":d.value,"clinical-date-options":f.value,"rp-dates":l.value,"collection-windows":S.value,"onUpdate:collectionWindows":B[2]||(B[2]=G=>S.value=G),"initial-windows":M.collectionWindows},null,8,["lab-options","vital-options","score-options","outcome-options","clinical-date-options","rp-dates","collection-windows","initial-windows"])])]),g("div",mS,[g("div",hS,[P(ee(mo)),P(O,{class:"col"},{start:L(()=>[P(w,{label:ee(e).edit_mode?"Back to REDCap Project":"Back to REDCap New Project Page",icon:"pi pi-cross",severity:"secondary",class:"ml-2",onClick:B[3]||(B[3]=G=>k(G))},null,8,["label"])]),end:L(()=>[P(w,{type:"submit",label:ee(e).edit_mode?"Review & Update Project":"Review & Create Project",icon:"pi pi-check",class:"ml-2",onClick:be},null,8,["label"])]),_:1})])])],512),[[Un,!o.value]]),g("div",{style:qn(o.value?"":"display: none !important")},[P(X7,{"show-summary":o.value,"onUpdate:showSummary":B[4]||(B[4]=G=>o.value=G),dev:n.value,"rp-data":i.value,"rp-identifiers":a.value,"rp-dates":l.value,demographics:b.value,"collection-windows":S.value,"project-info":ee(e),onDeleteAutoSave:B[5]||(B[5]=G=>ze())},null,8,["show-summary","dev","rp-data","rp-identifiers","rp-dates","demographics","collection-windows","project-info"])],4)])])]),P(N,{visible:ie.value,"onUpdate:visible":B[8]||(B[8]=G=>ie.value=G),modal:"",header:"Checking IRB or DPA",style:{width:"40vw"},closable:!1},{footer:L(()=>[!z.value&&x.value==="checked"?(p(),$(w,{key:0,label:"Submit",icon:"pi pi-refresh",class:"p-button-primary",onClick:q,size:"small"})):T("",!0),z.value&&!oe.value?(p(),$(w,{key:1,label:"OK",icon:"pi pi-check",class:"p-button-primary",onClick:B[7]||(B[7]=G=>oe.value=!0),size:"small"})):T("",!0),P(w,{label:"Cancel",icon:"pi pi-times",class:"p-button-secondary",onClick:ve,size:"small"})]),default:L(()=>[g("p",null,[g("span",{innerHTML:F.value},null,8,gS)]),!z.value&&x.value==="checked"?(p(),v("div",vS,[yS,P(E,{modelValue:_.value,"onUpdate:modelValue":B[6]||(B[6]=G=>_.value=G)},null,8,["modelValue"])])):T("",!0)]),_:1},8,["visible"]),P(N,{visible:Q.value,"onUpdate:visible":B[11]||(B[11]=G=>Q.value=G),header:"Restore last design",modal:!0,closable:!1},{footer:L(()=>[P(w,{label:"Yes",icon:"pi pi-check",class:"p-button-primary",onClick:B[9]||(B[9]=G=>Ee()),size:"small"}),P(w,{label:"No",icon:"pi pi-times",class:"p-button-secondary",onClick:B[10]||(B[10]=G=>(Q.value=!1,ze())),size:"small"})]),default:L(()=>[bS]),_:1},8,["visible"]),r.value?(p(),$(Ud,{key:0})):T("",!0),P(W,null,{message:L(G=>[g("div",wS,[g("i",{class:te(G.message.icon),style:{"font-size":"1.5rem"}},null,2),g("p",CS,Y(G.message.message),1)])]),_:1})],64)}}});const SS=bp(_S,[["__scopeId","data-v-2a7c999a"]]);Qm(SS).use(Dh).use(h1).use(s3).component("Accordion",Bc).component("AccordionTab",jc).component("Badge",il).component("Button",Dn).component("Calendar",Kc).component("Card",Uc).component("Checkbox",Wc).component("Column",y1).component("DataTable",Ed).component("Dialog",hl).component("Dropdown",hi).component("InputNumber",ul).component("InputSwitch",$d).component("InputText",sl).component("Message",Ad).component("Panel",Ld).component("RadioButton",Fd).component("Divider",Bd).component("Chip",Vd).component("ConfirmPopup",Nd).component("ConfirmDialog",zd).component("Tag",jd).component("Toolbar",Hd).directive("tooltip",G_).mount("#app"); + [apache2_wbc_subscore] + [apache2_gcs_total_subscore] + [apache2_chronic_health_subscore]`,phi:"",subscores:[{duster_field_name:"apache2_age_subscore",score_duster_field_name:"apache2_score",label:"Age Subscore",redcap_field_note:"(+0) <= 44
              (+2) 45 - 54
              (+3) 55 - 64
              (+5) 65 - 74
              (+6) > 74",redcap_options:'if([age] != "", if([age] > 74, 6, if([age] >= 65, 5, if([age] >= 55, 3, if([age] >= 45, 2, 0)))), "")',dependencies:[{duster_field_name:"age",redcap_field_note:"",label:"Age @ CW start",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_map_subscore",score_duster_field_name:"apache2_score",label:"Mean Arterial Pressure (MAP) Subscore",redcap_field_note:"(+4) > 159
              (+3) > 129 to 159
              (+2) > 109 to 129
              (+0) > 69 to 109
              (+2) > 49 to 69
              (+4) <= 49",redcap_options:'if([map_min] != "" and [map_max] != "", if([map_min] <= 49 or [map_max] > 159, 4, if([map_max] > 129, 3, if([map_min] <= 69 or [map_max] > 109, 2, 0))), "")',dependencies:[{duster_field_name:"map",aggregates:["max_agg","min_agg"],redcap_field_note:"mmHg",label:"Mean Arterial Pressure (MAP)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_pha_subscore",score_duster_field_name:"apache2_score",label:"Arterial pH Subscore",redcap_field_note:"(+4) >= 7.70
              (+3) 7.60 to < 7.70
              (+1) 7.50 to < 7.60
              (+0) 7.33 to < 7.50
              (+2) 7.25 to < 7.33
              (+3) 7.15 to < 7.25
              (+4) < 7.15",redcap_options:'if([pha_min] != "" and [pha_max] != "", if([pha_min] < 7.15 or [pha_max] >= 7.70, 4, if([pha_min] < 7.25 or [pha_max] >= 7.60, 3, if([pha_min] < 7.33, 2, if([pha_max] >= 7.50, 1, 0)))), "")',dependencies:[{duster_field_name:"pha",aggregates:["max_agg","min_agg"],redcap_field_note:"",label:"pH (Arterial)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_hr_subscore",score_duster_field_name:"apache2_score",label:"Heart Rate Subscore",redcap_field_note:"(+4) >= 180
              (+3) 140 to < 180
              (+2) 110 to < 140
              (+0) 70 to < 110
              (+2) 55 to < 70
              (+3) 40 to < 55
              (+4) < 40",redcap_options:'if([hr_min] != "" and [hr_max] != "", if([hr_min] < 40 or [hr_max] >= 180, 4, if([hr_min] < 55 or [hr_max] >= 140, 3, if([hr_min] < 70 or [hr_max] >= 110, 2, 0))), "")',dependencies:[{duster_field_name:"hr",aggregates:["max_agg","min_agg"],redcap_field_note:"beats/min",label:"Heart Rate",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_gcs_total_subscore",score_duster_field_name:"apache2_score",label:"Glasgow Coma Score (Total) Subscore",redcap_field_note:"15 - [Minimum Glasgow Coma Scale (GCS) Score]",redcap_options:'if([gcs_total_min] = "", "", 15 - [gcs_total_min])',dependencies:[{duster_field_name:"gcs_total",aggregates:["max_agg","min_agg"],redcap_field_note:"",label:"Glasgow Coma Scale (Total)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_chronic_health_subscore",score_duster_field_name:"apache2_score",label:"Chronic Health Subscore",redcap_field_note:"(+5) History of severe organ insufficiency or immunocompromised, and nonoperative or emergency postoperative patient
              (+2) History of severe organ insufficiency or immunocompromised, and elective postoperative patient
              (+0) No history of severe organ insufficiency or immunocompromised",redcap_options:'if([apache2_comorbidities] != "" and [patient_op_status] != "", if([apache2_comorbidities] = 1 and ([patient_op_status] = 0 or [patient_op_status] = 2), 5, if([apache2_comorbidities] = 1 and [patient_op_status] = 1, 2, 0)), "")',dependencies:[{duster_field_name:"apache2_comorbidities",redcap_field_note:"",label:"History of severe organ insufficiency/immunocompromised",value_type:"boolean",redcap_field_type:"yesno",redcap_options:""},{duster_field_name:"patient_op_status",redcap_field_note:"",label:"Patient Operative Status",value_type:"coded_value",redcap_field_type:"select",redcap_options:"0,None| 1, Elective Postop | 2,Emergent Postop | 3, Inoperable"}],redcap_field_type:"calc"},{duster_field_name:"apache2_rr_subscore",score_duster_field_name:"apache2_score",label:"Respiratory Rate Subscore",redcap_field_note:"(+4) >= 50
              (+3) 35 to < 50
              (+1) 25 to < 35
              (+0) 12 to < 25
              (+1) 10 to < 12
              (+2) 6 to < 10
              (+4) < 6",redcap_options:'if([rr_min] != "" and [rr_max] != "", if([rr_min] < 6 or [rr_max] >= 50, 4, if([rr_max] >= 35, 3, if([rr_min] < 10, 2, if([rr_min] < 12 or [rr_max] >= 25, 1, 0)))), "")',dependencies:[{duster_field_name:"rr",aggregates:["max_agg","min_agg"],redcap_field_note:"breaths/min",label:"Respiratory Rate",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_wbc_subscore",score_duster_field_name:"apache2_score",label:"White Blood Count Subscore",redcap_field_note:"(+4) >= 40
              (+2) 20 to < 40
              (+1) 15 to < 20
              (+0) 3 to < 15
              (+2) 1 to < 3
              (+4) < 1",redcap_options:'if([wbc_min] != "" and [wbc_max] != "", if([wbc_min] < 1 or [wbc_max] >= 40, 4, if([wbc_min] < 3 or [wbc_max] >= 20, 2, if([wbc_max] >= 15, 1, 0))), "")',dependencies:[{duster_field_name:"wbc",aggregates:["max_agg","min_agg"],redcap_field_note:"(1x10^3 cells)/(mm^3)",label:"White Blood Count (WBC)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_temp_c_subscore",score_duster_field_name:"apache2_score",label:"Temperature Subscore",redcap_field_note:"(+4) >= 41
              (+3) 39 to < 41
              (+1) 38.5 to < 39
              (+0) 36 to < 38.5
              (+1) 34 to < 36
              (+2) 32 to < 34
              (+3) 30 to < 32
              (+4) < 30",redcap_options:'if([temp_c_min] != "" and [temp_c_max] != "", if([temp_c_min] < 30 or [temp_c_max] >= 41, 4, if([temp_c_min] < 32 or [temp_c_max] >= 39, 3, if([temp_c_min] < 34, 2, if([temp_c_min] < 36 or [temp_c_max] >= 38.5, 1, 0)))), "")',dependencies:[{duster_field_name:"temp_c",aggregates:["max_agg","min_agg"],redcap_field_note:"Celsius",label:"Temperature (Celsius)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_cr_subscore",score_duster_field_name:"apache2_score",label:"Creatinine Subscore",redcap_field_note:"(+8) >= 3.5 and Acute Renal Failure
              (+6) 2.0 to < 3.5 and Acute Renal Failure
              (+4) >= 3.5 and Chronic Renal Failure
              (+4) 1.5 to < 2.0 and Acute Renal Failure
              (+3) 2.0 to < 3.5 and Chronic Renal Failure
              (+2) 1.5 to < 2.0 and Chronic Renal Failure
              (+0) 0.6 to < 1.5
              (+2) < 0.6",redcap_options:'if([cr_max] != "" and [acute_renfail_diag] != "" and [chronic_renfail_diag] != "", if([cr_max] >= 3.5 and [acute_renfail_diag] = 1, 8, if([cr_max] >= 2.0 and [acute_renfail_diag] = 1, 6, if([cr_max] >= 1.5 and [acute_renfail_diag] = 1, 4, if([cr_max] >= 3.5 and [chronic_renfail_diag] = 1, 4, if([cr_max] >= 2.0 and [chronic_renfail_diag] = 1, 3, if([cr_max] >= 1.5 and [chronic_renfail_diag] = 1, 2, if([cr_min] < 0.6, 2, 0))))))), "")',dependencies:[{duster_field_name:"cr",aggregates:["max_agg","min_agg"],redcap_field_note:"mg/dL",label:"Creatinine (serum/plasma)",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"acute_renfail_diag",redcap_field_note:"",label:"Acute Renal Failure",value_type:"boolean",redcap_field_type:"yesno",redcap_options:""},{duster_field_name:"chronic_renfail_diag",redcap_field_note:"",label:"Chronic Renal Failure",value_type:"boolean",redcap_field_type:"yesno",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_hct_subscore",score_duster_field_name:"apache2_score",label:"Hematocrit Subscore",redcap_field_note:"(+4) >= 60
              (+2) 50 to < 60
              (+1) 46 to < 50
              (+0) 30 to < 46
              (+2) 20 to < 30
              (+4) < 20",redcap_options:'if([hct_min] != "" and [hct_max] != "", if([hct_min] < 20 or [hct_max] >= 60, 4, if([hct_min] < 30 or [hct_max] >= 50, 2, if([hct_max] >= 46, 1, 0))), "")',dependencies:[{duster_field_name:"hct",aggregates:["max_agg","min_agg"],redcap_field_note:"%",label:"Hematocrit (Hct)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_na_subscore",score_duster_field_name:"apache2_score",label:"Sodium Subscore",redcap_field_note:"(+4) >= 180
              (+3) 160 to < 180
              (+2) 155 to < 160
              (+1) 150 to < 155
              (+0) 130 to < 150
              (+2) 120 to < 130
              (+3) 111 to < 120
              (+4) < 111",redcap_options:'if([na_min] != "" and [na_max] != "", if([na_min] < 111 or [na_max] >= 180, 4, if([na_min] < 120 or [na_max] >= 160, 3, if([na_min] < 130 or [na_max] >= 155, 2, if([na_max] >= 150, 1, 0)))), "")',dependencies:[{duster_field_name:"na",aggregates:["max_agg","min_agg"],redcap_field_note:"mmol/L",label:"Sodium (Na)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_k_subscore",score_duster_field_name:"apache2_score",label:"Potassium Subscore",redcap_field_note:"(+4) >= 7.0
              (+3) 6.0 to < 7.0
              (+1) 5.5 to < 6.0
              (+0) 3.5 to < 5.5
              (+1) 3.0 to < 3.5
              (+2) 2.5 to < 3.0
              (+4) < 2.5",redcap_options:'if([k_max] != "" and [k_max] != "", if([k_max] < 2.5 or [k_max] >= 7.0, 4, if([k_max] >= 6.0, 3, if([k_max] < 3.0, 2, if([k_max] < 3.5 or [k_max] >= 5.5, 1, 0)))), "")',dependencies:[{duster_field_name:"k",aggregates:["max_agg","min_agg"],redcap_field_note:"mmol/L",label:"Potassium (K)",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"},{duster_field_name:"apache2_oxy_subscore",score_duster_field_name:"apache2_score",label:"Oxygenation Subscore",redcap_field_note:"(+4) A-a gradient > 499
              (+3) A-a gradient 350 - 499
              (+2) A-a gradient 200 - 349
              (+0) A-a gradient < 200 (if FiO2 over 0.49) or PaO2 > 70 (if FiO2 < 0.50)
              (+1) PaO2 = 61 - 70
              (+3) PaO2 = 55 - 60
              (+4) PaO2 < 55",redcap_options:'if([fio2_max] != "", if([fio2_max] < 0.50, if([pao2_min] = "", "", if([pao2_min] < 55, 4, if([pao2_min] <= 60, 3, if([pao2_min] <= 70, 1, 0)))), if([aa_gradient_min] = "" or [aa_gradient_max] = "", "", if([aa_gradient_max] > 499, 4, if([aa_gradient_max] >= 350, 3, if([aa_gradient_max] >= 200, 2, 0))))), "")',dependencies:[{duster_field_name:"aa_gradient",aggregates:["max_agg","min_agg"],redcap_field_note:"",label:"AA Gradient",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"fio2",aggregates:["max_agg","min_agg"],redcap_field_note:"%",label:"FiO2",value_type:"numeric",redcap_field_type:"text",redcap_options:""},{duster_field_name:"pao2",aggregates:["max_agg","min_agg"],redcap_field_note:"mmHg",label:"PaO2",value_type:"numeric",redcap_field_type:"text",redcap_options:""}],redcap_field_type:"calc"}],description:"Estimates ICU mortality.",description_short:"Estimates ICU mortality.",loinc_code:"",unit:"",note:'"History of severe organ insufficiency or immunocompromised", "Patient Operative Status", "Acute Renal Failure", and "Chronic Renal Failure" will have provided REDCap fields. However, these clinical variables cannot be automated by DUSTER and require manual phenotyping by the researcher.',related:"sofa_score",mdcalc:"https://www.mdcalc.com/calc/1868/apache-ii-score",pubmed:"https://pubmed.ncbi.nlm.nih.gov/3928249/"}]},eS=200,tS="OK",nS={"access-control-allow-origin":"*","cache-control":"no-store, no-cache, must-revalidate",connection:"Keep-Alive","content-encoding":"gzip","content-length":"4307","content-type":"text/html; charset=UTF-8",date:"Tue, 28 Mar 2023 21:40:40 GMT",expires:"Thu, 19 Nov 1981 08:52:00 GMT","keep-alive":"timeout=5, max=97",pragma:"no-cache","redcap-random-text":"FaGrGUMSpmxVUIrEQTs2aPV89y",server:"Apache/2.4.38 (Debian)",vary:"Accept-Encoding","x-content-type-options":"nosniff","x-xss-protection":"1; mode=block"},rS={transitional:{silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},adapter:["xhr","http"],transformRequest:[null],transformResponse:[null],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{},headers:{Accept:"application/json, text/plain, */*"},method:"get",url:"http://localhost/redcap_v12.2.4/ExternalModules/?prefix=duster&page=services/callMetadata"},iS={},jn={data:Q7,status:eS,statusText:tS,headers:nS,config:rS,request:iS},wp=t=>(ac("data-v-d3c2f2c9"),t=t(),lc(),t),oS={class:"container"},aS={class:"grid"},lS={class:"col-offset-1 col-10"},sS=Xa('',1),uS={class:"grid"},cS={class:"col-6"},dS={class:"col-6"},pS={class:"grid"},fS={class:"col"},mS={class:"grid"},hS={class:"col"},gS=["innerHTML"],vS={key:0,class:"m-2"},yS=wp(()=>g("label",null,"IRB or DPA: ",-1)),bS=wp(()=>g("p",null,[ye(" It looks like you were previously in the middle of designing a dataset. "),g("br"),g("br"),ye(" Would you like to restore this design? ")],-1)),wS={class:"flex p-4"},CS={class:"pl-2"},_S=bt({__name:"App",setup(t){const e=JSON.parse(localStorage.getItem("postObj")||"{}");localStorage.removeItem("postObj"),setInterval(()=>{_t.get(e.refresh_session_url).then(function(le){}).catch(function(le){}),e.edit_mode===!1&&Te("auto-save")},6e4);const n=de(!1),r=de(!1),o=de(!1),i=de([{redcap_field_name:"mrn",label:"Medical Record Number (MRN)",redcap_field_type:"text",value_type:"Identifier",redcap_field_note:"8-digit number (including leading zeros, e.g., '01234567') or 10-digit number (no leading zeros)",phi:"t",id:"mrn",duster_field_name:void 0},{redcap_field_name:"enroll_date",redcap_field_type:"text",value_type:"date",label:"Study Enrollment Date",phi:"t",id:"enroll_date",duster_field_name:void 0}]),a=Z(()=>i.value.filter(le=>{var B;return((B=le.value_type)==null?void 0:B.toLowerCase())==="identifier"})),l=Z(()=>i.value.filter(le=>{var B;return((B=le.value_type)==null?void 0:B.toLowerCase())!=="identifier"})),u=de([]),s=de([]),c=de([]),d=de([]),m=de([]),f=de([]),y=Z(()=>[].concat(u.value).concat(s.value).concat(c.value).concat(d.value).concat(m.value));Gi("metadata",y);const b=de([]),S=de([]),_=de(e.project_irb_number),I=le=>le.startsWith("DPA")?le:"IRB "+le,z=de(!1),x=de("checking"),F=de("Checking "+I(_.value)+" ..."),ie=de(!1),ae={},M={rpData:[],demographicsSelects:[],collectionWindows:[]},Q=de(!1);di(()=>{D(e.check_irb_url,e.redcap_csrf_token,e.project_irb_number,e.redcap_user)});const oe=de(!1);ut(oe,le=>{F.value="Fetching DUSTER Metadata ...",le&&fe(e.metadata_url)});const ue=()=>{var w,O;let le="";const B=[];if(!j.value.dpa)le="No valid DPA was found for IRB "+j.value.irb_num+". Please add a DPA to your protocol with the necessary attestations. ",B.push("MRNs (required)"),B.push("Dates (required)"),B.push("Names"),B.push("Demographics"),B.push("Lab results"),B.push("Clinical notes (includes flowsheets)"),B.push("Medications"),B.push("Diagnosis codes"),B.push("Procedure codes");else{const E=j.value.dpa;E.approvedForMrn||B.push("MRNs (required)"),E.approvedForDates||B.push("Dates (required)"),E.approvedForName||B.push("Names"),E.approvedForDemographics||B.push("Demographics"),E.approvedForLabResult||B.push("Lab results"),E.approvedForClinicalNotes||B.push("Clinical notes (includes flowsheets)"),E.approvedForMedications||B.push("Medications"),E.approvedForDiagnosis||B.push("Diagnosis codes"),E.approvedForProcedure||B.push("Procedure codes")}if(B.length>0){if(j.value.dpa){le+="";const E=!((w=j.value.irb_num)!=null&&w.startsWith("DPA-"));le=I(j.value.irb_num),le+=" does not include the following attestations which may be required to retrieve data for this project. If any of the following are included as part of your DUSTER project, you will need to ",E?le+="modify your protocol and file a new DPA.
                ":le+="file a new DPA with the required attestations.
                  "}else le+="The DPA must include all PHI and data attestations which will be accessed as part of this project. Please include the following items in your DPA as needed.
                    ";B.forEach(E=>le+="
                  • "+E+"
                  • "),le+="

                  "}return j.value.dpa&&!((O=j.value.user_permissions)!=null&&O.signedDpa)&&(le+="User "+e.redcap_user+" does not have a DPA attestation associated with "+I(j.value.irb_num)+" and needs an add-on DPA.
                  "),le.length>0&&(le+='
                  You may continue to configure and create your DUSTER project. However, all IRB and/or DPA issues must be resolved before retrieving data. Click "OK" to continue project creation.'),le},j=de(),D=(le,B,w,O)=>{if(n.value)z.value=!0;else if(w){ie.value=!0;let E=new FormData;E.append("redcap_csrf_token",B),E.append("project_irb_number",w),E.append("user",O),_t.post(le,E).then(function(N){if(x.value="checked",j.value=N.data,F.value="",N.data.irb_status){w.startsWith("DPA")&&j.value.dpa.protocolNum&&(F.value=I(j.value.dpa.protocolNumStr)+" will be used in place of "+w+". ",w=j.value.dpa.protocolNumStr),e.project_irb_number=w;const W=ue();W.length>0?F.value+=I(w)+" is valid.

                  "+W:(F.value+=I(w)+" is valid.
                  Fetching DUSTER Metadata ...",oe.value=!0),z.value=!0}else{if(typeof N.data=="string"&&N.data.toLowerCase().includes("fatal error")){r.value=!0;let W=new FormData;W.append("redcap_csrf_token",B),W.append("fatal_error",N.data),_t.post(e.report_fatal_error_url,W).then(function(G){}).catch(function(G){})}else F.value+=I(w)+' is invalid. Please enter a different IRB or DPA. (DPAs must start with "DPA-")';z.value=!1}}).catch(function(N){z.value=!1,F.value="IRB Check Error",r.value=!0,console.log(N)})}else F.value='You must have an IRB or DPA to use DUSTER. Please enter a valid IRB or DPA. (DPAs must start with "DPA-")',z.value=!1,x.value="checked",ie.value=!0},q=()=>{x.value="retry",F.value="Checking "+I(_.value)+" ...",D(e.check_irb_url,e.redcap_csrf_token,_.value,e.redcap_user)},ve=()=>{ie.value=!1,(!z.value||!oe.value)&&(window.location.href=e.redcap_new_project_url)},fe=le=>{n.value?(u.value=Ve(jn.data.demographics),u.value=u.value.map(B=>({...B,edit:!0})),s.value=jn.data.labs,c.value=jn.data.vitals,d.value=jn.data.outcomes,m.value=jn.data.scores,f.value=jn.data.clinical_dates):_t.get(le).then(function(B){u.value=Ve(B.data.demographics),s.value=B.data.labs,c.value=B.data.vitals,d.value=B.data.outcomes,m.value=B.data.scores,f.value=B.data.clinical_dates,ie.value=!1,_t.get(e.get_dataset_designs_url).then(function(w){const O=w.data;e.edit_mode===!1&&O.hasOwnProperty("auto-save")===!0?(ae.value=JSON.parse(O["auto-save"]),Q.value=!0):e.edit_mode===!0&&ge()}).catch(function(w){})}).catch(function(B){F.value="Unable to load DUSTER metadata",r.value=!0})},ge=()=>{M.value=JSON.parse(e.initial_design),M.collectionWindows=M.value.collectionWindows,M.value=JSON.parse(e.initial_design),i.value=M.value.rpData,i.value.forEach(B=>{B.edit=!1});let le=M.value.demographicsSelects.map(B=>B.duster_field_name);Array.isArray(u.value)&&u.value.forEach(B=>{le.includes(B.duster_field_name)&&(B.edit=!1,b.value.push(B))}),S.value=M.value.collectionWindows},me=()=>{S.value.forEach(le=>{if(le.timing.start.type!=="interval"&&(le.timing_valid=l.value.findIndex(B=>B.redcap_field_name===le.timing.start.rp_date)!==-1),le.timing_valid&&le.timing.end.type!=="interval"&&(le.timing_valid=l.value.findIndex(B=>B.redcap_field_name===le.timing.end.rp_date)!==-1),le.event&&le.event[0]&&le.event[0].redcap_field_name){const B=l.value.findIndex(w=>w.redcap_field_name==le.event[0].redcap_field_name);B!=-1?le.data.valid=l.value[B].value_type=="datetime":le.data.valid=!1}})},Ke=ol(),V=Z(()=>u.value&&u.value.length>0?u.value.map(le=>le.duster_field_name):[]),R=l3(),k=le=>{R.require({target:le.currentTarget,header:"Back to REDCap New Project Page",message:"You will exit DUSTER's New Project Designer and will lose any changes made here. Are you sure you want to exit?",accept:()=>{window.history.go(-1)}})},A=er(),be=()=>(me(),A.value.$touch(),Ke.removeAllGroups(),A.value.$error?A.value.$errors.forEach(le=>{typeof le.$message=="object"?le.$message.forEach(B=>{B.forEach(w=>{Ke.add({severity:"error",summary:"Error",detail:w,life:3e3})})}):Ke.add({severity:"error",summary:"Error",detail:le.$message,life:3e3})}):(o.value=!0,e.edit_mode===!1&&Te("auto-save")),!1),Te=le=>{let B=new FormData;B.append("redcap_csrf_token",e.redcap_csrf_token),B.append("title",le);const w={rpData:i.value,demographicsSelects:b.value,collectionWindows:S.value};B.append("design",JSON.stringify(w)),_t.post(e.save_dataset_design_url,B).then(function(O){}).catch(function(O){})},Ee=()=>{i.value=ae.value.rpData,b.value=ae.value.demographicsSelects,S.value=ae.value.collectionWindows,Q.value=!1},ze=()=>{ae.value=null,Pe("auto-save")},Pe=le=>{let B=new FormData;B.append("redcap_csrf_token",e.redcap_csrf_token),B.append("title",le),_t.post(e.delete_dataset_design_url,B).then(function(w){}).catch(function(w){})},Ve=le=>{let B=JSON.parse(JSON.stringify(le));return B.forEach(w=>{w.label.toLowerCase().indexOf("date")>-1?w.group=1:w.label.toLowerCase().indexOf("name")>-1?w.group=2:w.group=3}),B.sort(function(w,O){let E=w.label.toLowerCase(),N=O.label.toLowerCase();return w.groupO.group?1:EN?1:0}),B};return(le,B)=>{const w=K("Button"),O=K("Toolbar"),E=K("InputText"),N=K("Dialog"),W=K("ConfirmDialog");return p(),v(ne,null,[g("div",oS,[g("div",aS,[g("div",lS,[sS,Se(g("div",null,[g("div",uS,[g("div",cS,[P(h9,{"rp-data":i.value,"onUpdate:rpData":B[0]||(B[0]=G=>i.value=G),"reserved-field-names":V.value},null,8,["rp-data","reserved-field-names"])]),g("div",dS,[P(_9,{class:"flex-1","demographics-options":u.value,"demographics-selects":b.value,"onUpdate:demographicsSelects":B[1]||(B[1]=G=>b.value=G)},null,8,["demographics-options","demographics-selects"])])]),g("div",pS,[g("div",fS,[P(L7,{"lab-options":s.value,"vital-options":c.value,"score-options":m.value,"outcome-options":d.value,"clinical-date-options":f.value,"rp-dates":l.value,"collection-windows":S.value,"onUpdate:collectionWindows":B[2]||(B[2]=G=>S.value=G),"initial-windows":M.collectionWindows},null,8,["lab-options","vital-options","score-options","outcome-options","clinical-date-options","rp-dates","collection-windows","initial-windows"])])]),g("div",mS,[g("div",hS,[P(ee(mo)),P(O,{class:"col"},{start:L(()=>[P(w,{label:ee(e).edit_mode?"Back to REDCap Project":"Back to REDCap New Project Page",icon:"pi pi-cross",severity:"secondary",class:"ml-2",onClick:B[3]||(B[3]=G=>k(G))},null,8,["label"])]),end:L(()=>[P(w,{type:"submit",label:ee(e).edit_mode?"Review & Update Project":"Review & Create Project",icon:"pi pi-check",class:"ml-2",onClick:be},null,8,["label"])]),_:1})])])],512),[[Un,!o.value]]),g("div",{style:qn(o.value?"":"display: none !important")},[P(X7,{"show-summary":o.value,"onUpdate:showSummary":B[4]||(B[4]=G=>o.value=G),dev:n.value,"rp-data":i.value,"rp-identifiers":a.value,"rp-dates":l.value,demographics:b.value,"collection-windows":S.value,"project-info":ee(e),onDeleteAutoSave:B[5]||(B[5]=G=>ze())},null,8,["show-summary","dev","rp-data","rp-identifiers","rp-dates","demographics","collection-windows","project-info"])],4)])])]),P(N,{visible:ie.value,"onUpdate:visible":B[8]||(B[8]=G=>ie.value=G),modal:"",header:"Checking IRB or DPA",style:{width:"40vw"},closable:!1},{footer:L(()=>[!z.value&&x.value==="checked"?(p(),$(w,{key:0,label:"Submit",icon:"pi pi-refresh",class:"p-button-primary",onClick:q,size:"small"})):T("",!0),z.value&&!oe.value?(p(),$(w,{key:1,label:"OK",icon:"pi pi-check",class:"p-button-primary",onClick:B[7]||(B[7]=G=>oe.value=!0),size:"small"})):T("",!0),P(w,{label:"Cancel",icon:"pi pi-times",class:"p-button-secondary",onClick:ve,size:"small"})]),default:L(()=>[g("p",null,[g("span",{innerHTML:F.value},null,8,gS)]),!z.value&&x.value==="checked"?(p(),v("div",vS,[yS,P(E,{modelValue:_.value,"onUpdate:modelValue":B[6]||(B[6]=G=>_.value=G)},null,8,["modelValue"])])):T("",!0)]),_:1},8,["visible"]),P(N,{visible:Q.value,"onUpdate:visible":B[11]||(B[11]=G=>Q.value=G),header:"Restore last design",modal:!0,closable:!1},{footer:L(()=>[P(w,{label:"Yes",icon:"pi pi-check",class:"p-button-primary",onClick:B[9]||(B[9]=G=>Ee()),size:"small"}),P(w,{label:"No",icon:"pi pi-times",class:"p-button-secondary",onClick:B[10]||(B[10]=G=>(Q.value=!1,ze())),size:"small"})]),default:L(()=>[bS]),_:1},8,["visible"]),r.value?(p(),$(Ud,{key:0})):T("",!0),P(W,null,{message:L(G=>[g("div",wS,[g("i",{class:te(G.message.icon),style:{"font-size":"1.5rem"}},null,2),g("p",CS,Y(G.message.message),1)])]),_:1})],64)}}});const SS=bp(_S,[["__scopeId","data-v-d3c2f2c9"]]);Qm(SS).use(Dh).use(h1).use(s3).component("Accordion",Bc).component("AccordionTab",jc).component("Badge",il).component("Button",Dn).component("Calendar",Kc).component("Card",Uc).component("Checkbox",Wc).component("Column",y1).component("DataTable",Ed).component("Dialog",hl).component("Dropdown",hi).component("InputNumber",ul).component("InputSwitch",$d).component("InputText",sl).component("Message",Ad).component("Panel",Ld).component("RadioButton",Fd).component("Divider",Bd).component("Chip",Vd).component("ConfirmPopup",Nd).component("ConfirmDialog",zd).component("Tag",jd).component("Toolbar",Hd).directive("tooltip",G_).mount("#app"); diff --git a/pages/js/duster/new-project/dist/index.html b/pages/js/duster/new-project/dist/index.html index 3101349..56c760e 100644 --- a/pages/js/duster/new-project/dist/index.html +++ b/pages/js/duster/new-project/dist/index.html @@ -5,8 +5,8 @@ DUSTER - - + +
                  diff --git a/pages/js/duster/new-project/src/App.vue b/pages/js/duster/new-project/src/App.vue index 625aba2..7a47d59 100644 --- a/pages/js/duster/new-project/src/App.vue +++ b/pages/js/duster/new-project/src/App.vue @@ -193,7 +193,7 @@ const rpData = ref([ label:"Medical Record Number (MRN)", redcap_field_type:"text", value_type:"Identifier", // this needs to be replaced by "text" in review step - redcap_field_note:"8-digit number (including leading zeros, e.g., '01234567')", + redcap_field_note:"8-digit number (including leading zeros, e.g., '01234567') or 10-digit number (no leading zeros)", phi:"t", id: "mrn", duster_field_name: undefined diff --git a/services/updateProject.php b/services/updateProject.php index af0119e..7d63ded 100644 --- a/services/updateProject.php +++ b/services/updateProject.php @@ -80,7 +80,7 @@ function getFieldParams($field, string $form_name = "", string $section_header = $project_metadata .= "redcap_record_id,researcher_provided_information,,text,\"REDCap Record ID\",,,,,,,,,,,,,\n"; // Researcher-Provided Identifier - $project_metadata .= "mrn,researcher_provided_information,Identifiers,text,\"Medical Record Number (MRN)\",,\"8-digit number (including leading zeros, e.g., '01234567')\",,,,y,,,,,,,\n"; + $project_metadata .= "mrn,researcher_provided_information,Identifiers,text,\"Medical Record Number (MRN)\",,\"8-digit number (including leading zeros, e.g., '01234567') or 10-digit number (no leading zeros)\",,,,y,,,,,,,\n"; // Researcher-Provided Dates/Datetimes if (array_key_exists('rp_info', $config)) { From 333a88f829071bf0fcb85f3105dbe9f85e5905f9 Mon Sep 17 00:00:00 2001 From: Jonasel Roque <38173852+roquej@users.noreply.github.com> Date: Tue, 11 Jun 2024 10:00:31 -0700 Subject: [PATCH 04/12] editing feature changes (#84) * update text for 10-digit MRN expansion * bug fix handling JSON for duster config * disable option to create a project using DUSTER when not logged in with a SUNet * use JSON format for updating a project's data dictionary instead of CSV format * remove commented code * non-DUSTER fields and forms will be included during project updates after editing * replace warnings for non-DUSTER fields/forms when editing * change logging in updateProject.php --- pages/editProject.php | 129 +- .../new-project/dist/assets/index-7beaa72a.js | 1863 +++++++++++++++++ pages/js/duster/new-project/dist/index.html | 2 +- .../src/components/ReviewPanel.vue | 28 +- services/updateProject.php | 198 +- 5 files changed, 2013 insertions(+), 207 deletions(-) create mode 100644 pages/js/duster/new-project/dist/assets/index-7beaa72a.js diff --git a/pages/editProject.php b/pages/editProject.php index d7d27d7..ff20130 100644 --- a/pages/editProject.php +++ b/pages/editProject.php @@ -24,107 +24,6 @@ && $user_rights['design'] === '1' && $has_design_config === true; -/* Check for non-DUSTER fields */ -$project_object = new Project($pid, false); -$existing_forms = $project_object->forms; -$non_duster_fields = []; - -// Researcher-Provided Information -if (isset($existing_forms['researcher_provided_information'])) { - $rp_fields = array_keys($existing_forms['researcher_provided_information']['fields']); - $duster_rp_fields = ['redcap_record_id', 'mrn']; - $duster_rp_fields = array_merge($duster_rp_fields, array_keys($duster_config['rp_info']['rp_dates'])); - $duster_rp_fields[] = "researcher_provided_information_complete"; - $non_duster_rp_fields = array_diff($rp_fields, $duster_rp_fields); - if (!empty($non_duster_rp_fields)) { - $non_duster_fields[] = [ - 'name' => 'researcher_provided_information', - 'label' => 'Researcher-Provided Information', - 'fields' => $non_duster_rp_fields - ]; - } - unset($existing_forms['researcher_provided_information']); -} - -// Demographics -if (isset($existing_forms['demographics'])) { - $demographic_fields = array_keys($existing_forms['demographics']['fields']); - $duster_demographic_fields = array_column($duster_config['demographics'], 'redcap_field_name'); - $duster_demographic_fields[] = "demographics_complete"; - $non_duster_demographic_fields = array_diff($demographic_fields, $duster_demographic_fields); - if (!empty($non_duster_demographic_fields)) { - $non_duster_fields[] = [ - 'name' => 'demographics', - 'label' => 'Demographics', - 'fields' => $non_duster_demographic_fields - ]; - } - unset($existing_forms['demographics']); -} - -// Data Collection Windows -foreach ($duster_config['collection_windows'] as $collection_window) { - $cw_form_name = $collection_window['form_name']; - if (isset($existing_forms[$cw_form_name])) { - $cw_fields = array_keys($existing_forms[$cw_form_name]['fields']); - $timing_fields = [ - $collection_window['timing']['start']['redcap_field_name'], - $collection_window['timing']['end']['redcap_field_name'] - ]; - if ($collection_window['type'] === 'repeating' && isset($collection_window['timing']['repeat_interval'])) { - $module->emLog("REPEATING HERE"); - $timing_fields = array_merge($timing_fields, [ - $cw_form_name, - $collection_window['timing']['repeat_interval']['start_instance']['redcap_field_name'], - $collection_window['timing']['repeat_interval']['end_instance']['redcap_field_name'] - ]); - } - - $score_fields = []; - foreach ($collection_window['data']['scores'] as $score) { - $score_fields[] = $score['redcap_field_name']; - foreach ($score['subscores'] as $subscore) { - $score_fields[] = $subscore['redcap_field_name']; - $score_fields = array_merge( - $score_fields, - array_column($subscore['dependencies'], 'redcap_field_name') - ); - } - } - - $duster_cw_fields = array_merge( - $timing_fields, - array_column($collection_window['event'], 'redcap_field_name'), - array_column($collection_window['data']['labs'], 'redcap_field_name'), - array_column($collection_window['data']['vitals'], 'redcap_field_name'), - array_column($collection_window['data']['outcomes'], 'redcap_field_name'), - $score_fields - ); - $duster_cw_fields[] = $cw_form_name . '_complete'; - - $non_duster_cw_fields = array_diff($cw_fields, $duster_cw_fields); - if (!empty($non_duster_cw_fields)) { - $non_duster_fields[] = [ - 'name' => $cw_form_name, - 'label' => $collection_window['label'], - 'fields' => $non_duster_cw_fields - ]; - } - unset($existing_forms[$cw_form_name]); - } -} - -// non-DUSTER forms -foreach ($existing_forms as $non_duster_form_name=>$non_duster_form) { - if (!empty($non_duster_form['fields'])) { - $non_duster_fields[] = [ - 'name' => $non_duster_form_name, - 'label' => $non_duster_form['menu'], - 'fields' => array_keys($non_duster_form['fields']) - ]; - } -} - ?> @@ -143,28 +42,11 @@
                • Add new clinical variables to pre-existing data collection windows.
                • - -

                  - WARNING: This REDCap project contains non-DUSTER REDCap fields/forms. -

                  -

                  - The following non-DUSTER REDCap fields may be lost if you decide to edit this DUSTER project: -

                  - - -
                    - () - -
                  1. - -
                  - -
                  - +

                  + Any non-DUSTER user-performed changes made to this project's current data dictionary may be lost or conflict when editing this project. +
                  + Non-DUSTER fields and forms will remain, but they may be rearranged within the data dictionary. +