From ac4a115449b346467eb638bf0081b11e595b79a2 Mon Sep 17 00:00:00 2001 From: AntonLV Date: Fri, 18 Mar 2022 07:12:59 +0300 Subject: [PATCH] Ticket #3694 - Minor fixes: Participants section in Convos. --- modules/boonex/convos/classes/BxCnvGrid.php | 31 +++++++------------ .../boonex/convos/classes/BxCnvTemplate.php | 9 +++--- .../boonex/convos/template/collaborators.html | 4 +-- modules/boonex/convos/template/css/main.css | 10 +++--- .../boonex/convos/template/message_label.html | 16 +++++++--- plugins_public/tailwind/css/tailwind.min.css | 2 +- plugins_public/tailwind/js/tailwind.config.js | 12 ++++--- 7 files changed, 45 insertions(+), 39 deletions(-) diff --git a/modules/boonex/convos/classes/BxCnvGrid.php b/modules/boonex/convos/classes/BxCnvGrid.php index 218eae77f2..403e8243d6 100644 --- a/modules/boonex/convos/classes/BxCnvGrid.php +++ b/modules/boonex/convos/classes/BxCnvGrid.php @@ -15,8 +15,8 @@ class BxCnvGrid extends BxBaseModGeneralGridAdministration { protected $MODULE; protected $_sFilter1Name; - protected $_sFilter1Value; - protected $_aFilter1Values; + protected $_sFilter1Value; + protected $_aFilter1Values; public function __construct ($aOptions, $oTemplate = false) { @@ -93,8 +93,7 @@ protected function _getFilterSelectOne($sFilterName, $sFilterValue, $aFilterValu public function performActionCompose() { - $oModule = BxDolModule::getInstance($this->MODULE); - $CNF = &$oModule->_oConfig->CNF; + $CNF = &$this->_oModule->_oConfig->CNF; $sUrl = BX_DOL_URL_ROOT . BxDolPermalinks::getInstance()->permalink('page.php?i=' . $CNF['URI_ADD_ENTRY']); @@ -103,8 +102,7 @@ public function performActionCompose() protected function _getActionAdd ($sType, $sKey, $a, $isSmall = false, $isDisabled = false, $aRow = array()) { - $oModule = BxDolModule::getInstance($this->MODULE); - $CNF = &$oModule->_oConfig->CNF; + $CNF = &$this->_oModule->_oConfig->CNF; $sUrl = BX_DOL_URL_ROOT . BxDolPermalinks::getInstance()->permalink('page.php?i=' . $CNF['URI_ADD_ENTRY']); @@ -127,30 +125,25 @@ protected function _getCellPreview ($mixedValue, $sKey, $aField, $aRow) protected function _getCellLastReplyTimestamp ($mixedValue, $sKey, $aField, $aRow) { - $oModule = BxDolModule::getInstance($this->MODULE); - $s = $oModule->_oTemplate->entryMessagePreviewInGrid ($aRow); + $s = $this->_oModule->_oTemplate->entryMessagePreviewInGrid ($aRow); return parent::_getCellDefault ($s, $sKey, $aField, $aRow); } protected function _getCellCollaborators ($mixedValue, $sKey, $aField, $aRow) { - $oModule = BxDolModule::getInstance($this->MODULE); - $s = $oModule->_oTemplate->entryCollaborators ($aRow); + $s = $this->_oModule->_oTemplate->entryCollaborators ($aRow); return parent::_getCellDefault ($s, $sKey, $aField, $aRow); } protected function _getCellComments ($mixedValue, $sKey, $aField, $aRow) { - $oModule = BxDolModule::getInstance($this->MODULE); - $s = $oModule->_oTemplate->getMessageLabel ($aRow); - return parent::_getCellDefault ('
' . (1 + $mixedValue) . '' . $s . '
', $sKey, $aField, $aRow); + $s = $this->_oModule->_oTemplate->getMessageLabel(1 + $mixedValue, $aRow); + return parent::_getCellDefault ($s, $sKey, $aField, $aRow); } protected function _doDelete ($iId, $aParams = array()) { - $oModule = BxDolModule::getInstance($this->MODULE); - - if ($sErrorMsg = $oModule->deleteConvo ($iId)) + if ($sErrorMsg = $this->_oModule->deleteConvo ($iId)) return 0; return 1; @@ -159,9 +152,9 @@ protected function _doDelete ($iId, $aParams = array()) protected function _addJsCss() { parent::_addJsCss(); - $oModule = BxDolModule::getInstance($this->MODULE); - $oModule->_oTemplate->addJs('main.js'); - $oModule->_oTemplate->addCss(array('main-media-tablet.css', 'main-media-desktop.css')); + + $this->_oModule->_oTemplate->addJs('main.js'); + $this->_oModule->_oTemplate->addCss(array('main-media-tablet.css', 'main-media-desktop.css')); } } diff --git a/modules/boonex/convos/classes/BxCnvTemplate.php b/modules/boonex/convos/classes/BxCnvTemplate.php index 53a36b767b..0b1e7086c3 100644 --- a/modules/boonex/convos/classes/BxCnvTemplate.php +++ b/modules/boonex/convos/classes/BxCnvTemplate.php @@ -107,7 +107,7 @@ function getAuthorDesc ($aData, $oProfile) return _t('_bx_cnv_author_desc', bx_time_js($aData[$oModule->_oConfig->CNF['FIELD_ADDED']], BX_FORMAT_DATE), bx_time_js($aData['last_reply_timestamp'], BX_FORMAT_DATE)); } - function getMessageLabel ($r, $oProfileLast = null) + function getMessageLabel ($iCount, $r, $oProfileLast = null) { $oModule = BxDolModule::getInstance($this->MODULE); @@ -132,7 +132,8 @@ function getMessageLabel ($r, $oProfileLast = null) if (!isset($r['unread_messages'])) $r['unread_messages'] = $r['comments'] - $r['read_comments']; - $aVars = array ( + return $this->parseHtmlByName('message_label.html', array ( + 'count' => $iCount, 'bx_if:unread_messages' => array ( 'condition' => $r['unread_messages'] > 0, 'content' => array ( @@ -147,9 +148,7 @@ function getMessageLabel ($r, $oProfileLast = null) 'condition' => $bReadByAll, 'content' => array (), ), - ); - - return $this->parseHtmlByName('message_label.html', $aVars); + )); } function getMessagesPreviews ($a) diff --git a/modules/boonex/convos/template/collaborators.html b/modules/boonex/convos/template/collaborators.html index 9e011f808e..9b51525927 100644 --- a/modules/boonex/convos/template/collaborators.html +++ b/modules/boonex/convos/template/collaborators.html @@ -4,10 +4,10 @@
__unit__ -
+
-
+
diff --git a/modules/boonex/convos/template/css/main.css b/modules/boonex/convos/template/css/main.css index e20cea4513..aaba64d670 100644 --- a/modules/boonex/convos/template/css/main.css +++ b/modules/boonex/convos/template/css/main.css @@ -11,8 +11,9 @@ .bx-cnv-collaborator.bx-def-margin-sec-right-auto { float:right; } -.bx-cnv-collaborator-last-replier { - left:0; right:auto; +.bx-cnv-collaborator .bx-cnv-collaborator-last-replier { + left: -2px; + right: auto; } .bx-grid-table .bx-cnv-collaborator, @@ -36,8 +37,9 @@ overflow:hidden; } -.bx-cnv-grid-field-label { - display:inline-block; +.bx-cnv-grid-field-messages .bx-cnv-grid-field-label { + position: relative; + display: inline-block; } .bx-cnv-preview .bx-cnv-grid-field-label { diff --git a/modules/boonex/convos/template/message_label.html b/modules/boonex/convos/template/message_label.html index 29fd55eb78..ddcc8a4676 100644 --- a/modules/boonex/convos/template/message_label.html +++ b/modules/boonex/convos/template/message_label.html @@ -1,4 +1,12 @@ - -
__unread_messages__
-
-
+
+ __count__ + +
__unread_messages__
+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/plugins_public/tailwind/css/tailwind.min.css b/plugins_public/tailwind/css/tailwind.min.css index 11a86c1a20..d43c666950 100644 --- a/plugins_public/tailwind/css/tailwind.min.css +++ b/plugins_public/tailwind/css/tailwind.min.css @@ -1 +1 @@ -/*! tailwindcss v3.0.23 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input:-ms-input-placeholder,textarea:-ms-input-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,:after,:before{--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}ol,ul{list-style-position:outside;padding-left:2.5rem}ul{list-style-type:disc}ol{list-style-type:decimal}.bx-artificer .bx-menthion-link{font-weight:400;--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.bx-artificer .bx-menthion-link:hover{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.dark .bx-artificer .bx-menthion-link{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.dark .bx-artificer .bx-menthion-link:hover{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.bx-artificer .bx-def-box{display:flex;flex-direction:column;overflow:hidden;border-radius:.25rem;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(229 231 235/var(--tw-ring-opacity))}.dark .bx-artificer .bx-def-box{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-ring-opacity:1;--tw-ring-color:rgb(55 65 81/var(--tw-ring-opacity))}.bx-artificer .bx-def-box-sizing{box-sizing:border-box}.bx-artificer .bx-def-align-center{justify-content:center!important}.bx-artificer .bx-def-align-center,.bx-artificer .bx-def-valign-center{display:flex!important;align-items:center!important}.bx-artificer .bx-def-centered{margin-left:auto;margin-right:auto}.bx-artificer .bx-def-margin{margin:1rem}.bx-artificer .bx-def-margin-left,.bx-artificer .bx-def-margin-left-auto{margin-left:1rem}.bx-artificer .bx-def-margin-left-auto:first-child{margin-left:0}.bx-artificer .bx-def-margin-right{margin-right:1rem}.bx-artificer .bx-def-margin-top,.bx-artificer .bx-def-margin-top-auto{margin-top:1rem}.bx-artificer .bx-def-margin-top-auto:first-child{margin-top:0}.bx-artificer .bx-def-margin-bottom{margin-bottom:1rem}.bx-artificer .bx-def-margin-leftright{margin-left:1rem;margin-right:1rem}.bx-artificer .bx-def-margin-leftright-neg{margin-left:-1rem;margin-right:-1rem}.bx-artificer .bx-def-margin-topbottom{margin-top:1rem;margin-bottom:1rem}.bx-artificer .bx-def-margin-topbottom-neg{margin-top:-1rem;margin-bottom:-1rem}.bx-artificer .bx-def-margin-lefttopright{margin-left:1rem;margin-right:1rem;margin-top:1rem}.bx-artificer .bx-def-margin-rightbottomleft{margin-left:1rem;margin-right:1rem;margin-bottom:1rem}.bx-artificer .bx-def-margin-sec{margin:.5rem}.bx-artificer .bx-def-margin-sec-left,.bx-artificer .bx-def-margin-sec-left-auto{margin-left:.5rem}.bx-artificer .bx-def-margin-sec-left-auto:first-child{margin-left:0}.bx-artificer .bx-def-margin-sec-right{margin-right:.5rem}.bx-artificer .bx-def-margin-sec-top,.bx-artificer .bx-def-margin-sec-top-auto{margin-top:.5rem}.bx-artificer .bx-def-margin-sec-top-auto:first-child{margin-top:0}.bx-artificer .bx-def-margin-sec-bottom{margin-bottom:.5rem}.bx-artificer .bx-def-margin-sec-bottom-neg{margin-bottom:-.5rem}.bx-artificer .bx-def-margin-sec-leftright{margin-left:.5rem;margin-right:.5rem}.bx-artificer .bx-def-margin-sec-leftright-neg{margin-left:-.5rem;margin-right:-.5rem}.bx-artificer .bx-def-margin-sec-lefttopright-neg{margin-left:-.5rem;margin-right:-.5rem;margin-top:-.5rem}.bx-artificer .bx-def-margin-sec-topbottom{margin-top:.5rem;margin-bottom:.5rem}.bx-artificer .bx-def-margin-sec-topbottom-neg{margin-top:-.5rem;margin-bottom:-.5rem}.bx-artificer .bx-def-margin-sec-lefttopright{margin-left:.5rem;margin-right:.5rem;margin-top:.5rem}.bx-artificer .bx-def-margin-sec-rightbottomleft{margin-left:.5rem;margin-right:.5rem;margin-bottom:.5rem}.bx-artificer .bx-def-margin-thd{margin:.25rem}.bx-artificer .bx-def-margin-thd-left,.bx-artificer .bx-def-margin-thd-left-auto{margin-left:.25rem}.bx-artificer .bx-def-margin-thd-left-auto:first-child{margin-left:0}.bx-artificer .bx-def-margin-thd-right{margin-right:.25rem}.bx-artificer .bx-def-margin-thd-top,.bx-artificer .bx-def-margin-thd-top-auto{margin-top:.25rem}.bx-artificer .bx-def-margin-thd-top-auto:first-child{margin-top:0}.bx-artificer .bx-def-margin-thd-bottom{margin-bottom:.25rem}.bx-artificer .bx-def-margin-thd-leftright{margin-left:.25rem;margin-right:.25rem}.bx-artificer .bx-def-margin-thd-leftright-neg{margin-left:-.25rem;margin-right:-.25rem}.bx-artificer .bx-def-margin-thd-topbottom{margin-top:.25rem;margin-bottom:.25rem}.bx-artificer .bx-def-margin-thd-topbottom-neg{margin-top:-.25rem;margin-bottom:-.25rem}.bx-artificer .bx-def-margin-thd-lefttopright{margin-left:.25rem;margin-right:.25rem;margin-top:.25rem}.bx-artificer .bx-def-margin-thd-rightbottomleft{margin-left:.25rem;margin-right:.25rem;margin-bottom:.25rem}.bx-artificer .bx-def-padding{padding:1rem}.bx-artificer .bx-def-padding-left,.bx-artificer .bx-def-padding-left-auto{padding-left:1rem}.bx-artificer .bx-def-padding-left-auto:first-child{padding-left:0}.bx-artificer .bx-def-padding-right{padding-right:1rem}.bx-artificer .bx-def-padding-top,.bx-artificer .bx-def-padding-top-auto{padding-top:1rem}.bx-artificer .bx-def-padding-top-auto:first-child{padding-top:0}.bx-artificer .bx-def-padding-bottom{padding-bottom:1rem}.bx-artificer .bx-def-padding-leftright{padding-left:1rem;padding-right:1rem}.bx-artificer .bx-def-padding-topbottom{padding-top:1rem;padding-bottom:1rem}.bx-artificer .bx-def-padding-lefttopright{padding-left:1rem;padding-right:1rem;padding-top:1rem}.bx-artificer .bx-def-padding-rightbottomleft{padding-left:1rem;padding-right:1rem;padding-bottom:1rem}.bx-artificer .bx-def-padding-sec{padding:.5rem}.bx-artificer .bx-def-padding-sec-left,.bx-artificer .bx-def-padding-sec-left-auto{padding-left:.5rem}.bx-artificer .bx-def-padding-sec-left-auto:first-child{padding-left:0}.bx-artificer .bx-def-padding-sec-right{padding-right:.5rem}.bx-artificer .bx-def-padding-sec-top,.bx-artificer .bx-def-padding-sec-top-auto{padding-top:.5rem}.bx-artificer .bx-def-padding-sec-top-auto:first-child{padding-top:0}.bx-artificer .bx-def-padding-sec-bottom{padding-bottom:.5rem}.bx-artificer .bx-def-padding-sec-leftright{padding-left:.5rem;padding-right:.5rem}.bx-artificer .bx-def-padding-sec-topbottom{padding-top:.5rem;padding-bottom:.5rem}.bx-artificer .bx-def-padding-sec-lefttopright{padding-left:.5rem;padding-right:.5rem;padding-top:.5rem}.bx-artificer .bx-def-padding-sec-rightbottomleft{padding-left:.5rem;padding-right:.5rem;padding-bottom:.5rem}.bx-artificer .bx-def-padding-thd{padding:.25rem}.bx-artificer .bx-def-padding-thd-left,.bx-artificer .bx-def-padding-thd-left-auto{padding-left:.25rem}.bx-artificer .bx-def-padding-thd-left-auto:first-child{padding-left:0}.bx-artificer .bx-def-padding-thd-right{padding-right:.25rem}.bx-artificer .bx-def-padding-thd-top,.bx-artificer .bx-def-padding-thd-top-auto{padding-top:.25rem}.bx-artificer .bx-def-padding-thd-top-auto:first-child{padding-top:0}.bx-artificer .bx-def-padding-thd-bottom{padding-bottom:.25rem}.bx-artificer .bx-def-padding-thd-leftright{padding-left:.25rem;padding-right:.25rem}.bx-artificer .bx-def-padding-thd-topbottom{padding-top:.25rem;padding-bottom:.25rem}.bx-artificer .bx-def-padding-thd-lefttopright{padding-left:.25rem;padding-right:.25rem;padding-top:.25rem}.bx-artificer .bx-def-padding-thd-rightbottomleft{padding-left:.25rem;padding-right:.25rem;padding-bottom:.25rem}.bx-artificer .bx-def-border{border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.dark .bx-artificer .bx-def-border{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.bx-artificer .bx-def-round-corners{border-radius:.375rem}.bx-artificer .bx-def-font-inputs:not(.bx-btn),.bx-def-font{font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.dark .bx-artificer .bx-def-font-inputs:not(.bx-btn),.dark .bx-def-font{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.bx-def-font-grayed{color:rgb(55 65 81/var(--tw-text-opacity));--tw-text-opacity:0.6}.dark .bx-def-font-grayed{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.bx-artificer .bx-def-a-colored{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity));-webkit-text-decoration-line:none;text-decoration-line:none}.bx-artificer .bx-def-a-colored:hover{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.dark .bx-artificer .bx-def-a-colored{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.dark .bx-artificer .bx-def-a-colored:hover{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.bx-artificer .bx-def-font-small{font-size:.75rem;line-height:1rem}.bx-artificer .bx-def-font-middle{font-size:.875rem;line-height:1.25rem}.bx-artificer .bx-def-font-large{font-size:1.125rem;line-height:1.75rem}.bx-artificer .bx-def-font-h3,.bx-artificer h3{font-size:1.25rem;line-height:1.75rem}.bx-artificer .bx-def-font-h2,.bx-artificer h2{font-size:1.5rem;line-height:2rem}.bx-artificer .bx-def-font-h1,.bx-artificer h1{font-size:1.875rem;line-height:2.5rem}.bx-def-color-bg-page{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.dark .bx-def-color-bg-page{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.bx-artificer .bx-def-color-bg-block{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.dark .bx-artificer .bx-def-color-bg-block{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.bx-artificer .bx-def-color-bg-box{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.dark .bx-artificer .bx-def-color-bg-box{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.bx-artificer .bx-def-color-bg-box-active{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.dark .bx-artificer .bx-def-color-bg-box-active{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.bx-artificer .bx-def-hr{margin-left:0;margin-right:0;border-top-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity));padding:0}.dark .bx-artificer .bx-def-hr{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.bx-artificer .bx-def-label{box-sizing:border-box;display:inline-block;min-width:1.5rem;border-radius:9999px;--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity));padding:.25rem 1rem;font-size:.875rem;line-height:1.25rem;font-weight:400;--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.bx-artificer .bx-def-label:hover{--tw-bg-opacity:1;background-color:rgb(156 163 175/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .bx-def-label{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-artificer .bx-def-label:hover{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.bx-def-unit-alert,.bx-def-unit-alert-middle,.bx-def-unit-alert-small{position:absolute;top:0;right:-.125rem;display:block;text-align:center;--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-def-unit-alert{height:1rem;border-radius:9999px;padding:.25rem;font-size:.75rem;line-height:1rem;min-width:1rem}.bx-btn{position:relative;display:inline-flex;cursor:pointer;align-items:center;justify-content:center;white-space:nowrap;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));padding:.5rem 1rem;font-size:.875rem;line-height:1.25rem;font-weight:500;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity));--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.bx-btn,.bx-btn:hover{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.bx-btn:hover{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity));--tw-shadow:0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.bx-btn:focus{outline:2px solid #0000;outline-offset:2px;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity));--tw-ring-offset-width:2px}.dark .bx-btn{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-btn:hover{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-btn i,.bx-btn u{display:inline-block;vertical-align:middle}.bx-btn i,.bx-btn img{height:1.25rem;width:1.25rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.dark .bx-btn i,.dark .bx-btn img{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.bx-btn:hover i,.bx-btn:hover img{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.dark .bx-btn:hover i,.dark .bx-btn:hover img{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-btn i{text-align:center}.bx-btn u{margin-left:.5rem;-webkit-text-decoration-line:none;text-decoration-line:none}.bx-btn u:first-child{margin-left:0}.bx-btn.bx-btn-primary{border-color:#0000;background-color:rgb(37 99 235/var(--tw-bg-opacity))}.bx-btn.bx-btn-primary,.bx-btn.bx-btn-primary:hover{--tw-bg-opacity:1;--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-btn.bx-btn-primary:hover{background-color:rgb(29 78 216/var(--tw-bg-opacity))}.bx-btn.bx-btn-primary:focus{outline:2px solid #0000;outline-offset:2px;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity));--tw-ring-offset-width:2px}.dark .bx-btn.bx-btn-primary:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-btn.bx-btn-primary i,.bx-btn.bx-btn-primary img{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.bx-btn.bx-btn-primary:hover i,.bx-btn.bx-btn-primary:hover img{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-btn.bx-btn-disabled{cursor:default!important;--tw-bg-opacity:1!important;--tw-text-opacity:1!important;--tw-shadow:0 0 #0000!important;--tw-shadow-colored:0 0 #0000!important;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)!important}.bx-btn.bx-btn-disabled,.bx-btn.bx-btn-disabled:hover{background-color:rgb(249 250 251/var(--tw-bg-opacity))!important;color:rgb(156 163 175/var(--tw-text-opacity))!important}.bx-btn.bx-btn-disabled:hover{--tw-bg-opacity:1!important;--tw-text-opacity:1!important}.bx-btn.bx-btn-disabled:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color)!important;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)!important;--tw-ring-offset-width:0px!important}.dark .bx-btn.bx-btn-disabled,.dark .bx-btn.bx-btn-disabled:hover{--tw-bg-opacity:1!important;background-color:rgb(55 65 81/var(--tw-bg-opacity))!important}.dark .bx-btn.bx-btn-disabled:hover{--tw-text-opacity:1!important;color:rgb(156 163 175/var(--tw-text-opacity))!important}.bx-btn.bx-btn-small{padding-top:.25rem;padding-bottom:.25rem;font-size:.75rem;line-height:1rem}.bx-btn.bx-btn-small i,.bx-btn.bx-btn-small img{height:1rem;width:1rem;line-height:1rem}.bx-artificer .sys-jf-agreement a,.bx-artificer .sys-lf-agreement a,.bx-artificer form a{font-weight:400;--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.bx-artificer .sys-jf-agreement a:hover,.bx-artificer .sys-lf-agreement a:hover,.bx-artificer form a:hover{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.dark .bx-artificer .sys-jf-agreement a,.dark .bx-artificer .sys-lf-agreement a,.dark .bx-artificer form a{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.dark .bx-artificer .sys-jf-agreement a:hover,.dark .bx-artificer .sys-lf-agreement a:hover,.dark .bx-artificer form a:hover{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.bx-artificer .bx-form-value{margin-top:.25rem}.bx-artificer .bx-form-value:first-child{margin-top:0}.bx-artificer .bx-form-required,.bx-artificer .bx-form-warn{--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.bx-artificer .bx-form-input-datepicker,.bx-artificer .bx-form-input-datetime,.bx-artificer .bx-form-input-doublerange,.bx-artificer .bx-form-input-number,.bx-artificer .bx-form-input-price,.bx-artificer .bx-form-input-select,.bx-artificer .bx-form-input-select_multiple,.bx-artificer .bx-form-input-slider,.bx-artificer .bx-form-input-text,.bx-artificer .bx-form-input-textarea,.bx-artificer .bx-form-input-time,.bx-artificer .bx-form-input-wrapper-price span{display:block;width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.bx-artificer .bx-form-input-datepicker::-moz-placeholder,.bx-artificer .bx-form-input-datetime::-moz-placeholder,.bx-artificer .bx-form-input-doublerange::-moz-placeholder,.bx-artificer .bx-form-input-number::-moz-placeholder,.bx-artificer .bx-form-input-price::-moz-placeholder,.bx-artificer .bx-form-input-select::-moz-placeholder,.bx-artificer .bx-form-input-select_multiple::-moz-placeholder,.bx-artificer .bx-form-input-slider::-moz-placeholder,.bx-artificer .bx-form-input-text::-moz-placeholder,.bx-artificer .bx-form-input-textarea::-moz-placeholder,.bx-artificer .bx-form-input-time::-moz-placeholder,.bx-artificer .bx-form-input-wrapper-price span::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-datepicker:-ms-input-placeholder,.bx-artificer .bx-form-input-datetime:-ms-input-placeholder,.bx-artificer .bx-form-input-doublerange:-ms-input-placeholder,.bx-artificer .bx-form-input-number:-ms-input-placeholder,.bx-artificer .bx-form-input-price:-ms-input-placeholder,.bx-artificer .bx-form-input-select:-ms-input-placeholder,.bx-artificer .bx-form-input-select_multiple:-ms-input-placeholder,.bx-artificer .bx-form-input-slider:-ms-input-placeholder,.bx-artificer .bx-form-input-text:-ms-input-placeholder,.bx-artificer .bx-form-input-textarea:-ms-input-placeholder,.bx-artificer .bx-form-input-time:-ms-input-placeholder,.bx-artificer .bx-form-input-wrapper-price span:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-datepicker::placeholder,.bx-artificer .bx-form-input-datetime::placeholder,.bx-artificer .bx-form-input-doublerange::placeholder,.bx-artificer .bx-form-input-number::placeholder,.bx-artificer .bx-form-input-price::placeholder,.bx-artificer .bx-form-input-select::placeholder,.bx-artificer .bx-form-input-select_multiple::placeholder,.bx-artificer .bx-form-input-slider::placeholder,.bx-artificer .bx-form-input-text::placeholder,.bx-artificer .bx-form-input-textarea::placeholder,.bx-artificer .bx-form-input-time::placeholder,.bx-artificer .bx-form-input-wrapper-price span::placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-datepicker,.bx-artificer .bx-form-input-datetime,.bx-artificer .bx-form-input-doublerange,.bx-artificer .bx-form-input-number,.bx-artificer .bx-form-input-price,.bx-artificer .bx-form-input-select,.bx-artificer .bx-form-input-select_multiple,.bx-artificer .bx-form-input-slider,.bx-artificer .bx-form-input-text,.bx-artificer .bx-form-input-textarea,.bx-artificer .bx-form-input-time,.bx-artificer .bx-form-input-wrapper-price span{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.bx-artificer .bx-form-input-datepicker:focus,.bx-artificer .bx-form-input-datetime:focus,.bx-artificer .bx-form-input-doublerange:focus,.bx-artificer .bx-form-input-number:focus,.bx-artificer .bx-form-input-price:focus,.bx-artificer .bx-form-input-select:focus,.bx-artificer .bx-form-input-select_multiple:focus,.bx-artificer .bx-form-input-slider:focus,.bx-artificer .bx-form-input-text:focus,.bx-artificer .bx-form-input-textarea:focus,.bx-artificer .bx-form-input-time:focus,.bx-artificer .bx-form-input-wrapper-price span:focus{border-color:rgb(59 130 246/var(--tw-border-opacity));--tw-border-opacity:0.7;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.bx-artificer .bx-form-input-datepicker:focus::-moz-placeholder,.bx-artificer .bx-form-input-datetime:focus::-moz-placeholder,.bx-artificer .bx-form-input-doublerange:focus::-moz-placeholder,.bx-artificer .bx-form-input-number:focus::-moz-placeholder,.bx-artificer .bx-form-input-price:focus::-moz-placeholder,.bx-artificer .bx-form-input-select:focus::-moz-placeholder,.bx-artificer .bx-form-input-select_multiple:focus::-moz-placeholder,.bx-artificer .bx-form-input-slider:focus::-moz-placeholder,.bx-artificer .bx-form-input-text:focus::-moz-placeholder,.bx-artificer .bx-form-input-textarea:focus::-moz-placeholder,.bx-artificer .bx-form-input-time:focus::-moz-placeholder,.bx-artificer .bx-form-input-wrapper-price span:focus::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-datepicker:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-datetime:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-doublerange:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-number:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-price:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-select:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-select_multiple:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-slider:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-text:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-textarea:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-time:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-wrapper-price span:focus:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-datepicker:focus::placeholder,.bx-artificer .bx-form-input-datetime:focus::placeholder,.bx-artificer .bx-form-input-doublerange:focus::placeholder,.bx-artificer .bx-form-input-number:focus::placeholder,.bx-artificer .bx-form-input-price:focus::placeholder,.bx-artificer .bx-form-input-select:focus::placeholder,.bx-artificer .bx-form-input-select_multiple:focus::placeholder,.bx-artificer .bx-form-input-slider:focus::placeholder,.bx-artificer .bx-form-input-text:focus::placeholder,.bx-artificer .bx-form-input-textarea:focus::placeholder,.bx-artificer .bx-form-input-time:focus::placeholder,.bx-artificer .bx-form-input-wrapper-price span:focus::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-datepicker:focus,.bx-artificer .bx-form-input-datetime:focus,.bx-artificer .bx-form-input-doublerange:focus,.bx-artificer .bx-form-input-number:focus,.bx-artificer .bx-form-input-price:focus,.bx-artificer .bx-form-input-select:focus,.bx-artificer .bx-form-input-select_multiple:focus,.bx-artificer .bx-form-input-slider:focus,.bx-artificer .bx-form-input-text:focus,.bx-artificer .bx-form-input-textarea:focus,.bx-artificer .bx-form-input-time:focus,.bx-artificer .bx-form-input-wrapper-price span:focus{outline:2px solid #0000;outline-offset:2px;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity));--tw-ring-opacity:0.2}.dark .bx-artificer .bx-form-input-datepicker,.dark .bx-artificer .bx-form-input-datetime,.dark .bx-artificer .bx-form-input-doublerange,.dark .bx-artificer .bx-form-input-number,.dark .bx-artificer .bx-form-input-price,.dark .bx-artificer .bx-form-input-select,.dark .bx-artificer .bx-form-input-select_multiple,.dark .bx-artificer .bx-form-input-slider,.dark .bx-artificer .bx-form-input-text,.dark .bx-artificer .bx-form-input-textarea,.dark .bx-artificer .bx-form-input-time,.dark .bx-artificer .bx-form-input-wrapper-price span{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-artificer .bx-form-input-datepicker:focus,.dark .bx-artificer .bx-form-input-datetime:focus,.dark .bx-artificer .bx-form-input-doublerange:focus,.dark .bx-artificer .bx-form-input-number:focus,.dark .bx-artificer .bx-form-input-price:focus,.dark .bx-artificer .bx-form-input-select:focus,.dark .bx-artificer .bx-form-input-select_multiple:focus,.dark .bx-artificer .bx-form-input-slider:focus,.dark .bx-artificer .bx-form-input-text:focus,.dark .bx-artificer .bx-form-input-textarea:focus,.dark .bx-artificer .bx-form-input-time:focus,.dark .bx-artificer .bx-form-input-wrapper-price span:focus{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-artificer .bx-form-input-wrapper-password{position:relative;display:block;width:100%;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));padding-left:.75rem;padding-right:2rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.bx-artificer .bx-form-input-wrapper-password::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-password:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-password::placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-password{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.bx-artificer .bx-form-input-wrapper-password:focus{border-color:rgb(59 130 246/var(--tw-border-opacity));--tw-border-opacity:0.7;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.bx-artificer .bx-form-input-wrapper-password:focus::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-password:focus:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-password:focus::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-password:focus{outline:2px solid #0000;outline-offset:2px;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity));--tw-ring-opacity:0.2}.dark .bx-artificer .bx-form-input-wrapper-password{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-artificer .bx-form-input-wrapper-password:focus{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-artificer .bx-form-input-wrapper-checkbox_set,.bx-artificer .bx-form-input-wrapper-radio_set{position:relative;display:block;width:100%;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.bx-artificer .bx-form-input-wrapper-checkbox_set::-moz-placeholder,.bx-artificer .bx-form-input-wrapper-radio_set::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-checkbox_set:-ms-input-placeholder,.bx-artificer .bx-form-input-wrapper-radio_set:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-checkbox_set::placeholder,.bx-artificer .bx-form-input-wrapper-radio_set::placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-checkbox_set,.bx-artificer .bx-form-input-wrapper-radio_set{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.bx-artificer .bx-form-input-wrapper-checkbox_set:focus::-moz-placeholder,.bx-artificer .bx-form-input-wrapper-radio_set:focus::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-checkbox_set:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-wrapper-radio_set:focus:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-checkbox_set:focus::placeholder,.bx-artificer .bx-form-input-wrapper-radio_set:focus::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-checkbox_set:focus,.bx-artificer .bx-form-input-wrapper-radio_set:focus{outline:2px solid #0000;outline-offset:2px}.dark .bx-artificer .bx-form-input-wrapper-checkbox_set,.dark .bx-artificer .bx-form-input-wrapper-radio_set{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-artificer .bx-form-input-wrapper-checkbox_set:focus,.dark .bx-artificer .bx-form-input-wrapper-radio_set:focus{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-artificer .bx-form-input-checkbox,.bx-artificer .bx-form-input-radio{display:block;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.bx-artificer .bx-form-input-checkbox::-moz-placeholder,.bx-artificer .bx-form-input-radio::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-checkbox:-ms-input-placeholder,.bx-artificer .bx-form-input-radio:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-checkbox::placeholder,.bx-artificer .bx-form-input-radio::placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-checkbox,.bx-artificer .bx-form-input-radio{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.bx-artificer .bx-form-input-checkbox:focus,.bx-artificer .bx-form-input-radio:focus{border-color:rgb(59 130 246/var(--tw-border-opacity));--tw-border-opacity:0.7;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.bx-artificer .bx-form-input-checkbox:focus::-moz-placeholder,.bx-artificer .bx-form-input-radio:focus::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-checkbox:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-radio:focus:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-checkbox:focus::placeholder,.bx-artificer .bx-form-input-radio:focus::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-checkbox:focus,.bx-artificer .bx-form-input-radio:focus{outline:2px solid #0000;outline-offset:2px;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity));--tw-ring-opacity:0.2}.dark .bx-artificer .bx-form-input-checkbox,.dark .bx-artificer .bx-form-input-radio{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-artificer .bx-form-input-checkbox:focus,.dark .bx-artificer .bx-form-input-radio:focus{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-artificer .bx-switcher-cont.on button{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.dark .bx-artificer .bx-switcher-cont.on button{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.bx-artificer .bx-switcher-cont.on button span{--tw-translate-x:1.25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.bx-artificer .bx-switcher-cont.on button span,.dark .bx-artificer .bx-switcher-cont.on button span{--tw-bg-opacity:1;background-color:rgb(34 197 94/var(--tw-bg-opacity))}.bx-artificer .bx-switcher-cont.off button{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.dark .bx-artificer .bx-switcher-cont.off button{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.bx-artificer .bx-switcher-cont.off button span{--tw-translate-x:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.dark .bx-artificer .bx-switcher-cont.off button span{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken{display:flex;width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;flex-wrap:wrap;align-items:stretch;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken::placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.bx-artificer .bx-form-input-text.bx-form-input-autotoken:focus{border-color:rgb(59 130 246/var(--tw-border-opacity));--tw-border-opacity:0.7;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken:focus::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken:focus:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken:focus::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken:focus{outline:2px solid #0000;outline-offset:2px;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity));--tw-ring-opacity:0.2}.dark .bx-artificer .bx-form-input-text.bx-form-input-autotoken{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-artificer .bx-form-input-text.bx-form-input-autotoken:focus{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-artificer .bx-form-input-autotoken b.val{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.bx-artificer .bx-form-input-autotoken b.val:hover{--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity))}.dark .bx-artificer .bx-form-input-autotoken b.val{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark .bx-artificer .bx-form-input-autotoken b.val:hover{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.bx-artificer .bx-popup-wrapper{overflow:visible}.bx-artificer .bx-popup-applied{border-radius:.5rem}.bx-artificer .bx-popup-responsive:not(.bx-popup-full-screen):not(.bx-popup-menu){width:100%}@media (min-width:768px){.bx-artificer .bx-popup-responsive:not(.bx-popup-full-screen):not(.bx-popup-menu){width:auto}}.bx-artificer .bx-popup-full-screen{width:100%}.bx-artificer .bx-popup{position:relative;border-radius:.375rem;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(229 231 235/var(--tw-ring-opacity))}.dark .bx-artificer .bx-popup{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-ring-opacity:1;--tw-ring-color:rgb(55 65 81/var(--tw-ring-opacity))}.bx-artificer .bx-popup-width{width:100%}@media (min-width:768px){.bx-artificer .bx-popup-width{width:32rem}}.bx-artificer .bx-popup-menu .bx-popup-content,.bx-artificer .bx-popup-width-small{width:14rem}.bx-artificer .bx-popup-full-screen .bx-popup-width{width:100%}@media (min-width:768px){.bx-artificer .bx-popup-full-screen .bx-popup-width{width:100%}}.bx-artificer .bx-popup-fog{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity));opacity:.75}.bx-artificer .bx-menu-custom-hor li.bx-menu-tab-active a,.bx-artificer .bx-menu-hor li.bx-menu-tab-active a{font-weight:500;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.dark .bx-artificer .bx-menu-custom-hor li.bx-menu-tab-active a,.dark .bx-artificer .bx-menu-hor li.bx-menu-tab-active a{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.bx-artificer .bx-db-header .bx-menu-custom-hor li.bx-menu-tab-active a{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .bx-db-header .bx-menu-custom-hor li.bx-menu-tab-active a{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-artificer .bx-menu-custom-ver li.bx-menu-tab-active .bx-mi-highlight,.bx-artificer .bx-menu-ver li.bx-menu-tab-active .bx-mi-highlight,.bx-artificer .bx-menu-verlit li.bx-menu-tab-active .bx-mi-highlight{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));font-weight:500;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .bx-menu-custom-ver li.bx-menu-tab-active .bx-mi-highlight,.dark .bx-artificer .bx-menu-ver li.bx-menu-tab-active .bx-mi-highlight,.dark .bx-artificer .bx-menu-verlit li.bx-menu-tab-active .bx-mi-highlight{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-artificer .bx-popup .bx-menu-ver>li:hover:hover{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .bx-popup .bx-menu-ver>li:hover:hover{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-artificer .bx-popup .bx-menu-ver>li.bx-def-color-bg-active{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .bx-popup .bx-menu-ver>li.bx-def-color-bg-active{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-artificer .bx-toolbar-item.bx-ti-menu .bx-menu-main .bx-menu-item.bx-menu-tab-active{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));opacity:1;--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(229 231 235/var(--tw-ring-opacity))}.dark .bx-artificer .bx-toolbar-item.bx-ti-menu .bx-menu-main .bx-menu-item.bx-menu-tab-active{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity));--tw-ring-opacity:1;--tw-ring-color:rgb(75 85 99/var(--tw-ring-opacity))}.bx-artificer .bx-toolbar-item.bx-ti-menu .bx-menu-main .bx-menu-item.bx-menu-tab-active a{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .bx-toolbar-item.bx-ti-menu .bx-menu-main .bx-menu-item.bx-menu-tab-active a{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-artificer .bx-toolbar-item.bx-ti-menu .bx-menu-main .bx-popup .bx-menu-item.bx-menu-tab-active{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));opacity:1;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.dark .bx-artificer .bx-toolbar-item.bx-ti-menu .bx-menu-main .bx-popup .bx-menu-item.bx-menu-tab-active{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.bx-artificer .bx-menu-main-submenu .bx-menu-item.bx-menu-tab-active a{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .bx-menu-main-submenu .bx-menu-item.bx-menu-tab-active a{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-artificer .bx-menu-main-submenu .bx-menu-item.bx-menu-tab-active .bx-mi-underline,.group:hover .bx-artificer .bx-menu-main-submenu .bx-menu-item.bx-menu-tab-active .bx-mi-underline{--tw-bg-opacity:1;background-color:rgb(59 130 246/var(--tw-bg-opacity))}.bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-menu-tab-active{background-color:#0f172a14;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity));--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(229 231 235/var(--tw-ring-opacity))}.dark .bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-menu-tab-active{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity));--tw-ring-opacity:1;--tw-ring-color:rgb(31 41 55/var(--tw-ring-opacity))}.bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-psmi-show-less,.bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-psmi-show-more{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-psmi-show-less:hover,.bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-psmi-show-more:hover{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.dark .bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-psmi-show-less,.dark .bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-psmi-show-more{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.dark .bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-psmi-show-less:hover,.dark .bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-psmi-show-more:hover{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.bx-artificer .bx-base-pofile-cover-actions div.bx-base-general-entity-actions .bx-menu-custom-hor.bx-menu-hor-inline li.bx-mi-primary{border-color:#0000;--tw-bg-opacity:1;background-color:rgb(37 99 235/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.bx-artificer .bx-base-pofile-cover-actions div.bx-base-general-entity-actions .bx-menu-custom-hor.bx-menu-hor-inline li.bx-mi-primary:hover{--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-artificer .bx-base-pofile-cover-actions div.bx-base-general-entity-actions .bx-menu-custom-hor.bx-menu-hor-inline li.bx-mi-primary:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity))}.bx-artificer .bx-informer-msg a{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.bx-artificer .bx-informer-msg a:hover{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.dark .bx-artificer .bx-informer-msg a{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.dark .bx-artificer .bx-informer-msg a:hover{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.bx-artificer .bx-informer-msg-info{--tw-bg-opacity:1;background-color:rgb(239 246 255/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.bx-artificer .bx-informer-msg-alert{--tw-bg-opacity:1;background-color:rgb(254 252 232/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(161 98 7/var(--tw-text-opacity))}.bx-artificer .bx-informer-msg-error{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity))}.bx-artificer .bx-form-row-view-value{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bx-artificer .cmt .bx-base-general-unit-meta-username{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.bx-artificer .cmt .bx-base-general-unit-meta-username:hover{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .cmt .bx-base-general-unit-meta-username{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.dark .bx-artificer .cmt .bx-base-general-unit-meta-username:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-artificer .bx-def-icon-size{height:2rem;width:2rem}.bx-artificer .bx-def-thumb-size{height:2.5rem;width:2.5rem}.bx-artificer .bx-def-ava-size{height:6rem;width:6rem}.bx-artificer .bx-def-ava-big-size{height:12rem;width:12rem}.bx-artificer .bx-base-pofile-unit-online{position:absolute;right:.125rem;bottom:.125rem;height:.625rem;width:.625rem;border-radius:9999px;--tw-bg-opacity:1;background-color:rgb(34 197 94/var(--tw-bg-opacity));--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-inset:inset;--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/var(--tw-ring-opacity))}.bx-artificer .bx-base-general-unit-meta .bx-base-profile-unit-meta-item>a:not(.bx-btn),.bx-artificer .bx-base-general-unit-meta ul.bx-menu-custom.bx-menu-custom-hor .bx-base-pofile-unit{border-radius:9999px;padding:.25rem}.bx-artificer .bx-base-general-unit-meta .bx-base-profile-unit-meta-item>a:not(.bx-btn):hover,.bx-artificer .bx-base-general-unit-meta ul.bx-menu-custom.bx-menu-custom-hor .bx-base-pofile-unit:hover{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.dark .bx-artificer .bx-base-general-unit-meta .bx-base-profile-unit-meta-item>a:not(.bx-btn):hover,.dark .bx-artificer .bx-base-general-unit-meta ul.bx-menu-custom.bx-menu-custom-hor .bx-base-pofile-unit:hover{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.sys-auth-block{grid-template-columns:repeat(2,minmax(0,1fr))}.sys-auth-block.sys-auth-compact-container{grid-template-columns:repeat(4,minmax(0,1fr))}.bx-vote-likes .bx-vote-element-holder .bx-vote-do-vote.bx-vote-disabled,.bx-vote-likes .bx-vote-element-holder .bx-vote-do-vote.bx-vote-disabled .sys-icon{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-vote-likes .bx-vote-element-holder .bx-vote-do-vote.bx-vote-disabled,.dark .bx-vote-likes .bx-vote-element-holder .bx-vote-do-vote.bx-vote-disabled .sys-icon{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.bx-artificer .bx-menu-custom-hor.bx-menu-object-bx_timeline_menu_view li.bx-menu-tab-active a{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity));--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(229 231 235/var(--tw-ring-opacity))}.dark .bx-artificer .bx-menu-custom-hor.bx-menu-object-bx_timeline_menu_view li.bx-menu-tab-active a{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity));--tw-ring-opacity:1;--tw-ring-color:rgb(75 85 99/var(--tw-ring-opacity))}.bx-artificer .bx-tl-item-text .bx-tl-content.bx-tl-overflow:before{background-image:linear-gradient(to bottom,var(--tw-gradient-stops));--tw-gradient-from:#0000;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#0000);--tw-gradient-to:#fff}.dark .bx-artificer .bx-tl-item-text .bx-tl-content.bx-tl-overflow:before{--tw-gradient-to:#1f2937}.bx-artificer .flickity-button{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity));opacity:.75}.bx-artificer .flickity-button:hover{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity));opacity:1}.dark .bx-artificer .flickity-button{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-artificer .flickity-button:hover{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-artificer .ql-mention-list li{display:flex;align-items:center;padding:.5rem 1rem;font-size:.875rem;line-height:1.25rem;font-weight:400;--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.bx-artificer .ql-mention-list li:hover{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .ql-mention-list li{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-artificer .ql-mention-list li:hover{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.visible{visibility:visible}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{top:0;bottom:0}.inset-0,.inset-x-0{right:0;left:0}.top-6{top:1.5rem}.-left-1\/4{left:-25%}.-right-1\/4{right:-25%}.-top-1\.5{top:-.375rem}.bottom-auto{bottom:auto}.left-auto{left:auto}.-right-1\.5{right:-.375rem}.-top-1{top:-.25rem}.-right-1{right:-.25rem}.-left-1\.5{left:-.375rem}.right-auto{right:auto}.-left-1{left:-.25rem}.top-auto{top:auto}.-bottom-1\.5{bottom:-.375rem}.-bottom-1{bottom:-.25rem}.bottom-0{bottom:0}.top-1{top:.25rem}.right-2{right:.5rem}.top-0{top:0}.-left-8{left:-2rem}.top-12{top:3rem}.-right-8{right:-2rem}.-bottom-12{bottom:-3rem}.left-1\/3{left:33.333333%}.right-0{right:0}.-top-6{top:-1.5rem}.left-0{left:0}.z-0{z-index:0}.z-10{z-index:10}.z-30{z-index:30}.z-20{z-index:20}.z-1{z-index:1}.z-2{z-index:2}.z-40{z-index:40}.z-50{z-index:50}.col-start-1{grid-column-start:1}.row-start-1{grid-row-start:1}.-m-px{margin:-1px}.m-px{margin:1px}.m-0{margin:0}.m-1{margin:.25rem}.m-2{margin:.5rem}.m-4{margin:1rem}.-m-2{margin:-.5rem}.mx-auto{margin-left:auto;margin-right:auto}.-mx-1{margin-left:-.25rem;margin-right:-.25rem}.-mx-2{margin-left:-.5rem;margin-right:-.5rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.my-1{margin-top:.25rem;margin-bottom:.25rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.my-4{margin-top:1rem;margin-bottom:1rem}.-mx-4{margin-left:-1rem;margin-right:-1rem}.my-2{margin-top:.5rem;margin-bottom:.5rem}.mx-4{margin-left:1rem;margin-right:1rem}.my-px{margin-top:1px;margin-bottom:1px}.-my-1{margin-top:-.25rem;margin-bottom:-.25rem}.-mb-4{margin-bottom:-1rem}.mt-4{margin-top:1rem}.mb-4{margin-bottom:1rem}.mt-6{margin-top:1.5rem}.-ml-1{margin-left:-.25rem}.ml-5{margin-left:1.25rem}.mt-2{margin-top:.5rem}.mb-2{margin-bottom:.5rem}.mr-2{margin-right:.5rem}.ml-4{margin-left:1rem}.mb-1{margin-bottom:.25rem}.mt-1{margin-top:.25rem}.ml-2{margin-left:.5rem}.mb-3{margin-bottom:.75rem}.mt-3{margin-top:.75rem}.ml-3{margin-left:.75rem}.mr-1{margin-right:.25rem}.ml-1{margin-left:.25rem}.-mt-24{margin-top:-6rem}.-ml-2{margin-left:-.5rem}.mr-4{margin-right:1rem}.ml-auto{margin-left:auto}.mr-3{margin-right:.75rem}.mr-6{margin-right:1.5rem}.-mb-px{margin-bottom:-1px}.-ml-12{margin-left:-3rem}.-mr-12{margin-right:-3rem}.mt-5{margin-top:1.25rem}.ml-1\.5{margin-left:.375rem}.ml-6{margin-left:1.5rem}.mb-0{margin-bottom:0}.-ml-px{margin-left:-1px}.box-border{box-sizing:border-box}.box-content{box-sizing:initial}.block{display:block}.\!block{display:block!important}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.contents{display:contents}.hidden{display:none}.h-2\/3{height:66.666667%}.h-64{height:16rem}.h-full{height:100%}.h-14{height:3.5rem}.h-40{height:10rem}.h-48{height:12rem}.h-4{height:1rem}.h-10{height:2.5rem}.h-5{height:1.25rem}.h-3{height:.75rem}.h-32{height:8rem}.h-24{height:6rem}.h-6{height:1.5rem}.h-96{height:24rem}.h-8{height:2rem}.h-16{height:4rem}.h-0\.5{height:.125rem}.h-0{height:0}.h-7{height:1.75rem}.max-h-96{max-height:24rem}.max-h-14{max-height:3.5rem}.min-h-0{min-height:0}.w-full{width:100%}.w-2\/3{width:66.666667%}.w-46{width:11.5rem}.w-4{width:1rem}.w-1\/4{width:25%}.w-5{width:1.25rem}.w-10{width:2.5rem}.w-1\/3{width:33.333333%}.w-1\/2{width:50%}.w-48{width:12rem}.w-24{width:6rem}.w-6{width:1.5rem}.w-96{width:24rem}.w-11{width:2.75rem}.w-20{width:5rem}.w-8{width:2rem}.w-32{width:8rem}.w-16{width:4rem}.w-max{width:-webkit-max-content;width:-moz-max-content;width:max-content}.w-64{width:16rem}.w-14{width:3.5rem}.w-7{width:1.75rem}.w-4\/6{width:66.666667%}.min-w-0{min-width:0}.min-w-48{min-width:12rem}.max-w-7xl{max-width:80rem}.max-w-32{max-width:8rem}.max-w-full{max-width:100%}.max-w-xs{max-width:20rem}.max-w-sm{max-width:24rem}.flex-1{flex:1 1 0%}.flex-none{flex:none}.flex-2{flex:2 2 0%}.flex-auto{flex:1 1 auto}.flex-shrink-0{flex-shrink:0}.flex-shrink{flex-shrink:1}.shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.rotate-0{--tw-rotate:0deg}.rotate-0,.rotate-90{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-90{--tw-rotate:90deg}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@-webkit-keyframes goo{0%{transform:translate(0) scale(1)}33%{transform:translate(30px,-50px) scale(1.2)}66%{transform:translate(-20px,20px) scale(.8)}to{transform:translate(0) scale(1)}}@keyframes goo{0%{transform:translate(0) scale(1)}33%{transform:translate(30px,-50px) scale(1.2)}66%{transform:translate(-20px,20px) scale(.8)}to{transform:translate(0) scale(1)}}.animate-goo{-webkit-animation:goo 8s infinite;animation:goo 8s infinite}@-webkit-keyframes pulse{50%{opacity:.5}}@keyframes pulse{50%{opacity:.5}}.animate-pulse{-webkit-animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite;animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.cursor-pointer{cursor:pointer}.resize{resize:both}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.flex-nowrap{flex-wrap:nowrap}.items-start{align-items:flex-start}.items-center{align-items:center}.items-baseline{align-items:baseline}.items-stretch{align-items:stretch}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-2{gap:.5rem}.gap-4{gap:1rem}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.25rem*var(--tw-space-x-reverse));margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(1rem*var(--tw-space-x-reverse));margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)))}.space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(1.5rem*var(--tw-space-x-reverse));margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(2rem*var(--tw-space-x-reverse));margin-left:calc(2rem*(1 - var(--tw-space-x-reverse)))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem*var(--tw-space-x-reverse));margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))}.space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(0px*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0px*var(--tw-space-y-reverse))}.space-x-3>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.75rem*var(--tw-space-x-reverse));margin-left:calc(.75rem*(1 - var(--tw-space-x-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem*var(--tw-space-y-reverse))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px*var(--tw-divide-y-reverse))}.divide-gray-200>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(229 231 235/var(--tw-divide-opacity))}.divide-gray-100>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(243 244 246/var(--tw-divide-opacity))}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;white-space:nowrap}.text-ellipsis,.truncate{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.rounded-md{border-radius:.375rem}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-xl{border-radius:.75rem}.rounded-sm{border-radius:.125rem}.rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.rounded-t-md{border-top-right-radius:.375rem}.rounded-l-md,.rounded-t-md{border-top-left-radius:.375rem}.rounded-l-md{border-bottom-left-radius:.375rem}.rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.rounded-bl{border-bottom-left-radius:.25rem}.border{border-width:1px}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-t{border-top-width:1px}.border-l{border-left-width:1px}.border-r{border-right-width:1px}.border-dashed{border-style:dashed}.border-none{border-style:none}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.border-transparent{border-color:#0000}.border-blue-500{--tw-border-opacity:1;border-color:rgb(59 130 246/var(--tw-border-opacity))}.border-opacity-70{--tw-border-opacity:0.7}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-blue-700{--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity))}.bg-green-700{--tw-bg-opacity:1;background-color:rgb(21 128 61/var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity:1;background-color:rgb(239 68 68/var(--tw-bg-opacity))}.bg-green-500{--tw-bg-opacity:1;background-color:rgb(34 197 94/var(--tw-bg-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.bg-gray-200{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.bg-gray-300{--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity))}.bg-purple-700{--tw-bg-opacity:1;background-color:rgb(126 34 206/var(--tw-bg-opacity))}.bg-red-700{--tw-bg-opacity:1;background-color:rgb(185 28 28/var(--tw-bg-opacity))}.bg-blue-600{--tw-bg-opacity:1;background-color:rgb(37 99 235/var(--tw-bg-opacity))}.bg-red-400{--tw-bg-opacity:1;background-color:rgb(248 113 113/var(--tw-bg-opacity))}.bg-blue-200{--tw-bg-opacity:1;background-color:rgb(191 219 254/var(--tw-bg-opacity))}.bg-gray-900\/50{background-color:#11182780}.bg-gray-600{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.bg-yellow-500{--tw-bg-opacity:1;background-color:rgb(234 179 8/var(--tw-bg-opacity))}.bg-transparent{background-color:initial}.bg-slate-100{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.bg-opacity-50{--tw-bg-opacity:0.5}.bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--tw-gradient-stops))}.bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.from-gray-100{--tw-gradient-from:#f3f4f6;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#f3f4f600)}.from-green-400{--tw-gradient-from:#4ade80;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#4ade8000)}.from-blue-400{--tw-gradient-from:#60a5fa;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#60a5fa00)}.from-red-400{--tw-gradient-from:#f87171;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#f8717100)}.from-red-500{--tw-gradient-from:#ef4444;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#ef444400)}.to-white{--tw-gradient-to:#fff}.to-green-500{--tw-gradient-to:#22c55e}.to-blue-500{--tw-gradient-to:#3b82f6}.to-red-500{--tw-gradient-to:#ef4444}.to-blue-100{--tw-gradient-to:#dbeafe}.bg-cover{background-size:cover}.bg-contain{background-size:contain}.bg-clip-text{-webkit-background-clip:text;background-clip:text}.bg-center{background-position:50%}.bg-no-repeat{background-repeat:no-repeat}.object-cover{-o-object-fit:cover;object-fit:cover}.p-2{padding:.5rem}.p-4{padding:1rem}.p-1{padding:.25rem}.p-3{padding:.75rem}.p-8{padding:2rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-4{padding-left:1rem;padding-right:1rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-16{padding-top:4rem;padding-bottom:4rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.py-0{padding-top:0;padding-bottom:0}.py-4{padding-top:1rem;padding-bottom:1rem}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.pt-6{padding-top:1.5rem}.pt-2{padding-top:.5rem}.pl-2{padding-left:.5rem}.pb-2{padding-bottom:.5rem}.pb-4{padding-bottom:1rem}.pl-4{padding-left:1rem}.pl-11{padding-left:2.75rem}.pt-4{padding-top:1rem}.pb-1{padding-bottom:.25rem}.pr-1{padding-right:.25rem}.pr-2{padding-right:.5rem}.pt-1{padding-top:.25rem}.pb-3{padding-bottom:.75rem}.pt-0{padding-top:0}.pt-5{padding-top:1.25rem}.pl-1{padding-left:.25rem}.pr-0{padding-right:0}.pl-12{padding-left:3rem}.pr-4{padding-right:1rem}.pt-16{padding-top:4rem}.pl-3{padding-left:.75rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-middle{vertical-align:middle}.text-sm{font-size:.875rem;line-height:1.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-base{font-size:1rem;line-height:1.5rem}.text-xl{font-size:1.25rem}.text-lg,.text-xl{line-height:1.75rem}.text-lg{font-size:1.125rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-xs{font-size:.75rem;line-height:1rem}.text-5xl{font-size:3rem;line-height:1}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-6xl{font-size:3.75rem;line-height:1}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.font-light{font-weight:300}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.leading-4{line-height:1rem}.leading-10{line-height:2.5rem}.leading-6{line-height:1.5rem}.leading-5{line-height:1.25rem}.leading-14{line-height:3.5rem}.leading-8{line-height:2rem}.leading-16{line-height:4rem}.tracking-tight{letter-spacing:-.025em}.tracking-wider{letter-spacing:.05em}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.text-transparent{color:#0000}.text-gray-200{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.text-blue-400{--tw-text-opacity:1;color:rgb(96 165 250/var(--tw-text-opacity))}.text-yellow-400{--tw-text-opacity:1;color:rgb(250 204 21/var(--tw-text-opacity))}.text-red-400{--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.text-blue-800{--tw-text-opacity:1;color:rgb(30 64 175/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.text-green-600{--tw-text-opacity:1;color:rgb(22 163 74/var(--tw-text-opacity))}.text-yellow-500{--tw-text-opacity:1;color:rgb(234 179 8/var(--tw-text-opacity))}.text-red-600{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}.text-slate-700{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.placeholder-gray-500::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.placeholder-gray-500:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.placeholder-gray-500::placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.opacity-50{opacity:.5}.opacity-100{opacity:1}.opacity-80{opacity:.8}.opacity-60{opacity:.6}.opacity-75{opacity:.75}.shadow-sm{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.shadow,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow{--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-1,.ring-4{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-4{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-0{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-gray-200{--tw-ring-opacity:1;--tw-ring-color:rgb(229 231 235/var(--tw-ring-opacity))}.ring-white{--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/var(--tw-ring-opacity))}.ring-gray-300{--tw-ring-opacity:1;--tw-ring-color:rgb(209 213 219/var(--tw-ring-opacity))}.ring-blue-500{--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity))}.ring-opacity-20{--tw-ring-opacity:0.2}.blur{--tw-blur:blur(8px)}.blur,.blur-3xl{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.blur-3xl{--tw-blur:blur(64px)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-150{transition-duration:.15s}.duration-75{transition-duration:75ms}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.animation-delay-2000{-webkit-animation-delay:2s;animation-delay:2s}.animation-delay-4000{-webkit-animation-delay:4s;animation-delay:4s}.first\:ml-0:first-child{margin-left:0}.first\:mt-0:first-child{margin-top:0}.first\:mt-2:first-child{margin-top:.5rem}.last\:mb-0:last-child{margin-bottom:0}.last\:mr-0:last-child{margin-right:0}.last\:mb-2:last-child{margin-bottom:.5rem}.hover\:bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.hover\:bg-gray-50:hover{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.hover\:bg-blue-700:hover{--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity))}.hover\:bg-transparent:hover{background-color:initial}.hover\:bg-slate-900\/5:hover{background-color:#0f172a0d}.hover\:bg-slate-200:hover{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.hover\:text-gray-900:hover{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.hover\:text-gray-800:hover{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.hover\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.hover\:text-yellow-600:hover{--tw-text-opacity:1;color:rgb(202 138 4/var(--tw-text-opacity))}.hover\:underline:hover{-webkit-text-decoration-line:underline;text-decoration-line:underline}.hover\:no-underline:hover{-webkit-text-decoration-line:none;text-decoration-line:none}.hover\:opacity-100:hover{opacity:1}.hover\:shadow-md:hover{--tw-shadow:0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.focus\:z-10:focus{z-index:10}.focus\:border-blue-500:focus{--tw-border-opacity:1;border-color:rgb(59 130 246/var(--tw-border-opacity))}.focus\:border-indigo-500:focus{--tw-border-opacity:1;border-color:rgb(99 102 241/var(--tw-border-opacity))}.focus\:border-opacity-70:focus{--tw-border-opacity:0.7}.focus\:bg-gray-100:focus{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.focus\:text-gray-900:focus{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.focus\:placeholder-gray-400:focus::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.focus\:placeholder-gray-400:focus:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.focus\:placeholder-gray-400:focus::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.focus\:outline-none:focus{outline:2px solid #0000;outline-offset:2px}.focus\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-1:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-inset:focus{--tw-ring-inset:inset}.focus\:ring-blue-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity))}.focus\:ring-white:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/var(--tw-ring-opacity))}.focus\:ring-gray-100:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(243 244 246/var(--tw-ring-opacity))}.focus\:ring-indigo-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(99 102 241/var(--tw-ring-opacity))}.focus\:ring-opacity-20:focus{--tw-ring-opacity:0.2}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus\:ring-offset-gray-800:focus{--tw-ring-offset-color:#1f2937}.group:hover .group-hover\:bg-gray-200{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.group:hover .group-hover\:bg-gray-500{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity))}.group:hover .group-hover\:text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.group:hover .group-hover\:text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.group:hover .group-hover\:text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.group:hover .group-hover\:text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.group:hover .group-hover\:text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.dark .dark\:divide-gray-800>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(31 41 55/var(--tw-divide-opacity))}.dark .dark\:divide-gray-700>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(55 65 81/var(--tw-divide-opacity))}.dark .dark\:divide-gray-600>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(75 85 99/var(--tw-divide-opacity))}.dark .dark\:border-gray-700{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.dark .dark\:border-gray-800{--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}.dark .dark\:bg-gray-900{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.dark .dark\:bg-gray-800{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.dark .dark\:bg-gray-700{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark .dark\:bg-gray-600{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.dark .dark\:bg-gray-900\/90{background-color:#111827e6}.dark .dark\:bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.dark .dark\:from-black{--tw-gradient-from:#000;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#0000)}.dark .dark\:from-gray-900{--tw-gradient-from:#111827;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#11182700)}.dark .dark\:to-gray-900{--tw-gradient-to:#111827}.dark .dark\:to-black{--tw-gradient-to:#000}.dark .dark\:text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .dark\:text-gray-50{--tw-text-opacity:1;color:rgb(249 250 251/var(--tw-text-opacity))}.dark .dark\:text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.dark .dark\:text-gray-200{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.dark .dark\:text-gray-100{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.dark .dark\:text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.dark .dark\:text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .dark\:text-green-400{--tw-text-opacity:1;color:rgb(74 222 128/var(--tw-text-opacity))}.dark .dark\:ring-gray-700{--tw-ring-opacity:1;--tw-ring-color:rgb(55 65 81/var(--tw-ring-opacity))}.dark .dark\:ring-gray-900{--tw-ring-opacity:1;--tw-ring-color:rgb(17 24 39/var(--tw-ring-opacity))}.dark .dark\:ring-gray-800{--tw-ring-opacity:1;--tw-ring-color:rgb(31 41 55/var(--tw-ring-opacity))}.dark .dark\:hover\:bg-gray-800:hover{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.dark .dark\:hover\:bg-gray-600:hover{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.dark .dark\:hover\:bg-gray-700:hover{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark .dark\:hover\:bg-slate-700:hover{--tw-bg-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity))}.dark .dark\:hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .dark\:hover\:text-gray-200:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.dark .dark\:hover\:text-gray-100:hover{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.dark .dark\:hover\:text-gray-300:hover{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .dark\:focus\:bg-gray-700:focus{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark .dark\:focus\:text-gray-100:focus{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.dark .dark\:focus\:ring-gray-700:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(55 65 81/var(--tw-ring-opacity))}.dark .group:hover .dark\:group-hover\:bg-gray-600{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.dark .group:hover .dark\:group-hover\:text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .group:hover .dark\:group-hover\:text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .group:hover .dark\:group-hover\:text-gray-100{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}@media (min-width:640px){.sm\:w-full{width:100%}.sm\:items-center{align-items:center}.sm\:truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pb-1{padding-bottom:.25rem}.sm\:pl-2{padding-left:.5rem}.sm\:text-5xl{font-size:3rem;line-height:1}.sm\:text-lg{font-size:1.125rem;line-height:1.75rem}}@media (min-width:768px){.md\:m-px{margin:1px}.md\:mx-4{margin-left:1rem;margin-right:1rem}.md\:mt-2{margin-top:.5rem}.md\:mb-4{margin-bottom:1rem}.md\:mt-4{margin-top:1rem}.md\:block{display:block}.md\:flex{display:flex}.md\:h-10{height:2.5rem}.md\:w-1\/2{width:50%}.md\:w-56{width:14rem}.md\:w-2\/4{width:50%}.md\:w-1\/3{width:33.333333%}.md\:w-2\/3{width:66.666667%}.md\:w-1\/4{width:25%}.md\:w-1\/6{width:16.666667%}.md\:w-3\/6{width:50%}.md\:w-2\/6{width:33.333333%}.md\:w-5\/6{width:83.333333%}.md\:min-w-88{min-width:22rem}.md\:flex-row{flex-direction:row}.md\:items-center{align-items:center}.md\:justify-between{justify-content:space-between}.md\:p-4{padding:1rem}.md\:p-6{padding:1.5rem}.md\:px-4{padding-left:1rem;padding-right:1rem}.md\:py-3{padding-top:.75rem;padding-bottom:.75rem}.md\:py-4{padding-top:1rem;padding-bottom:1rem}.md\:px-3{padding-left:.75rem;padding-right:.75rem}.md\:px-2{padding-left:.5rem;padding-right:.5rem}.md\:pt-3{padding-top:.75rem}.md\:pt-2{padding-top:.5rem}.md\:pb-3{padding-bottom:.75rem}.md\:pb-4{padding-bottom:1rem}.md\:pr-2{padding-right:.5rem}.md\:pl-2{padding-left:.5rem}}@media (min-width:1024px){.lg\:absolute{position:absolute}.lg\:mx-6{margin-left:1.5rem;margin-right:1.5rem}.lg\:my-3{margin-top:.75rem;margin-bottom:.75rem}.lg\:my-6{margin-top:1.5rem;margin-bottom:1.5rem}.lg\:mb-2{margin-bottom:.5rem}.lg\:mb-6{margin-bottom:1.5rem}.lg\:mt-2{margin-top:.5rem}.lg\:ml-64{margin-left:16rem}.lg\:ml-16{margin-left:4rem}.lg\:mt-4{margin-top:1rem}.lg\:mt-6{margin-top:1.5rem}.lg\:mb-4{margin-bottom:1rem}.lg\:-mt-16{margin-top:-4rem}.lg\:mt-14{margin-top:3.5rem}.lg\:mr-12{margin-right:3rem}.lg\:mt-16{margin-top:4rem}.lg\:block{display:block}.lg\:inline{display:inline}.lg\:flex{display:flex}.lg\:hidden{display:none}.lg\:h-40{height:10rem}.lg\:h-32{height:8rem}.lg\:h-80{height:20rem}.lg\:h-8{height:2rem}.lg\:h-36{height:9rem}.lg\:w-64{width:16rem}.lg\:w-16{width:4rem}.lg\:w-1\/3{width:33.333333%}.lg\:w-full{width:100%}.lg\:w-32{width:8rem}.lg\:w-1\/4{width:25%}.lg\:flex-1{flex:1 1 0%}.lg\:flex-none{flex:none}.lg\:flex-row{flex-direction:row}.lg\:items-start{align-items:flex-start}.lg\:items-center{align-items:center}.lg\:justify-start{justify-content:flex-start}.lg\:justify-end{justify-content:flex-end}.lg\:p-6{padding:1.5rem}.lg\:px-4{padding-left:1rem;padding-right:1rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:px-5{padding-left:1.25rem;padding-right:1.25rem}.lg\:px-6{padding-left:1.5rem;padding-right:1.5rem}.lg\:py-4{padding-top:1rem;padding-bottom:1rem}.lg\:px-3{padding-left:.75rem;padding-right:.75rem}.lg\:pt-5{padding-top:1.25rem}.lg\:pt-3{padding-top:.75rem}.lg\:pb-2{padding-bottom:.5rem}.lg\:pb-6{padding-bottom:1.5rem}.lg\:pl-52{padding-left:13rem}.lg\:pl-4{padding-left:1rem}.lg\:pt-4{padding-top:1rem}.lg\:pl-3{padding-left:.75rem}.lg\:pr-3{padding-right:.75rem}.lg\:text-left{text-align:left}.lg\:text-base{font-size:1rem;line-height:1.5rem}.lg\:text-xl{font-size:1.25rem;line-height:1.75rem}.lg\:first\:mt-3:first-child{margin-top:.75rem}.lg\:last\:mb-3:last-child{margin-bottom:.75rem}}@media (min-width:1280px){.xl\:rounded-b-lg{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.xl\:p-8{padding:2rem}.xl\:px-4{padding-left:1rem;padding-right:1rem}.xl\:text-6xl{font-size:3.75rem;line-height:1}.xl\:text-xl{font-size:1.25rem;line-height:1.75rem}} \ No newline at end of file +/*! tailwindcss v3.0.23 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input:-ms-input-placeholder,textarea:-ms-input-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,:after,:before{--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}ol,ul{list-style-position:outside;padding-left:2.5rem}ul{list-style-type:disc}ol{list-style-type:decimal}.bx-artificer .bx-menthion-link{font-weight:400;--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.bx-artificer .bx-menthion-link:hover{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.dark .bx-artificer .bx-menthion-link{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.dark .bx-artificer .bx-menthion-link:hover{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.bx-artificer .bx-def-box{display:flex;flex-direction:column;overflow:hidden;border-radius:.25rem;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(229 231 235/var(--tw-ring-opacity))}.dark .bx-artificer .bx-def-box{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-ring-opacity:1;--tw-ring-color:rgb(55 65 81/var(--tw-ring-opacity))}.bx-artificer .bx-def-box-sizing{box-sizing:border-box}.bx-artificer .bx-def-align-center{justify-content:center!important}.bx-artificer .bx-def-align-center,.bx-artificer .bx-def-valign-center{display:flex!important;align-items:center!important}.bx-artificer .bx-def-centered{margin-left:auto;margin-right:auto}.bx-artificer .bx-def-margin{margin:1rem}.bx-artificer .bx-def-margin-left,.bx-artificer .bx-def-margin-left-auto{margin-left:1rem}.bx-artificer .bx-def-margin-left-auto:first-child{margin-left:0}.bx-artificer .bx-def-margin-right{margin-right:1rem}.bx-artificer .bx-def-margin-top,.bx-artificer .bx-def-margin-top-auto{margin-top:1rem}.bx-artificer .bx-def-margin-top-auto:first-child{margin-top:0}.bx-artificer .bx-def-margin-bottom{margin-bottom:1rem}.bx-artificer .bx-def-margin-leftright{margin-left:1rem;margin-right:1rem}.bx-artificer .bx-def-margin-leftright-neg{margin-left:-1rem;margin-right:-1rem}.bx-artificer .bx-def-margin-topbottom{margin-top:1rem;margin-bottom:1rem}.bx-artificer .bx-def-margin-topbottom-neg{margin-top:-1rem;margin-bottom:-1rem}.bx-artificer .bx-def-margin-lefttopright{margin-left:1rem;margin-right:1rem;margin-top:1rem}.bx-artificer .bx-def-margin-rightbottomleft{margin-left:1rem;margin-right:1rem;margin-bottom:1rem}.bx-artificer .bx-def-margin-sec{margin:.5rem}.bx-artificer .bx-def-margin-sec-left,.bx-artificer .bx-def-margin-sec-left-auto{margin-left:.5rem}.bx-artificer .bx-def-margin-sec-left-auto:first-child{margin-left:0}.bx-artificer .bx-def-margin-sec-right{margin-right:.5rem}.bx-artificer .bx-def-margin-sec-top,.bx-artificer .bx-def-margin-sec-top-auto{margin-top:.5rem}.bx-artificer .bx-def-margin-sec-top-auto:first-child{margin-top:0}.bx-artificer .bx-def-margin-sec-bottom{margin-bottom:.5rem}.bx-artificer .bx-def-margin-sec-bottom-neg{margin-bottom:-.5rem}.bx-artificer .bx-def-margin-sec-leftright{margin-left:.5rem;margin-right:.5rem}.bx-artificer .bx-def-margin-sec-leftright-neg{margin-left:-.5rem;margin-right:-.5rem}.bx-artificer .bx-def-margin-sec-lefttopright-neg{margin-left:-.5rem;margin-right:-.5rem;margin-top:-.5rem}.bx-artificer .bx-def-margin-sec-topbottom{margin-top:.5rem;margin-bottom:.5rem}.bx-artificer .bx-def-margin-sec-topbottom-neg{margin-top:-.5rem;margin-bottom:-.5rem}.bx-artificer .bx-def-margin-sec-lefttopright{margin-left:.5rem;margin-right:.5rem;margin-top:.5rem}.bx-artificer .bx-def-margin-sec-rightbottomleft{margin-left:.5rem;margin-right:.5rem;margin-bottom:.5rem}.bx-artificer .bx-def-margin-thd{margin:.25rem}.bx-artificer .bx-def-margin-thd-left,.bx-artificer .bx-def-margin-thd-left-auto{margin-left:.25rem}.bx-artificer .bx-def-margin-thd-left-auto:first-child{margin-left:0}.bx-artificer .bx-def-margin-thd-right{margin-right:.25rem}.bx-artificer .bx-def-margin-thd-top,.bx-artificer .bx-def-margin-thd-top-auto{margin-top:.25rem}.bx-artificer .bx-def-margin-thd-top-auto:first-child{margin-top:0}.bx-artificer .bx-def-margin-thd-bottom{margin-bottom:.25rem}.bx-artificer .bx-def-margin-thd-leftright{margin-left:.25rem;margin-right:.25rem}.bx-artificer .bx-def-margin-thd-leftright-neg{margin-left:-.25rem;margin-right:-.25rem}.bx-artificer .bx-def-margin-thd-topbottom{margin-top:.25rem;margin-bottom:.25rem}.bx-artificer .bx-def-margin-thd-topbottom-neg{margin-top:-.25rem;margin-bottom:-.25rem}.bx-artificer .bx-def-margin-thd-lefttopright{margin-left:.25rem;margin-right:.25rem;margin-top:.25rem}.bx-artificer .bx-def-margin-thd-rightbottomleft{margin-left:.25rem;margin-right:.25rem;margin-bottom:.25rem}.bx-artificer .bx-def-padding{padding:1rem}.bx-artificer .bx-def-padding-left,.bx-artificer .bx-def-padding-left-auto{padding-left:1rem}.bx-artificer .bx-def-padding-left-auto:first-child{padding-left:0}.bx-artificer .bx-def-padding-right{padding-right:1rem}.bx-artificer .bx-def-padding-top,.bx-artificer .bx-def-padding-top-auto{padding-top:1rem}.bx-artificer .bx-def-padding-top-auto:first-child{padding-top:0}.bx-artificer .bx-def-padding-bottom{padding-bottom:1rem}.bx-artificer .bx-def-padding-leftright{padding-left:1rem;padding-right:1rem}.bx-artificer .bx-def-padding-topbottom{padding-top:1rem;padding-bottom:1rem}.bx-artificer .bx-def-padding-lefttopright{padding-left:1rem;padding-right:1rem;padding-top:1rem}.bx-artificer .bx-def-padding-rightbottomleft{padding-left:1rem;padding-right:1rem;padding-bottom:1rem}.bx-artificer .bx-def-padding-sec{padding:.5rem}.bx-artificer .bx-def-padding-sec-left,.bx-artificer .bx-def-padding-sec-left-auto{padding-left:.5rem}.bx-artificer .bx-def-padding-sec-left-auto:first-child{padding-left:0}.bx-artificer .bx-def-padding-sec-right{padding-right:.5rem}.bx-artificer .bx-def-padding-sec-top,.bx-artificer .bx-def-padding-sec-top-auto{padding-top:.5rem}.bx-artificer .bx-def-padding-sec-top-auto:first-child{padding-top:0}.bx-artificer .bx-def-padding-sec-bottom{padding-bottom:.5rem}.bx-artificer .bx-def-padding-sec-leftright{padding-left:.5rem;padding-right:.5rem}.bx-artificer .bx-def-padding-sec-topbottom{padding-top:.5rem;padding-bottom:.5rem}.bx-artificer .bx-def-padding-sec-lefttopright{padding-left:.5rem;padding-right:.5rem;padding-top:.5rem}.bx-artificer .bx-def-padding-sec-rightbottomleft{padding-left:.5rem;padding-right:.5rem;padding-bottom:.5rem}.bx-artificer .bx-def-padding-thd{padding:.25rem}.bx-artificer .bx-def-padding-thd-left,.bx-artificer .bx-def-padding-thd-left-auto{padding-left:.25rem}.bx-artificer .bx-def-padding-thd-left-auto:first-child{padding-left:0}.bx-artificer .bx-def-padding-thd-right{padding-right:.25rem}.bx-artificer .bx-def-padding-thd-top,.bx-artificer .bx-def-padding-thd-top-auto{padding-top:.25rem}.bx-artificer .bx-def-padding-thd-top-auto:first-child{padding-top:0}.bx-artificer .bx-def-padding-thd-bottom{padding-bottom:.25rem}.bx-artificer .bx-def-padding-thd-leftright{padding-left:.25rem;padding-right:.25rem}.bx-artificer .bx-def-padding-thd-topbottom{padding-top:.25rem;padding-bottom:.25rem}.bx-artificer .bx-def-padding-thd-lefttopright{padding-left:.25rem;padding-right:.25rem;padding-top:.25rem}.bx-artificer .bx-def-padding-thd-rightbottomleft{padding-left:.25rem;padding-right:.25rem;padding-bottom:.25rem}.bx-artificer .bx-def-border{border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.dark .bx-artificer .bx-def-border{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.bx-artificer .bx-def-round-corners{border-radius:.375rem}.bx-artificer .bx-def-font-inputs:not(.bx-btn),.bx-def-font{font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.dark .bx-artificer .bx-def-font-inputs:not(.bx-btn),.dark .bx-def-font{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.bx-def-font-grayed{color:rgb(55 65 81/var(--tw-text-opacity));--tw-text-opacity:0.6}.dark .bx-def-font-grayed{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.bx-artificer .bx-def-a-colored{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity));-webkit-text-decoration-line:none;text-decoration-line:none}.bx-artificer .bx-def-a-colored:hover{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.dark .bx-artificer .bx-def-a-colored{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.dark .bx-artificer .bx-def-a-colored:hover{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.bx-artificer .bx-def-font-small{font-size:.75rem;line-height:1rem}.bx-artificer .bx-def-font-middle{font-size:.875rem;line-height:1.25rem}.bx-artificer .bx-def-font-large{font-size:1.125rem;line-height:1.75rem}.bx-artificer .bx-def-font-h3,.bx-artificer h3{font-size:1.25rem;line-height:1.75rem}.bx-artificer .bx-def-font-h2,.bx-artificer h2{font-size:1.5rem;line-height:2rem}.bx-artificer .bx-def-font-h1,.bx-artificer h1{font-size:1.875rem;line-height:2.5rem}.bx-def-color-bg-page{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.dark .bx-def-color-bg-page{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.bx-artificer .bx-def-color-bg-block{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.dark .bx-artificer .bx-def-color-bg-block{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.bx-artificer .bx-def-color-bg-box{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.dark .bx-artificer .bx-def-color-bg-box{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.bx-artificer .bx-def-color-bg-box-active{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.dark .bx-artificer .bx-def-color-bg-box-active{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.bx-artificer .bx-def-hr{margin-left:0;margin-right:0;border-top-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity));padding:0}.dark .bx-artificer .bx-def-hr{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.bx-artificer .bx-def-label{box-sizing:border-box;display:inline-block;min-width:1.5rem;border-radius:9999px;--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity));padding:.25rem 1rem;font-size:.875rem;line-height:1.25rem;font-weight:400;--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.bx-artificer .bx-def-label:hover{--tw-bg-opacity:1;background-color:rgb(156 163 175/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .bx-def-label{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-artificer .bx-def-label:hover{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.bx-def-unit-alert,.bx-def-unit-alert-middle,.bx-def-unit-alert-small{position:absolute;top:0;right:-.125rem;display:block;text-align:center;--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-def-unit-alert{height:1rem;border-radius:9999px;padding:.25rem;font-size:.75rem;line-height:1rem;min-width:1rem}.bx-btn{position:relative;display:inline-flex;cursor:pointer;align-items:center;justify-content:center;white-space:nowrap;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));padding:.5rem 1rem;font-size:.875rem;line-height:1.25rem;font-weight:500;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity));--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.bx-btn,.bx-btn:hover{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.bx-btn:hover{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity));--tw-shadow:0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.bx-btn:focus{outline:2px solid #0000;outline-offset:2px;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity));--tw-ring-offset-width:2px}.dark .bx-btn{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-btn:hover{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-btn i,.bx-btn u{display:inline-block;vertical-align:middle}.bx-btn i,.bx-btn img{height:1.25rem;width:1.25rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.dark .bx-btn i,.dark .bx-btn img{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.bx-btn:hover i,.bx-btn:hover img{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.dark .bx-btn:hover i,.dark .bx-btn:hover img{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-btn i{text-align:center}.bx-btn u{margin-left:.5rem;-webkit-text-decoration-line:none;text-decoration-line:none}.bx-btn u:first-child{margin-left:0}.bx-btn.bx-btn-primary{border-color:#0000;background-color:rgb(37 99 235/var(--tw-bg-opacity))}.bx-btn.bx-btn-primary,.bx-btn.bx-btn-primary:hover{--tw-bg-opacity:1;--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-btn.bx-btn-primary:hover{background-color:rgb(29 78 216/var(--tw-bg-opacity))}.bx-btn.bx-btn-primary:focus{outline:2px solid #0000;outline-offset:2px;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity));--tw-ring-offset-width:2px}.dark .bx-btn.bx-btn-primary:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-btn.bx-btn-primary i,.bx-btn.bx-btn-primary img{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.bx-btn.bx-btn-primary:hover i,.bx-btn.bx-btn-primary:hover img{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-btn.bx-btn-disabled{cursor:default!important;--tw-bg-opacity:1!important;--tw-text-opacity:1!important;--tw-shadow:0 0 #0000!important;--tw-shadow-colored:0 0 #0000!important;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)!important}.bx-btn.bx-btn-disabled,.bx-btn.bx-btn-disabled:hover{background-color:rgb(249 250 251/var(--tw-bg-opacity))!important;color:rgb(156 163 175/var(--tw-text-opacity))!important}.bx-btn.bx-btn-disabled:hover{--tw-bg-opacity:1!important;--tw-text-opacity:1!important}.bx-btn.bx-btn-disabled:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color)!important;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)!important;--tw-ring-offset-width:0px!important}.dark .bx-btn.bx-btn-disabled,.dark .bx-btn.bx-btn-disabled:hover{--tw-bg-opacity:1!important;background-color:rgb(55 65 81/var(--tw-bg-opacity))!important}.dark .bx-btn.bx-btn-disabled:hover{--tw-text-opacity:1!important;color:rgb(156 163 175/var(--tw-text-opacity))!important}.bx-btn.bx-btn-small{padding-top:.25rem;padding-bottom:.25rem;font-size:.75rem;line-height:1rem}.bx-btn.bx-btn-small i,.bx-btn.bx-btn-small img{height:1rem;width:1rem;line-height:1rem}.bx-artificer .sys-jf-agreement a,.bx-artificer .sys-lf-agreement a,.bx-artificer form a{font-weight:400;--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.bx-artificer .sys-jf-agreement a:hover,.bx-artificer .sys-lf-agreement a:hover,.bx-artificer form a:hover{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.dark .bx-artificer .sys-jf-agreement a,.dark .bx-artificer .sys-lf-agreement a,.dark .bx-artificer form a{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.dark .bx-artificer .sys-jf-agreement a:hover,.dark .bx-artificer .sys-lf-agreement a:hover,.dark .bx-artificer form a:hover{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.bx-artificer .bx-form-value{margin-top:.25rem}.bx-artificer .bx-form-value:first-child{margin-top:0}.bx-artificer .bx-form-required,.bx-artificer .bx-form-warn{--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.bx-artificer .bx-form-input-datepicker,.bx-artificer .bx-form-input-datetime,.bx-artificer .bx-form-input-doublerange,.bx-artificer .bx-form-input-number,.bx-artificer .bx-form-input-price,.bx-artificer .bx-form-input-select,.bx-artificer .bx-form-input-select_multiple,.bx-artificer .bx-form-input-slider,.bx-artificer .bx-form-input-text,.bx-artificer .bx-form-input-textarea,.bx-artificer .bx-form-input-time,.bx-artificer .bx-form-input-wrapper-price span{display:block;width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.bx-artificer .bx-form-input-datepicker::-moz-placeholder,.bx-artificer .bx-form-input-datetime::-moz-placeholder,.bx-artificer .bx-form-input-doublerange::-moz-placeholder,.bx-artificer .bx-form-input-number::-moz-placeholder,.bx-artificer .bx-form-input-price::-moz-placeholder,.bx-artificer .bx-form-input-select::-moz-placeholder,.bx-artificer .bx-form-input-select_multiple::-moz-placeholder,.bx-artificer .bx-form-input-slider::-moz-placeholder,.bx-artificer .bx-form-input-text::-moz-placeholder,.bx-artificer .bx-form-input-textarea::-moz-placeholder,.bx-artificer .bx-form-input-time::-moz-placeholder,.bx-artificer .bx-form-input-wrapper-price span::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-datepicker:-ms-input-placeholder,.bx-artificer .bx-form-input-datetime:-ms-input-placeholder,.bx-artificer .bx-form-input-doublerange:-ms-input-placeholder,.bx-artificer .bx-form-input-number:-ms-input-placeholder,.bx-artificer .bx-form-input-price:-ms-input-placeholder,.bx-artificer .bx-form-input-select:-ms-input-placeholder,.bx-artificer .bx-form-input-select_multiple:-ms-input-placeholder,.bx-artificer .bx-form-input-slider:-ms-input-placeholder,.bx-artificer .bx-form-input-text:-ms-input-placeholder,.bx-artificer .bx-form-input-textarea:-ms-input-placeholder,.bx-artificer .bx-form-input-time:-ms-input-placeholder,.bx-artificer .bx-form-input-wrapper-price span:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-datepicker::placeholder,.bx-artificer .bx-form-input-datetime::placeholder,.bx-artificer .bx-form-input-doublerange::placeholder,.bx-artificer .bx-form-input-number::placeholder,.bx-artificer .bx-form-input-price::placeholder,.bx-artificer .bx-form-input-select::placeholder,.bx-artificer .bx-form-input-select_multiple::placeholder,.bx-artificer .bx-form-input-slider::placeholder,.bx-artificer .bx-form-input-text::placeholder,.bx-artificer .bx-form-input-textarea::placeholder,.bx-artificer .bx-form-input-time::placeholder,.bx-artificer .bx-form-input-wrapper-price span::placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-datepicker,.bx-artificer .bx-form-input-datetime,.bx-artificer .bx-form-input-doublerange,.bx-artificer .bx-form-input-number,.bx-artificer .bx-form-input-price,.bx-artificer .bx-form-input-select,.bx-artificer .bx-form-input-select_multiple,.bx-artificer .bx-form-input-slider,.bx-artificer .bx-form-input-text,.bx-artificer .bx-form-input-textarea,.bx-artificer .bx-form-input-time,.bx-artificer .bx-form-input-wrapper-price span{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.bx-artificer .bx-form-input-datepicker:focus,.bx-artificer .bx-form-input-datetime:focus,.bx-artificer .bx-form-input-doublerange:focus,.bx-artificer .bx-form-input-number:focus,.bx-artificer .bx-form-input-price:focus,.bx-artificer .bx-form-input-select:focus,.bx-artificer .bx-form-input-select_multiple:focus,.bx-artificer .bx-form-input-slider:focus,.bx-artificer .bx-form-input-text:focus,.bx-artificer .bx-form-input-textarea:focus,.bx-artificer .bx-form-input-time:focus,.bx-artificer .bx-form-input-wrapper-price span:focus{border-color:rgb(59 130 246/var(--tw-border-opacity));--tw-border-opacity:0.7;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.bx-artificer .bx-form-input-datepicker:focus::-moz-placeholder,.bx-artificer .bx-form-input-datetime:focus::-moz-placeholder,.bx-artificer .bx-form-input-doublerange:focus::-moz-placeholder,.bx-artificer .bx-form-input-number:focus::-moz-placeholder,.bx-artificer .bx-form-input-price:focus::-moz-placeholder,.bx-artificer .bx-form-input-select:focus::-moz-placeholder,.bx-artificer .bx-form-input-select_multiple:focus::-moz-placeholder,.bx-artificer .bx-form-input-slider:focus::-moz-placeholder,.bx-artificer .bx-form-input-text:focus::-moz-placeholder,.bx-artificer .bx-form-input-textarea:focus::-moz-placeholder,.bx-artificer .bx-form-input-time:focus::-moz-placeholder,.bx-artificer .bx-form-input-wrapper-price span:focus::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-datepicker:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-datetime:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-doublerange:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-number:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-price:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-select:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-select_multiple:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-slider:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-text:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-textarea:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-time:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-wrapper-price span:focus:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-datepicker:focus::placeholder,.bx-artificer .bx-form-input-datetime:focus::placeholder,.bx-artificer .bx-form-input-doublerange:focus::placeholder,.bx-artificer .bx-form-input-number:focus::placeholder,.bx-artificer .bx-form-input-price:focus::placeholder,.bx-artificer .bx-form-input-select:focus::placeholder,.bx-artificer .bx-form-input-select_multiple:focus::placeholder,.bx-artificer .bx-form-input-slider:focus::placeholder,.bx-artificer .bx-form-input-text:focus::placeholder,.bx-artificer .bx-form-input-textarea:focus::placeholder,.bx-artificer .bx-form-input-time:focus::placeholder,.bx-artificer .bx-form-input-wrapper-price span:focus::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-datepicker:focus,.bx-artificer .bx-form-input-datetime:focus,.bx-artificer .bx-form-input-doublerange:focus,.bx-artificer .bx-form-input-number:focus,.bx-artificer .bx-form-input-price:focus,.bx-artificer .bx-form-input-select:focus,.bx-artificer .bx-form-input-select_multiple:focus,.bx-artificer .bx-form-input-slider:focus,.bx-artificer .bx-form-input-text:focus,.bx-artificer .bx-form-input-textarea:focus,.bx-artificer .bx-form-input-time:focus,.bx-artificer .bx-form-input-wrapper-price span:focus{outline:2px solid #0000;outline-offset:2px;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity));--tw-ring-opacity:0.2}.dark .bx-artificer .bx-form-input-datepicker,.dark .bx-artificer .bx-form-input-datetime,.dark .bx-artificer .bx-form-input-doublerange,.dark .bx-artificer .bx-form-input-number,.dark .bx-artificer .bx-form-input-price,.dark .bx-artificer .bx-form-input-select,.dark .bx-artificer .bx-form-input-select_multiple,.dark .bx-artificer .bx-form-input-slider,.dark .bx-artificer .bx-form-input-text,.dark .bx-artificer .bx-form-input-textarea,.dark .bx-artificer .bx-form-input-time,.dark .bx-artificer .bx-form-input-wrapper-price span{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-artificer .bx-form-input-datepicker:focus,.dark .bx-artificer .bx-form-input-datetime:focus,.dark .bx-artificer .bx-form-input-doublerange:focus,.dark .bx-artificer .bx-form-input-number:focus,.dark .bx-artificer .bx-form-input-price:focus,.dark .bx-artificer .bx-form-input-select:focus,.dark .bx-artificer .bx-form-input-select_multiple:focus,.dark .bx-artificer .bx-form-input-slider:focus,.dark .bx-artificer .bx-form-input-text:focus,.dark .bx-artificer .bx-form-input-textarea:focus,.dark .bx-artificer .bx-form-input-time:focus,.dark .bx-artificer .bx-form-input-wrapper-price span:focus{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-artificer .bx-form-input-wrapper-password{position:relative;display:block;width:100%;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));padding-left:.75rem;padding-right:2rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.bx-artificer .bx-form-input-wrapper-password::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-password:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-password::placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-password{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.bx-artificer .bx-form-input-wrapper-password:focus{border-color:rgb(59 130 246/var(--tw-border-opacity));--tw-border-opacity:0.7;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.bx-artificer .bx-form-input-wrapper-password:focus::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-password:focus:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-password:focus::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-password:focus{outline:2px solid #0000;outline-offset:2px;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity));--tw-ring-opacity:0.2}.dark .bx-artificer .bx-form-input-wrapper-password{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-artificer .bx-form-input-wrapper-password:focus{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-artificer .bx-form-input-wrapper-checkbox_set,.bx-artificer .bx-form-input-wrapper-radio_set{position:relative;display:block;width:100%;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.bx-artificer .bx-form-input-wrapper-checkbox_set::-moz-placeholder,.bx-artificer .bx-form-input-wrapper-radio_set::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-checkbox_set:-ms-input-placeholder,.bx-artificer .bx-form-input-wrapper-radio_set:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-checkbox_set::placeholder,.bx-artificer .bx-form-input-wrapper-radio_set::placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-checkbox_set,.bx-artificer .bx-form-input-wrapper-radio_set{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.bx-artificer .bx-form-input-wrapper-checkbox_set:focus::-moz-placeholder,.bx-artificer .bx-form-input-wrapper-radio_set:focus::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-checkbox_set:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-wrapper-radio_set:focus:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-checkbox_set:focus::placeholder,.bx-artificer .bx-form-input-wrapper-radio_set:focus::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-wrapper-checkbox_set:focus,.bx-artificer .bx-form-input-wrapper-radio_set:focus{outline:2px solid #0000;outline-offset:2px}.dark .bx-artificer .bx-form-input-wrapper-checkbox_set,.dark .bx-artificer .bx-form-input-wrapper-radio_set{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-artificer .bx-form-input-wrapper-checkbox_set:focus,.dark .bx-artificer .bx-form-input-wrapper-radio_set:focus{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-artificer .bx-form-input-checkbox,.bx-artificer .bx-form-input-radio{display:block;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.bx-artificer .bx-form-input-checkbox::-moz-placeholder,.bx-artificer .bx-form-input-radio::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-checkbox:-ms-input-placeholder,.bx-artificer .bx-form-input-radio:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-checkbox::placeholder,.bx-artificer .bx-form-input-radio::placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-checkbox,.bx-artificer .bx-form-input-radio{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.bx-artificer .bx-form-input-checkbox:focus,.bx-artificer .bx-form-input-radio:focus{border-color:rgb(59 130 246/var(--tw-border-opacity));--tw-border-opacity:0.7;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.bx-artificer .bx-form-input-checkbox:focus::-moz-placeholder,.bx-artificer .bx-form-input-radio:focus::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-checkbox:focus:-ms-input-placeholder,.bx-artificer .bx-form-input-radio:focus:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-checkbox:focus::placeholder,.bx-artificer .bx-form-input-radio:focus::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-checkbox:focus,.bx-artificer .bx-form-input-radio:focus{outline:2px solid #0000;outline-offset:2px;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity));--tw-ring-opacity:0.2}.dark .bx-artificer .bx-form-input-checkbox,.dark .bx-artificer .bx-form-input-radio{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-artificer .bx-form-input-checkbox:focus,.dark .bx-artificer .bx-form-input-radio:focus{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-artificer .bx-switcher-cont.on button{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.dark .bx-artificer .bx-switcher-cont.on button{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.bx-artificer .bx-switcher-cont.on button span{--tw-translate-x:1.25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.bx-artificer .bx-switcher-cont.on button span,.dark .bx-artificer .bx-switcher-cont.on button span{--tw-bg-opacity:1;background-color:rgb(34 197 94/var(--tw-bg-opacity))}.bx-artificer .bx-switcher-cont.off button{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.dark .bx-artificer .bx-switcher-cont.off button{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.bx-artificer .bx-switcher-cont.off button span{--tw-translate-x:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.dark .bx-artificer .bx-switcher-cont.off button span{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken{display:flex;width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;flex-wrap:wrap;align-items:stretch;border-radius:.375rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));padding:.5rem .75rem;font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken::placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.bx-artificer .bx-form-input-text.bx-form-input-autotoken:focus{border-color:rgb(59 130 246/var(--tw-border-opacity));--tw-border-opacity:0.7;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken:focus::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken:focus:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken:focus::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.bx-artificer .bx-form-input-text.bx-form-input-autotoken:focus{outline:2px solid #0000;outline-offset:2px;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity));--tw-ring-opacity:0.2}.dark .bx-artificer .bx-form-input-text.bx-form-input-autotoken{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-artificer .bx-form-input-text.bx-form-input-autotoken:focus{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-artificer .bx-form-input-autotoken b.val{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.bx-artificer .bx-form-input-autotoken b.val:hover{--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity))}.dark .bx-artificer .bx-form-input-autotoken b.val{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark .bx-artificer .bx-form-input-autotoken b.val:hover{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.bx-artificer .bx-popup-wrapper{overflow:visible}.bx-artificer .bx-popup-applied{border-radius:.5rem}.bx-artificer .bx-popup-responsive:not(.bx-popup-full-screen):not(.bx-popup-menu){width:100%}@media (min-width:768px){.bx-artificer .bx-popup-responsive:not(.bx-popup-full-screen):not(.bx-popup-menu){width:auto}}.bx-artificer .bx-popup-full-screen{width:100%}.bx-artificer .bx-popup{position:relative;border-radius:.375rem;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(229 231 235/var(--tw-ring-opacity))}.dark .bx-artificer .bx-popup{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-ring-opacity:1;--tw-ring-color:rgb(55 65 81/var(--tw-ring-opacity))}.bx-artificer .bx-popup-width{width:100%}@media (min-width:768px){.bx-artificer .bx-popup-width{width:32rem}}.bx-artificer .bx-popup-menu .bx-popup-content,.bx-artificer .bx-popup-width-small{width:14rem}.bx-artificer .bx-popup-full-screen .bx-popup-width{width:100%}@media (min-width:768px){.bx-artificer .bx-popup-full-screen .bx-popup-width{width:100%}}.bx-artificer .bx-popup-fog{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity));opacity:.75}.bx-artificer .bx-menu-custom-hor li.bx-menu-tab-active a,.bx-artificer .bx-menu-hor li.bx-menu-tab-active a{font-weight:500;--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.dark .bx-artificer .bx-menu-custom-hor li.bx-menu-tab-active a,.dark .bx-artificer .bx-menu-hor li.bx-menu-tab-active a{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.bx-artificer .bx-db-header .bx-menu-custom-hor li.bx-menu-tab-active a{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .bx-db-header .bx-menu-custom-hor li.bx-menu-tab-active a{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-artificer .bx-menu-custom-ver li.bx-menu-tab-active .bx-mi-highlight,.bx-artificer .bx-menu-ver li.bx-menu-tab-active .bx-mi-highlight,.bx-artificer .bx-menu-verlit li.bx-menu-tab-active .bx-mi-highlight{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));font-weight:500;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .bx-menu-custom-ver li.bx-menu-tab-active .bx-mi-highlight,.dark .bx-artificer .bx-menu-ver li.bx-menu-tab-active .bx-mi-highlight,.dark .bx-artificer .bx-menu-verlit li.bx-menu-tab-active .bx-mi-highlight{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-artificer .bx-popup .bx-menu-ver>li:hover:hover{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .bx-popup .bx-menu-ver>li:hover:hover{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-artificer .bx-popup .bx-menu-ver>li.bx-def-color-bg-active{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .bx-popup .bx-menu-ver>li.bx-def-color-bg-active{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-artificer .bx-toolbar-item.bx-ti-menu .bx-menu-main .bx-menu-item.bx-menu-tab-active{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));opacity:1;--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(229 231 235/var(--tw-ring-opacity))}.dark .bx-artificer .bx-toolbar-item.bx-ti-menu .bx-menu-main .bx-menu-item.bx-menu-tab-active{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity));--tw-ring-opacity:1;--tw-ring-color:rgb(75 85 99/var(--tw-ring-opacity))}.bx-artificer .bx-toolbar-item.bx-ti-menu .bx-menu-main .bx-menu-item.bx-menu-tab-active a{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .bx-toolbar-item.bx-ti-menu .bx-menu-main .bx-menu-item.bx-menu-tab-active a{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-artificer .bx-toolbar-item.bx-ti-menu .bx-menu-main .bx-popup .bx-menu-item.bx-menu-tab-active{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));opacity:1;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.dark .bx-artificer .bx-toolbar-item.bx-ti-menu .bx-menu-main .bx-popup .bx-menu-item.bx-menu-tab-active{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.bx-artificer .bx-menu-main-submenu .bx-menu-item.bx-menu-tab-active a{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .bx-menu-main-submenu .bx-menu-item.bx-menu-tab-active a{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.bx-artificer .bx-menu-main-submenu .bx-menu-item.bx-menu-tab-active .bx-mi-underline,.group:hover .bx-artificer .bx-menu-main-submenu .bx-menu-item.bx-menu-tab-active .bx-mi-underline{--tw-bg-opacity:1;background-color:rgb(59 130 246/var(--tw-bg-opacity))}.bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-menu-tab-active{background-color:#0f172a14;--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity));--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(229 231 235/var(--tw-ring-opacity))}.dark .bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-menu-tab-active{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity));--tw-ring-opacity:1;--tw-ring-color:rgb(31 41 55/var(--tw-ring-opacity))}.bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-psmi-show-less,.bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-psmi-show-more{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-psmi-show-less:hover,.bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-psmi-show-more:hover{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.dark .bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-psmi-show-less,.dark .bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-psmi-show-more{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.dark .bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-psmi-show-less:hover,.dark .bx-artificer .bx-menu-profile-stats.bx-menu-ver li.bx-psmi-show-more:hover{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.bx-artificer .bx-base-pofile-cover-actions div.bx-base-general-entity-actions .bx-menu-custom-hor.bx-menu-hor-inline li.bx-mi-primary{border-color:#0000;--tw-bg-opacity:1;background-color:rgb(37 99 235/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.bx-artificer .bx-base-pofile-cover-actions div.bx-base-general-entity-actions .bx-menu-custom-hor.bx-menu-hor-inline li.bx-mi-primary:hover{--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-artificer .bx-base-pofile-cover-actions div.bx-base-general-entity-actions .bx-menu-custom-hor.bx-menu-hor-inline li.bx-mi-primary:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity))}.bx-artificer .bx-informer-msg a{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.bx-artificer .bx-informer-msg a:hover{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.dark .bx-artificer .bx-informer-msg a{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.dark .bx-artificer .bx-informer-msg a:hover{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.bx-artificer .bx-informer-msg-info{--tw-bg-opacity:1;background-color:rgb(239 246 255/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.bx-artificer .bx-informer-msg-alert{--tw-bg-opacity:1;background-color:rgb(254 252 232/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(161 98 7/var(--tw-text-opacity))}.bx-artificer .bx-informer-msg-error{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity))}.bx-artificer .bx-form-row-view-value{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bx-artificer .cmt .bx-base-general-unit-meta-username{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.bx-artificer .cmt .bx-base-general-unit-meta-username:hover{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .cmt .bx-base-general-unit-meta-username{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.dark .bx-artificer .cmt .bx-base-general-unit-meta-username:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-artificer .bx-def-icon-size{height:2rem;width:2rem}.bx-artificer .bx-def-thumb-size{height:2.5rem;width:2.5rem}.bx-artificer .bx-def-ava-size{height:6rem;width:6rem}.bx-artificer .bx-def-ava-big-size{height:12rem;width:12rem}.bx-artificer .bx-base-pofile-unit-online{position:absolute;right:.125rem;bottom:.125rem;height:.625rem;width:.625rem;border-radius:9999px;--tw-bg-opacity:1;background-color:rgb(34 197 94/var(--tw-bg-opacity));--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-inset:inset;--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/var(--tw-ring-opacity))}.bx-artificer .bx-base-general-unit-meta .bx-base-profile-unit-meta-item>a:not(.bx-btn),.bx-artificer .bx-base-general-unit-meta ul.bx-menu-custom.bx-menu-custom-hor .bx-base-pofile-unit{border-radius:9999px;padding:.25rem}.bx-artificer .bx-base-general-unit-meta .bx-base-profile-unit-meta-item>a:not(.bx-btn):hover,.bx-artificer .bx-base-general-unit-meta ul.bx-menu-custom.bx-menu-custom-hor .bx-base-pofile-unit:hover{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.dark .bx-artificer .bx-base-general-unit-meta .bx-base-profile-unit-meta-item>a:not(.bx-btn):hover,.dark .bx-artificer .bx-base-general-unit-meta ul.bx-menu-custom.bx-menu-custom-hor .bx-base-pofile-unit:hover{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.sys-auth-block{grid-template-columns:repeat(2,minmax(0,1fr))}.sys-auth-block.sys-auth-compact-container{grid-template-columns:repeat(4,minmax(0,1fr))}.bx-vote-likes .bx-vote-element-holder .bx-vote-do-vote.bx-vote-disabled,.bx-vote-likes .bx-vote-element-holder .bx-vote-do-vote.bx-vote-disabled .sys-icon{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-vote-likes .bx-vote-element-holder .bx-vote-do-vote.bx-vote-disabled,.dark .bx-vote-likes .bx-vote-element-holder .bx-vote-do-vote.bx-vote-disabled .sys-icon{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.bx-artificer .bx-menu-custom-hor.bx-menu-object-bx_timeline_menu_view li.bx-menu-tab-active a{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity));--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-opacity:1;--tw-ring-color:rgb(229 231 235/var(--tw-ring-opacity))}.dark .bx-artificer .bx-menu-custom-hor.bx-menu-object-bx_timeline_menu_view li.bx-menu-tab-active a{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity));--tw-ring-opacity:1;--tw-ring-color:rgb(75 85 99/var(--tw-ring-opacity))}.bx-artificer .bx-tl-item-text .bx-tl-content.bx-tl-overflow:before{background-image:linear-gradient(to bottom,var(--tw-gradient-stops));--tw-gradient-from:#0000;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#0000);--tw-gradient-to:#fff}.dark .bx-artificer .bx-tl-item-text .bx-tl-content.bx-tl-overflow:before{--tw-gradient-to:#1f2937}.bx-artificer .flickity-button{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity));opacity:.75}.bx-artificer .flickity-button:hover{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity));opacity:1}.dark .bx-artificer .flickity-button{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-artificer .flickity-button:hover{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.bx-artificer .ql-mention-list li{display:flex;align-items:center;padding:.5rem 1rem;font-size:.875rem;line-height:1.25rem;font-weight:400;--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.bx-artificer .ql-mention-list li:hover{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.dark .bx-artificer .ql-mention-list li{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .bx-artificer .ql-mention-list li:hover{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.visible{visibility:visible}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{top:0;bottom:0}.inset-0,.inset-x-0{right:0;left:0}.top-6{top:1.5rem}.-left-1\/4{left:-25%}.-right-1\/4{right:-25%}.-top-1\.5{top:-.375rem}.bottom-auto{bottom:auto}.left-auto{left:auto}.-right-1\.5{right:-.375rem}.-top-1{top:-.25rem}.-right-1{right:-.25rem}.-left-1\.5{left:-.375rem}.right-auto{right:auto}.-left-1{left:-.25rem}.top-auto{top:auto}.-bottom-1\.5{bottom:-.375rem}.-bottom-1{bottom:-.25rem}.bottom-0{bottom:0}.top-1{top:.25rem}.right-2{right:.5rem}.top-0{top:0}.-left-8{left:-2rem}.top-12{top:3rem}.-right-8{right:-2rem}.-bottom-12{bottom:-3rem}.left-1\/3{left:33.333333%}.right-0{right:0}.-top-6{top:-1.5rem}.left-0{left:0}.z-0{z-index:0}.z-10{z-index:10}.z-30{z-index:30}.z-20{z-index:20}.z-1{z-index:1}.z-2{z-index:2}.z-40{z-index:40}.z-50{z-index:50}.col-start-1{grid-column-start:1}.row-start-1{grid-row-start:1}.-m-px{margin:-1px}.m-px{margin:1px}.m-0{margin:0}.m-1{margin:.25rem}.m-2{margin:.5rem}.m-4{margin:1rem}.-m-2{margin:-.5rem}.mx-auto{margin-left:auto;margin-right:auto}.-mx-1{margin-left:-.25rem;margin-right:-.25rem}.-mx-2{margin-left:-.5rem;margin-right:-.5rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.my-1{margin-top:.25rem;margin-bottom:.25rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.my-4{margin-top:1rem;margin-bottom:1rem}.-mx-4{margin-left:-1rem;margin-right:-1rem}.my-2{margin-top:.5rem;margin-bottom:.5rem}.mx-4{margin-left:1rem;margin-right:1rem}.my-px{margin-top:1px;margin-bottom:1px}.-my-1{margin-top:-.25rem;margin-bottom:-.25rem}.-mb-4{margin-bottom:-1rem}.mt-4{margin-top:1rem}.mb-4{margin-bottom:1rem}.mt-6{margin-top:1.5rem}.-ml-1{margin-left:-.25rem}.ml-5{margin-left:1.25rem}.mt-2{margin-top:.5rem}.mb-2{margin-bottom:.5rem}.mr-2{margin-right:.5rem}.ml-4{margin-left:1rem}.mb-1{margin-bottom:.25rem}.mt-1{margin-top:.25rem}.ml-2{margin-left:.5rem}.mb-3{margin-bottom:.75rem}.mt-3{margin-top:.75rem}.ml-3{margin-left:.75rem}.mr-1{margin-right:.25rem}.ml-1{margin-left:.25rem}.-mt-24{margin-top:-6rem}.-ml-2{margin-left:-.5rem}.mr-4{margin-right:1rem}.ml-auto{margin-left:auto}.mr-3{margin-right:.75rem}.mr-6{margin-right:1.5rem}.-mb-px{margin-bottom:-1px}.-ml-12{margin-left:-3rem}.-mr-12{margin-right:-3rem}.mt-5{margin-top:1.25rem}.ml-1\.5{margin-left:.375rem}.ml-6{margin-left:1.5rem}.mb-0{margin-bottom:0}.-ml-px{margin-left:-1px}.box-border{box-sizing:border-box}.box-content{box-sizing:initial}.block{display:block}.\!block{display:block!important}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.contents{display:contents}.hidden{display:none}.h-2\/3{height:66.666667%}.h-64{height:16rem}.h-full{height:100%}.h-14{height:3.5rem}.h-40{height:10rem}.h-48{height:12rem}.h-4{height:1rem}.h-10{height:2.5rem}.h-5{height:1.25rem}.h-3{height:.75rem}.h-32{height:8rem}.h-24{height:6rem}.h-6{height:1.5rem}.h-96{height:24rem}.h-8{height:2rem}.h-16{height:4rem}.h-0\.5{height:.125rem}.h-0{height:0}.h-7{height:1.75rem}.max-h-96{max-height:24rem}.max-h-14{max-height:3.5rem}.min-h-0{min-height:0}.w-full{width:100%}.w-2\/3{width:66.666667%}.w-46{width:11.5rem}.w-4{width:1rem}.w-1\/4{width:25%}.w-5{width:1.25rem}.w-10{width:2.5rem}.w-1\/3{width:33.333333%}.w-1\/2{width:50%}.w-48{width:12rem}.w-24{width:6rem}.w-6{width:1.5rem}.w-96{width:24rem}.w-11{width:2.75rem}.w-20{width:5rem}.w-8{width:2rem}.w-32{width:8rem}.w-16{width:4rem}.w-max{width:-webkit-max-content;width:-moz-max-content;width:max-content}.w-64{width:16rem}.w-14{width:3.5rem}.w-7{width:1.75rem}.w-4\/6{width:66.666667%}.min-w-0{min-width:0}.min-w-48{min-width:12rem}.max-w-7xl{max-width:80rem}.max-w-32{max-width:8rem}.max-w-full{max-width:100%}.max-w-xs{max-width:20rem}.max-w-sm{max-width:24rem}.flex-1{flex:1 1 0%}.flex-none{flex:none}.flex-2{flex:2 2 0%}.flex-auto{flex:1 1 auto}.flex-shrink-0{flex-shrink:0}.flex-shrink{flex-shrink:1}.shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.rotate-0{--tw-rotate:0deg}.rotate-0,.rotate-90{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-90{--tw-rotate:90deg}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@-webkit-keyframes goo{0%{transform:translate(0) scale(1)}33%{transform:translate(30px,-50px) scale(1.2)}66%{transform:translate(-20px,20px) scale(.8)}to{transform:translate(0) scale(1)}}@keyframes goo{0%{transform:translate(0) scale(1)}33%{transform:translate(30px,-50px) scale(1.2)}66%{transform:translate(-20px,20px) scale(.8)}to{transform:translate(0) scale(1)}}.animate-goo{-webkit-animation:goo 8s infinite;animation:goo 8s infinite}@-webkit-keyframes pulse{50%{opacity:.5}}@keyframes pulse{50%{opacity:.5}}.animate-pulse{-webkit-animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite;animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.cursor-pointer{cursor:pointer}.resize{resize:both}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.flex-nowrap{flex-wrap:nowrap}.items-start{align-items:flex-start}.items-center{align-items:center}.items-baseline{align-items:baseline}.items-stretch{align-items:stretch}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-2{gap:.5rem}.gap-4{gap:1rem}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.25rem*var(--tw-space-x-reverse));margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(1rem*var(--tw-space-x-reverse));margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)))}.space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(1.5rem*var(--tw-space-x-reverse));margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(2rem*var(--tw-space-x-reverse));margin-left:calc(2rem*(1 - var(--tw-space-x-reverse)))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem*var(--tw-space-x-reverse));margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))}.space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(0px*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0px*var(--tw-space-y-reverse))}.space-x-3>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.75rem*var(--tw-space-x-reverse));margin-left:calc(.75rem*(1 - var(--tw-space-x-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem*var(--tw-space-y-reverse))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px*var(--tw-divide-y-reverse))}.divide-gray-200>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(229 231 235/var(--tw-divide-opacity))}.divide-gray-100>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(243 244 246/var(--tw-divide-opacity))}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;white-space:nowrap}.text-ellipsis,.truncate{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.rounded-md{border-radius:.375rem}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-xl{border-radius:.75rem}.rounded-sm{border-radius:.125rem}.rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.rounded-t-md{border-top-right-radius:.375rem}.rounded-l-md,.rounded-t-md{border-top-left-radius:.375rem}.rounded-l-md{border-bottom-left-radius:.375rem}.rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.rounded-bl{border-bottom-left-radius:.25rem}.border{border-width:1px}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-t{border-top-width:1px}.border-l{border-left-width:1px}.border-r{border-right-width:1px}.border-dashed{border-style:dashed}.border-none{border-style:none}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.border-transparent{border-color:#0000}.border-blue-500{--tw-border-opacity:1;border-color:rgb(59 130 246/var(--tw-border-opacity))}.border-opacity-70{--tw-border-opacity:0.7}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-blue-700{--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity))}.bg-green-700{--tw-bg-opacity:1;background-color:rgb(21 128 61/var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity:1;background-color:rgb(239 68 68/var(--tw-bg-opacity))}.bg-green-500{--tw-bg-opacity:1;background-color:rgb(34 197 94/var(--tw-bg-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.bg-gray-200{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.bg-gray-300{--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity))}.bg-purple-700{--tw-bg-opacity:1;background-color:rgb(126 34 206/var(--tw-bg-opacity))}.bg-red-700{--tw-bg-opacity:1;background-color:rgb(185 28 28/var(--tw-bg-opacity))}.bg-blue-600{--tw-bg-opacity:1;background-color:rgb(37 99 235/var(--tw-bg-opacity))}.bg-red-400{--tw-bg-opacity:1;background-color:rgb(248 113 113/var(--tw-bg-opacity))}.bg-blue-200{--tw-bg-opacity:1;background-color:rgb(191 219 254/var(--tw-bg-opacity))}.bg-gray-900\/50{background-color:#11182780}.bg-gray-600{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.bg-yellow-500{--tw-bg-opacity:1;background-color:rgb(234 179 8/var(--tw-bg-opacity))}.bg-transparent{background-color:initial}.bg-slate-100{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.bg-opacity-50{--tw-bg-opacity:0.5}.bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--tw-gradient-stops))}.bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.from-gray-100{--tw-gradient-from:#f3f4f6;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#f3f4f600)}.from-green-400{--tw-gradient-from:#4ade80;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#4ade8000)}.from-blue-400{--tw-gradient-from:#60a5fa;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#60a5fa00)}.from-red-400{--tw-gradient-from:#f87171;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#f8717100)}.from-red-500{--tw-gradient-from:#ef4444;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#ef444400)}.to-white{--tw-gradient-to:#fff}.to-green-500{--tw-gradient-to:#22c55e}.to-blue-500{--tw-gradient-to:#3b82f6}.to-red-500{--tw-gradient-to:#ef4444}.to-blue-100{--tw-gradient-to:#dbeafe}.bg-cover{background-size:cover}.bg-contain{background-size:contain}.bg-clip-text{-webkit-background-clip:text;background-clip:text}.bg-center{background-position:50%}.bg-no-repeat{background-repeat:no-repeat}.object-cover{-o-object-fit:cover;object-fit:cover}.p-2{padding:.5rem}.p-4{padding:1rem}.p-1{padding:.25rem}.p-3{padding:.75rem}.p-8{padding:2rem}.p-0{padding:0}.py-2{padding-top:.5rem;padding-bottom:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-4{padding-left:1rem;padding-right:1rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-16{padding-top:4rem;padding-bottom:4rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.py-0{padding-top:0;padding-bottom:0}.py-4{padding-top:1rem;padding-bottom:1rem}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.pt-6{padding-top:1.5rem}.pt-2{padding-top:.5rem}.pl-2{padding-left:.5rem}.pb-2{padding-bottom:.5rem}.pb-4{padding-bottom:1rem}.pl-4{padding-left:1rem}.pl-11{padding-left:2.75rem}.pt-4{padding-top:1rem}.pb-1{padding-bottom:.25rem}.pr-1{padding-right:.25rem}.pr-2{padding-right:.5rem}.pt-1{padding-top:.25rem}.pb-3{padding-bottom:.75rem}.pt-0{padding-top:0}.pt-5{padding-top:1.25rem}.pl-1{padding-left:.25rem}.pr-0{padding-right:0}.pl-12{padding-left:3rem}.pr-4{padding-right:1rem}.pt-16{padding-top:4rem}.pl-3{padding-left:.75rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-middle{vertical-align:middle}.text-sm{font-size:.875rem;line-height:1.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-base{font-size:1rem;line-height:1.5rem}.text-xl{font-size:1.25rem}.text-lg,.text-xl{line-height:1.75rem}.text-lg{font-size:1.125rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-xs{font-size:.75rem;line-height:1rem}.text-5xl{font-size:3rem;line-height:1}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-6xl{font-size:3.75rem;line-height:1}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.font-light{font-weight:300}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.leading-4{line-height:1rem}.leading-10{line-height:2.5rem}.leading-6{line-height:1.5rem}.leading-5{line-height:1.25rem}.leading-14{line-height:3.5rem}.leading-8{line-height:2rem}.leading-16{line-height:4rem}.tracking-tight{letter-spacing:-.025em}.tracking-wider{letter-spacing:.05em}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.text-transparent{color:#0000}.text-gray-200{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.text-blue-400{--tw-text-opacity:1;color:rgb(96 165 250/var(--tw-text-opacity))}.text-yellow-400{--tw-text-opacity:1;color:rgb(250 204 21/var(--tw-text-opacity))}.text-red-400{--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.text-blue-800{--tw-text-opacity:1;color:rgb(30 64 175/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.text-green-600{--tw-text-opacity:1;color:rgb(22 163 74/var(--tw-text-opacity))}.text-yellow-500{--tw-text-opacity:1;color:rgb(234 179 8/var(--tw-text-opacity))}.text-red-600{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}.text-slate-700{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.placeholder-gray-500::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.placeholder-gray-500:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.placeholder-gray-500::placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.opacity-50{opacity:.5}.opacity-100{opacity:1}.opacity-80{opacity:.8}.opacity-60{opacity:.6}.opacity-75{opacity:.75}.shadow-sm{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.shadow,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow{--tw-shadow:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-1,.ring-4{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-4{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-0{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-gray-200{--tw-ring-opacity:1;--tw-ring-color:rgb(229 231 235/var(--tw-ring-opacity))}.ring-white{--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/var(--tw-ring-opacity))}.ring-gray-300{--tw-ring-opacity:1;--tw-ring-color:rgb(209 213 219/var(--tw-ring-opacity))}.ring-blue-500{--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity))}.ring-opacity-20{--tw-ring-opacity:0.2}.blur{--tw-blur:blur(8px)}.blur,.blur-3xl{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.blur-3xl{--tw-blur:blur(64px)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-150{transition-duration:.15s}.duration-75{transition-duration:75ms}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.animation-delay-2000{-webkit-animation-delay:2s;animation-delay:2s}.animation-delay-4000{-webkit-animation-delay:4s;animation-delay:4s}.first\:ml-0:first-child{margin-left:0}.first\:mt-0:first-child{margin-top:0}.first\:mt-2:first-child{margin-top:.5rem}.last\:mb-0:last-child{margin-bottom:0}.last\:mr-0:last-child{margin-right:0}.last\:mb-2:last-child{margin-bottom:.5rem}.hover\:bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.hover\:bg-gray-50:hover{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.hover\:bg-blue-700:hover{--tw-bg-opacity:1;background-color:rgb(29 78 216/var(--tw-bg-opacity))}.hover\:bg-transparent:hover{background-color:initial}.hover\:bg-slate-900\/5:hover{background-color:#0f172a0d}.hover\:bg-slate-200:hover{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.hover\:text-gray-900:hover{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.hover\:text-gray-800:hover{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.hover\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.hover\:text-yellow-600:hover{--tw-text-opacity:1;color:rgb(202 138 4/var(--tw-text-opacity))}.hover\:underline:hover{-webkit-text-decoration-line:underline;text-decoration-line:underline}.hover\:no-underline:hover{-webkit-text-decoration-line:none;text-decoration-line:none}.hover\:opacity-100:hover{opacity:1}.hover\:shadow-md:hover{--tw-shadow:0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.focus\:z-10:focus{z-index:10}.focus\:border-blue-500:focus{--tw-border-opacity:1;border-color:rgb(59 130 246/var(--tw-border-opacity))}.focus\:border-indigo-500:focus{--tw-border-opacity:1;border-color:rgb(99 102 241/var(--tw-border-opacity))}.focus\:border-opacity-70:focus{--tw-border-opacity:0.7}.focus\:bg-gray-100:focus{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.focus\:text-gray-900:focus{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.focus\:placeholder-gray-400:focus::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.focus\:placeholder-gray-400:focus:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.focus\:placeholder-gray-400:focus::placeholder{--tw-placeholder-opacity:1;color:rgb(156 163 175/var(--tw-placeholder-opacity))}.focus\:outline-none:focus{outline:2px solid #0000;outline-offset:2px}.focus\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-1:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-inset:focus{--tw-ring-inset:inset}.focus\:ring-blue-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246/var(--tw-ring-opacity))}.focus\:ring-white:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/var(--tw-ring-opacity))}.focus\:ring-gray-100:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(243 244 246/var(--tw-ring-opacity))}.focus\:ring-indigo-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(99 102 241/var(--tw-ring-opacity))}.focus\:ring-opacity-20:focus{--tw-ring-opacity:0.2}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus\:ring-offset-gray-800:focus{--tw-ring-offset-color:#1f2937}.group:hover .group-hover\:bg-gray-200{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.group:hover .group-hover\:bg-gray-500{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity))}.group:hover .group-hover\:text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.group:hover .group-hover\:text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.group:hover .group-hover\:text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.group:hover .group-hover\:text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.group:hover .group-hover\:text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.dark .dark\:divide-gray-800>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(31 41 55/var(--tw-divide-opacity))}.dark .dark\:divide-gray-700>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(55 65 81/var(--tw-divide-opacity))}.dark .dark\:divide-gray-600>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(75 85 99/var(--tw-divide-opacity))}.dark .dark\:border-gray-700{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.dark .dark\:border-gray-800{--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}.dark .dark\:bg-gray-900{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.dark .dark\:bg-gray-800{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.dark .dark\:bg-gray-700{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark .dark\:bg-gray-600{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.dark .dark\:bg-gray-900\/90{background-color:#111827e6}.dark .dark\:bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.dark .dark\:from-black{--tw-gradient-from:#000;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#0000)}.dark .dark\:from-gray-900{--tw-gradient-from:#111827;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,#11182700)}.dark .dark\:to-gray-900{--tw-gradient-to:#111827}.dark .dark\:to-black{--tw-gradient-to:#000}.dark .dark\:text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .dark\:text-gray-50{--tw-text-opacity:1;color:rgb(249 250 251/var(--tw-text-opacity))}.dark .dark\:text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.dark .dark\:text-gray-200{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.dark .dark\:text-gray-100{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.dark .dark\:text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.dark .dark\:text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .dark\:text-green-400{--tw-text-opacity:1;color:rgb(74 222 128/var(--tw-text-opacity))}.dark .dark\:ring-gray-700{--tw-ring-opacity:1;--tw-ring-color:rgb(55 65 81/var(--tw-ring-opacity))}.dark .dark\:ring-gray-900{--tw-ring-opacity:1;--tw-ring-color:rgb(17 24 39/var(--tw-ring-opacity))}.dark .dark\:ring-gray-800{--tw-ring-opacity:1;--tw-ring-color:rgb(31 41 55/var(--tw-ring-opacity))}.dark .dark\:hover\:bg-gray-800:hover{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.dark .dark\:hover\:bg-gray-600:hover{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.dark .dark\:hover\:bg-gray-700:hover{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark .dark\:hover\:bg-slate-700:hover{--tw-bg-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity))}.dark .dark\:hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .dark\:hover\:text-gray-200:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.dark .dark\:hover\:text-gray-100:hover{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.dark .dark\:hover\:text-gray-300:hover{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .dark\:focus\:bg-gray-700:focus{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark .dark\:focus\:text-gray-100:focus{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.dark .dark\:focus\:ring-gray-700:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(55 65 81/var(--tw-ring-opacity))}.dark .group:hover .dark\:group-hover\:bg-gray-600{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.dark .group:hover .dark\:group-hover\:text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.dark .group:hover .dark\:group-hover\:text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .group:hover .dark\:group-hover\:text-gray-100{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}@media (min-width:640px){.sm\:w-full{width:100%}.sm\:items-center{align-items:center}.sm\:truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pb-1{padding-bottom:.25rem}.sm\:pl-2{padding-left:.5rem}.sm\:text-5xl{font-size:3rem;line-height:1}.sm\:text-lg{font-size:1.125rem;line-height:1.75rem}}@media (min-width:768px){.md\:m-px{margin:1px}.md\:mx-4{margin-left:1rem;margin-right:1rem}.md\:mt-2{margin-top:.5rem}.md\:mb-4{margin-bottom:1rem}.md\:mt-4{margin-top:1rem}.md\:block{display:block}.md\:flex{display:flex}.md\:h-10{height:2.5rem}.md\:w-1\/2{width:50%}.md\:w-56{width:14rem}.md\:w-2\/4{width:50%}.md\:w-1\/3{width:33.333333%}.md\:w-2\/3{width:66.666667%}.md\:w-1\/4{width:25%}.md\:w-1\/6{width:16.666667%}.md\:w-3\/6{width:50%}.md\:w-2\/6{width:33.333333%}.md\:w-5\/6{width:83.333333%}.md\:min-w-88{min-width:22rem}.md\:flex-row{flex-direction:row}.md\:items-center{align-items:center}.md\:justify-between{justify-content:space-between}.md\:p-4{padding:1rem}.md\:p-6{padding:1.5rem}.md\:px-4{padding-left:1rem;padding-right:1rem}.md\:py-3{padding-top:.75rem;padding-bottom:.75rem}.md\:py-4{padding-top:1rem;padding-bottom:1rem}.md\:px-3{padding-left:.75rem;padding-right:.75rem}.md\:px-2{padding-left:.5rem;padding-right:.5rem}.md\:pt-3{padding-top:.75rem}.md\:pt-2{padding-top:.5rem}.md\:pb-3{padding-bottom:.75rem}.md\:pb-4{padding-bottom:1rem}.md\:pr-2{padding-right:.5rem}.md\:pl-2{padding-left:.5rem}}@media (min-width:1024px){.lg\:absolute{position:absolute}.lg\:mx-6{margin-left:1.5rem;margin-right:1.5rem}.lg\:my-3{margin-top:.75rem;margin-bottom:.75rem}.lg\:my-6{margin-top:1.5rem;margin-bottom:1.5rem}.lg\:mb-2{margin-bottom:.5rem}.lg\:mb-6{margin-bottom:1.5rem}.lg\:mt-2{margin-top:.5rem}.lg\:ml-64{margin-left:16rem}.lg\:ml-16{margin-left:4rem}.lg\:mt-4{margin-top:1rem}.lg\:mt-6{margin-top:1.5rem}.lg\:mb-4{margin-bottom:1rem}.lg\:-mt-16{margin-top:-4rem}.lg\:mt-14{margin-top:3.5rem}.lg\:mr-12{margin-right:3rem}.lg\:mt-16{margin-top:4rem}.lg\:block{display:block}.lg\:inline{display:inline}.lg\:flex{display:flex}.lg\:hidden{display:none}.lg\:h-40{height:10rem}.lg\:h-32{height:8rem}.lg\:h-80{height:20rem}.lg\:h-8{height:2rem}.lg\:h-36{height:9rem}.lg\:w-64{width:16rem}.lg\:w-16{width:4rem}.lg\:w-1\/3{width:33.333333%}.lg\:w-full{width:100%}.lg\:w-32{width:8rem}.lg\:w-1\/4{width:25%}.lg\:flex-1{flex:1 1 0%}.lg\:flex-none{flex:none}.lg\:flex-row{flex-direction:row}.lg\:items-start{align-items:flex-start}.lg\:items-center{align-items:center}.lg\:justify-start{justify-content:flex-start}.lg\:justify-end{justify-content:flex-end}.lg\:p-6{padding:1.5rem}.lg\:px-4{padding-left:1rem;padding-right:1rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:px-5{padding-left:1.25rem;padding-right:1.25rem}.lg\:px-6{padding-left:1.5rem;padding-right:1.5rem}.lg\:py-4{padding-top:1rem;padding-bottom:1rem}.lg\:px-3{padding-left:.75rem;padding-right:.75rem}.lg\:pt-5{padding-top:1.25rem}.lg\:pt-3{padding-top:.75rem}.lg\:pb-2{padding-bottom:.5rem}.lg\:pb-6{padding-bottom:1.5rem}.lg\:pl-52{padding-left:13rem}.lg\:pl-4{padding-left:1rem}.lg\:pt-4{padding-top:1rem}.lg\:pl-3{padding-left:.75rem}.lg\:pr-3{padding-right:.75rem}.lg\:text-left{text-align:left}.lg\:text-base{font-size:1rem;line-height:1.5rem}.lg\:text-xl{font-size:1.25rem;line-height:1.75rem}.lg\:first\:mt-3:first-child{margin-top:.75rem}.lg\:last\:mb-3:last-child{margin-bottom:.75rem}}@media (min-width:1280px){.xl\:rounded-b-lg{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.xl\:p-8{padding:2rem}.xl\:px-4{padding-left:1rem;padding-right:1rem}.xl\:text-6xl{font-size:3.75rem;line-height:1}.xl\:text-xl{font-size:1.25rem;line-height:1.75rem}} \ No newline at end of file diff --git a/plugins_public/tailwind/js/tailwind.config.js b/plugins_public/tailwind/js/tailwind.config.js index e32340b78a..7253bce0d2 100644 --- a/plugins_public/tailwind/js/tailwind.config.js +++ b/plugins_public/tailwind/js/tailwind.config.js @@ -17,13 +17,17 @@ module.exports = { './modules/boonex/artificer/data/template/**/*.html', './modules/boonex/artificer/template/*.html', + // Convos + './modules/boonex/convos/js/*.js', + './modules/boonex/convos/template/*.html', + + // Forum + './modules/boonex/forum/js/*.js', + './modules/boonex/forum/template/*.html', + // Messenger './modules/boonex/messenger/js/*.js', './modules/boonex/messenger/template/*.html', - - // Forum - './modules/boonex/forum/js/*.js', - './modules/boonex/forum/template/*.html', './template/*.html', ],