diff --git a/administrator/components/com_content/View/Article/HtmlView.php b/administrator/components/com_content/View/Article/HtmlView.php index 9636b42928398..0d71b703188dc 100644 --- a/administrator/components/com_content/View/Article/HtmlView.php +++ b/administrator/components/com_content/View/Article/HtmlView.php @@ -12,6 +12,10 @@ defined('_JEXEC') or die; use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView; +use Joomla\CMS\Toolbar\Button\LinkButton; +use Joomla\CMS\Toolbar\Button\PopupButton; +use Joomla\CMS\Toolbar\Toolbar; +use Joomla\CMS\Toolbar\ToolbarHelper; /** * View to edit an article. @@ -119,72 +123,74 @@ protected function addToolbar() // Built the actions for new and existing records. $canDo = $this->canDo; - \JToolbarHelper::title( + $toolbar = Toolbar::getInstance(); + + ToolbarHelper::title( \JText::_('COM_CONTENT_PAGE_' . ($checkedOut ? 'VIEW_ARTICLE' : ($isNew ? 'ADD_ARTICLE' : 'EDIT_ARTICLE'))), 'pencil-2 article-add' ); + $saveGroup = $toolbar->dropdownButton('save-group'); + // For new records, check the create permission. if ($isNew && (count($user->getAuthorisedCategories('com_content', 'core.create')) > 0)) { - \JToolbarHelper::saveGroup( - [ - ['apply', 'article.apply'], - ['save', 'article.save'], - ['save2new', 'article.save2new'] - ], - 'btn-success' - ); - - \JToolbarHelper::cancel('article.cancel'); + $saveGroup->configure( + function (Toolbar $childBar) + { + $childBar->apply('article.apply'); + $childBar->save('article.save'); + $childBar->save2new('article.save2new'); + } + ); } else { // Since it's an existing record, check the edit permission, or fall back to edit own if the owner. $itemEditable = $canDo->get('core.edit') || ($canDo->get('core.edit.own') && $this->item->created_by == $userId); - $toolbarButtons = []; - - // Can't save the record if it's checked out and editable - if (!$checkedOut && $itemEditable) - { - $toolbarButtons[] = ['apply', 'article.apply']; - $toolbarButtons[] = ['save', 'article.save']; - - // We can save this record, but check the create permission to see if we can return to make a new one. - if ($canDo->get('core.create')) - { - $toolbarButtons[] = ['save2new', 'article.save2new']; - } - } - - // If checked out, we can still save - if ($canDo->get('core.create')) - { - $toolbarButtons[] = ['save2copy', 'article.save2copy']; - } - - \JToolbarHelper::saveGroup( - $toolbarButtons, - 'btn-success' - ); + $saveGroup->configure( + function (Toolbar $childBar) use ($checkedOut, $itemEditable, $canDo) + { + // Can't save the record if it's checked out and editable + if (!$checkedOut && $itemEditable) + { + $childBar->apply('article.apply'); + $childBar->save('article.save'); + + // We can save this record, but check the create permission to see if we can return to make a new one. + if ($canDo->get('core.create')) + { + $childBar->save2new('article.save2new'); + } + } + + // If checked out, we can still save + if ($canDo->get('core.create')) + { + $childBar->save2copy('article.save2copy'); + } + } + ); if (\JComponentHelper::isEnabled('com_contenthistory') && $this->state->params->get('save_history', 0) && $itemEditable) { - \JToolbarHelper::versions('com_content.article', $this->item->id); + $toolbar->versions('com_content.article', $this->item->id); } if (!$isNew) { \JLoader::register('ContentHelperPreview', JPATH_ADMINISTRATOR . '/components/com_content/helpers/preview.php'); $url = \ContentHelperPreview::url($this->item); - \JToolbarHelper::preview($url, \JText::_('JGLOBAL_PREVIEW'), 'eye', 80, 90); + $toolbar->preview($url, \JText::_('JGLOBAL_PREVIEW')) + ->bodyHeight(80) + ->modalWidth(90); } - - \JToolbarHelper::cancel('article.cancel', 'JTOOLBAR_CLOSE'); } - \JToolbarHelper::divider(); - \JToolbarHelper::help('JHELP_CONTENT_ARTICLE_MANAGER_EDIT'); + $toolbar->cancel('article.cancel', 'JTOOLBAR_CLOSE'); + + $toolbar->divider(); + $toolbar->help('JHELP_CONTENT_ARTICLE_MANAGER_EDIT'); } } diff --git a/administrator/components/com_content/View/Articles/HtmlView.php b/administrator/components/com_content/View/Articles/HtmlView.php index e0a3052c3152c..f1e9aab736640 100644 --- a/administrator/components/com_content/View/Articles/HtmlView.php +++ b/administrator/components/com_content/View/Articles/HtmlView.php @@ -12,6 +12,12 @@ defined('_JEXEC') or die; use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView; +use Joomla\CMS\Toolbar\Button\CustomButton; +use Joomla\CMS\Toolbar\Button\PopupButton; +use Joomla\CMS\Toolbar\Button\SeparatorButton; +use Joomla\CMS\Toolbar\Button\StandardButton; +use Joomla\CMS\Toolbar\Toolbar; +use Joomla\CMS\Toolbar\ToolbarHelper; use Joomla\Component\Content\Administrator\Helper\ContentHelper; /** @@ -154,23 +160,34 @@ protected function addToolbar() $user = \JFactory::getUser(); // Get the toolbar object instance - $bar = \JToolbar::getInstance('toolbar'); + $toolbar = Toolbar::getInstance('toolbar'); - \JToolbarHelper::title(\JText::_('COM_CONTENT_ARTICLES_TITLE'), 'stack article'); + ToolbarHelper::title(\JText::_('COM_CONTENT_ARTICLES_TITLE'), 'stack article'); if ($canDo->get('core.create') || count($user->getAuthorisedCategories('com_content', 'core.create')) > 0) { - \JToolbarHelper::addNew('article.add'); + $toolbar->addNew('article.add'); } if ($canDo->get('core.edit.state')) { - \JToolbarHelper::publish('articles.publish', 'JTOOLBAR_PUBLISH', true); - \JToolbarHelper::unpublish('articles.unpublish', 'JTOOLBAR_UNPUBLISH', true); - \JToolbarHelper::custom('articles.featured', 'featured.png', 'featured_f2.png', 'JFEATURE', true); - \JToolbarHelper::custom('articles.unfeatured', 'unfeatured.png', 'featured_f2.png', 'JUNFEATURE', true); - \JToolbarHelper::archiveList('articles.archive'); - \JToolbarHelper::checkin('articles.checkin'); + $toolbar->publish('articles.publish')->listCheck(true); + + $toolbar->unpublish('articles.unpublish')->listCheck(true); + + $toolbar->standardButton('featured') + ->text('JFEATURE') + ->task('articles.featured') + ->listCheck(true); + + $toolbar->standardButton('unfeatured') + ->text('JUNFEATURE') + ->task('articles.unfeatured') + ->listCheck(true); + + $toolbar->archive('articles.archive')->listCheck(true); + + $toolbar->checkin('articles.checkin')->listCheck(true); } // Add a batch button @@ -178,30 +195,30 @@ protected function addToolbar() && $user->authorise('core.edit', 'com_content') && $user->authorise('core.edit.state', 'com_content')) { - $title = \JText::_('JTOOLBAR_BATCH'); - - // Instantiate a new \JLayoutFile instance and render the batch button - $layout = new \JLayoutFile('joomla.toolbar.batch'); - - $dhtml = $layout->render(array('title' => $title)); - $bar->appendButton('Custom', $dhtml, 'batch'); + $toolbar->popupButton('batch') + ->text('JTOOLBAR_BATCH') + ->selector('collapseModal') + ->listCheck(true); } if ($this->state->get('filter.published') == -2 && $canDo->get('core.delete')) { - \JToolbarHelper::deleteList('JGLOBAL_CONFIRM_DELETE', 'articles.delete', 'JTOOLBAR_EMPTY_TRASH'); + $toolbar->delete('articles.delete') + ->text('JTOOLBAR_EMPTY_TRASH') + ->message('JGLOBAL_CONFIRM_DELETE') + ->listCheck(true); } elseif ($canDo->get('core.edit.state')) { - \JToolbarHelper::trash('articles.trash'); + $toolbar->trash('articles.trash')->listCheck(true); } if ($user->authorise('core.admin', 'com_content') || $user->authorise('core.options', 'com_content')) { - \JToolbarHelper::preferences('com_content'); + $toolbar->preferences('com_content'); } - \JToolbarHelper::help('JHELP_CONTENT_ARTICLE_MANAGER'); + $toolbar->help('JHELP_CONTENT_ARTICLE_MANAGER'); } /** diff --git a/administrator/modules/mod_toolbar/mod_toolbar.php b/administrator/modules/mod_toolbar/mod_toolbar.php index 7e226a8663e41..a5d004ba5fc74 100644 --- a/administrator/modules/mod_toolbar/mod_toolbar.php +++ b/administrator/modules/mod_toolbar/mod_toolbar.php @@ -12,6 +12,6 @@ use Joomla\CMS\Helper\ModuleHelper; use Joomla\CMS\Toolbar\Toolbar; -$toolbar = Toolbar::getInstance('toolbar')->render('toolbar'); +$toolbar = Toolbar::getInstance('toolbar')->render(); require ModuleHelper::getLayoutPath('mod_toolbar', $params->get('layout', 'default')); diff --git a/administrator/templates/atum/css/template-rtl.css b/administrator/templates/atum/css/template-rtl.css index a57317524f491..a288219d61103 100644 --- a/administrator/templates/atum/css/template-rtl.css +++ b/administrator/templates/atum/css/template-rtl.css @@ -1073,7 +1073,7 @@ iframe { margin-right: .25rem; } .subhead .btn-group .btn { margin-left: 0; } - .subhead button:first-of-type { + .subhead > *:first-child { margin: 0; } .subhead .btn-group-sm > .btn, .subhead .btn-sm { @@ -1083,9 +1083,6 @@ iframe { padding: 0 10px; font-size: .875rem; line-height: 1.8rem; - color: #212529; - background-color: #fefefe; - border-color: #ccc; -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); } .subhead .btn-sm [class^="icon-"], @@ -1105,60 +1102,85 @@ iframe { .subhead .btn-sm:hover { background-color: #e9ecef; border-color: #ccc; } - .subhead .btn-primary [class^="icon-"], - .subhead .btn-primary [class*=" icon-"], - .subhead .btn-primary [class^="fa-"], - .subhead .btn-primary [class*=" fa-"], - .subhead .btn-outline-primary [class^="icon-"], - .subhead .btn-outline-primary [class*=" icon-"], - .subhead .btn-outline-primary [class^="fa-"], - .subhead .btn-outline-primary [class*=" fa-"] { - color: #006898; } - .subhead .btn-success [class^="icon-"], - .subhead .btn-success [class*=" icon-"], - .subhead .btn-success [class^="fa-"], - .subhead .btn-success [class*=" fa-"], - .subhead .btn-outline-success [class^="icon-"], - .subhead .btn-outline-success [class*=" icon-"], - .subhead .btn-outline-success [class^="fa-"], - .subhead .btn-outline-success [class*=" fa-"] { - color: #438243; } - .subhead .btn-info [class^="icon-"], - .subhead .btn-info [class*=" icon-"], - .subhead .btn-info [class^="fa-"], - .subhead .btn-info [class*=" fa-"], - .subhead .btn-outline-info [class^="icon-"], - .subhead .btn-outline-info [class*=" icon-"], - .subhead .btn-outline-info [class^="fa-"], - .subhead .btn-outline-info [class*=" fa-"] { - color: #17a2b8; } - .subhead .btn-danger [class^="icon-"], - .subhead .btn-danger [class*=" icon-"], - .subhead .btn-danger [class^="fa-"], - .subhead .btn-danger [class*=" fa-"], - .subhead .btn-outline-danger [class^="icon-"], - .subhead .btn-outline-danger [class*=" icon-"], - .subhead .btn-outline-danger [class^="fa-"], - .subhead .btn-outline-danger [class*=" fa-"] { - color: #d9534f; } - .subhead .btn-warning [class^="icon-"], - .subhead .btn-warning [class*=" icon-"], - .subhead .btn-warning [class^="fa-"], - .subhead .btn-warning [class*=" fa-"], - .subhead .btn-outline-warning [class^="icon-"], - .subhead .btn-outline-warning [class*=" icon-"], - .subhead .btn-outline-warning [class^="fa-"], - .subhead .btn-outline-warning [class*=" fa-"] { - color: #f0ad4e; } - .subhead .btn-success:not(.dropdown-toggle) { - width: 140px; + .subhead .btn-outline-primary { + color: #212529; + background-color: #fefefe; + border-color: #ccc; } + .subhead .btn-outline-primary [class^="icon-"], + .subhead .btn-outline-primary [class*=" icon-"], + .subhead .btn-outline-primary [class^="fa-"], + .subhead .btn-outline-primary [class*=" fa-"] { + color: #006898; } + .subhead .btn-primary:not(.dropdown-toggle-split) { + color: #fefefe; + background-color: #006898; + border-color: rgba(0, 0, 0, 0.2); } + .subhead .btn-primary:not(.dropdown-toggle-split) [class^="icon-"], + .subhead .btn-primary:not(.dropdown-toggle-split) [class*=" icon-"], + .subhead .btn-primary:not(.dropdown-toggle-split) [class^="fa-"], + .subhead .btn-primary:not(.dropdown-toggle-split) [class*=" fa-"] { + width: 16px; + margin-right: 0; + margin-left: 0; + color: #fefefe; + background-color: transparent; + border-right: 0 none; + border-left: 0 none; } + .subhead .btn-primary:not(.dropdown-toggle-split):hover { + background-color: #004565; } + .subhead .btn-primary.dropdown-toggle-split { + background: #003e5b; + border-color: #003e5b; } + .subhead .btn-primary.dropdown-toggle-split::after { + color: #fefefe; } + .subhead .btn-outline-secondary { + color: #212529; + background-color: #fefefe; + border-color: #ccc; } + .subhead .btn-outline-secondary [class^="icon-"], + .subhead .btn-outline-secondary [class*=" icon-"], + .subhead .btn-outline-secondary [class^="fa-"], + .subhead .btn-outline-secondary [class*=" fa-"] { + color: #868e96; } + .subhead .btn-secondary:not(.dropdown-toggle-split) { + color: #fefefe; + background-color: #868e96; + border-color: rgba(0, 0, 0, 0.2); } + .subhead .btn-secondary:not(.dropdown-toggle-split) [class^="icon-"], + .subhead .btn-secondary:not(.dropdown-toggle-split) [class*=" icon-"], + .subhead .btn-secondary:not(.dropdown-toggle-split) [class^="fa-"], + .subhead .btn-secondary:not(.dropdown-toggle-split) [class*=" fa-"] { + width: 16px; + margin-right: 0; + margin-left: 0; + color: #fefefe; + background-color: transparent; + border-right: 0 none; + border-left: 0 none; } + .subhead .btn-secondary:not(.dropdown-toggle-split):hover { + background-color: #6c757d; } + .subhead .btn-secondary.dropdown-toggle-split { + background: #686f77; + border-color: #686f77; } + .subhead .btn-secondary.dropdown-toggle-split::after { + color: #fefefe; } + .subhead .btn-outline-success { + color: #212529; + background-color: #fefefe; + border-color: #ccc; } + .subhead .btn-outline-success [class^="icon-"], + .subhead .btn-outline-success [class*=" icon-"], + .subhead .btn-outline-success [class^="fa-"], + .subhead .btn-outline-success [class*=" fa-"] { + color: #438243; } + .subhead .btn-success:not(.dropdown-toggle-split) { color: #fefefe; background-color: #438243; border-color: rgba(0, 0, 0, 0.2); } - .subhead .btn-success:not(.dropdown-toggle) [class^="icon-"], - .subhead .btn-success:not(.dropdown-toggle) [class*=" icon-"], - .subhead .btn-success:not(.dropdown-toggle) [class^="fa-"], - .subhead .btn-success:not(.dropdown-toggle) [class*=" fa-"] { + .subhead .btn-success:not(.dropdown-toggle-split) [class^="icon-"], + .subhead .btn-success:not(.dropdown-toggle-split) [class*=" icon-"], + .subhead .btn-success:not(.dropdown-toggle-split) [class^="fa-"], + .subhead .btn-success:not(.dropdown-toggle-split) [class*=" fa-"] { width: 16px; margin-right: 0; margin-left: 0; @@ -1166,13 +1188,170 @@ iframe { background-color: transparent; border-right: 0 none; border-left: 0 none; } - .subhead .btn-success:not(.dropdown-toggle):hover { + .subhead .btn-success:not(.dropdown-toggle-split):hover { background-color: #326032; } - .subhead .btn-success.dropdown-toggle { + .subhead .btn-success.dropdown-toggle-split { background: #2e5a2e; border-color: #2e5a2e; } - .subhead .btn-success.dropdown-toggle::after { + .subhead .btn-success.dropdown-toggle-split::after { + color: #fefefe; } + .subhead .btn-outline-info { + color: #212529; + background-color: #fefefe; + border-color: #ccc; } + .subhead .btn-outline-info [class^="icon-"], + .subhead .btn-outline-info [class*=" icon-"], + .subhead .btn-outline-info [class^="fa-"], + .subhead .btn-outline-info [class*=" fa-"] { + color: #17a2b8; } + .subhead .btn-info:not(.dropdown-toggle-split) { + color: #fefefe; + background-color: #17a2b8; + border-color: rgba(0, 0, 0, 0.2); } + .subhead .btn-info:not(.dropdown-toggle-split) [class^="icon-"], + .subhead .btn-info:not(.dropdown-toggle-split) [class*=" icon-"], + .subhead .btn-info:not(.dropdown-toggle-split) [class^="fa-"], + .subhead .btn-info:not(.dropdown-toggle-split) [class*=" fa-"] { + width: 16px; + margin-right: 0; + margin-left: 0; + color: #fefefe; + background-color: transparent; + border-right: 0 none; + border-left: 0 none; } + .subhead .btn-info:not(.dropdown-toggle-split):hover { + background-color: #117a8b; } + .subhead .btn-info.dropdown-toggle-split { + background: #107282; + border-color: #107282; } + .subhead .btn-info.dropdown-toggle-split::after { + color: #fefefe; } + .subhead .btn-outline-warning { + color: #212529; + background-color: #fefefe; + border-color: #ccc; } + .subhead .btn-outline-warning [class^="icon-"], + .subhead .btn-outline-warning [class*=" icon-"], + .subhead .btn-outline-warning [class^="fa-"], + .subhead .btn-outline-warning [class*=" fa-"] { + color: #f0ad4e; } + .subhead .btn-warning:not(.dropdown-toggle-split) { + color: #fefefe; + background-color: #f0ad4e; + border-color: rgba(0, 0, 0, 0.2); } + .subhead .btn-warning:not(.dropdown-toggle-split) [class^="icon-"], + .subhead .btn-warning:not(.dropdown-toggle-split) [class*=" icon-"], + .subhead .btn-warning:not(.dropdown-toggle-split) [class^="fa-"], + .subhead .btn-warning:not(.dropdown-toggle-split) [class*=" fa-"] { + width: 16px; + margin-right: 0; + margin-left: 0; + color: #fefefe; + background-color: transparent; + border-right: 0 none; + border-left: 0 none; } + .subhead .btn-warning:not(.dropdown-toggle-split):hover { + background-color: #ec971f; } + .subhead .btn-warning.dropdown-toggle-split { + background: #eb9316; + border-color: #eb9316; } + .subhead .btn-warning.dropdown-toggle-split::after { + color: #fefefe; } + .subhead .btn-outline-danger { + color: #212529; + background-color: #fefefe; + border-color: #ccc; } + .subhead .btn-outline-danger [class^="icon-"], + .subhead .btn-outline-danger [class*=" icon-"], + .subhead .btn-outline-danger [class^="fa-"], + .subhead .btn-outline-danger [class*=" fa-"] { + color: #d9534f; } + .subhead .btn-danger:not(.dropdown-toggle-split) { + color: #fefefe; + background-color: #d9534f; + border-color: rgba(0, 0, 0, 0.2); } + .subhead .btn-danger:not(.dropdown-toggle-split) [class^="icon-"], + .subhead .btn-danger:not(.dropdown-toggle-split) [class*=" icon-"], + .subhead .btn-danger:not(.dropdown-toggle-split) [class^="fa-"], + .subhead .btn-danger:not(.dropdown-toggle-split) [class*=" fa-"] { + width: 16px; + margin-right: 0; + margin-left: 0; + color: #fefefe; + background-color: transparent; + border-right: 0 none; + border-left: 0 none; } + .subhead .btn-danger:not(.dropdown-toggle-split):hover { + background-color: #c9302c; } + .subhead .btn-danger.dropdown-toggle-split { + background: #c12e2a; + border-color: #c12e2a; } + .subhead .btn-danger.dropdown-toggle-split::after { + color: #fefefe; } + .subhead .btn-outline-light { + color: #212529; + background-color: #fefefe; + border-color: #ccc; } + .subhead .btn-outline-light [class^="icon-"], + .subhead .btn-outline-light [class*=" icon-"], + .subhead .btn-outline-light [class^="fa-"], + .subhead .btn-outline-light [class*=" fa-"] { + color: #f8f9fa; } + .subhead .btn-light:not(.dropdown-toggle-split) { + color: #fefefe; + background-color: #f8f9fa; + border-color: rgba(0, 0, 0, 0.2); } + .subhead .btn-light:not(.dropdown-toggle-split) [class^="icon-"], + .subhead .btn-light:not(.dropdown-toggle-split) [class*=" icon-"], + .subhead .btn-light:not(.dropdown-toggle-split) [class^="fa-"], + .subhead .btn-light:not(.dropdown-toggle-split) [class*=" fa-"] { + width: 16px; + margin-right: 0; + margin-left: 0; + color: #fefefe; + background-color: transparent; + border-right: 0 none; + border-left: 0 none; } + .subhead .btn-light:not(.dropdown-toggle-split):hover { + background-color: #dae0e5; } + .subhead .btn-light.dropdown-toggle-split { + background: #d4dae1; + border-color: #d4dae1; } + .subhead .btn-light.dropdown-toggle-split::after { + color: #fefefe; } + .subhead .btn-outline-dark { + color: #212529; + background-color: #fefefe; + border-color: #ccc; } + .subhead .btn-outline-dark [class^="icon-"], + .subhead .btn-outline-dark [class*=" icon-"], + .subhead .btn-outline-dark [class^="fa-"], + .subhead .btn-outline-dark [class*=" fa-"] { + color: #343a40; } + .subhead .btn-dark:not(.dropdown-toggle-split) { + color: #fefefe; + background-color: #343a40; + border-color: rgba(0, 0, 0, 0.2); } + .subhead .btn-dark:not(.dropdown-toggle-split) [class^="icon-"], + .subhead .btn-dark:not(.dropdown-toggle-split) [class*=" icon-"], + .subhead .btn-dark:not(.dropdown-toggle-split) [class^="fa-"], + .subhead .btn-dark:not(.dropdown-toggle-split) [class*=" fa-"] { + width: 16px; + margin-right: 0; + margin-left: 0; + color: #fefefe; + background-color: transparent; + border-right: 0 none; + border-left: 0 none; } + .subhead .btn-dark:not(.dropdown-toggle-split):hover { + background-color: #1d2124; } + .subhead .btn-dark.dropdown-toggle-split { + background: #191b1e; + border-color: #191b1e; } + .subhead .btn-dark.dropdown-toggle-split::after { color: #fefefe; } + .subhead .button-new, .subhead .button-apply, .subhead .button-wide { + width: 140px; } .subhead > *:first-child:not(.float-sm-right) { margin-left: 0; } .subhead .float-sm-right { diff --git a/administrator/templates/atum/css/template-rtl.min.css b/administrator/templates/atum/css/template-rtl.min.css index bb8c70406e2a4..29692735304d9 100644 --- a/administrator/templates/atum/css/template-rtl.min.css +++ b/administrator/templates/atum/css/template-rtl.min.css @@ -1 +1 @@ -#flying-focus{position:absolute;margin:0;background:transparent;-webkit-transition-property:left,top,width,height;transition-property:left,top,width,height;-webkit-transition-timing-function:cubic-bezier(0,1,0,1);transition-timing-function:cubic-bezier(0,1,0,1);visibility:hidden;pointer-events:none;-webkit-box-shadow:0 0 2px 3px #78aeda,0 0 2px #78aeda inset;box-shadow:0 0 2px 3px #78aeda,0 0 2px #78aeda inset;border-radius:2px}#flying-focus.flying-focus_visible{visibility:visible;z-index:9999}@media screen and (-webkit-min-device-pixel-ratio:0){#flying-focus{-webkit-box-shadow:none;box-shadow:none;outline:5px auto -webkit-focus-ring-color;outline-offset:-3px}}.flying-focus_target{outline:none !important}.flying-focus_target::-moz-focus-inner{border:0 !important}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked ~ .custom-control-label::before{color:#fff;background-color:#006898}.custom-control-input:focus ~ .custom-control-label::before{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,104,152,0.25);box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,104,152,0.25)}.custom-control-input:active ~ .custom-control-label::before{color:#fff;background-color:#4cc6ff}.custom-control-input:disabled ~ .custom-control-label{color:#868e96}.custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.custom-control-label{margin-bottom:0}.custom-control-label::before{position:absolute;top:.25rem;left:0;display:block;width:1rem;height:1rem;pointer-events:none;content:"";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#dee2e6}.custom-control-label::after{position:absolute;top:.25rem;left:0;display:block;width:1rem;height:1rem;content:"";background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before{background-color:#006898}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{background-color:#006898}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,104,152,0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(0,104,152,0.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked ~ .custom-control-label::before{background-color:#006898}.custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,104,152,0.5)}.custom-select{display:inline-block;width:100%;height:calc(2.25rem + 2px);padding:.375rem 1.75rem .375rem .75rem;line-height:1.5;color:#495057;vertical-align:middle;background:#fefefe url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#19b6ff;outline:0;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.075),0 0 5px rgba(25,182,255,0.5);box-shadow:inset 0 1px 2px rgba(0,0,0,0.075),0 0 5px rgba(25,182,255,0.5)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#868e96;background-color:#e9ecef}.custom-select::-ms-expand{opacity:0}.custom-select-sm{height:calc(1.7rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-select-lg{height:calc(2.875rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:125%}.custom-file{position:relative;display:inline-block;width:100%;height:calc(2.25rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(2.25rem + 2px);margin:0;opacity:0}.custom-file-input:focus ~ .custom-file-control{border-color:#19b6ff;-webkit-box-shadow:0 0 0 .2rem rgba(0,104,152,0.25);box-shadow:0 0 0 .2rem rgba(0,104,152,0.25)}.custom-file-input:focus ~ .custom-file-control::before{border-color:#19b6ff}.custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(2.25rem + 2px);padding:.375rem .75rem;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(calc(2.25rem + 2px) - 1px * 2);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:1px solid #ced4da;border-radius:0 .25rem .25rem 0}.alert-message{background-color:#438243;border-color:#438243;border-left:10px solid #438243;color:#e9ecef}.alert-message hr{border-top-color:#3a713a}.alert-message .alert-link{color:#326032}html,body{height:100%;font-size:14px}body{padding:0;margin:0}h1,h2,h3,h4,h5,h6{font-weight:bold}h1{font-weight:normal}small,.small{font-size:.8rem}.j-main-container .alert{margin:10px}.notify-alerts{position:fixed;top:15px;left:50%;z-index:1031;margin-left:125px;-webkit-transition:all .5s ease;transition:all .5s ease;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.notify-alerts .alert{width:100%;min-width:280px;max-width:400px;margin-bottom:.5rem;opacity:0;-webkit-animation:fadeIn ease-in 1;animation:fadeIn ease-in 1;-webkit-animation-duration:.35s;animation-duration:.35s;-webkit-animation-delay:0s;animation-delay:0s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.notify-alerts .alert:first-of-type{-webkit-animation-delay:.3s;animation-delay:.3s}.notify-alerts.fullWidth{left:265px}.notify-alerts.fullWidth .alert{width:auto;min-width:none;max-width:none;margin-left:0}.notify-alerts .close{position:relative;right:-.5rem;padding:.5rem;line-height:1rem;color:#000;opacity:1}.closed .notify-alerts{margin-left:0}.closed+.notify-alerts.fullWidth{left:70px}.wrapper0 .notify-alerts{margin-left:0}@-webkit-keyframes fadeIn{from{opacity:0;-webkit-transform:translateY(-15px);transform:translateY(-15px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeIn{from{opacity:0;-webkit-transform:translateY(-15px);transform:translateY(-15px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.form-control{max-width:240px;background-color:#fefefe}.form-control.input-xlarge{max-width:350px}.form-control.input-xxlarge{max-width:550px}.form-control.input-full{max-width:100%}.control-group{margin-bottom:18px}.control-group>.form-check{display:inline-block}.control-group::after{display:table;clear:both;content:""}.control-group .control-label{float:left;width:220px;padding-top:5px;padding-right:5px;text-align:left}.control-group .controls{margin-left:220px}.form-no-margin .control-group .controls{margin-left:0}.form-no-margin .control-group .control-label{float:none}.custom-select{max-width:240px}.spacer hr{width:380px}td .form-control{display:inline-block;width:auto}legend{margin-bottom:1.1rem}.checkboxes{padding-top:5px}.checkboxes .checkbox input{position:static;margin-left:0}.form-check{padding-top:5px;margin-bottom:0}.modal label{width:100%}.invalid{color:#d9534f;border-color:#d9534f}.valid{border-color:#438243}.form-control-feedback{display:block}.header{position:relative;z-index:5;height:48px;background:#1c3d5c}.header::after{position:absolute;top:100%;width:100%;height:3px;content:"";background-color:#006898;background-image:-webkit-gradient(linear,left top,right top,from(#59afff),to(#59daff));background-image:linear-gradient(to right,#59afff 0,#59daff 100%)}.header .page-title{display:inline-block;margin:0 5px;font-size:1.3rem;font-weight:normal;line-height:48px;color:#fefefe}.header .page-title [class^="icon-"]{margin-right:15px;font-size:1.857rem 1.857rem;vertical-align:middle}.header .navbar-brand{padding:0;font-size:1.1rem;color:#fefefe}.header .navbar-brand:hover,.header .navbar-brand:focus{color:#efefef}@media(min-width:576px) and (max-width:767.98px){.header .navbar-brand{margin-right:0;margin-left:10px}}.header .navbar-brand span{margin-left:.4rem}.header .nav-item{background-color:#2e5a84;border-left:1px solid #1c3d5c}.header .nav-link{position:relative;padding:0;line-height:48px}.header .nav-link .fa{width:50px;font-size:1.2rem;color:#fefefe;vertical-align:middle;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.header .nav-link .fa-external-link{position:relative;left:2px}.header .nav-link .badge{position:absolute;top:4px;right:2px}.header .nav-link.dropdown-toggle::after{display:none}.header .nav-link:hover .fa{font-size:1.3rem;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.header .dropdown-notifications{min-width:280px;padding:0;border:0}.header .dropdown-notifications h2{font-size:.9286rem}.header .dropdown-menu::after{left:.65rem}.header .dropdown-menu-right::after{right:.65rem;left:auto}.header .header-profile .dropdown-menu{padding-top:0}.header .header-profile .dropdown-menu::after{color:#f2f2f2}.header .header-profile-user{padding-top:.5rem;padding-bottom:.5rem;margin-bottom:.3rem;background-color:#f2f2f2;border-bottom:1px solid rgba(0,0,0,0.1);border-radius:.25rem .25rem 0 0}.header .list-group-item-text:last-child{margin-bottom:0}.header .joomla-version{margin-right:.9rem;margin-bottom:0;font-size:.9286rem;color:#fefefe}@media(max-width:991.98px){.header{position:fixed;top:0;width:100%}.header+.container-title{margin-top:48px}}.menu-collapse{font-size:2rem;text-align:center}.menu-collapse a{display:block;width:48px;line-height:48px;color:#fff;background-color:#2e5a84}.icon-back::before{content:"\e008"}.icon-crop::before{content:"\f125"}.icon-white{color:#fefefe}.icon-publish{color:#438243}.icon-unpublish{color:#d9534f}.tbody-icon{padding:0 3px;text-align:center;background-color:transparent;border:0}.tbody-icon span{width:26px;height:26px;font-size:1rem;line-height:22px;color:#ccc;border:2px solid #ccc;border-radius:50%}.tbody-icon .icon-publish{color:#438243;border-color:#438243}.tbody-icon .icon-featured{color:#f0ad4e;border-color:#f0ad4e}.tbody-icon .icon-unpublish{color:#d9534f;border-color:#d9534f}.tbody-icon .icon-archive{color:#495057;border-color:#495057}.tbody-icon .icon-checkedout{width:auto;height:auto;font-size:1.2rem;line-height:1rem;color:#495057;border:0}iframe{border:0}.modal iframe{width:100%}.view-login{background:#1c3d5c}.view-login .login-initial{display:none}.view-login .login{width:320px}@media(max-width:767.98px){.view-login .login{padding:0 15px}}.view-login .login-logo{margin:0 0 2rem;text-align:center}@media(max-width:767.98px){.view-login .login-logo{margin:1rem 0}}.view-login h2{font-size:1.9rem;font-weight:300}.view-login .card-img-top{max-width:100%}.view-login .nav p,.view-login .nav a{margin-bottom:0;color:#fff}@media(max-width:575.98px){.view-login .btn{padding:8px 10px;font-size:14px}}.modal .btn{margin-right:.5rem}.modal .btn-primary:not([href]),.modal .btn-success:not([href]){color:#fff}.modal .btn-primary:not([href]):hover,.modal .btn-success:not([href]):hover{color:#fff}.modal-header{padding:0 15px}.modal-header .close{width:46px;height:46px;margin-top:0;margin-right:-15px;font-size:2rem;line-height:1rem;border-left:1px solid #ccc}.modal-body{padding:0;overflow-y:auto}.modal-title{font-weight:normal;line-height:46px}.contentpane{padding:15px}.quick-icons a{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:120px;height:120px;margin-right:15px;margin-bottom:15px;color:#fff;text-align:center;background:#1c3d5c;border-radius:3px;-webkit-box-shadow:0 0 5px 0 #1c3d5c;box-shadow:0 0 5px 0 #1c3d5c;-webkit-transition:background .25s ease;transition:background .25s ease}.quick-icons a>div{-webkit-box-flex:1;-ms-flex:1 0 0;flex:1 0 0}@media(max-width:575.98px){.quick-icons a.pulse{-webkit-box-shadow:0 0 0 0 rgba(28,61,92,0.7);box-shadow:0 0 0 0 rgba(28,61,92,0.7);-webkit-animation:pulse 1.25s infinite cubic-bezier(0.66,0,0,1);animation:pulse 1.25s infinite cubic-bezier(0.66,0,0,1)}}@media(max-width:575.98px){.quick-icons a.pulse.danger,.quick-icons a.pulse.success{-webkit-animation:none;animation:none}}.quick-icons a:hover,.quick-icons a:focus{text-decoration:none;background:#2e5a84}.quick-icons a .j-links-link{display:block;width:100%;padding:0 1rem;font-size:1rem;line-height:1.1}.quick-icons a .fa{margin:5px auto;font-size:2.5rem;font-weight:normal;line-height:3rem}.quick-icons a.danger{background-color:#df706c;-webkit-box-shadow:0 0 5px 0 #df706c;box-shadow:0 0 5px 0 #df706c}.quick-icons a.success{background-color:#4f9a4f;-webkit-box-shadow:0 0 5px 0 #4f9a4f;box-shadow:0 0 5px 0 #4f9a4f}.quick-icons [id*="plg_quickicon"] a,.quick-icons [id*="plg_quickicon"] a::before{-webkit-transition-delay:.4s;transition-delay:.4s}@-webkit-keyframes pulse{to{-webkit-box-shadow:0 0 0 15px rgba(232,76,61,0);box-shadow:0 0 0 15px rgba(232,76,61,0)}}@keyframes pulse{to{-webkit-box-shadow:0 0 0 15px rgba(232,76,61,0);box-shadow:0 0 0 15px rgba(232,76,61,0)}}.js-stools{position:relative;width:100%;padding:8px 10px 0;background-color:#f5f5f5;border-bottom:1px solid rgba(0,0,0,0.125);border-radius:.25rem .25rem 0 0;-webkit-box-shadow:0 1px #fff inset,0 2px 3px -3px rgba(0,0,0,0.15);box-shadow:0 1px #fff inset,0 2px 3px -3px rgba(0,0,0,0.15)}.js-stools .btn-wrapper{display:inline-block;margin-right:5px}.js-stools .js-stools-container-filters{position:absolute;right:-1px;z-index:1;display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:10px;margin:0;background-color:#fff;border:1px solid #ccc;border-radius:0 0 0 .25rem;-webkit-box-shadow:-1px 1px 4px rgba(0,0,0,0.05);box-shadow:-1px 1px 4px rgba(0,0,0,0.05)}.js-stools .js-stools-container-filters .js-stools-field-list:last-of-type .custom-select{min-width:auto}.js-stools .js-stools-container-filters .custom-select{width:100%}.js-stools .js-stools-container-filters.js-filters-show{display:-webkit-box;display:-ms-flexbox;display:flex}.js-stools .js-stools-container-filters .chzn-container-single{display:block}.js-stools .js-stools-container-filters .chzn-container-single .chzn-single{display:block;font-size:1rem}.js-stools .js-stools-field-filter .custom-select.active{color:#fff;background:#fefefe url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23fff' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat scroll right .75rem center/8px 10px;background-color:#006898}.js-stools .js-stools-field-filter .custom-select option{color:#495057;background-color:#fff}.js-stools .js-stools-container-selector{float:left}.js-stools .js-stools-container-bar{float:right}.js-stools .js-stools-container-bar .btn-toolbar{float:left;margin-bottom:8px}.js-stools .js-stools-container-bar .btn-toolbar .btn-group:first-child{margin-left:0}.js-stools .js-stools-container-bar .input-append{margin-bottom:0}.js-stools .js-stools-container-list{float:left;text-align:left}.js-stools .js-stools-container-list .js-stools-field-list:last-child{margin-right:0}.js-stools-column-order [class*=" icon-"],.js-stools-column-order [class^="icon-"]{text-align:center}.wrapper{padding-left:250px;-webkit-transition:all .3s ease;transition:all .3s ease}@media(max-width:991.98px){.wrapper{padding-left:0}}.sidebar-wrapper{position:fixed;left:0;z-index:10;width:250px;height:100%;margin-left:0;background-color:#1c3d5c;-webkit-box-shadow:0 3px 10px rgba(0,0,0,0.5);box-shadow:0 3px 10px rgba(0,0,0,0.5);-webkit-transition:all .3s ease;transition:all .3s ease}.sidebar-wrapper .sidebar-brand{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;overflow:hidden}@media(max-width:991.98px){.sidebar-wrapper{margin-top:3px}.sidebar-wrapper .main-nav{max-height:calc(100vh - 147px)}}.sidebar-wrapper .main-brand{margin-left:5px;font-size:30px;line-height:96px;text-align:center;text-indent:0;border:0;-webkit-box-shadow:none;box-shadow:none}.sidebar-wrapper .main-brand a{display:block;margin-right:5px;overflow:hidden;border:0;-webkit-box-shadow:none;box-shadow:none}.sidebar-wrapper .main-brand a:hover{background:0}.sidebar-wrapper .main-brand img{width:190px}.menu-toggle-icon{width:48px;font-size:1.7rem}.main-nav{position:relative;z-index:1;width:250px;height:calc(100vh - 96px);list-style:none;background-color:#1c3d5c;opacity:1}.main-nav::after{position:absolute;top:0;right:0;bottom:0;width:0;content:"";background-color:#0f2131;-webkit-transition:all .3s ease;transition:all .3s ease}.main-nav>li{background-color:#1c3d5c;border-bottom:1px solid rgba(0,0,0,0.15)}.main-nav>li:first-of-type{border-top:1px solid rgba(0,0,0,0.15)}.main-nav li{max-height:40px;line-height:40px}.main-nav li a{position:relative;display:block;max-height:40px;overflow:hidden;color:#fff;text-decoration:none;cursor:pointer;opacity:1}.main-nav li a:hover{color:#fff;text-decoration:none;background-color:rgba(0,0,0,0.2)}.main-nav li a:active,.main-nav li a:focus{text-decoration:none;outline:0;-webkit-box-shadow:inset 0 0 0 1px #78aeda;box-shadow:inset 0 0 0 1px #78aeda}.main-nav li.menuitem-group a:hover{cursor:text;background:0}.main-nav li ul{position:absolute;top:0;left:50px;z-index:-3;display:block;width:200px;height:100%;padding:0;opacity:0;-webkit-transition:left .2s ease,opacity .2s ease;transition:left .2s ease,opacity .2s ease;-webkit-transition-delay:0;transition-delay:0}.main-nav li ul ul{display:none;opacity:1}.main-nav li ul li{text-indent:15px}.main-nav .close{padding:2px 10px;font-size:1.7rem;color:rgba(255,255,255,0.8);text-indent:0;text-shadow:none}.main-nav .close:hover{background-color:transparent}.main-nav .open>a+ul{left:50px;z-index:1;opacity:1;-webkit-transition-delay:.2s;transition-delay:.2s}.main-nav li li{line-height:2.2rem;border:0;-webkit-box-shadow:none;box-shadow:none}.main-nav li li a{-webkit-box-shadow:none;box-shadow:none}.main-nav li li a:hover{background-color:#2e5a84;-webkit-box-shadow:inset 2px 0 2px rgba(0,0,0,0.1);box-shadow:inset 2px 0 2px rgba(0,0,0,0.1)}.main-nav li li>span{color:rgba(255,255,255,0.4)}.main-nav li li:last-of-type>a{border-bottom:0}.main-nav .fa{position:relative;top:-2px;display:inline-block;margin:0 12px;font-size:20px;text-align:center;vertical-align:middle}.main-nav .collapse-level-1 a::before{display:none}.main-nav .collapse-level-1 .menuitem-group,.main-nav .collapse-level-1>li:first-of-type{margin:6px 0 0;color:rgba(255,255,255,0.7);text-transform:uppercase;letter-spacing:1px}.main-nav .collapse-level-1 li{position:relative}.main-nav .collapse-level-1 li:hover ul{display:block !important}.main-nav .collapse-level-2{position:absolute;top:0;left:100% !important;height:auto;padding:2px 0;background-color:#152d45;border-radius:0 .25rem .25rem 0;-webkit-box-shadow:0 0 8px rgba(0,0,0,0.2);box-shadow:0 0 8px rgba(0,0,0,0.2)}.main-nav .collapse-level-2>li>a{color:#fff;text-indent:15px}.main-nav .parent .collapse-arrow::after{position:absolute;top:0;right:15px;font-family:FontAwesome;font-size:.75rem;color:#fff;visibility:visible;content:"\f0da";-webkit-transition-delay:.25s;transition-delay:.25s}.closed .main-nav{overflow-x:hidden}.child-open{overflow:visible}.child-open::after{width:200px}.child-open>li.parent>.collapse-arrow::after{visibility:hidden;opacity:0;-webkit-transition-delay:0s;transition-delay:0s}.child-open>li.open>a::before{position:absolute;top:1px;bottom:1px;left:0;width:3px;content:"";background-color:#59afff}.child-open .open>ul{display:block}@media(min-width:992px){.closed{padding-left:50px}}.closed .child-open::after{display:none}.closed .sidebar-wrapper{width:50px;overflow:hidden}.closed .parent .collapse-arrow::after{visibility:hidden;-webkit-transition-delay:0s !important;transition-delay:0s !important}.closed .menu-toggle-icon::before{content:"\f054"}.layout-edit .sidebar-wrapper .no-dropdown:hover{color:#fff;cursor:not-allowed;background:0}.sidebar-item-title{visibility:visible !important;opacity:1 !important}.sidebar-nav ul{padding-left:.5rem}.sidebar-nav li{padding-bottom:3px;font-size:.9rem;font-weight:bold}.sidebar-nav li.nav-header{padding:.5rem 0 .2rem;margin-bottom:.2rem;font-size:.9rem;color:#495057;border-bottom:1px solid #ced4da}.sidebar-nav li.divider{margin:.3rem 0}.sidebar-nav li a{color:#003e5b}.status{z-index:9;padding:5px 10px;margin-left:250px;color:#626262;background:#ebebeb;border-top:1px solid #d4d4d4;-webkit-box-shadow:0 1px 0 rgba(255,255,255,0.8) inset;box-shadow:0 1px 0 rgba(255,255,255,0.8) inset;-webkit-transition:all .3s ease;transition:all .3s ease;-webkit-transition-delay:0s;transition-delay:0s}.status p{margin:0}.status li,.status a{font-size:14px;color:#555}.closed .status{margin-left:50px}.sidebar-wrapper[data-hidden="1"] ~ .status{margin-left:0}.subhead{position:absolute;top:0;right:0;left:0;width:auto;min-height:43px;padding:15px 0;color:#0c192e;background:#f2f2f2}.subhead .row{margin-right:0;margin-left:0}.subhead .btn-toolbar{margin-bottom:0}.subhead .btn-toolbar>*{margin-left:.5rem}.subhead .btn-group{margin-right:.25rem}.subhead .btn-group .btn{margin-left:0}.subhead button:first-of-type{margin:0}.subhead .btn-group-sm>.btn,.subhead .btn-sm{padding:0 .8rem;line-height:24px}.subhead .btn-sm{padding:0 10px;font-size:.875rem;line-height:1.8rem;color:#212529;background-color:#fefefe;border-color:#ccc;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.subhead .btn-sm [class^="icon-"],.subhead .btn-sm [class*=" icon-"],.subhead .btn-sm [class^="fa-"],.subhead .btn-sm [class*=" fa-"]{z-index:-1;display:inline-block;width:28px;height:auto;margin:0 6px 0 -10px;line-height:1.8rem;color:inherit;background-color:#e9ecef;border-right:1px solid #ccc;border-radius:3px 0 0 3px}.subhead .btn-sm:hover{background-color:#e9ecef;border-color:#ccc}.subhead .btn-primary [class^="icon-"],.subhead .btn-primary [class*=" icon-"],.subhead .btn-primary [class^="fa-"],.subhead .btn-primary [class*=" fa-"],.subhead .btn-outline-primary [class^="icon-"],.subhead .btn-outline-primary [class*=" icon-"],.subhead .btn-outline-primary [class^="fa-"],.subhead .btn-outline-primary [class*=" fa-"]{color:#006898}.subhead .btn-success [class^="icon-"],.subhead .btn-success [class*=" icon-"],.subhead .btn-success [class^="fa-"],.subhead .btn-success [class*=" fa-"],.subhead .btn-outline-success [class^="icon-"],.subhead .btn-outline-success [class*=" icon-"],.subhead .btn-outline-success [class^="fa-"],.subhead .btn-outline-success [class*=" fa-"]{color:#438243}.subhead .btn-info [class^="icon-"],.subhead .btn-info [class*=" icon-"],.subhead .btn-info [class^="fa-"],.subhead .btn-info [class*=" fa-"],.subhead .btn-outline-info [class^="icon-"],.subhead .btn-outline-info [class*=" icon-"],.subhead .btn-outline-info [class^="fa-"],.subhead .btn-outline-info [class*=" fa-"]{color:#17a2b8}.subhead .btn-danger [class^="icon-"],.subhead .btn-danger [class*=" icon-"],.subhead .btn-danger [class^="fa-"],.subhead .btn-danger [class*=" fa-"],.subhead .btn-outline-danger [class^="icon-"],.subhead .btn-outline-danger [class*=" icon-"],.subhead .btn-outline-danger [class^="fa-"],.subhead .btn-outline-danger [class*=" fa-"]{color:#d9534f}.subhead .btn-warning [class^="icon-"],.subhead .btn-warning [class*=" icon-"],.subhead .btn-warning [class^="fa-"],.subhead .btn-warning [class*=" fa-"],.subhead .btn-outline-warning [class^="icon-"],.subhead .btn-outline-warning [class*=" icon-"],.subhead .btn-outline-warning [class^="fa-"],.subhead .btn-outline-warning [class*=" fa-"]{color:#f0ad4e}.subhead .btn-success:not(.dropdown-toggle){width:140px;color:#fefefe;background-color:#438243;border-color:rgba(0,0,0,0.2)}.subhead .btn-success:not(.dropdown-toggle) [class^="icon-"],.subhead .btn-success:not(.dropdown-toggle) [class*=" icon-"],.subhead .btn-success:not(.dropdown-toggle) [class^="fa-"],.subhead .btn-success:not(.dropdown-toggle) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-success:not(.dropdown-toggle):hover{background-color:#326032}.subhead .btn-success.dropdown-toggle{background:#2e5a2e;border-color:#2e5a2e}.subhead .btn-success.dropdown-toggle::after{color:#fefefe}.subhead>*:first-child:not(.float-sm-right){margin-left:0}.subhead .float-sm-right{margin-left:.8rem}.subhead.subhead-fixed{position:fixed;top:0;left:250px;z-index:9;padding-top:12px;padding-bottom:12px;border-bottom:1px solid #adb5bd}.closed .subhead-fixed{left:55px}.btn-toolbar{margin-bottom:20px;margin-left:0}.treeselect{display:block;padding-left:0;list-style:none}.treeselect .nav-header{font-weight:700;color:#212529}.treeselect li{position:relative;display:block;line-height:2.2rem;list-style:none}.treeselect li::before{position:absolute;top:14px;left:25px;width:10px;height:1px;margin:auto;content:"";background-color:rgba(0,0,0,0.2)}.treeselect li::after{position:absolute;top:0;bottom:0;left:25px;width:1px;height:100%;content:"";background-color:rgba(0,0,0,0.2)}.treeselect li:last-child::after{height:14px}.treeselect li li{padding-left:40px}.treeselect>li::before,.treeselect>li::after{display:none}.treeselect .icon-{display:none}.treeselect .treeselect-toggle{display:inline-block;padding:0;margin-right:.1rem;text-align:center;cursor:pointer}.treeselect .treeselect-menu{display:inline-block}.treeselect .treeselect-item{display:inline-block}.treeselect .treeselect-item input{position:relative;top:1px;margin-right:.2rem}.treeselect .treeselect-item label{margin-bottom:0}.treeselect .dropdown-toggle{padding:0 .5rem .3rem;margin-left:.5rem}.treeselect .dropdown-toggle::after{margin-left:0;font-size:1rem;color:#495057}.treeselect-sub{padding-left:0}.tree-holder ul ul li::before,.tree-holder ul ul li::after{left:8px;display:block}.tree-holder ul ul li::before{top:12px}.tree-holder ul ul li:last-child::after{height:12px}.tree-holder li{line-height:1.8rem}.tree-holder li li{padding-left:20px}.fg-1{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.fg-2{-webkit-box-flex:2;-ms-flex-positive:2;flex-grow:2}.fg-3{-webkit-box-flex:3;-ms-flex-positive:3;flex-grow:3}.element-invisible{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%)}.hidden{display:none;visibility:hidden}joomla-alert{display:none}.awesomplete{display:block}.btn.btn-xs,.btn-group-xs>.btn{padding:.09rem .4rem;font-size:.7rem;line-height:1.2;border-radius:.2rem}.btn.btn-xs .caret{font-size:16px;line-height:13px}.btn:focus,.btn.focus,.btn:active:focus,.btn.focus:active,.btn.active:focus,.btn.active.focus{text-decoration:none}.btn.group-move{cursor:move}.btn-secondary{color:#343a40;background-color:#fefefe;border-color:#ced4da}.btn-secondary:hover,.btn-secondary:focus{color:#343a40;background-color:#f8f9fa}.card{background-color:#f8f8f8}.card.card-light{background-color:#f8f8f8}.card.card-dark{background-color:#0d1321}.card.card-dark>*,.card.card-dark a:not(.dropdown-item),.card.card-dark .module-dropdown>a{color:#fefefe}.card.card-dark .list-group-item{background:0}.custom-select.custom-select-color-state.custom-select-success{color:#fefefe;background-color:#438243}.custom-select.custom-select-color-state.custom-select-success option{color:#495057;background-color:#fefefe}.custom-select.custom-select-color-state.custom-select-danger{color:#fefefe;background-color:#d9534f}.custom-select.custom-select-color-state.custom-select-danger option{color:#495057;background-color:#fefefe}.accordion .card-header{display:block;font-size:.9286rem;font-weight:bold;line-height:1.2}.accordion .list-group-item{color:#006898}.dropdown-menu{padding:.2rem 0;margin-top:.5rem;background-color:#fefefe;border-color:#ccc}.dropdown-menu::after{position:absolute;top:-1.5rem;left:.9rem;font-family:FontAwesome;font-size:1.6rem;color:#fefefe;text-shadow:0 -1px 0 rgba(0,0,0,0.2);content:"\f0d8"}.dropdown-item{padding:3px .75rem}.dropdown-menu-right::after{right:.9rem;left:auto}.list-group-item{background-color:#fefefe}.list-unstyled .list-unstyled{padding-left:20px}.jviewport-height10{height:10vh}.jviewport-height20{height:20vh}.jviewport-height30{height:30vh}.jviewport-height40{height:40vh}.jviewport-height50{height:50vh}.jviewport-height60{height:60vh}.jviewport-height70{height:70vh}.jviewport-height80{height:80vh}.jviewport-height90{height:90vh}.jviewport-height100{height:100vh}[class*=jviewport-height] iframe{height:100%}.modal-dialog.jviewport-width10{width:10vw;max-width:none}.modal-dialog.jviewport-width20{width:20vw;max-width:none}.modal-dialog.jviewport-width30{width:30vw;max-width:none}.modal-dialog.jviewport-width40{width:40vw;max-width:none}.modal-dialog.jviewport-width50{width:50vw;max-width:none}.modal-dialog.jviewport-width60{width:60vw;max-width:none}.modal-dialog.jviewport-width70{width:70vw;max-width:none}.modal-dialog.jviewport-width80{width:80vw;max-width:none}.modal-dialog.jviewport-width90{width:90vw;max-width:none}.modal-dialog.jviewport-width100{width:100vw;max-width:none}.nav.nav-tabs{padding:0;margin:0;background-color:#f5f5f5;border:1px solid #ccc;border-bottom:0;border-radius:.25rem .25rem 0 0;-webkit-box-shadow:0 1px #fff inset,0 2px 3px -3px rgba(0,0,0,0.15),0 -4px 0 rgba(0,0,0,0.05) inset,0 0 3px rgba(0,0,0,0.04);box-shadow:0 1px #fff inset,0 2px 3px -3px rgba(0,0,0,0.15),0 -4px 0 rgba(0,0,0,0.05) inset,0 0 3px rgba(0,0,0,0.04)}.nav.nav-tabs .nav-item{margin-bottom:0;margin-left:0}.nav.nav-tabs .nav-item:first-of-type .nav-link.active{border-radius:.25rem 0 0;-webkit-box-shadow:-1px 0 1px -1px rgba(0,0,0,0.06),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02);box-shadow:-1px 0 1px -1px rgba(0,0,0,0.06),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02)}.nav.nav-tabs .nav-item:last-of-type .nav-link{-webkit-box-shadow:-1px 0 0 rgba(0,0,0,0.05),1px 0 0 rgba(0,0,0,0.05);box-shadow:-1px 0 0 rgba(0,0,0,0.05),1px 0 0 rgba(0,0,0,0.05)}.nav.nav-tabs .nav-item:last-of-type .nav-link.active{-webkit-box-shadow:inset 2px 0 1px -1px rgba(0,0,0,0.08),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02);box-shadow:inset 2px 0 1px -1px rgba(0,0,0,0.08),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02)}.nav.nav-tabs .nav-link{position:relative;padding:.75em 1em;color:#0d1321;border:0;border-top-left-radius:0;border-top-right-radius:0;-webkit-box-shadow:-1px 0 0 rgba(0,0,0,0.05);box-shadow:-1px 0 0 rgba(0,0,0,0.05)}.nav.nav-tabs .nav-link.active{background-color:rgba(0,0,0,0.03);background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,0.05)));background-image:linear-gradient(to bottom,transparent,rgba(0,0,0,0.05) 100%);border-right:0;border-left:0;border-top-left-radius:0;border-top-right-radius:0;-webkit-box-shadow:inset 2px 0 1px -1px rgba(0,0,0,0.08),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02);box-shadow:inset 2px 0 1px -1px rgba(0,0,0,0.08),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02)}.nav.nav-tabs .nav-link.active::after{position:absolute;right:0;bottom:-1px;left:0;height:5px;content:"";background-color:#006898;opacity:.8}.nav-tabs+.tab-content{padding:15px;background:#fefefe;border:1px solid;border-color:#ccc;border-radius:0 0 .25rem .25rem;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.04);box-shadow:0 0 3px rgba(0,0,0,0.04)}.pagination{margin:1rem}.table thead th{white-space:nowrap;border-bottom-width:1px}.table th,.table td{padding:8px;vertical-align:middle}.table th label,.table td label{margin-bottom:0}.chzn-container.chzn-container-single .chzn-single{display:inline-block;max-width:100%;height:calc(calc(2.25rem + 2px) - 2px);padding:.375rem 1.75rem .375rem .75rem;padding-right:.75rem \9;line-height:1.5;color:#495057;vertical-align:middle;background:#fefefe url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-image:none \9;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-box-shadow:none;box-shadow:none;-moz-appearance:none;-webkit-appearance:none}.chzn-container.chzn-container-single .chzn-single abbr{top:10px}.chzn-container.chzn-container-single .chzn-single:focus{border-color:#19b6ff;outline:0}.chzn-container.chzn-container-single .chzn-single:disabled{color:#868e96;cursor:not-allowed;background-color:#e9ecef}.chzn-container.chzn-container-single .chzn-single div b{background:0}.chzn-container.chzn-container-single .chzn-drop{background:#fefefe;border:1px solid #ced4da}.chzn-container.chzn-container-single.chzn-container-active .chzn-single{border-bottom-right-radius:0;border-bottom-left-radius:0}.chzn-container-single{width:auto !important}.card .chzn-container.chzn-container-single{width:100% !important}.card .chzn-container.chzn-container-single .chzn-single{width:100% !important}.gu-mirror{position:fixed !important;z-index:9999 !important;margin:0 !important;cursor:move;background-color:#90ee90;opacity:.8}.gu-mirror.table{display:table}.gu-mirror.table td{display:table-cell}.js-draggable .sortable-handler{cursor:move}.minicolors-theme-bootstrap .minicolors-input{width:120px}.minicolors-theme-bootstrap .rgb{width:175px}.minicolors-theme-bootstrap .rgba{width:220px}.editor .toggle-editor{margin-top:1rem}.editor .mce-tinymce{border:1px solid #ccc;border-radius:.25rem}.editor .mce-btn,.editor .mce-panel{background:#f8f8f8}.com_config .content{background-color:transparent}.com_config [class^='col-']>fieldset{margin-bottom:2rem}.com_cpanel .content{margin-top:0}.com_cpanel .card{-webkit-box-shadow:0 0 3px rgba(0,0,0,0.04);box-shadow:0 0 3px rgba(0,0,0,0.04)}.com_cpanel .card p:first-of-type{margin-top:1rem}.com_cpanel .card p:last-child{margin-bottom:0}.com_cpanel .card .list-group{margin-top:0;margin-right:-1.25rem;margin-bottom:-1.25rem;margin-left:-1.25rem}.com_cpanel .card .list-group>li{padding:.6rem 1.25rem;overflow:hidden}.com_cpanel .card .list-group>.published{padding-left:.9rem;border-left:5px solid #438243}.com_cpanel .card .list-group>.unpublished{padding-left:.9rem;border-left:5px solid #d9534f}.com_cpanel .card .list-group:first-of-type{border-top:0}.com_cpanel .card .list-group-item:first-child{border-top:0;border-top-left-radius:0;border-top-right-radius:0}.com_cpanel .card .list-group-item:last-child{border-bottom:0;border-top-left-radius:0;border-top-right-radius:0}.com_cpanel .card-title{position:relative;padding:.9em 1.25rem .75rem;margin-top:-1.25rem;margin-right:-1.25rem;margin-bottom:0;margin-left:-1.25rem;font-size:.9286rem;color:#1c3d5c;background-color:#f5f5f5;border-bottom:1px solid rgba(0,0,0,0.125);border-radius:.25rem .25rem 0 0;-webkit-box-shadow:0 1px #fefefe inset,0 2px 3px -3px rgba(0,0,0,0.15);box-shadow:0 1px #fefefe inset,0 2px 3px -3px rgba(0,0,0,0.15)}.com_cpanel .module-actions{position:absolute;top:0;right:0;z-index:2}.com_cpanel .module-actions>a{display:inline-block;width:2.6em;height:2.6em;line-height:2.6em;color:#495057;text-align:center;background-color:#f5f5f5;border-left:1px solid #ccc;border-top-right-radius:.25rem;-webkit-box-shadow:1px 0 #fefefe inset;box-shadow:1px 0 #fefefe inset}.com_cpanel .module-actions>a:hover,.com_cpanel .module-actions>a:focus{background-color:#f0f0f0;-webkit-box-shadow:none;box-shadow:none}.admin.com_modules .js-stools-container-bar .btn-toolbar{float:left}.menu-assignment{position:relative}.menu-assignment .menu-links{padding-left:0;margin-top:15px;margin-left:0;-webkit-column-count:3;column-count:3;-webkit-column-gap:15px;column-gap:15px}.menu-assignment .menu-links>li{display:inline-block;width:100%;margin-bottom:15px;vertical-align:top;list-style:none;column-break-inside:avoid;-webkit-backface-visibility:hidden;backface-visibility:hidden}.menu-assignment .menu-links-block{padding:15px;background-color:#fafafa;border:1px solid #ddd;border-radius:3px}.menu-assignment label{display:block}.menu-assignment label input{position:relative;top:2px}@media(max-width:767px){.menu-assignment .menu-links{-webkit-column-count:auto;column-count:auto}}.com_users.view-debuggroup thead th,.com_users.view-debuguser thead th{white-space:normal}.com_users.view-debuggroup .legend,.com_users.view-debuguser .legend{margin:1rem 1rem 0}.container-main,.system-debug{padding-bottom:50px}.container-main{position:relative;min-height:calc(100vh - 50px);padding-top:15px;background-color:#f2f2f2}@media(max-width:991.98px){.container-main{padding-left:50px;margin-top:47px}}.list-view-main .container-main{background-color:#f2f2f2}.content{margin-top:45px;border-radius:.25rem}.content>.row{margin-right:0;margin-left:0}.j-main-container{background-color:#fefefe;border:1px solid rgba(0,0,0,0.17);border-radius:.25rem;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.075);box-shadow:0 0 3px rgba(0,0,0,0.075)}.row-selected{background-color:#d9edf7}.chzn-container-single{width:auto !important}.item-associations{padding:0}.item-associations li{display:inline-block;list-style:none}dl,ol,ul{padding-right:0}th{text-align:right}.close{float:left}.notify-alerts .close{right:auto;left:-.5rem}.control-group .control-label{float:right;text-align:right}.dropdown-menu-right{right:auto;left:0}.dropdown-menu-right::after{right:auto;left:.9rem}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-left-radius:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:.25rem;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:.25rem}.switcher-labels{margin-right:10px;margin-left:0}.switcher-labels span{right:0;left:auto}.wrapper{padding-right:250px;padding-left:0}.wrapper.closed{padding-right:50px}.wrapper.closed .main-brand img{position:relative;left:151px}.sidebar-wrapper{right:0;left:auto}.notify-alerts{margin-right:125px;margin-left:0}.closed .notify-alerts{margin-right:0}.header .page-title [class^="icon-"]{margin-right:0;margin-left:15px}.menu-collapse{right:0;left:auto;margin-right:-7.5px;margin-left:0}.menu-toggle-icon::before{content:"\f054"}.closed .menu-toggle-icon::before{content:"\f053"}.quick-icons a::before{right:auto;left:-40px}.quick-icons a [class*=" icon-"],.quick-icons a [class^="icon-"]{border-right:0;border-left:1px solid rgba(255,255,255,0.15)}.main-nav .fa{margin:0 12px 0 8px}.main-nav .open>a+ul{right:50px;left:auto}.main-nav .collapse-level-2{right:100%;left:auto;border-radius:.25rem 0 0 .25rem}.main-nav .close{float:left}.main-nav .parent .collapse-arrow::after{right:auto;left:15px;content:"\f0d9"}.child-open>.open>a::before{right:0;left:auto}.status{margin-right:250px;margin-left:0}.closed .status{margin-right:50px;margin-left:0}.sidebar-wrapper[data-hidden="1"] ~ .status{margin-right:0}.subhead .btn-group-sm>.btn [class^="icon-"],.subhead .btn-group-sm>.btn [class*=" icon-"],.subhead .btn-group-sm>.btn [class^="fa-"],.subhead .btn-group-sm>.btn [class*=" fa-"]{margin:0 -10px 0 6px;border-right:0;border-left:1px solid #ccc;border-radius:0 3px 3px 0}.subhead .btn-toolbar>*:first-of-type{margin-right:0}.subhead .btn-group-sm>.btn [class*=" fa-"],.subhead .btn-group-sm>.btn [class*=" icon-"],.subhead .btn-group-sm>.btn [class^="fa-"],.subhead .btn-group-sm>.btn [class^="icon-"],.subhead .btn-sm [class*=" fa-"],.subhead .btn-sm [class*=" icon-"],.subhead .btn-sm [class^="fa-"],.subhead .btn-sm [class^="icon-"]{margin:0 -10px 0 6px;border-right:0;border-left:1px solid #ccc;border-radius:0 3px 3px 0}.com_cpanel .card .list-group>.published{border-right:5px solid #438243;border-left:0}.com_cpanel .card .list-group>.unpublished{border-right:5px solid #d9534f;border-left:0}.com_cpanel .card .module-dropdown{right:auto;left:0}.com_cpanel .card .module-dropdown>a{border-right:1px solid #ccc;border-left:0;border-top-left-radius:.25rem;border-top-right-radius:0} \ No newline at end of file +#flying-focus{position:absolute;margin:0;background:transparent;-webkit-transition-property:left,top,width,height;transition-property:left,top,width,height;-webkit-transition-timing-function:cubic-bezier(0,1,0,1);transition-timing-function:cubic-bezier(0,1,0,1);visibility:hidden;pointer-events:none;-webkit-box-shadow:0 0 2px 3px #78aeda,0 0 2px #78aeda inset;box-shadow:0 0 2px 3px #78aeda,0 0 2px #78aeda inset;border-radius:2px}#flying-focus.flying-focus_visible{visibility:visible;z-index:9999}@media screen and (-webkit-min-device-pixel-ratio:0){#flying-focus{-webkit-box-shadow:none;box-shadow:none;outline:5px auto -webkit-focus-ring-color;outline-offset:-3px}}.flying-focus_target{outline:none !important}.flying-focus_target::-moz-focus-inner{border:0 !important}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked ~ .custom-control-label::before{color:#fff;background-color:#006898}.custom-control-input:focus ~ .custom-control-label::before{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,104,152,0.25);box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,104,152,0.25)}.custom-control-input:active ~ .custom-control-label::before{color:#fff;background-color:#4cc6ff}.custom-control-input:disabled ~ .custom-control-label{color:#868e96}.custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.custom-control-label{margin-bottom:0}.custom-control-label::before{position:absolute;top:.25rem;left:0;display:block;width:1rem;height:1rem;pointer-events:none;content:"";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#dee2e6}.custom-control-label::after{position:absolute;top:.25rem;left:0;display:block;width:1rem;height:1rem;content:"";background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before{background-color:#006898}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{background-color:#006898}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,104,152,0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(0,104,152,0.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked ~ .custom-control-label::before{background-color:#006898}.custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,104,152,0.5)}.custom-select{display:inline-block;width:100%;height:calc(2.25rem + 2px);padding:.375rem 1.75rem .375rem .75rem;line-height:1.5;color:#495057;vertical-align:middle;background:#fefefe url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#19b6ff;outline:0;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.075),0 0 5px rgba(25,182,255,0.5);box-shadow:inset 0 1px 2px rgba(0,0,0,0.075),0 0 5px rgba(25,182,255,0.5)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#868e96;background-color:#e9ecef}.custom-select::-ms-expand{opacity:0}.custom-select-sm{height:calc(1.7rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-select-lg{height:calc(2.875rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:125%}.custom-file{position:relative;display:inline-block;width:100%;height:calc(2.25rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(2.25rem + 2px);margin:0;opacity:0}.custom-file-input:focus ~ .custom-file-control{border-color:#19b6ff;-webkit-box-shadow:0 0 0 .2rem rgba(0,104,152,0.25);box-shadow:0 0 0 .2rem rgba(0,104,152,0.25)}.custom-file-input:focus ~ .custom-file-control::before{border-color:#19b6ff}.custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(2.25rem + 2px);padding:.375rem .75rem;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(calc(2.25rem + 2px) - 1px * 2);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:1px solid #ced4da;border-radius:0 .25rem .25rem 0}.alert-message{background-color:#438243;border-color:#438243;border-left:10px solid #438243;color:#e9ecef}.alert-message hr{border-top-color:#3a713a}.alert-message .alert-link{color:#326032}html,body{height:100%;font-size:14px}body{padding:0;margin:0}h1,h2,h3,h4,h5,h6{font-weight:bold}h1{font-weight:normal}small,.small{font-size:.8rem}.j-main-container .alert{margin:10px}.notify-alerts{position:fixed;top:15px;left:50%;z-index:1031;margin-left:125px;-webkit-transition:all .5s ease;transition:all .5s ease;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.notify-alerts .alert{width:100%;min-width:280px;max-width:400px;margin-bottom:.5rem;opacity:0;-webkit-animation:fadeIn ease-in 1;animation:fadeIn ease-in 1;-webkit-animation-duration:.35s;animation-duration:.35s;-webkit-animation-delay:0s;animation-delay:0s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.notify-alerts .alert:first-of-type{-webkit-animation-delay:.3s;animation-delay:.3s}.notify-alerts.fullWidth{left:265px}.notify-alerts.fullWidth .alert{width:auto;min-width:none;max-width:none;margin-left:0}.notify-alerts .close{position:relative;right:-.5rem;padding:.5rem;line-height:1rem;color:#000;opacity:1}.closed .notify-alerts{margin-left:0}.closed+.notify-alerts.fullWidth{left:70px}.wrapper0 .notify-alerts{margin-left:0}@-webkit-keyframes fadeIn{from{opacity:0;-webkit-transform:translateY(-15px);transform:translateY(-15px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeIn{from{opacity:0;-webkit-transform:translateY(-15px);transform:translateY(-15px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.form-control{max-width:240px;background-color:#fefefe}.form-control.input-xlarge{max-width:350px}.form-control.input-xxlarge{max-width:550px}.form-control.input-full{max-width:100%}.control-group{margin-bottom:18px}.control-group>.form-check{display:inline-block}.control-group::after{display:table;clear:both;content:""}.control-group .control-label{float:left;width:220px;padding-top:5px;padding-right:5px;text-align:left}.control-group .controls{margin-left:220px}.form-no-margin .control-group .controls{margin-left:0}.form-no-margin .control-group .control-label{float:none}.custom-select{max-width:240px}.spacer hr{width:380px}td .form-control{display:inline-block;width:auto}legend{margin-bottom:1.1rem}.checkboxes{padding-top:5px}.checkboxes .checkbox input{position:static;margin-left:0}.form-check{padding-top:5px;margin-bottom:0}.modal label{width:100%}.invalid{color:#d9534f;border-color:#d9534f}.valid{border-color:#438243}.form-control-feedback{display:block}.header{position:relative;z-index:5;height:48px;background:#1c3d5c}.header::after{position:absolute;top:100%;width:100%;height:3px;content:"";background-color:#006898;background-image:-webkit-gradient(linear,left top,right top,from(#59afff),to(#59daff));background-image:linear-gradient(to right,#59afff 0,#59daff 100%)}.header .page-title{display:inline-block;margin:0 5px;font-size:1.3rem;font-weight:normal;line-height:48px;color:#fefefe}.header .page-title [class^="icon-"]{margin-right:15px;font-size:1.857rem 1.857rem;vertical-align:middle}.header .navbar-brand{padding:0;font-size:1.1rem;color:#fefefe}.header .navbar-brand:hover,.header .navbar-brand:focus{color:#efefef}@media(min-width:576px) and (max-width:767.98px){.header .navbar-brand{margin-right:0;margin-left:10px}}.header .navbar-brand span{margin-left:.4rem}.header .nav-item{background-color:#2e5a84;border-left:1px solid #1c3d5c}.header .nav-link{position:relative;padding:0;line-height:48px}.header .nav-link .fa{width:50px;font-size:1.2rem;color:#fefefe;vertical-align:middle;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.header .nav-link .fa-external-link{position:relative;left:2px}.header .nav-link .badge{position:absolute;top:4px;right:2px}.header .nav-link.dropdown-toggle::after{display:none}.header .nav-link:hover .fa{font-size:1.3rem;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.header .dropdown-notifications{min-width:280px;padding:0;border:0}.header .dropdown-notifications h2{font-size:.9286rem}.header .dropdown-menu::after{left:.65rem}.header .dropdown-menu-right::after{right:.65rem;left:auto}.header .header-profile .dropdown-menu{padding-top:0}.header .header-profile .dropdown-menu::after{color:#f2f2f2}.header .header-profile-user{padding-top:.5rem;padding-bottom:.5rem;margin-bottom:.3rem;background-color:#f2f2f2;border-bottom:1px solid rgba(0,0,0,0.1);border-radius:.25rem .25rem 0 0}.header .list-group-item-text:last-child{margin-bottom:0}.header .joomla-version{margin-right:.9rem;margin-bottom:0;font-size:.9286rem;color:#fefefe}@media(max-width:991.98px){.header{position:fixed;top:0;width:100%}.header+.container-title{margin-top:48px}}.menu-collapse{font-size:2rem;text-align:center}.menu-collapse a{display:block;width:48px;line-height:48px;color:#fff;background-color:#2e5a84}.icon-back::before{content:"\e008"}.icon-crop::before{content:"\f125"}.icon-white{color:#fefefe}.icon-publish{color:#438243}.icon-unpublish{color:#d9534f}.tbody-icon{padding:0 3px;text-align:center;background-color:transparent;border:0}.tbody-icon span{width:26px;height:26px;font-size:1rem;line-height:22px;color:#ccc;border:2px solid #ccc;border-radius:50%}.tbody-icon .icon-publish{color:#438243;border-color:#438243}.tbody-icon .icon-featured{color:#f0ad4e;border-color:#f0ad4e}.tbody-icon .icon-unpublish{color:#d9534f;border-color:#d9534f}.tbody-icon .icon-archive{color:#495057;border-color:#495057}.tbody-icon .icon-checkedout{width:auto;height:auto;font-size:1.2rem;line-height:1rem;color:#495057;border:0}iframe{border:0}.modal iframe{width:100%}.view-login{background:#1c3d5c}.view-login .login-initial{display:none}.view-login .login{width:320px}@media(max-width:767.98px){.view-login .login{padding:0 15px}}.view-login .login-logo{margin:0 0 2rem;text-align:center}@media(max-width:767.98px){.view-login .login-logo{margin:1rem 0}}.view-login h2{font-size:1.9rem;font-weight:300}.view-login .card-img-top{max-width:100%}.view-login .nav p,.view-login .nav a{margin-bottom:0;color:#fff}@media(max-width:575.98px){.view-login .btn{padding:8px 10px;font-size:14px}}.modal .btn{margin-right:.5rem}.modal .btn-primary:not([href]),.modal .btn-success:not([href]){color:#fff}.modal .btn-primary:not([href]):hover,.modal .btn-success:not([href]):hover{color:#fff}.modal-header{padding:0 15px}.modal-header .close{width:46px;height:46px;margin-top:0;margin-right:-15px;font-size:2rem;line-height:1rem;border-left:1px solid #ccc}.modal-body{padding:0;overflow-y:auto}.modal-title{font-weight:normal;line-height:46px}.contentpane{padding:15px}.quick-icons a{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:120px;height:120px;margin-right:15px;margin-bottom:15px;color:#fff;text-align:center;background:#1c3d5c;border-radius:3px;-webkit-box-shadow:0 0 5px 0 #1c3d5c;box-shadow:0 0 5px 0 #1c3d5c;-webkit-transition:background .25s ease;transition:background .25s ease}.quick-icons a>div{-webkit-box-flex:1;-ms-flex:1 0 0;flex:1 0 0}@media(max-width:575.98px){.quick-icons a.pulse{-webkit-box-shadow:0 0 0 0 rgba(28,61,92,0.7);box-shadow:0 0 0 0 rgba(28,61,92,0.7);-webkit-animation:pulse 1.25s infinite cubic-bezier(0.66,0,0,1);animation:pulse 1.25s infinite cubic-bezier(0.66,0,0,1)}}@media(max-width:575.98px){.quick-icons a.pulse.danger,.quick-icons a.pulse.success{-webkit-animation:none;animation:none}}.quick-icons a:hover,.quick-icons a:focus{text-decoration:none;background:#2e5a84}.quick-icons a .j-links-link{display:block;width:100%;padding:0 1rem;font-size:1rem;line-height:1.1}.quick-icons a .fa{margin:5px auto;font-size:2.5rem;font-weight:normal;line-height:3rem}.quick-icons a.danger{background-color:#df706c;-webkit-box-shadow:0 0 5px 0 #df706c;box-shadow:0 0 5px 0 #df706c}.quick-icons a.success{background-color:#4f9a4f;-webkit-box-shadow:0 0 5px 0 #4f9a4f;box-shadow:0 0 5px 0 #4f9a4f}.quick-icons [id*="plg_quickicon"] a,.quick-icons [id*="plg_quickicon"] a::before{-webkit-transition-delay:.4s;transition-delay:.4s}@-webkit-keyframes pulse{to{-webkit-box-shadow:0 0 0 15px rgba(232,76,61,0);box-shadow:0 0 0 15px rgba(232,76,61,0)}}@keyframes pulse{to{-webkit-box-shadow:0 0 0 15px rgba(232,76,61,0);box-shadow:0 0 0 15px rgba(232,76,61,0)}}.js-stools{position:relative;width:100%;padding:8px 10px 0;background-color:#f5f5f5;border-bottom:1px solid rgba(0,0,0,0.125);border-radius:.25rem .25rem 0 0;-webkit-box-shadow:0 1px #fff inset,0 2px 3px -3px rgba(0,0,0,0.15);box-shadow:0 1px #fff inset,0 2px 3px -3px rgba(0,0,0,0.15)}.js-stools .btn-wrapper{display:inline-block;margin-right:5px}.js-stools .js-stools-container-filters{position:absolute;right:-1px;z-index:1;display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:10px;margin:0;background-color:#fff;border:1px solid #ccc;border-radius:0 0 0 .25rem;-webkit-box-shadow:-1px 1px 4px rgba(0,0,0,0.05);box-shadow:-1px 1px 4px rgba(0,0,0,0.05)}.js-stools .js-stools-container-filters .js-stools-field-list:last-of-type .custom-select{min-width:auto}.js-stools .js-stools-container-filters .custom-select{width:100%}.js-stools .js-stools-container-filters.js-filters-show{display:-webkit-box;display:-ms-flexbox;display:flex}.js-stools .js-stools-container-filters .chzn-container-single{display:block}.js-stools .js-stools-container-filters .chzn-container-single .chzn-single{display:block;font-size:1rem}.js-stools .js-stools-field-filter .custom-select.active{color:#fff;background:#fefefe url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23fff' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat scroll right .75rem center/8px 10px;background-color:#006898}.js-stools .js-stools-field-filter .custom-select option{color:#495057;background-color:#fff}.js-stools .js-stools-container-selector{float:left}.js-stools .js-stools-container-bar{float:right}.js-stools .js-stools-container-bar .btn-toolbar{float:left;margin-bottom:8px}.js-stools .js-stools-container-bar .btn-toolbar .btn-group:first-child{margin-left:0}.js-stools .js-stools-container-bar .input-append{margin-bottom:0}.js-stools .js-stools-container-list{float:left;text-align:left}.js-stools .js-stools-container-list .js-stools-field-list:last-child{margin-right:0}.js-stools-column-order [class*=" icon-"],.js-stools-column-order [class^="icon-"]{text-align:center}.wrapper{padding-left:250px;-webkit-transition:all .3s ease;transition:all .3s ease}@media(max-width:991.98px){.wrapper{padding-left:0}}.sidebar-wrapper{position:fixed;left:0;z-index:10;width:250px;height:100%;margin-left:0;background-color:#1c3d5c;-webkit-box-shadow:0 3px 10px rgba(0,0,0,0.5);box-shadow:0 3px 10px rgba(0,0,0,0.5);-webkit-transition:all .3s ease;transition:all .3s ease}.sidebar-wrapper .sidebar-brand{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;overflow:hidden}@media(max-width:991.98px){.sidebar-wrapper{margin-top:3px}.sidebar-wrapper .main-nav{max-height:calc(100vh - 147px)}}.sidebar-wrapper .main-brand{margin-left:5px;font-size:30px;line-height:96px;text-align:center;text-indent:0;border:0;-webkit-box-shadow:none;box-shadow:none}.sidebar-wrapper .main-brand a{display:block;margin-right:5px;overflow:hidden;border:0;-webkit-box-shadow:none;box-shadow:none}.sidebar-wrapper .main-brand a:hover{background:0}.sidebar-wrapper .main-brand img{width:190px}.menu-toggle-icon{width:48px;font-size:1.7rem}.main-nav{position:relative;z-index:1;width:250px;height:calc(100vh - 96px);list-style:none;background-color:#1c3d5c;opacity:1}.main-nav::after{position:absolute;top:0;right:0;bottom:0;width:0;content:"";background-color:#0f2131;-webkit-transition:all .3s ease;transition:all .3s ease}.main-nav>li{background-color:#1c3d5c;border-bottom:1px solid rgba(0,0,0,0.15)}.main-nav>li:first-of-type{border-top:1px solid rgba(0,0,0,0.15)}.main-nav li{max-height:40px;line-height:40px}.main-nav li a{position:relative;display:block;max-height:40px;overflow:hidden;color:#fff;text-decoration:none;cursor:pointer;opacity:1}.main-nav li a:hover{color:#fff;text-decoration:none;background-color:rgba(0,0,0,0.2)}.main-nav li a:active,.main-nav li a:focus{text-decoration:none;outline:0;-webkit-box-shadow:inset 0 0 0 1px #78aeda;box-shadow:inset 0 0 0 1px #78aeda}.main-nav li.menuitem-group a:hover{cursor:text;background:0}.main-nav li ul{position:absolute;top:0;left:50px;z-index:-3;display:block;width:200px;height:100%;padding:0;opacity:0;-webkit-transition:left .2s ease,opacity .2s ease;transition:left .2s ease,opacity .2s ease;-webkit-transition-delay:0;transition-delay:0}.main-nav li ul ul{display:none;opacity:1}.main-nav li ul li{text-indent:15px}.main-nav .close{padding:2px 10px;font-size:1.7rem;color:rgba(255,255,255,0.8);text-indent:0;text-shadow:none}.main-nav .close:hover{background-color:transparent}.main-nav .open>a+ul{left:50px;z-index:1;opacity:1;-webkit-transition-delay:.2s;transition-delay:.2s}.main-nav li li{line-height:2.2rem;border:0;-webkit-box-shadow:none;box-shadow:none}.main-nav li li a{-webkit-box-shadow:none;box-shadow:none}.main-nav li li a:hover{background-color:#2e5a84;-webkit-box-shadow:inset 2px 0 2px rgba(0,0,0,0.1);box-shadow:inset 2px 0 2px rgba(0,0,0,0.1)}.main-nav li li>span{color:rgba(255,255,255,0.4)}.main-nav li li:last-of-type>a{border-bottom:0}.main-nav .fa{position:relative;top:-2px;display:inline-block;margin:0 12px;font-size:20px;text-align:center;vertical-align:middle}.main-nav .collapse-level-1 a::before{display:none}.main-nav .collapse-level-1 .menuitem-group,.main-nav .collapse-level-1>li:first-of-type{margin:6px 0 0;color:rgba(255,255,255,0.7);text-transform:uppercase;letter-spacing:1px}.main-nav .collapse-level-1 li{position:relative}.main-nav .collapse-level-1 li:hover ul{display:block !important}.main-nav .collapse-level-2{position:absolute;top:0;left:100% !important;height:auto;padding:2px 0;background-color:#152d45;border-radius:0 .25rem .25rem 0;-webkit-box-shadow:0 0 8px rgba(0,0,0,0.2);box-shadow:0 0 8px rgba(0,0,0,0.2)}.main-nav .collapse-level-2>li>a{color:#fff;text-indent:15px}.main-nav .parent .collapse-arrow::after{position:absolute;top:0;right:15px;font-family:FontAwesome;font-size:.75rem;color:#fff;visibility:visible;content:"\f0da";-webkit-transition-delay:.25s;transition-delay:.25s}.closed .main-nav{overflow-x:hidden}.child-open{overflow:visible}.child-open::after{width:200px}.child-open>li.parent>.collapse-arrow::after{visibility:hidden;opacity:0;-webkit-transition-delay:0s;transition-delay:0s}.child-open>li.open>a::before{position:absolute;top:1px;bottom:1px;left:0;width:3px;content:"";background-color:#59afff}.child-open .open>ul{display:block}@media(min-width:992px){.closed{padding-left:50px}}.closed .child-open::after{display:none}.closed .sidebar-wrapper{width:50px;overflow:hidden}.closed .parent .collapse-arrow::after{visibility:hidden;-webkit-transition-delay:0s !important;transition-delay:0s !important}.closed .menu-toggle-icon::before{content:"\f054"}.layout-edit .sidebar-wrapper .no-dropdown:hover{color:#fff;cursor:not-allowed;background:0}.sidebar-item-title{visibility:visible !important;opacity:1 !important}.sidebar-nav ul{padding-left:.5rem}.sidebar-nav li{padding-bottom:3px;font-size:.9rem;font-weight:bold}.sidebar-nav li.nav-header{padding:.5rem 0 .2rem;margin-bottom:.2rem;font-size:.9rem;color:#495057;border-bottom:1px solid #ced4da}.sidebar-nav li.divider{margin:.3rem 0}.sidebar-nav li a{color:#003e5b}.status{z-index:9;padding:5px 10px;margin-left:250px;color:#626262;background:#ebebeb;border-top:1px solid #d4d4d4;-webkit-box-shadow:0 1px 0 rgba(255,255,255,0.8) inset;box-shadow:0 1px 0 rgba(255,255,255,0.8) inset;-webkit-transition:all .3s ease;transition:all .3s ease;-webkit-transition-delay:0s;transition-delay:0s}.status p{margin:0}.status li,.status a{font-size:14px;color:#555}.closed .status{margin-left:50px}.sidebar-wrapper[data-hidden="1"] ~ .status{margin-left:0}.subhead{position:absolute;top:0;right:0;left:0;width:auto;min-height:43px;padding:15px 0;color:#0c192e;background:#f2f2f2}.subhead .row{margin-right:0;margin-left:0}.subhead .btn-toolbar{margin-bottom:0}.subhead .btn-toolbar>*{margin-left:.5rem}.subhead .btn-group{margin-right:.25rem}.subhead .btn-group .btn{margin-left:0}.subhead>*:first-child{margin:0}.subhead .btn-group-sm>.btn,.subhead .btn-sm{padding:0 .8rem;line-height:24px}.subhead .btn-sm{padding:0 10px;font-size:.875rem;line-height:1.8rem;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.subhead .btn-sm [class^="icon-"],.subhead .btn-sm [class*=" icon-"],.subhead .btn-sm [class^="fa-"],.subhead .btn-sm [class*=" fa-"]{z-index:-1;display:inline-block;width:28px;height:auto;margin:0 6px 0 -10px;line-height:1.8rem;color:inherit;background-color:#e9ecef;border-right:1px solid #ccc;border-radius:3px 0 0 3px}.subhead .btn-sm:hover{background-color:#e9ecef;border-color:#ccc}.subhead .btn-outline-primary{color:#212529;background-color:#fefefe;border-color:#ccc}.subhead .btn-outline-primary [class^="icon-"],.subhead .btn-outline-primary [class*=" icon-"],.subhead .btn-outline-primary [class^="fa-"],.subhead .btn-outline-primary [class*=" fa-"]{color:#006898}.subhead .btn-primary:not(.dropdown-toggle-split){color:#fefefe;background-color:#006898;border-color:rgba(0,0,0,0.2)}.subhead .btn-primary:not(.dropdown-toggle-split) [class^="icon-"],.subhead .btn-primary:not(.dropdown-toggle-split) [class*=" icon-"],.subhead .btn-primary:not(.dropdown-toggle-split) [class^="fa-"],.subhead .btn-primary:not(.dropdown-toggle-split) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-primary:not(.dropdown-toggle-split):hover{background-color:#004565}.subhead .btn-primary.dropdown-toggle-split{background:#003e5b;border-color:#003e5b}.subhead .btn-primary.dropdown-toggle-split::after{color:#fefefe}.subhead .btn-outline-secondary{color:#212529;background-color:#fefefe;border-color:#ccc}.subhead .btn-outline-secondary [class^="icon-"],.subhead .btn-outline-secondary [class*=" icon-"],.subhead .btn-outline-secondary [class^="fa-"],.subhead .btn-outline-secondary [class*=" fa-"]{color:#868e96}.subhead .btn-secondary:not(.dropdown-toggle-split){color:#fefefe;background-color:#868e96;border-color:rgba(0,0,0,0.2)}.subhead .btn-secondary:not(.dropdown-toggle-split) [class^="icon-"],.subhead .btn-secondary:not(.dropdown-toggle-split) [class*=" icon-"],.subhead .btn-secondary:not(.dropdown-toggle-split) [class^="fa-"],.subhead .btn-secondary:not(.dropdown-toggle-split) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-secondary:not(.dropdown-toggle-split):hover{background-color:#6c757d}.subhead .btn-secondary.dropdown-toggle-split{background:#686f77;border-color:#686f77}.subhead .btn-secondary.dropdown-toggle-split::after{color:#fefefe}.subhead .btn-outline-success{color:#212529;background-color:#fefefe;border-color:#ccc}.subhead .btn-outline-success [class^="icon-"],.subhead .btn-outline-success [class*=" icon-"],.subhead .btn-outline-success [class^="fa-"],.subhead .btn-outline-success [class*=" fa-"]{color:#438243}.subhead .btn-success:not(.dropdown-toggle-split){color:#fefefe;background-color:#438243;border-color:rgba(0,0,0,0.2)}.subhead .btn-success:not(.dropdown-toggle-split) [class^="icon-"],.subhead .btn-success:not(.dropdown-toggle-split) [class*=" icon-"],.subhead .btn-success:not(.dropdown-toggle-split) [class^="fa-"],.subhead .btn-success:not(.dropdown-toggle-split) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-success:not(.dropdown-toggle-split):hover{background-color:#326032}.subhead .btn-success.dropdown-toggle-split{background:#2e5a2e;border-color:#2e5a2e}.subhead .btn-success.dropdown-toggle-split::after{color:#fefefe}.subhead .btn-outline-info{color:#212529;background-color:#fefefe;border-color:#ccc}.subhead .btn-outline-info [class^="icon-"],.subhead .btn-outline-info [class*=" icon-"],.subhead .btn-outline-info [class^="fa-"],.subhead .btn-outline-info [class*=" fa-"]{color:#17a2b8}.subhead .btn-info:not(.dropdown-toggle-split){color:#fefefe;background-color:#17a2b8;border-color:rgba(0,0,0,0.2)}.subhead .btn-info:not(.dropdown-toggle-split) [class^="icon-"],.subhead .btn-info:not(.dropdown-toggle-split) [class*=" icon-"],.subhead .btn-info:not(.dropdown-toggle-split) [class^="fa-"],.subhead .btn-info:not(.dropdown-toggle-split) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-info:not(.dropdown-toggle-split):hover{background-color:#117a8b}.subhead .btn-info.dropdown-toggle-split{background:#107282;border-color:#107282}.subhead .btn-info.dropdown-toggle-split::after{color:#fefefe}.subhead .btn-outline-warning{color:#212529;background-color:#fefefe;border-color:#ccc}.subhead .btn-outline-warning [class^="icon-"],.subhead .btn-outline-warning [class*=" icon-"],.subhead .btn-outline-warning [class^="fa-"],.subhead .btn-outline-warning [class*=" fa-"]{color:#f0ad4e}.subhead .btn-warning:not(.dropdown-toggle-split){color:#fefefe;background-color:#f0ad4e;border-color:rgba(0,0,0,0.2)}.subhead .btn-warning:not(.dropdown-toggle-split) [class^="icon-"],.subhead .btn-warning:not(.dropdown-toggle-split) [class*=" icon-"],.subhead .btn-warning:not(.dropdown-toggle-split) [class^="fa-"],.subhead .btn-warning:not(.dropdown-toggle-split) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-warning:not(.dropdown-toggle-split):hover{background-color:#ec971f}.subhead .btn-warning.dropdown-toggle-split{background:#eb9316;border-color:#eb9316}.subhead .btn-warning.dropdown-toggle-split::after{color:#fefefe}.subhead .btn-outline-danger{color:#212529;background-color:#fefefe;border-color:#ccc}.subhead .btn-outline-danger [class^="icon-"],.subhead .btn-outline-danger [class*=" icon-"],.subhead .btn-outline-danger [class^="fa-"],.subhead .btn-outline-danger [class*=" fa-"]{color:#d9534f}.subhead .btn-danger:not(.dropdown-toggle-split){color:#fefefe;background-color:#d9534f;border-color:rgba(0,0,0,0.2)}.subhead .btn-danger:not(.dropdown-toggle-split) [class^="icon-"],.subhead .btn-danger:not(.dropdown-toggle-split) [class*=" icon-"],.subhead .btn-danger:not(.dropdown-toggle-split) [class^="fa-"],.subhead .btn-danger:not(.dropdown-toggle-split) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-danger:not(.dropdown-toggle-split):hover{background-color:#c9302c}.subhead .btn-danger.dropdown-toggle-split{background:#c12e2a;border-color:#c12e2a}.subhead .btn-danger.dropdown-toggle-split::after{color:#fefefe}.subhead .btn-outline-light{color:#212529;background-color:#fefefe;border-color:#ccc}.subhead .btn-outline-light [class^="icon-"],.subhead .btn-outline-light [class*=" icon-"],.subhead .btn-outline-light [class^="fa-"],.subhead .btn-outline-light [class*=" fa-"]{color:#f8f9fa}.subhead .btn-light:not(.dropdown-toggle-split){color:#fefefe;background-color:#f8f9fa;border-color:rgba(0,0,0,0.2)}.subhead .btn-light:not(.dropdown-toggle-split) [class^="icon-"],.subhead .btn-light:not(.dropdown-toggle-split) [class*=" icon-"],.subhead .btn-light:not(.dropdown-toggle-split) [class^="fa-"],.subhead .btn-light:not(.dropdown-toggle-split) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-light:not(.dropdown-toggle-split):hover{background-color:#dae0e5}.subhead .btn-light.dropdown-toggle-split{background:#d4dae1;border-color:#d4dae1}.subhead .btn-light.dropdown-toggle-split::after{color:#fefefe}.subhead .btn-outline-dark{color:#212529;background-color:#fefefe;border-color:#ccc}.subhead .btn-outline-dark [class^="icon-"],.subhead .btn-outline-dark [class*=" icon-"],.subhead .btn-outline-dark [class^="fa-"],.subhead .btn-outline-dark [class*=" fa-"]{color:#343a40}.subhead .btn-dark:not(.dropdown-toggle-split){color:#fefefe;background-color:#343a40;border-color:rgba(0,0,0,0.2)}.subhead .btn-dark:not(.dropdown-toggle-split) [class^="icon-"],.subhead .btn-dark:not(.dropdown-toggle-split) [class*=" icon-"],.subhead .btn-dark:not(.dropdown-toggle-split) [class^="fa-"],.subhead .btn-dark:not(.dropdown-toggle-split) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-dark:not(.dropdown-toggle-split):hover{background-color:#1d2124}.subhead .btn-dark.dropdown-toggle-split{background:#191b1e;border-color:#191b1e}.subhead .btn-dark.dropdown-toggle-split::after{color:#fefefe}.subhead .button-new,.subhead .button-apply,.subhead .button-wide{width:140px}.subhead>*:first-child:not(.float-sm-right){margin-left:0}.subhead .float-sm-right{margin-left:.8rem}.subhead.subhead-fixed{position:fixed;top:0;left:250px;z-index:9;padding-top:12px;padding-bottom:12px;border-bottom:1px solid #adb5bd}.closed .subhead-fixed{left:55px}.btn-toolbar{margin-bottom:20px;margin-left:0}.treeselect{display:block;padding-left:0;list-style:none}.treeselect .nav-header{font-weight:700;color:#212529}.treeselect li{position:relative;display:block;line-height:2.2rem;list-style:none}.treeselect li::before{position:absolute;top:14px;left:25px;width:10px;height:1px;margin:auto;content:"";background-color:rgba(0,0,0,0.2)}.treeselect li::after{position:absolute;top:0;bottom:0;left:25px;width:1px;height:100%;content:"";background-color:rgba(0,0,0,0.2)}.treeselect li:last-child::after{height:14px}.treeselect li li{padding-left:40px}.treeselect>li::before,.treeselect>li::after{display:none}.treeselect .icon-{display:none}.treeselect .treeselect-toggle{display:inline-block;padding:0;margin-right:.1rem;text-align:center;cursor:pointer}.treeselect .treeselect-menu{display:inline-block}.treeselect .treeselect-item{display:inline-block}.treeselect .treeselect-item input{position:relative;top:1px;margin-right:.2rem}.treeselect .treeselect-item label{margin-bottom:0}.treeselect .dropdown-toggle{padding:0 .5rem .3rem;margin-left:.5rem}.treeselect .dropdown-toggle::after{margin-left:0;font-size:1rem;color:#495057}.treeselect-sub{padding-left:0}.tree-holder ul ul li::before,.tree-holder ul ul li::after{left:8px;display:block}.tree-holder ul ul li::before{top:12px}.tree-holder ul ul li:last-child::after{height:12px}.tree-holder li{line-height:1.8rem}.tree-holder li li{padding-left:20px}.fg-1{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.fg-2{-webkit-box-flex:2;-ms-flex-positive:2;flex-grow:2}.fg-3{-webkit-box-flex:3;-ms-flex-positive:3;flex-grow:3}.element-invisible{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%)}.hidden{display:none;visibility:hidden}joomla-alert{display:none}.awesomplete{display:block}.btn.btn-xs,.btn-group-xs>.btn{padding:.09rem .4rem;font-size:.7rem;line-height:1.2;border-radius:.2rem}.btn.btn-xs .caret{font-size:16px;line-height:13px}.btn:focus,.btn.focus,.btn:active:focus,.btn.focus:active,.btn.active:focus,.btn.active.focus{text-decoration:none}.btn.group-move{cursor:move}.btn-secondary{color:#343a40;background-color:#fefefe;border-color:#ced4da}.btn-secondary:hover,.btn-secondary:focus{color:#343a40;background-color:#f8f9fa}.card{background-color:#f8f8f8}.card.card-light{background-color:#f8f8f8}.card.card-dark{background-color:#0d1321}.card.card-dark>*,.card.card-dark a:not(.dropdown-item),.card.card-dark .module-dropdown>a{color:#fefefe}.card.card-dark .list-group-item{background:0}.custom-select.custom-select-color-state.custom-select-success{color:#fefefe;background-color:#438243}.custom-select.custom-select-color-state.custom-select-success option{color:#495057;background-color:#fefefe}.custom-select.custom-select-color-state.custom-select-danger{color:#fefefe;background-color:#d9534f}.custom-select.custom-select-color-state.custom-select-danger option{color:#495057;background-color:#fefefe}.accordion .card-header{display:block;font-size:.9286rem;font-weight:bold;line-height:1.2}.accordion .list-group-item{color:#006898}.dropdown-menu{padding:.2rem 0;margin-top:.5rem;background-color:#fefefe;border-color:#ccc}.dropdown-menu::after{position:absolute;top:-1.5rem;left:.9rem;font-family:FontAwesome;font-size:1.6rem;color:#fefefe;text-shadow:0 -1px 0 rgba(0,0,0,0.2);content:"\f0d8"}.dropdown-item{padding:3px .75rem}.dropdown-menu-right::after{right:.9rem;left:auto}.list-group-item{background-color:#fefefe}.list-unstyled .list-unstyled{padding-left:20px}.jviewport-height10{height:10vh}.jviewport-height20{height:20vh}.jviewport-height30{height:30vh}.jviewport-height40{height:40vh}.jviewport-height50{height:50vh}.jviewport-height60{height:60vh}.jviewport-height70{height:70vh}.jviewport-height80{height:80vh}.jviewport-height90{height:90vh}.jviewport-height100{height:100vh}[class*=jviewport-height] iframe{height:100%}.modal-dialog.jviewport-width10{width:10vw;max-width:none}.modal-dialog.jviewport-width20{width:20vw;max-width:none}.modal-dialog.jviewport-width30{width:30vw;max-width:none}.modal-dialog.jviewport-width40{width:40vw;max-width:none}.modal-dialog.jviewport-width50{width:50vw;max-width:none}.modal-dialog.jviewport-width60{width:60vw;max-width:none}.modal-dialog.jviewport-width70{width:70vw;max-width:none}.modal-dialog.jviewport-width80{width:80vw;max-width:none}.modal-dialog.jviewport-width90{width:90vw;max-width:none}.modal-dialog.jviewport-width100{width:100vw;max-width:none}.nav.nav-tabs{padding:0;margin:0;background-color:#f5f5f5;border:1px solid #ccc;border-bottom:0;border-radius:.25rem .25rem 0 0;-webkit-box-shadow:0 1px #fff inset,0 2px 3px -3px rgba(0,0,0,0.15),0 -4px 0 rgba(0,0,0,0.05) inset,0 0 3px rgba(0,0,0,0.04);box-shadow:0 1px #fff inset,0 2px 3px -3px rgba(0,0,0,0.15),0 -4px 0 rgba(0,0,0,0.05) inset,0 0 3px rgba(0,0,0,0.04)}.nav.nav-tabs .nav-item{margin-bottom:0;margin-left:0}.nav.nav-tabs .nav-item:first-of-type .nav-link.active{border-radius:.25rem 0 0;-webkit-box-shadow:-1px 0 1px -1px rgba(0,0,0,0.06),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02);box-shadow:-1px 0 1px -1px rgba(0,0,0,0.06),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02)}.nav.nav-tabs .nav-item:last-of-type .nav-link{-webkit-box-shadow:-1px 0 0 rgba(0,0,0,0.05),1px 0 0 rgba(0,0,0,0.05);box-shadow:-1px 0 0 rgba(0,0,0,0.05),1px 0 0 rgba(0,0,0,0.05)}.nav.nav-tabs .nav-item:last-of-type .nav-link.active{-webkit-box-shadow:inset 2px 0 1px -1px rgba(0,0,0,0.08),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02);box-shadow:inset 2px 0 1px -1px rgba(0,0,0,0.08),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02)}.nav.nav-tabs .nav-link{position:relative;padding:.75em 1em;color:#0d1321;border:0;border-top-left-radius:0;border-top-right-radius:0;-webkit-box-shadow:-1px 0 0 rgba(0,0,0,0.05);box-shadow:-1px 0 0 rgba(0,0,0,0.05)}.nav.nav-tabs .nav-link.active{background-color:rgba(0,0,0,0.03);background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,0.05)));background-image:linear-gradient(to bottom,transparent,rgba(0,0,0,0.05) 100%);border-right:0;border-left:0;border-top-left-radius:0;border-top-right-radius:0;-webkit-box-shadow:inset 2px 0 1px -1px rgba(0,0,0,0.08),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02);box-shadow:inset 2px 0 1px -1px rgba(0,0,0,0.08),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02)}.nav.nav-tabs .nav-link.active::after{position:absolute;right:0;bottom:-1px;left:0;height:5px;content:"";background-color:#006898;opacity:.8}.nav-tabs+.tab-content{padding:15px;background:#fefefe;border:1px solid;border-color:#ccc;border-radius:0 0 .25rem .25rem;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.04);box-shadow:0 0 3px rgba(0,0,0,0.04)}.pagination{margin:1rem}.table thead th{white-space:nowrap;border-bottom-width:1px}.table th,.table td{padding:8px;vertical-align:middle}.table th label,.table td label{margin-bottom:0}.chzn-container.chzn-container-single .chzn-single{display:inline-block;max-width:100%;height:calc(calc(2.25rem + 2px) - 2px);padding:.375rem 1.75rem .375rem .75rem;padding-right:.75rem \9;line-height:1.5;color:#495057;vertical-align:middle;background:#fefefe url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-image:none \9;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-box-shadow:none;box-shadow:none;-moz-appearance:none;-webkit-appearance:none}.chzn-container.chzn-container-single .chzn-single abbr{top:10px}.chzn-container.chzn-container-single .chzn-single:focus{border-color:#19b6ff;outline:0}.chzn-container.chzn-container-single .chzn-single:disabled{color:#868e96;cursor:not-allowed;background-color:#e9ecef}.chzn-container.chzn-container-single .chzn-single div b{background:0}.chzn-container.chzn-container-single .chzn-drop{background:#fefefe;border:1px solid #ced4da}.chzn-container.chzn-container-single.chzn-container-active .chzn-single{border-bottom-right-radius:0;border-bottom-left-radius:0}.chzn-container-single{width:auto !important}.card .chzn-container.chzn-container-single{width:100% !important}.card .chzn-container.chzn-container-single .chzn-single{width:100% !important}.gu-mirror{position:fixed !important;z-index:9999 !important;margin:0 !important;cursor:move;background-color:#90ee90;opacity:.8}.gu-mirror.table{display:table}.gu-mirror.table td{display:table-cell}.js-draggable .sortable-handler{cursor:move}.minicolors-theme-bootstrap .minicolors-input{width:120px}.minicolors-theme-bootstrap .rgb{width:175px}.minicolors-theme-bootstrap .rgba{width:220px}.editor .toggle-editor{margin-top:1rem}.editor .mce-tinymce{border:1px solid #ccc;border-radius:.25rem}.editor .mce-btn,.editor .mce-panel{background:#f8f8f8}.com_config .content{background-color:transparent}.com_config [class^='col-']>fieldset{margin-bottom:2rem}.com_cpanel .content{margin-top:0}.com_cpanel .card{-webkit-box-shadow:0 0 3px rgba(0,0,0,0.04);box-shadow:0 0 3px rgba(0,0,0,0.04)}.com_cpanel .card p:first-of-type{margin-top:1rem}.com_cpanel .card p:last-child{margin-bottom:0}.com_cpanel .card .list-group{margin-top:0;margin-right:-1.25rem;margin-bottom:-1.25rem;margin-left:-1.25rem}.com_cpanel .card .list-group>li{padding:.6rem 1.25rem;overflow:hidden}.com_cpanel .card .list-group>.published{padding-left:.9rem;border-left:5px solid #438243}.com_cpanel .card .list-group>.unpublished{padding-left:.9rem;border-left:5px solid #d9534f}.com_cpanel .card .list-group:first-of-type{border-top:0}.com_cpanel .card .list-group-item:first-child{border-top:0;border-top-left-radius:0;border-top-right-radius:0}.com_cpanel .card .list-group-item:last-child{border-bottom:0;border-top-left-radius:0;border-top-right-radius:0}.com_cpanel .card-title{position:relative;padding:.9em 1.25rem .75rem;margin-top:-1.25rem;margin-right:-1.25rem;margin-bottom:0;margin-left:-1.25rem;font-size:.9286rem;color:#1c3d5c;background-color:#f5f5f5;border-bottom:1px solid rgba(0,0,0,0.125);border-radius:.25rem .25rem 0 0;-webkit-box-shadow:0 1px #fefefe inset,0 2px 3px -3px rgba(0,0,0,0.15);box-shadow:0 1px #fefefe inset,0 2px 3px -3px rgba(0,0,0,0.15)}.com_cpanel .module-actions{position:absolute;top:0;right:0;z-index:2}.com_cpanel .module-actions>a{display:inline-block;width:2.6em;height:2.6em;line-height:2.6em;color:#495057;text-align:center;background-color:#f5f5f5;border-left:1px solid #ccc;border-top-right-radius:.25rem;-webkit-box-shadow:1px 0 #fefefe inset;box-shadow:1px 0 #fefefe inset}.com_cpanel .module-actions>a:hover,.com_cpanel .module-actions>a:focus{background-color:#f0f0f0;-webkit-box-shadow:none;box-shadow:none}.admin.com_modules .js-stools-container-bar .btn-toolbar{float:left}.menu-assignment{position:relative}.menu-assignment .menu-links{padding-left:0;margin-top:15px;margin-left:0;-webkit-column-count:3;column-count:3;-webkit-column-gap:15px;column-gap:15px}.menu-assignment .menu-links>li{display:inline-block;width:100%;margin-bottom:15px;vertical-align:top;list-style:none;column-break-inside:avoid;-webkit-backface-visibility:hidden;backface-visibility:hidden}.menu-assignment .menu-links-block{padding:15px;background-color:#fafafa;border:1px solid #ddd;border-radius:3px}.menu-assignment label{display:block}.menu-assignment label input{position:relative;top:2px}@media(max-width:767px){.menu-assignment .menu-links{-webkit-column-count:auto;column-count:auto}}.com_users.view-debuggroup thead th,.com_users.view-debuguser thead th{white-space:normal}.com_users.view-debuggroup .legend,.com_users.view-debuguser .legend{margin:1rem 1rem 0}.container-main,.system-debug{padding-bottom:50px}.container-main{position:relative;min-height:calc(100vh - 50px);padding-top:15px;background-color:#f2f2f2}@media(max-width:991.98px){.container-main{padding-left:50px;margin-top:47px}}.list-view-main .container-main{background-color:#f2f2f2}.content{margin-top:45px;border-radius:.25rem}.content>.row{margin-right:0;margin-left:0}.j-main-container{background-color:#fefefe;border:1px solid rgba(0,0,0,0.17);border-radius:.25rem;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.075);box-shadow:0 0 3px rgba(0,0,0,0.075)}.row-selected{background-color:#d9edf7}.chzn-container-single{width:auto !important}.item-associations{padding:0}.item-associations li{display:inline-block;list-style:none}dl,ol,ul{padding-right:0}th{text-align:right}.close{float:left}.notify-alerts .close{right:auto;left:-.5rem}.control-group .control-label{float:right;text-align:right}.dropdown-menu-right{right:auto;left:0}.dropdown-menu-right::after{right:auto;left:.9rem}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-left-radius:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:.25rem;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:.25rem}.switcher-labels{margin-right:10px;margin-left:0}.switcher-labels span{right:0;left:auto}.wrapper{padding-right:250px;padding-left:0}.wrapper.closed{padding-right:50px}.wrapper.closed .main-brand img{position:relative;left:151px}.sidebar-wrapper{right:0;left:auto}.notify-alerts{margin-right:125px;margin-left:0}.closed .notify-alerts{margin-right:0}.header .page-title [class^="icon-"]{margin-right:0;margin-left:15px}.menu-collapse{right:0;left:auto;margin-right:-7.5px;margin-left:0}.menu-toggle-icon::before{content:"\f054"}.closed .menu-toggle-icon::before{content:"\f053"}.quick-icons a::before{right:auto;left:-40px}.quick-icons a [class*=" icon-"],.quick-icons a [class^="icon-"]{border-right:0;border-left:1px solid rgba(255,255,255,0.15)}.main-nav .fa{margin:0 12px 0 8px}.main-nav .open>a+ul{right:50px;left:auto}.main-nav .collapse-level-2{right:100%;left:auto;border-radius:.25rem 0 0 .25rem}.main-nav .close{float:left}.main-nav .parent .collapse-arrow::after{right:auto;left:15px;content:"\f0d9"}.child-open>.open>a::before{right:0;left:auto}.status{margin-right:250px;margin-left:0}.closed .status{margin-right:50px;margin-left:0}.sidebar-wrapper[data-hidden="1"] ~ .status{margin-right:0}.subhead .btn-group-sm>.btn [class^="icon-"],.subhead .btn-group-sm>.btn [class*=" icon-"],.subhead .btn-group-sm>.btn [class^="fa-"],.subhead .btn-group-sm>.btn [class*=" fa-"]{margin:0 -10px 0 6px;border-right:0;border-left:1px solid #ccc;border-radius:0 3px 3px 0}.subhead .btn-toolbar>*:first-of-type{margin-right:0}.subhead .btn-group-sm>.btn [class*=" fa-"],.subhead .btn-group-sm>.btn [class*=" icon-"],.subhead .btn-group-sm>.btn [class^="fa-"],.subhead .btn-group-sm>.btn [class^="icon-"],.subhead .btn-sm [class*=" fa-"],.subhead .btn-sm [class*=" icon-"],.subhead .btn-sm [class^="fa-"],.subhead .btn-sm [class^="icon-"]{margin:0 -10px 0 6px;border-right:0;border-left:1px solid #ccc;border-radius:0 3px 3px 0}.com_cpanel .card .list-group>.published{border-right:5px solid #438243;border-left:0}.com_cpanel .card .list-group>.unpublished{border-right:5px solid #d9534f;border-left:0}.com_cpanel .card .module-dropdown{right:auto;left:0}.com_cpanel .card .module-dropdown>a{border-right:1px solid #ccc;border-left:0;border-top-left-radius:.25rem;border-top-right-radius:0} \ No newline at end of file diff --git a/administrator/templates/atum/css/template.css b/administrator/templates/atum/css/template.css index 56db8e72cab56..467f6617ffe5f 100644 --- a/administrator/templates/atum/css/template.css +++ b/administrator/templates/atum/css/template.css @@ -1073,7 +1073,7 @@ iframe { margin-right: .25rem; } .subhead .btn-group .btn { margin-left: 0; } - .subhead button:first-of-type { + .subhead > *:first-child { margin: 0; } .subhead .btn-group-sm > .btn, .subhead .btn-sm { @@ -1083,9 +1083,6 @@ iframe { padding: 0 10px; font-size: .875rem; line-height: 1.8rem; - color: #212529; - background-color: #fefefe; - border-color: #ccc; -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); } .subhead .btn-sm [class^="icon-"], @@ -1105,60 +1102,85 @@ iframe { .subhead .btn-sm:hover { background-color: #e9ecef; border-color: #ccc; } - .subhead .btn-primary [class^="icon-"], - .subhead .btn-primary [class*=" icon-"], - .subhead .btn-primary [class^="fa-"], - .subhead .btn-primary [class*=" fa-"], - .subhead .btn-outline-primary [class^="icon-"], - .subhead .btn-outline-primary [class*=" icon-"], - .subhead .btn-outline-primary [class^="fa-"], - .subhead .btn-outline-primary [class*=" fa-"] { - color: #006898; } - .subhead .btn-success [class^="icon-"], - .subhead .btn-success [class*=" icon-"], - .subhead .btn-success [class^="fa-"], - .subhead .btn-success [class*=" fa-"], - .subhead .btn-outline-success [class^="icon-"], - .subhead .btn-outline-success [class*=" icon-"], - .subhead .btn-outline-success [class^="fa-"], - .subhead .btn-outline-success [class*=" fa-"] { - color: #438243; } - .subhead .btn-info [class^="icon-"], - .subhead .btn-info [class*=" icon-"], - .subhead .btn-info [class^="fa-"], - .subhead .btn-info [class*=" fa-"], - .subhead .btn-outline-info [class^="icon-"], - .subhead .btn-outline-info [class*=" icon-"], - .subhead .btn-outline-info [class^="fa-"], - .subhead .btn-outline-info [class*=" fa-"] { - color: #17a2b8; } - .subhead .btn-danger [class^="icon-"], - .subhead .btn-danger [class*=" icon-"], - .subhead .btn-danger [class^="fa-"], - .subhead .btn-danger [class*=" fa-"], - .subhead .btn-outline-danger [class^="icon-"], - .subhead .btn-outline-danger [class*=" icon-"], - .subhead .btn-outline-danger [class^="fa-"], - .subhead .btn-outline-danger [class*=" fa-"] { - color: #d9534f; } - .subhead .btn-warning [class^="icon-"], - .subhead .btn-warning [class*=" icon-"], - .subhead .btn-warning [class^="fa-"], - .subhead .btn-warning [class*=" fa-"], - .subhead .btn-outline-warning [class^="icon-"], - .subhead .btn-outline-warning [class*=" icon-"], - .subhead .btn-outline-warning [class^="fa-"], - .subhead .btn-outline-warning [class*=" fa-"] { - color: #f0ad4e; } - .subhead .btn-success:not(.dropdown-toggle) { - width: 140px; + .subhead .btn-outline-primary { + color: #212529; + background-color: #fefefe; + border-color: #ccc; } + .subhead .btn-outline-primary [class^="icon-"], + .subhead .btn-outline-primary [class*=" icon-"], + .subhead .btn-outline-primary [class^="fa-"], + .subhead .btn-outline-primary [class*=" fa-"] { + color: #006898; } + .subhead .btn-primary:not(.dropdown-toggle-split) { + color: #fefefe; + background-color: #006898; + border-color: rgba(0, 0, 0, 0.2); } + .subhead .btn-primary:not(.dropdown-toggle-split) [class^="icon-"], + .subhead .btn-primary:not(.dropdown-toggle-split) [class*=" icon-"], + .subhead .btn-primary:not(.dropdown-toggle-split) [class^="fa-"], + .subhead .btn-primary:not(.dropdown-toggle-split) [class*=" fa-"] { + width: 16px; + margin-right: 0; + margin-left: 0; + color: #fefefe; + background-color: transparent; + border-right: 0 none; + border-left: 0 none; } + .subhead .btn-primary:not(.dropdown-toggle-split):hover { + background-color: #004565; } + .subhead .btn-primary.dropdown-toggle-split { + background: #003e5b; + border-color: #003e5b; } + .subhead .btn-primary.dropdown-toggle-split::after { + color: #fefefe; } + .subhead .btn-outline-secondary { + color: #212529; + background-color: #fefefe; + border-color: #ccc; } + .subhead .btn-outline-secondary [class^="icon-"], + .subhead .btn-outline-secondary [class*=" icon-"], + .subhead .btn-outline-secondary [class^="fa-"], + .subhead .btn-outline-secondary [class*=" fa-"] { + color: #868e96; } + .subhead .btn-secondary:not(.dropdown-toggle-split) { + color: #fefefe; + background-color: #868e96; + border-color: rgba(0, 0, 0, 0.2); } + .subhead .btn-secondary:not(.dropdown-toggle-split) [class^="icon-"], + .subhead .btn-secondary:not(.dropdown-toggle-split) [class*=" icon-"], + .subhead .btn-secondary:not(.dropdown-toggle-split) [class^="fa-"], + .subhead .btn-secondary:not(.dropdown-toggle-split) [class*=" fa-"] { + width: 16px; + margin-right: 0; + margin-left: 0; + color: #fefefe; + background-color: transparent; + border-right: 0 none; + border-left: 0 none; } + .subhead .btn-secondary:not(.dropdown-toggle-split):hover { + background-color: #6c757d; } + .subhead .btn-secondary.dropdown-toggle-split { + background: #686f77; + border-color: #686f77; } + .subhead .btn-secondary.dropdown-toggle-split::after { + color: #fefefe; } + .subhead .btn-outline-success { + color: #212529; + background-color: #fefefe; + border-color: #ccc; } + .subhead .btn-outline-success [class^="icon-"], + .subhead .btn-outline-success [class*=" icon-"], + .subhead .btn-outline-success [class^="fa-"], + .subhead .btn-outline-success [class*=" fa-"] { + color: #438243; } + .subhead .btn-success:not(.dropdown-toggle-split) { color: #fefefe; background-color: #438243; border-color: rgba(0, 0, 0, 0.2); } - .subhead .btn-success:not(.dropdown-toggle) [class^="icon-"], - .subhead .btn-success:not(.dropdown-toggle) [class*=" icon-"], - .subhead .btn-success:not(.dropdown-toggle) [class^="fa-"], - .subhead .btn-success:not(.dropdown-toggle) [class*=" fa-"] { + .subhead .btn-success:not(.dropdown-toggle-split) [class^="icon-"], + .subhead .btn-success:not(.dropdown-toggle-split) [class*=" icon-"], + .subhead .btn-success:not(.dropdown-toggle-split) [class^="fa-"], + .subhead .btn-success:not(.dropdown-toggle-split) [class*=" fa-"] { width: 16px; margin-right: 0; margin-left: 0; @@ -1166,13 +1188,170 @@ iframe { background-color: transparent; border-right: 0 none; border-left: 0 none; } - .subhead .btn-success:not(.dropdown-toggle):hover { + .subhead .btn-success:not(.dropdown-toggle-split):hover { background-color: #326032; } - .subhead .btn-success.dropdown-toggle { + .subhead .btn-success.dropdown-toggle-split { background: #2e5a2e; border-color: #2e5a2e; } - .subhead .btn-success.dropdown-toggle::after { + .subhead .btn-success.dropdown-toggle-split::after { + color: #fefefe; } + .subhead .btn-outline-info { + color: #212529; + background-color: #fefefe; + border-color: #ccc; } + .subhead .btn-outline-info [class^="icon-"], + .subhead .btn-outline-info [class*=" icon-"], + .subhead .btn-outline-info [class^="fa-"], + .subhead .btn-outline-info [class*=" fa-"] { + color: #17a2b8; } + .subhead .btn-info:not(.dropdown-toggle-split) { + color: #fefefe; + background-color: #17a2b8; + border-color: rgba(0, 0, 0, 0.2); } + .subhead .btn-info:not(.dropdown-toggle-split) [class^="icon-"], + .subhead .btn-info:not(.dropdown-toggle-split) [class*=" icon-"], + .subhead .btn-info:not(.dropdown-toggle-split) [class^="fa-"], + .subhead .btn-info:not(.dropdown-toggle-split) [class*=" fa-"] { + width: 16px; + margin-right: 0; + margin-left: 0; + color: #fefefe; + background-color: transparent; + border-right: 0 none; + border-left: 0 none; } + .subhead .btn-info:not(.dropdown-toggle-split):hover { + background-color: #117a8b; } + .subhead .btn-info.dropdown-toggle-split { + background: #107282; + border-color: #107282; } + .subhead .btn-info.dropdown-toggle-split::after { + color: #fefefe; } + .subhead .btn-outline-warning { + color: #212529; + background-color: #fefefe; + border-color: #ccc; } + .subhead .btn-outline-warning [class^="icon-"], + .subhead .btn-outline-warning [class*=" icon-"], + .subhead .btn-outline-warning [class^="fa-"], + .subhead .btn-outline-warning [class*=" fa-"] { + color: #f0ad4e; } + .subhead .btn-warning:not(.dropdown-toggle-split) { + color: #fefefe; + background-color: #f0ad4e; + border-color: rgba(0, 0, 0, 0.2); } + .subhead .btn-warning:not(.dropdown-toggle-split) [class^="icon-"], + .subhead .btn-warning:not(.dropdown-toggle-split) [class*=" icon-"], + .subhead .btn-warning:not(.dropdown-toggle-split) [class^="fa-"], + .subhead .btn-warning:not(.dropdown-toggle-split) [class*=" fa-"] { + width: 16px; + margin-right: 0; + margin-left: 0; + color: #fefefe; + background-color: transparent; + border-right: 0 none; + border-left: 0 none; } + .subhead .btn-warning:not(.dropdown-toggle-split):hover { + background-color: #ec971f; } + .subhead .btn-warning.dropdown-toggle-split { + background: #eb9316; + border-color: #eb9316; } + .subhead .btn-warning.dropdown-toggle-split::after { + color: #fefefe; } + .subhead .btn-outline-danger { + color: #212529; + background-color: #fefefe; + border-color: #ccc; } + .subhead .btn-outline-danger [class^="icon-"], + .subhead .btn-outline-danger [class*=" icon-"], + .subhead .btn-outline-danger [class^="fa-"], + .subhead .btn-outline-danger [class*=" fa-"] { + color: #d9534f; } + .subhead .btn-danger:not(.dropdown-toggle-split) { + color: #fefefe; + background-color: #d9534f; + border-color: rgba(0, 0, 0, 0.2); } + .subhead .btn-danger:not(.dropdown-toggle-split) [class^="icon-"], + .subhead .btn-danger:not(.dropdown-toggle-split) [class*=" icon-"], + .subhead .btn-danger:not(.dropdown-toggle-split) [class^="fa-"], + .subhead .btn-danger:not(.dropdown-toggle-split) [class*=" fa-"] { + width: 16px; + margin-right: 0; + margin-left: 0; + color: #fefefe; + background-color: transparent; + border-right: 0 none; + border-left: 0 none; } + .subhead .btn-danger:not(.dropdown-toggle-split):hover { + background-color: #c9302c; } + .subhead .btn-danger.dropdown-toggle-split { + background: #c12e2a; + border-color: #c12e2a; } + .subhead .btn-danger.dropdown-toggle-split::after { + color: #fefefe; } + .subhead .btn-outline-light { + color: #212529; + background-color: #fefefe; + border-color: #ccc; } + .subhead .btn-outline-light [class^="icon-"], + .subhead .btn-outline-light [class*=" icon-"], + .subhead .btn-outline-light [class^="fa-"], + .subhead .btn-outline-light [class*=" fa-"] { + color: #f8f9fa; } + .subhead .btn-light:not(.dropdown-toggle-split) { + color: #fefefe; + background-color: #f8f9fa; + border-color: rgba(0, 0, 0, 0.2); } + .subhead .btn-light:not(.dropdown-toggle-split) [class^="icon-"], + .subhead .btn-light:not(.dropdown-toggle-split) [class*=" icon-"], + .subhead .btn-light:not(.dropdown-toggle-split) [class^="fa-"], + .subhead .btn-light:not(.dropdown-toggle-split) [class*=" fa-"] { + width: 16px; + margin-right: 0; + margin-left: 0; + color: #fefefe; + background-color: transparent; + border-right: 0 none; + border-left: 0 none; } + .subhead .btn-light:not(.dropdown-toggle-split):hover { + background-color: #dae0e5; } + .subhead .btn-light.dropdown-toggle-split { + background: #d4dae1; + border-color: #d4dae1; } + .subhead .btn-light.dropdown-toggle-split::after { + color: #fefefe; } + .subhead .btn-outline-dark { + color: #212529; + background-color: #fefefe; + border-color: #ccc; } + .subhead .btn-outline-dark [class^="icon-"], + .subhead .btn-outline-dark [class*=" icon-"], + .subhead .btn-outline-dark [class^="fa-"], + .subhead .btn-outline-dark [class*=" fa-"] { + color: #343a40; } + .subhead .btn-dark:not(.dropdown-toggle-split) { + color: #fefefe; + background-color: #343a40; + border-color: rgba(0, 0, 0, 0.2); } + .subhead .btn-dark:not(.dropdown-toggle-split) [class^="icon-"], + .subhead .btn-dark:not(.dropdown-toggle-split) [class*=" icon-"], + .subhead .btn-dark:not(.dropdown-toggle-split) [class^="fa-"], + .subhead .btn-dark:not(.dropdown-toggle-split) [class*=" fa-"] { + width: 16px; + margin-right: 0; + margin-left: 0; + color: #fefefe; + background-color: transparent; + border-right: 0 none; + border-left: 0 none; } + .subhead .btn-dark:not(.dropdown-toggle-split):hover { + background-color: #1d2124; } + .subhead .btn-dark.dropdown-toggle-split { + background: #191b1e; + border-color: #191b1e; } + .subhead .btn-dark.dropdown-toggle-split::after { color: #fefefe; } + .subhead .button-new, .subhead .button-apply, .subhead .button-wide { + width: 140px; } .subhead > *:first-child:not(.float-sm-right) { margin-left: 0; } .subhead .float-sm-right { diff --git a/administrator/templates/atum/css/template.min.css b/administrator/templates/atum/css/template.min.css index 2309ff7c323a8..166c8abca5846 100644 --- a/administrator/templates/atum/css/template.min.css +++ b/administrator/templates/atum/css/template.min.css @@ -1 +1 @@ -#flying-focus{position:absolute;margin:0;background:transparent;-webkit-transition-property:left,top,width,height;transition-property:left,top,width,height;-webkit-transition-timing-function:cubic-bezier(0,1,0,1);transition-timing-function:cubic-bezier(0,1,0,1);visibility:hidden;pointer-events:none;-webkit-box-shadow:0 0 2px 3px #78aeda,0 0 2px #78aeda inset;box-shadow:0 0 2px 3px #78aeda,0 0 2px #78aeda inset;border-radius:2px}#flying-focus.flying-focus_visible{visibility:visible;z-index:9999}@media screen and (-webkit-min-device-pixel-ratio:0){#flying-focus{-webkit-box-shadow:none;box-shadow:none;outline:5px auto -webkit-focus-ring-color;outline-offset:-3px}}.flying-focus_target{outline:none !important}.flying-focus_target::-moz-focus-inner{border:0 !important}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked ~ .custom-control-label::before{color:#fff;background-color:#006898}.custom-control-input:focus ~ .custom-control-label::before{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,104,152,0.25);box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,104,152,0.25)}.custom-control-input:active ~ .custom-control-label::before{color:#fff;background-color:#4cc6ff}.custom-control-input:disabled ~ .custom-control-label{color:#868e96}.custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.custom-control-label{margin-bottom:0}.custom-control-label::before{position:absolute;top:.25rem;left:0;display:block;width:1rem;height:1rem;pointer-events:none;content:"";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#dee2e6}.custom-control-label::after{position:absolute;top:.25rem;left:0;display:block;width:1rem;height:1rem;content:"";background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before{background-color:#006898}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{background-color:#006898}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,104,152,0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(0,104,152,0.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked ~ .custom-control-label::before{background-color:#006898}.custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,104,152,0.5)}.custom-select{display:inline-block;width:100%;height:calc(2.25rem + 2px);padding:.375rem 1.75rem .375rem .75rem;line-height:1.5;color:#495057;vertical-align:middle;background:#fefefe url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#19b6ff;outline:0;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.075),0 0 5px rgba(25,182,255,0.5);box-shadow:inset 0 1px 2px rgba(0,0,0,0.075),0 0 5px rgba(25,182,255,0.5)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#868e96;background-color:#e9ecef}.custom-select::-ms-expand{opacity:0}.custom-select-sm{height:calc(1.7rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-select-lg{height:calc(2.875rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:125%}.custom-file{position:relative;display:inline-block;width:100%;height:calc(2.25rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(2.25rem + 2px);margin:0;opacity:0}.custom-file-input:focus ~ .custom-file-control{border-color:#19b6ff;-webkit-box-shadow:0 0 0 .2rem rgba(0,104,152,0.25);box-shadow:0 0 0 .2rem rgba(0,104,152,0.25)}.custom-file-input:focus ~ .custom-file-control::before{border-color:#19b6ff}.custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(2.25rem + 2px);padding:.375rem .75rem;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(calc(2.25rem + 2px) - 1px * 2);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:1px solid #ced4da;border-radius:0 .25rem .25rem 0}.alert-message{background-color:#438243;border-color:#438243;border-left:10px solid #438243;color:#e9ecef}.alert-message hr{border-top-color:#3a713a}.alert-message .alert-link{color:#326032}html,body{height:100%;font-size:14px}body{padding:0;margin:0}h1,h2,h3,h4,h5,h6{font-weight:bold}h1{font-weight:normal}small,.small{font-size:.8rem}.j-main-container .alert{margin:10px}.notify-alerts{position:fixed;top:15px;left:50%;z-index:1031;margin-left:125px;-webkit-transition:all .5s ease;transition:all .5s ease;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.notify-alerts .alert{width:100%;min-width:280px;max-width:400px;margin-bottom:.5rem;opacity:0;-webkit-animation:fadeIn ease-in 1;animation:fadeIn ease-in 1;-webkit-animation-duration:.35s;animation-duration:.35s;-webkit-animation-delay:0s;animation-delay:0s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.notify-alerts .alert:first-of-type{-webkit-animation-delay:.3s;animation-delay:.3s}.notify-alerts.fullWidth{left:265px}.notify-alerts.fullWidth .alert{width:auto;min-width:none;max-width:none;margin-left:0}.notify-alerts .close{position:relative;right:-.5rem;padding:.5rem;line-height:1rem;color:#000;opacity:1}.closed .notify-alerts{margin-left:0}.closed+.notify-alerts.fullWidth{left:70px}.wrapper0 .notify-alerts{margin-left:0}@-webkit-keyframes fadeIn{from{opacity:0;-webkit-transform:translateY(-15px);transform:translateY(-15px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeIn{from{opacity:0;-webkit-transform:translateY(-15px);transform:translateY(-15px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.form-control{max-width:240px;background-color:#fefefe}.form-control.input-xlarge{max-width:350px}.form-control.input-xxlarge{max-width:550px}.form-control.input-full{max-width:100%}.control-group{margin-bottom:18px}.control-group>.form-check{display:inline-block}.control-group::after{display:table;clear:both;content:""}.control-group .control-label{float:left;width:220px;padding-top:5px;padding-right:5px;text-align:left}.control-group .controls{margin-left:220px}.form-no-margin .control-group .controls{margin-left:0}.form-no-margin .control-group .control-label{float:none}.custom-select{max-width:240px}.spacer hr{width:380px}td .form-control{display:inline-block;width:auto}legend{margin-bottom:1.1rem}.checkboxes{padding-top:5px}.checkboxes .checkbox input{position:static;margin-left:0}.form-check{padding-top:5px;margin-bottom:0}.modal label{width:100%}.invalid{color:#d9534f;border-color:#d9534f}.valid{border-color:#438243}.form-control-feedback{display:block}.header{position:relative;z-index:5;height:48px;background:#1c3d5c}.header::after{position:absolute;top:100%;width:100%;height:3px;content:"";background-color:#006898;background-image:-webkit-gradient(linear,left top,right top,from(#59afff),to(#59daff));background-image:linear-gradient(to right,#59afff 0,#59daff 100%)}.header .page-title{display:inline-block;margin:0 5px;font-size:1.3rem;font-weight:normal;line-height:48px;color:#fefefe}.header .page-title [class^="icon-"]{margin-right:15px;font-size:1.857rem 1.857rem;vertical-align:middle}.header .navbar-brand{padding:0;font-size:1.1rem;color:#fefefe}.header .navbar-brand:hover,.header .navbar-brand:focus{color:#efefef}@media(min-width:576px) and (max-width:767.98px){.header .navbar-brand{margin-right:0;margin-left:10px}}.header .navbar-brand span{margin-left:.4rem}.header .nav-item{background-color:#2e5a84;border-left:1px solid #1c3d5c}.header .nav-link{position:relative;padding:0;line-height:48px}.header .nav-link .fa{width:50px;font-size:1.2rem;color:#fefefe;vertical-align:middle;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.header .nav-link .fa-external-link{position:relative;left:2px}.header .nav-link .badge{position:absolute;top:4px;right:2px}.header .nav-link.dropdown-toggle::after{display:none}.header .nav-link:hover .fa{font-size:1.3rem;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.header .dropdown-notifications{min-width:280px;padding:0;border:0}.header .dropdown-notifications h2{font-size:.9286rem}.header .dropdown-menu::after{left:.65rem}.header .dropdown-menu-right::after{right:.65rem;left:auto}.header .header-profile .dropdown-menu{padding-top:0}.header .header-profile .dropdown-menu::after{color:#f2f2f2}.header .header-profile-user{padding-top:.5rem;padding-bottom:.5rem;margin-bottom:.3rem;background-color:#f2f2f2;border-bottom:1px solid rgba(0,0,0,0.1);border-radius:.25rem .25rem 0 0}.header .list-group-item-text:last-child{margin-bottom:0}.header .joomla-version{margin-right:.9rem;margin-bottom:0;font-size:.9286rem;color:#fefefe}@media(max-width:991.98px){.header{position:fixed;top:0;width:100%}.header+.container-title{margin-top:48px}}.menu-collapse{font-size:2rem;text-align:center}.menu-collapse a{display:block;width:48px;line-height:48px;color:#fff;background-color:#2e5a84}.icon-back::before{content:"\e008"}.icon-crop::before{content:"\f125"}.icon-white{color:#fefefe}.icon-publish{color:#438243}.icon-unpublish{color:#d9534f}.tbody-icon{padding:0 3px;text-align:center;background-color:transparent;border:0}.tbody-icon span{width:26px;height:26px;font-size:1rem;line-height:22px;color:#ccc;border:2px solid #ccc;border-radius:50%}.tbody-icon .icon-publish{color:#438243;border-color:#438243}.tbody-icon .icon-featured{color:#f0ad4e;border-color:#f0ad4e}.tbody-icon .icon-unpublish{color:#d9534f;border-color:#d9534f}.tbody-icon .icon-archive{color:#495057;border-color:#495057}.tbody-icon .icon-checkedout{width:auto;height:auto;font-size:1.2rem;line-height:1rem;color:#495057;border:0}iframe{border:0}.modal iframe{width:100%}.view-login{background:#1c3d5c}.view-login .login-initial{display:none}.view-login .login{width:320px}@media(max-width:767.98px){.view-login .login{padding:0 15px}}.view-login .login-logo{margin:0 0 2rem;text-align:center}@media(max-width:767.98px){.view-login .login-logo{margin:1rem 0}}.view-login h2{font-size:1.9rem;font-weight:300}.view-login .card-img-top{max-width:100%}.view-login .nav p,.view-login .nav a{margin-bottom:0;color:#fff}@media(max-width:575.98px){.view-login .btn{padding:8px 10px;font-size:14px}}.modal .btn{margin-right:.5rem}.modal .btn-primary:not([href]),.modal .btn-success:not([href]){color:#fff}.modal .btn-primary:not([href]):hover,.modal .btn-success:not([href]):hover{color:#fff}.modal-header{padding:0 15px}.modal-header .close{width:46px;height:46px;margin-top:0;margin-right:-15px;font-size:2rem;line-height:1rem;border-left:1px solid #ccc}.modal-body{padding:0;overflow-y:auto}.modal-title{font-weight:normal;line-height:46px}.contentpane{padding:15px}.quick-icons a{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:120px;height:120px;margin-right:15px;margin-bottom:15px;color:#fff;text-align:center;background:#1c3d5c;border-radius:3px;-webkit-box-shadow:0 0 5px 0 #1c3d5c;box-shadow:0 0 5px 0 #1c3d5c;-webkit-transition:background .25s ease;transition:background .25s ease}.quick-icons a>div{-webkit-box-flex:1;-ms-flex:1 0 0;flex:1 0 0}@media(max-width:575.98px){.quick-icons a.pulse{-webkit-box-shadow:0 0 0 0 rgba(28,61,92,0.7);box-shadow:0 0 0 0 rgba(28,61,92,0.7);-webkit-animation:pulse 1.25s infinite cubic-bezier(0.66,0,0,1);animation:pulse 1.25s infinite cubic-bezier(0.66,0,0,1)}}@media(max-width:575.98px){.quick-icons a.pulse.danger,.quick-icons a.pulse.success{-webkit-animation:none;animation:none}}.quick-icons a:hover,.quick-icons a:focus{text-decoration:none;background:#2e5a84}.quick-icons a .j-links-link{display:block;width:100%;padding:0 1rem;font-size:1rem;line-height:1.1}.quick-icons a .fa{margin:5px auto;font-size:2.5rem;font-weight:normal;line-height:3rem}.quick-icons a.danger{background-color:#df706c;-webkit-box-shadow:0 0 5px 0 #df706c;box-shadow:0 0 5px 0 #df706c}.quick-icons a.success{background-color:#4f9a4f;-webkit-box-shadow:0 0 5px 0 #4f9a4f;box-shadow:0 0 5px 0 #4f9a4f}.quick-icons [id*="plg_quickicon"] a,.quick-icons [id*="plg_quickicon"] a::before{-webkit-transition-delay:.4s;transition-delay:.4s}@-webkit-keyframes pulse{to{-webkit-box-shadow:0 0 0 15px rgba(232,76,61,0);box-shadow:0 0 0 15px rgba(232,76,61,0)}}@keyframes pulse{to{-webkit-box-shadow:0 0 0 15px rgba(232,76,61,0);box-shadow:0 0 0 15px rgba(232,76,61,0)}}.js-stools{position:relative;width:100%;padding:8px 10px 0;background-color:#f5f5f5;border-bottom:1px solid rgba(0,0,0,0.125);border-radius:.25rem .25rem 0 0;-webkit-box-shadow:0 1px #fff inset,0 2px 3px -3px rgba(0,0,0,0.15);box-shadow:0 1px #fff inset,0 2px 3px -3px rgba(0,0,0,0.15)}.js-stools .btn-wrapper{display:inline-block;margin-right:5px}.js-stools .js-stools-container-filters{position:absolute;right:-1px;z-index:1;display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:10px;margin:0;background-color:#fff;border:1px solid #ccc;border-radius:0 0 0 .25rem;-webkit-box-shadow:-1px 1px 4px rgba(0,0,0,0.05);box-shadow:-1px 1px 4px rgba(0,0,0,0.05)}.js-stools .js-stools-container-filters .js-stools-field-list:last-of-type .custom-select{min-width:auto}.js-stools .js-stools-container-filters .custom-select{width:100%}.js-stools .js-stools-container-filters.js-filters-show{display:-webkit-box;display:-ms-flexbox;display:flex}.js-stools .js-stools-container-filters .chzn-container-single{display:block}.js-stools .js-stools-container-filters .chzn-container-single .chzn-single{display:block;font-size:1rem}.js-stools .js-stools-field-filter .custom-select.active{color:#fff;background:#fefefe url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23fff' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat scroll right .75rem center/8px 10px;background-color:#006898}.js-stools .js-stools-field-filter .custom-select option{color:#495057;background-color:#fff}.js-stools .js-stools-container-selector{float:left}.js-stools .js-stools-container-bar{float:right}.js-stools .js-stools-container-bar .btn-toolbar{float:left;margin-bottom:8px}.js-stools .js-stools-container-bar .btn-toolbar .btn-group:first-child{margin-left:0}.js-stools .js-stools-container-bar .input-append{margin-bottom:0}.js-stools .js-stools-container-list{float:left;text-align:left}.js-stools .js-stools-container-list .js-stools-field-list:last-child{margin-right:0}.js-stools-column-order [class*=" icon-"],.js-stools-column-order [class^="icon-"]{text-align:center}.wrapper{padding-left:250px;-webkit-transition:all .3s ease;transition:all .3s ease}@media(max-width:991.98px){.wrapper{padding-left:0}}.sidebar-wrapper{position:fixed;left:0;z-index:10;width:250px;height:100%;margin-left:0;background-color:#1c3d5c;-webkit-box-shadow:0 3px 10px rgba(0,0,0,0.5);box-shadow:0 3px 10px rgba(0,0,0,0.5);-webkit-transition:all .3s ease;transition:all .3s ease}.sidebar-wrapper .sidebar-brand{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;overflow:hidden}@media(max-width:991.98px){.sidebar-wrapper{margin-top:3px}.sidebar-wrapper .main-nav{max-height:calc(100vh - 147px)}}.sidebar-wrapper .main-brand{margin-left:5px;font-size:30px;line-height:96px;text-align:center;text-indent:0;border:0;-webkit-box-shadow:none;box-shadow:none}.sidebar-wrapper .main-brand a{display:block;margin-right:5px;overflow:hidden;border:0;-webkit-box-shadow:none;box-shadow:none}.sidebar-wrapper .main-brand a:hover{background:0}.sidebar-wrapper .main-brand img{width:190px}.menu-toggle-icon{width:48px;font-size:1.7rem}.main-nav{position:relative;z-index:1;width:250px;height:calc(100vh - 96px);list-style:none;background-color:#1c3d5c;opacity:1}.main-nav::after{position:absolute;top:0;right:0;bottom:0;width:0;content:"";background-color:#0f2131;-webkit-transition:all .3s ease;transition:all .3s ease}.main-nav>li{background-color:#1c3d5c;border-bottom:1px solid rgba(0,0,0,0.15)}.main-nav>li:first-of-type{border-top:1px solid rgba(0,0,0,0.15)}.main-nav li{max-height:40px;line-height:40px}.main-nav li a{position:relative;display:block;max-height:40px;overflow:hidden;color:#fff;text-decoration:none;cursor:pointer;opacity:1}.main-nav li a:hover{color:#fff;text-decoration:none;background-color:rgba(0,0,0,0.2)}.main-nav li a:active,.main-nav li a:focus{text-decoration:none;outline:0;-webkit-box-shadow:inset 0 0 0 1px #78aeda;box-shadow:inset 0 0 0 1px #78aeda}.main-nav li.menuitem-group a:hover{cursor:text;background:0}.main-nav li ul{position:absolute;top:0;left:50px;z-index:-3;display:block;width:200px;height:100%;padding:0;opacity:0;-webkit-transition:left .2s ease,opacity .2s ease;transition:left .2s ease,opacity .2s ease;-webkit-transition-delay:0;transition-delay:0}.main-nav li ul ul{display:none;opacity:1}.main-nav li ul li{text-indent:15px}.main-nav .close{padding:2px 10px;font-size:1.7rem;color:rgba(255,255,255,0.8);text-indent:0;text-shadow:none}.main-nav .close:hover{background-color:transparent}.main-nav .open>a+ul{left:50px;z-index:1;opacity:1;-webkit-transition-delay:.2s;transition-delay:.2s}.main-nav li li{line-height:2.2rem;border:0;-webkit-box-shadow:none;box-shadow:none}.main-nav li li a{-webkit-box-shadow:none;box-shadow:none}.main-nav li li a:hover{background-color:#2e5a84;-webkit-box-shadow:inset 2px 0 2px rgba(0,0,0,0.1);box-shadow:inset 2px 0 2px rgba(0,0,0,0.1)}.main-nav li li>span{color:rgba(255,255,255,0.4)}.main-nav li li:last-of-type>a{border-bottom:0}.main-nav .fa{position:relative;top:-2px;display:inline-block;margin:0 12px;font-size:20px;text-align:center;vertical-align:middle}.main-nav .collapse-level-1 a::before{display:none}.main-nav .collapse-level-1 .menuitem-group,.main-nav .collapse-level-1>li:first-of-type{margin:6px 0 0;color:rgba(255,255,255,0.7);text-transform:uppercase;letter-spacing:1px}.main-nav .collapse-level-1 li{position:relative}.main-nav .collapse-level-1 li:hover ul{display:block !important}.main-nav .collapse-level-2{position:absolute;top:0;left:100% !important;height:auto;padding:2px 0;background-color:#152d45;border-radius:0 .25rem .25rem 0;-webkit-box-shadow:0 0 8px rgba(0,0,0,0.2);box-shadow:0 0 8px rgba(0,0,0,0.2)}.main-nav .collapse-level-2>li>a{color:#fff;text-indent:15px}.main-nav .parent .collapse-arrow::after{position:absolute;top:0;right:15px;font-family:FontAwesome;font-size:.75rem;color:#fff;visibility:visible;content:"\f0da";-webkit-transition-delay:.25s;transition-delay:.25s}.closed .main-nav{overflow-x:hidden}.child-open{overflow:visible}.child-open::after{width:200px}.child-open>li.parent>.collapse-arrow::after{visibility:hidden;opacity:0;-webkit-transition-delay:0s;transition-delay:0s}.child-open>li.open>a::before{position:absolute;top:1px;bottom:1px;left:0;width:3px;content:"";background-color:#59afff}.child-open .open>ul{display:block}@media(min-width:992px){.closed{padding-left:50px}}.closed .child-open::after{display:none}.closed .sidebar-wrapper{width:50px;overflow:hidden}.closed .parent .collapse-arrow::after{visibility:hidden;-webkit-transition-delay:0s !important;transition-delay:0s !important}.closed .menu-toggle-icon::before{content:"\f054"}.layout-edit .sidebar-wrapper .no-dropdown:hover{color:#fff;cursor:not-allowed;background:0}.sidebar-item-title{visibility:visible !important;opacity:1 !important}.sidebar-nav ul{padding-left:.5rem}.sidebar-nav li{padding-bottom:3px;font-size:.9rem;font-weight:bold}.sidebar-nav li.nav-header{padding:.5rem 0 .2rem;margin-bottom:.2rem;font-size:.9rem;color:#495057;border-bottom:1px solid #ced4da}.sidebar-nav li.divider{margin:.3rem 0}.sidebar-nav li a{color:#003e5b}.status{z-index:9;padding:5px 10px;margin-left:250px;color:#626262;background:#ebebeb;border-top:1px solid #d4d4d4;-webkit-box-shadow:0 1px 0 rgba(255,255,255,0.8) inset;box-shadow:0 1px 0 rgba(255,255,255,0.8) inset;-webkit-transition:all .3s ease;transition:all .3s ease;-webkit-transition-delay:0s;transition-delay:0s}.status p{margin:0}.status li,.status a{font-size:14px;color:#555}.closed .status{margin-left:50px}.sidebar-wrapper[data-hidden="1"] ~ .status{margin-left:0}.subhead{position:absolute;top:0;right:0;left:0;width:auto;min-height:43px;padding:15px 0;color:#0c192e;background:#f2f2f2}.subhead .row{margin-right:0;margin-left:0}.subhead .btn-toolbar{margin-bottom:0}.subhead .btn-toolbar>*{margin-left:.5rem}.subhead .btn-group{margin-right:.25rem}.subhead .btn-group .btn{margin-left:0}.subhead button:first-of-type{margin:0}.subhead .btn-group-sm>.btn,.subhead .btn-sm{padding:0 .8rem;line-height:24px}.subhead .btn-sm{padding:0 10px;font-size:.875rem;line-height:1.8rem;color:#212529;background-color:#fefefe;border-color:#ccc;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.subhead .btn-sm [class^="icon-"],.subhead .btn-sm [class*=" icon-"],.subhead .btn-sm [class^="fa-"],.subhead .btn-sm [class*=" fa-"]{z-index:-1;display:inline-block;width:28px;height:auto;margin:0 6px 0 -10px;line-height:1.8rem;color:inherit;background-color:#e9ecef;border-right:1px solid #ccc;border-radius:3px 0 0 3px}.subhead .btn-sm:hover{background-color:#e9ecef;border-color:#ccc}.subhead .btn-primary [class^="icon-"],.subhead .btn-primary [class*=" icon-"],.subhead .btn-primary [class^="fa-"],.subhead .btn-primary [class*=" fa-"],.subhead .btn-outline-primary [class^="icon-"],.subhead .btn-outline-primary [class*=" icon-"],.subhead .btn-outline-primary [class^="fa-"],.subhead .btn-outline-primary [class*=" fa-"]{color:#006898}.subhead .btn-success [class^="icon-"],.subhead .btn-success [class*=" icon-"],.subhead .btn-success [class^="fa-"],.subhead .btn-success [class*=" fa-"],.subhead .btn-outline-success [class^="icon-"],.subhead .btn-outline-success [class*=" icon-"],.subhead .btn-outline-success [class^="fa-"],.subhead .btn-outline-success [class*=" fa-"]{color:#438243}.subhead .btn-info [class^="icon-"],.subhead .btn-info [class*=" icon-"],.subhead .btn-info [class^="fa-"],.subhead .btn-info [class*=" fa-"],.subhead .btn-outline-info [class^="icon-"],.subhead .btn-outline-info [class*=" icon-"],.subhead .btn-outline-info [class^="fa-"],.subhead .btn-outline-info [class*=" fa-"]{color:#17a2b8}.subhead .btn-danger [class^="icon-"],.subhead .btn-danger [class*=" icon-"],.subhead .btn-danger [class^="fa-"],.subhead .btn-danger [class*=" fa-"],.subhead .btn-outline-danger [class^="icon-"],.subhead .btn-outline-danger [class*=" icon-"],.subhead .btn-outline-danger [class^="fa-"],.subhead .btn-outline-danger [class*=" fa-"]{color:#d9534f}.subhead .btn-warning [class^="icon-"],.subhead .btn-warning [class*=" icon-"],.subhead .btn-warning [class^="fa-"],.subhead .btn-warning [class*=" fa-"],.subhead .btn-outline-warning [class^="icon-"],.subhead .btn-outline-warning [class*=" icon-"],.subhead .btn-outline-warning [class^="fa-"],.subhead .btn-outline-warning [class*=" fa-"]{color:#f0ad4e}.subhead .btn-success:not(.dropdown-toggle){width:140px;color:#fefefe;background-color:#438243;border-color:rgba(0,0,0,0.2)}.subhead .btn-success:not(.dropdown-toggle) [class^="icon-"],.subhead .btn-success:not(.dropdown-toggle) [class*=" icon-"],.subhead .btn-success:not(.dropdown-toggle) [class^="fa-"],.subhead .btn-success:not(.dropdown-toggle) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-success:not(.dropdown-toggle):hover{background-color:#326032}.subhead .btn-success.dropdown-toggle{background:#2e5a2e;border-color:#2e5a2e}.subhead .btn-success.dropdown-toggle::after{color:#fefefe}.subhead>*:first-child:not(.float-sm-right){margin-left:0}.subhead .float-sm-right{margin-left:.8rem}.subhead.subhead-fixed{position:fixed;top:0;left:250px;z-index:9;padding-top:12px;padding-bottom:12px;border-bottom:1px solid #adb5bd}.closed .subhead-fixed{left:55px}.btn-toolbar{margin-bottom:20px;margin-left:0}.treeselect{display:block;padding-left:0;list-style:none}.treeselect .nav-header{font-weight:700;color:#212529}.treeselect li{position:relative;display:block;line-height:2.2rem;list-style:none}.treeselect li::before{position:absolute;top:14px;left:25px;width:10px;height:1px;margin:auto;content:"";background-color:rgba(0,0,0,0.2)}.treeselect li::after{position:absolute;top:0;bottom:0;left:25px;width:1px;height:100%;content:"";background-color:rgba(0,0,0,0.2)}.treeselect li:last-child::after{height:14px}.treeselect li li{padding-left:40px}.treeselect>li::before,.treeselect>li::after{display:none}.treeselect .icon-{display:none}.treeselect .treeselect-toggle{display:inline-block;padding:0;margin-right:.1rem;text-align:center;cursor:pointer}.treeselect .treeselect-menu{display:inline-block}.treeselect .treeselect-item{display:inline-block}.treeselect .treeselect-item input{position:relative;top:1px;margin-right:.2rem}.treeselect .treeselect-item label{margin-bottom:0}.treeselect .dropdown-toggle{padding:0 .5rem .3rem;margin-left:.5rem}.treeselect .dropdown-toggle::after{margin-left:0;font-size:1rem;color:#495057}.treeselect-sub{padding-left:0}.tree-holder ul ul li::before,.tree-holder ul ul li::after{left:8px;display:block}.tree-holder ul ul li::before{top:12px}.tree-holder ul ul li:last-child::after{height:12px}.tree-holder li{line-height:1.8rem}.tree-holder li li{padding-left:20px}.fg-1{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.fg-2{-webkit-box-flex:2;-ms-flex-positive:2;flex-grow:2}.fg-3{-webkit-box-flex:3;-ms-flex-positive:3;flex-grow:3}.element-invisible{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%)}.hidden{display:none;visibility:hidden}joomla-alert{display:none}.awesomplete{display:block}.btn.btn-xs,.btn-group-xs>.btn{padding:.09rem .4rem;font-size:.7rem;line-height:1.2;border-radius:.2rem}.btn.btn-xs .caret{font-size:16px;line-height:13px}.btn:focus,.btn.focus,.btn:active:focus,.btn.focus:active,.btn.active:focus,.btn.active.focus{text-decoration:none}.btn.group-move{cursor:move}.btn-secondary{color:#343a40;background-color:#fefefe;border-color:#ced4da}.btn-secondary:hover,.btn-secondary:focus{color:#343a40;background-color:#f8f9fa}.card{background-color:#f8f8f8}.card.card-light{background-color:#f8f8f8}.card.card-dark{background-color:#0d1321}.card.card-dark>*,.card.card-dark a:not(.dropdown-item),.card.card-dark .module-dropdown>a{color:#fefefe}.card.card-dark .list-group-item{background:0}.custom-select.custom-select-color-state.custom-select-success{color:#fefefe;background-color:#438243}.custom-select.custom-select-color-state.custom-select-success option{color:#495057;background-color:#fefefe}.custom-select.custom-select-color-state.custom-select-danger{color:#fefefe;background-color:#d9534f}.custom-select.custom-select-color-state.custom-select-danger option{color:#495057;background-color:#fefefe}.accordion .card-header{display:block;font-size:.9286rem;font-weight:bold;line-height:1.2}.accordion .list-group-item{color:#006898}.dropdown-menu{padding:.2rem 0;margin-top:.5rem;background-color:#fefefe;border-color:#ccc}.dropdown-menu::after{position:absolute;top:-1.5rem;left:.9rem;font-family:FontAwesome;font-size:1.6rem;color:#fefefe;text-shadow:0 -1px 0 rgba(0,0,0,0.2);content:"\f0d8"}.dropdown-item{padding:3px .75rem}.dropdown-menu-right::after{right:.9rem;left:auto}.list-group-item{background-color:#fefefe}.list-unstyled .list-unstyled{padding-left:20px}.jviewport-height10{height:10vh}.jviewport-height20{height:20vh}.jviewport-height30{height:30vh}.jviewport-height40{height:40vh}.jviewport-height50{height:50vh}.jviewport-height60{height:60vh}.jviewport-height70{height:70vh}.jviewport-height80{height:80vh}.jviewport-height90{height:90vh}.jviewport-height100{height:100vh}[class*=jviewport-height] iframe{height:100%}.modal-dialog.jviewport-width10{width:10vw;max-width:none}.modal-dialog.jviewport-width20{width:20vw;max-width:none}.modal-dialog.jviewport-width30{width:30vw;max-width:none}.modal-dialog.jviewport-width40{width:40vw;max-width:none}.modal-dialog.jviewport-width50{width:50vw;max-width:none}.modal-dialog.jviewport-width60{width:60vw;max-width:none}.modal-dialog.jviewport-width70{width:70vw;max-width:none}.modal-dialog.jviewport-width80{width:80vw;max-width:none}.modal-dialog.jviewport-width90{width:90vw;max-width:none}.modal-dialog.jviewport-width100{width:100vw;max-width:none}.nav.nav-tabs{padding:0;margin:0;background-color:#f5f5f5;border:1px solid #ccc;border-bottom:0;border-radius:.25rem .25rem 0 0;-webkit-box-shadow:0 1px #fff inset,0 2px 3px -3px rgba(0,0,0,0.15),0 -4px 0 rgba(0,0,0,0.05) inset,0 0 3px rgba(0,0,0,0.04);box-shadow:0 1px #fff inset,0 2px 3px -3px rgba(0,0,0,0.15),0 -4px 0 rgba(0,0,0,0.05) inset,0 0 3px rgba(0,0,0,0.04)}.nav.nav-tabs .nav-item{margin-bottom:0;margin-left:0}.nav.nav-tabs .nav-item:first-of-type .nav-link.active{border-radius:.25rem 0 0;-webkit-box-shadow:-1px 0 1px -1px rgba(0,0,0,0.06),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02);box-shadow:-1px 0 1px -1px rgba(0,0,0,0.06),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02)}.nav.nav-tabs .nav-item:last-of-type .nav-link{-webkit-box-shadow:-1px 0 0 rgba(0,0,0,0.05),1px 0 0 rgba(0,0,0,0.05);box-shadow:-1px 0 0 rgba(0,0,0,0.05),1px 0 0 rgba(0,0,0,0.05)}.nav.nav-tabs .nav-item:last-of-type .nav-link.active{-webkit-box-shadow:inset 2px 0 1px -1px rgba(0,0,0,0.08),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02);box-shadow:inset 2px 0 1px -1px rgba(0,0,0,0.08),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02)}.nav.nav-tabs .nav-link{position:relative;padding:.75em 1em;color:#0d1321;border:0;border-top-left-radius:0;border-top-right-radius:0;-webkit-box-shadow:-1px 0 0 rgba(0,0,0,0.05);box-shadow:-1px 0 0 rgba(0,0,0,0.05)}.nav.nav-tabs .nav-link.active{background-color:rgba(0,0,0,0.03);background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,0.05)));background-image:linear-gradient(to bottom,transparent,rgba(0,0,0,0.05) 100%);border-right:0;border-left:0;border-top-left-radius:0;border-top-right-radius:0;-webkit-box-shadow:inset 2px 0 1px -1px rgba(0,0,0,0.08),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02);box-shadow:inset 2px 0 1px -1px rgba(0,0,0,0.08),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02)}.nav.nav-tabs .nav-link.active::after{position:absolute;right:0;bottom:-1px;left:0;height:5px;content:"";background-color:#006898;opacity:.8}.nav-tabs+.tab-content{padding:15px;background:#fefefe;border:1px solid;border-color:#ccc;border-radius:0 0 .25rem .25rem;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.04);box-shadow:0 0 3px rgba(0,0,0,0.04)}.pagination{margin:1rem}.table thead th{white-space:nowrap;border-bottom-width:1px}.table th,.table td{padding:8px;vertical-align:middle}.table th label,.table td label{margin-bottom:0}.chzn-container.chzn-container-single .chzn-single{display:inline-block;max-width:100%;height:calc(calc(2.25rem + 2px) - 2px);padding:.375rem 1.75rem .375rem .75rem;padding-right:.75rem \9;line-height:1.5;color:#495057;vertical-align:middle;background:#fefefe url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-image:none \9;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-box-shadow:none;box-shadow:none;-moz-appearance:none;-webkit-appearance:none}.chzn-container.chzn-container-single .chzn-single abbr{top:10px}.chzn-container.chzn-container-single .chzn-single:focus{border-color:#19b6ff;outline:0}.chzn-container.chzn-container-single .chzn-single:disabled{color:#868e96;cursor:not-allowed;background-color:#e9ecef}.chzn-container.chzn-container-single .chzn-single div b{background:0}.chzn-container.chzn-container-single .chzn-drop{background:#fefefe;border:1px solid #ced4da}.chzn-container.chzn-container-single.chzn-container-active .chzn-single{border-bottom-right-radius:0;border-bottom-left-radius:0}.chzn-container-single{width:auto !important}.card .chzn-container.chzn-container-single{width:100% !important}.card .chzn-container.chzn-container-single .chzn-single{width:100% !important}.gu-mirror{position:fixed !important;z-index:9999 !important;margin:0 !important;cursor:move;background-color:#90ee90;opacity:.8}.gu-mirror.table{display:table}.gu-mirror.table td{display:table-cell}.js-draggable .sortable-handler{cursor:move}.minicolors-theme-bootstrap .minicolors-input{width:120px}.minicolors-theme-bootstrap .rgb{width:175px}.minicolors-theme-bootstrap .rgba{width:220px}.editor .toggle-editor{margin-top:1rem}.editor .mce-tinymce{border:1px solid #ccc;border-radius:.25rem}.editor .mce-btn,.editor .mce-panel{background:#f8f8f8}.com_config .content{background-color:transparent}.com_config [class^='col-']>fieldset{margin-bottom:2rem}.com_cpanel .content{margin-top:0}.com_cpanel .card{-webkit-box-shadow:0 0 3px rgba(0,0,0,0.04);box-shadow:0 0 3px rgba(0,0,0,0.04)}.com_cpanel .card p:first-of-type{margin-top:1rem}.com_cpanel .card p:last-child{margin-bottom:0}.com_cpanel .card .list-group{margin-top:0;margin-right:-1.25rem;margin-bottom:-1.25rem;margin-left:-1.25rem}.com_cpanel .card .list-group>li{padding:.6rem 1.25rem;overflow:hidden}.com_cpanel .card .list-group>.published{padding-left:.9rem;border-left:5px solid #438243}.com_cpanel .card .list-group>.unpublished{padding-left:.9rem;border-left:5px solid #d9534f}.com_cpanel .card .list-group:first-of-type{border-top:0}.com_cpanel .card .list-group-item:first-child{border-top:0;border-top-left-radius:0;border-top-right-radius:0}.com_cpanel .card .list-group-item:last-child{border-bottom:0;border-top-left-radius:0;border-top-right-radius:0}.com_cpanel .card-title{position:relative;padding:.9em 1.25rem .75rem;margin-top:-1.25rem;margin-right:-1.25rem;margin-bottom:0;margin-left:-1.25rem;font-size:.9286rem;color:#1c3d5c;background-color:#f5f5f5;border-bottom:1px solid rgba(0,0,0,0.125);border-radius:.25rem .25rem 0 0;-webkit-box-shadow:0 1px #fefefe inset,0 2px 3px -3px rgba(0,0,0,0.15);box-shadow:0 1px #fefefe inset,0 2px 3px -3px rgba(0,0,0,0.15)}.com_cpanel .module-actions{position:absolute;top:0;right:0;z-index:2}.com_cpanel .module-actions>a{display:inline-block;width:2.6em;height:2.6em;line-height:2.6em;color:#495057;text-align:center;background-color:#f5f5f5;border-left:1px solid #ccc;border-top-right-radius:.25rem;-webkit-box-shadow:1px 0 #fefefe inset;box-shadow:1px 0 #fefefe inset}.com_cpanel .module-actions>a:hover,.com_cpanel .module-actions>a:focus{background-color:#f0f0f0;-webkit-box-shadow:none;box-shadow:none}.admin.com_modules .js-stools-container-bar .btn-toolbar{float:left}.menu-assignment{position:relative}.menu-assignment .menu-links{padding-left:0;margin-top:15px;margin-left:0;-webkit-column-count:3;column-count:3;-webkit-column-gap:15px;column-gap:15px}.menu-assignment .menu-links>li{display:inline-block;width:100%;margin-bottom:15px;vertical-align:top;list-style:none;column-break-inside:avoid;-webkit-backface-visibility:hidden;backface-visibility:hidden}.menu-assignment .menu-links-block{padding:15px;background-color:#fafafa;border:1px solid #ddd;border-radius:3px}.menu-assignment label{display:block}.menu-assignment label input{position:relative;top:2px}@media(max-width:767px){.menu-assignment .menu-links{-webkit-column-count:auto;column-count:auto}}.com_users.view-debuggroup thead th,.com_users.view-debuguser thead th{white-space:normal}.com_users.view-debuggroup .legend,.com_users.view-debuguser .legend{margin:1rem 1rem 0}.container-main,.system-debug{padding-bottom:50px}.container-main{position:relative;min-height:calc(100vh - 50px);padding-top:15px;background-color:#f2f2f2}@media(max-width:991.98px){.container-main{padding-left:50px;margin-top:47px}}.list-view-main .container-main{background-color:#f2f2f2}.content{margin-top:45px;border-radius:.25rem}.content>.row{margin-right:0;margin-left:0}.j-main-container{background-color:#fefefe;border:1px solid rgba(0,0,0,0.17);border-radius:.25rem;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.075);box-shadow:0 0 3px rgba(0,0,0,0.075)}.row-selected{background-color:#d9edf7}.chzn-container-single{width:auto !important}.item-associations{padding:0}.item-associations li{display:inline-block;list-style:none} \ No newline at end of file +#flying-focus{position:absolute;margin:0;background:transparent;-webkit-transition-property:left,top,width,height;transition-property:left,top,width,height;-webkit-transition-timing-function:cubic-bezier(0,1,0,1);transition-timing-function:cubic-bezier(0,1,0,1);visibility:hidden;pointer-events:none;-webkit-box-shadow:0 0 2px 3px #78aeda,0 0 2px #78aeda inset;box-shadow:0 0 2px 3px #78aeda,0 0 2px #78aeda inset;border-radius:2px}#flying-focus.flying-focus_visible{visibility:visible;z-index:9999}@media screen and (-webkit-min-device-pixel-ratio:0){#flying-focus{-webkit-box-shadow:none;box-shadow:none;outline:5px auto -webkit-focus-ring-color;outline-offset:-3px}}.flying-focus_target{outline:none !important}.flying-focus_target::-moz-focus-inner{border:0 !important}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked ~ .custom-control-label::before{color:#fff;background-color:#006898}.custom-control-input:focus ~ .custom-control-label::before{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,104,152,0.25);box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,104,152,0.25)}.custom-control-input:active ~ .custom-control-label::before{color:#fff;background-color:#4cc6ff}.custom-control-input:disabled ~ .custom-control-label{color:#868e96}.custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.custom-control-label{margin-bottom:0}.custom-control-label::before{position:absolute;top:.25rem;left:0;display:block;width:1rem;height:1rem;pointer-events:none;content:"";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#dee2e6}.custom-control-label::after{position:absolute;top:.25rem;left:0;display:block;width:1rem;height:1rem;content:"";background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before{background-color:#006898}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{background-color:#006898}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,104,152,0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(0,104,152,0.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked ~ .custom-control-label::before{background-color:#006898}.custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,104,152,0.5)}.custom-select{display:inline-block;width:100%;height:calc(2.25rem + 2px);padding:.375rem 1.75rem .375rem .75rem;line-height:1.5;color:#495057;vertical-align:middle;background:#fefefe url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#19b6ff;outline:0;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.075),0 0 5px rgba(25,182,255,0.5);box-shadow:inset 0 1px 2px rgba(0,0,0,0.075),0 0 5px rgba(25,182,255,0.5)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#868e96;background-color:#e9ecef}.custom-select::-ms-expand{opacity:0}.custom-select-sm{height:calc(1.7rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-select-lg{height:calc(2.875rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:125%}.custom-file{position:relative;display:inline-block;width:100%;height:calc(2.25rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(2.25rem + 2px);margin:0;opacity:0}.custom-file-input:focus ~ .custom-file-control{border-color:#19b6ff;-webkit-box-shadow:0 0 0 .2rem rgba(0,104,152,0.25);box-shadow:0 0 0 .2rem rgba(0,104,152,0.25)}.custom-file-input:focus ~ .custom-file-control::before{border-color:#19b6ff}.custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(2.25rem + 2px);padding:.375rem .75rem;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(calc(2.25rem + 2px) - 1px * 2);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:1px solid #ced4da;border-radius:0 .25rem .25rem 0}.alert-message{background-color:#438243;border-color:#438243;border-left:10px solid #438243;color:#e9ecef}.alert-message hr{border-top-color:#3a713a}.alert-message .alert-link{color:#326032}html,body{height:100%;font-size:14px}body{padding:0;margin:0}h1,h2,h3,h4,h5,h6{font-weight:bold}h1{font-weight:normal}small,.small{font-size:.8rem}.j-main-container .alert{margin:10px}.notify-alerts{position:fixed;top:15px;left:50%;z-index:1031;margin-left:125px;-webkit-transition:all .5s ease;transition:all .5s ease;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.notify-alerts .alert{width:100%;min-width:280px;max-width:400px;margin-bottom:.5rem;opacity:0;-webkit-animation:fadeIn ease-in 1;animation:fadeIn ease-in 1;-webkit-animation-duration:.35s;animation-duration:.35s;-webkit-animation-delay:0s;animation-delay:0s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.notify-alerts .alert:first-of-type{-webkit-animation-delay:.3s;animation-delay:.3s}.notify-alerts.fullWidth{left:265px}.notify-alerts.fullWidth .alert{width:auto;min-width:none;max-width:none;margin-left:0}.notify-alerts .close{position:relative;right:-.5rem;padding:.5rem;line-height:1rem;color:#000;opacity:1}.closed .notify-alerts{margin-left:0}.closed+.notify-alerts.fullWidth{left:70px}.wrapper0 .notify-alerts{margin-left:0}@-webkit-keyframes fadeIn{from{opacity:0;-webkit-transform:translateY(-15px);transform:translateY(-15px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeIn{from{opacity:0;-webkit-transform:translateY(-15px);transform:translateY(-15px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.form-control{max-width:240px;background-color:#fefefe}.form-control.input-xlarge{max-width:350px}.form-control.input-xxlarge{max-width:550px}.form-control.input-full{max-width:100%}.control-group{margin-bottom:18px}.control-group>.form-check{display:inline-block}.control-group::after{display:table;clear:both;content:""}.control-group .control-label{float:left;width:220px;padding-top:5px;padding-right:5px;text-align:left}.control-group .controls{margin-left:220px}.form-no-margin .control-group .controls{margin-left:0}.form-no-margin .control-group .control-label{float:none}.custom-select{max-width:240px}.spacer hr{width:380px}td .form-control{display:inline-block;width:auto}legend{margin-bottom:1.1rem}.checkboxes{padding-top:5px}.checkboxes .checkbox input{position:static;margin-left:0}.form-check{padding-top:5px;margin-bottom:0}.modal label{width:100%}.invalid{color:#d9534f;border-color:#d9534f}.valid{border-color:#438243}.form-control-feedback{display:block}.header{position:relative;z-index:5;height:48px;background:#1c3d5c}.header::after{position:absolute;top:100%;width:100%;height:3px;content:"";background-color:#006898;background-image:-webkit-gradient(linear,left top,right top,from(#59afff),to(#59daff));background-image:linear-gradient(to right,#59afff 0,#59daff 100%)}.header .page-title{display:inline-block;margin:0 5px;font-size:1.3rem;font-weight:normal;line-height:48px;color:#fefefe}.header .page-title [class^="icon-"]{margin-right:15px;font-size:1.857rem 1.857rem;vertical-align:middle}.header .navbar-brand{padding:0;font-size:1.1rem;color:#fefefe}.header .navbar-brand:hover,.header .navbar-brand:focus{color:#efefef}@media(min-width:576px) and (max-width:767.98px){.header .navbar-brand{margin-right:0;margin-left:10px}}.header .navbar-brand span{margin-left:.4rem}.header .nav-item{background-color:#2e5a84;border-left:1px solid #1c3d5c}.header .nav-link{position:relative;padding:0;line-height:48px}.header .nav-link .fa{width:50px;font-size:1.2rem;color:#fefefe;vertical-align:middle;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.header .nav-link .fa-external-link{position:relative;left:2px}.header .nav-link .badge{position:absolute;top:4px;right:2px}.header .nav-link.dropdown-toggle::after{display:none}.header .nav-link:hover .fa{font-size:1.3rem;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.header .dropdown-notifications{min-width:280px;padding:0;border:0}.header .dropdown-notifications h2{font-size:.9286rem}.header .dropdown-menu::after{left:.65rem}.header .dropdown-menu-right::after{right:.65rem;left:auto}.header .header-profile .dropdown-menu{padding-top:0}.header .header-profile .dropdown-menu::after{color:#f2f2f2}.header .header-profile-user{padding-top:.5rem;padding-bottom:.5rem;margin-bottom:.3rem;background-color:#f2f2f2;border-bottom:1px solid rgba(0,0,0,0.1);border-radius:.25rem .25rem 0 0}.header .list-group-item-text:last-child{margin-bottom:0}.header .joomla-version{margin-right:.9rem;margin-bottom:0;font-size:.9286rem;color:#fefefe}@media(max-width:991.98px){.header{position:fixed;top:0;width:100%}.header+.container-title{margin-top:48px}}.menu-collapse{font-size:2rem;text-align:center}.menu-collapse a{display:block;width:48px;line-height:48px;color:#fff;background-color:#2e5a84}.icon-back::before{content:"\e008"}.icon-crop::before{content:"\f125"}.icon-white{color:#fefefe}.icon-publish{color:#438243}.icon-unpublish{color:#d9534f}.tbody-icon{padding:0 3px;text-align:center;background-color:transparent;border:0}.tbody-icon span{width:26px;height:26px;font-size:1rem;line-height:22px;color:#ccc;border:2px solid #ccc;border-radius:50%}.tbody-icon .icon-publish{color:#438243;border-color:#438243}.tbody-icon .icon-featured{color:#f0ad4e;border-color:#f0ad4e}.tbody-icon .icon-unpublish{color:#d9534f;border-color:#d9534f}.tbody-icon .icon-archive{color:#495057;border-color:#495057}.tbody-icon .icon-checkedout{width:auto;height:auto;font-size:1.2rem;line-height:1rem;color:#495057;border:0}iframe{border:0}.modal iframe{width:100%}.view-login{background:#1c3d5c}.view-login .login-initial{display:none}.view-login .login{width:320px}@media(max-width:767.98px){.view-login .login{padding:0 15px}}.view-login .login-logo{margin:0 0 2rem;text-align:center}@media(max-width:767.98px){.view-login .login-logo{margin:1rem 0}}.view-login h2{font-size:1.9rem;font-weight:300}.view-login .card-img-top{max-width:100%}.view-login .nav p,.view-login .nav a{margin-bottom:0;color:#fff}@media(max-width:575.98px){.view-login .btn{padding:8px 10px;font-size:14px}}.modal .btn{margin-right:.5rem}.modal .btn-primary:not([href]),.modal .btn-success:not([href]){color:#fff}.modal .btn-primary:not([href]):hover,.modal .btn-success:not([href]):hover{color:#fff}.modal-header{padding:0 15px}.modal-header .close{width:46px;height:46px;margin-top:0;margin-right:-15px;font-size:2rem;line-height:1rem;border-left:1px solid #ccc}.modal-body{padding:0;overflow-y:auto}.modal-title{font-weight:normal;line-height:46px}.contentpane{padding:15px}.quick-icons a{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:120px;height:120px;margin-right:15px;margin-bottom:15px;color:#fff;text-align:center;background:#1c3d5c;border-radius:3px;-webkit-box-shadow:0 0 5px 0 #1c3d5c;box-shadow:0 0 5px 0 #1c3d5c;-webkit-transition:background .25s ease;transition:background .25s ease}.quick-icons a>div{-webkit-box-flex:1;-ms-flex:1 0 0;flex:1 0 0}@media(max-width:575.98px){.quick-icons a.pulse{-webkit-box-shadow:0 0 0 0 rgba(28,61,92,0.7);box-shadow:0 0 0 0 rgba(28,61,92,0.7);-webkit-animation:pulse 1.25s infinite cubic-bezier(0.66,0,0,1);animation:pulse 1.25s infinite cubic-bezier(0.66,0,0,1)}}@media(max-width:575.98px){.quick-icons a.pulse.danger,.quick-icons a.pulse.success{-webkit-animation:none;animation:none}}.quick-icons a:hover,.quick-icons a:focus{text-decoration:none;background:#2e5a84}.quick-icons a .j-links-link{display:block;width:100%;padding:0 1rem;font-size:1rem;line-height:1.1}.quick-icons a .fa{margin:5px auto;font-size:2.5rem;font-weight:normal;line-height:3rem}.quick-icons a.danger{background-color:#df706c;-webkit-box-shadow:0 0 5px 0 #df706c;box-shadow:0 0 5px 0 #df706c}.quick-icons a.success{background-color:#4f9a4f;-webkit-box-shadow:0 0 5px 0 #4f9a4f;box-shadow:0 0 5px 0 #4f9a4f}.quick-icons [id*="plg_quickicon"] a,.quick-icons [id*="plg_quickicon"] a::before{-webkit-transition-delay:.4s;transition-delay:.4s}@-webkit-keyframes pulse{to{-webkit-box-shadow:0 0 0 15px rgba(232,76,61,0);box-shadow:0 0 0 15px rgba(232,76,61,0)}}@keyframes pulse{to{-webkit-box-shadow:0 0 0 15px rgba(232,76,61,0);box-shadow:0 0 0 15px rgba(232,76,61,0)}}.js-stools{position:relative;width:100%;padding:8px 10px 0;background-color:#f5f5f5;border-bottom:1px solid rgba(0,0,0,0.125);border-radius:.25rem .25rem 0 0;-webkit-box-shadow:0 1px #fff inset,0 2px 3px -3px rgba(0,0,0,0.15);box-shadow:0 1px #fff inset,0 2px 3px -3px rgba(0,0,0,0.15)}.js-stools .btn-wrapper{display:inline-block;margin-right:5px}.js-stools .js-stools-container-filters{position:absolute;right:-1px;z-index:1;display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:10px;margin:0;background-color:#fff;border:1px solid #ccc;border-radius:0 0 0 .25rem;-webkit-box-shadow:-1px 1px 4px rgba(0,0,0,0.05);box-shadow:-1px 1px 4px rgba(0,0,0,0.05)}.js-stools .js-stools-container-filters .js-stools-field-list:last-of-type .custom-select{min-width:auto}.js-stools .js-stools-container-filters .custom-select{width:100%}.js-stools .js-stools-container-filters.js-filters-show{display:-webkit-box;display:-ms-flexbox;display:flex}.js-stools .js-stools-container-filters .chzn-container-single{display:block}.js-stools .js-stools-container-filters .chzn-container-single .chzn-single{display:block;font-size:1rem}.js-stools .js-stools-field-filter .custom-select.active{color:#fff;background:#fefefe url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23fff' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat scroll right .75rem center/8px 10px;background-color:#006898}.js-stools .js-stools-field-filter .custom-select option{color:#495057;background-color:#fff}.js-stools .js-stools-container-selector{float:left}.js-stools .js-stools-container-bar{float:right}.js-stools .js-stools-container-bar .btn-toolbar{float:left;margin-bottom:8px}.js-stools .js-stools-container-bar .btn-toolbar .btn-group:first-child{margin-left:0}.js-stools .js-stools-container-bar .input-append{margin-bottom:0}.js-stools .js-stools-container-list{float:left;text-align:left}.js-stools .js-stools-container-list .js-stools-field-list:last-child{margin-right:0}.js-stools-column-order [class*=" icon-"],.js-stools-column-order [class^="icon-"]{text-align:center}.wrapper{padding-left:250px;-webkit-transition:all .3s ease;transition:all .3s ease}@media(max-width:991.98px){.wrapper{padding-left:0}}.sidebar-wrapper{position:fixed;left:0;z-index:10;width:250px;height:100%;margin-left:0;background-color:#1c3d5c;-webkit-box-shadow:0 3px 10px rgba(0,0,0,0.5);box-shadow:0 3px 10px rgba(0,0,0,0.5);-webkit-transition:all .3s ease;transition:all .3s ease}.sidebar-wrapper .sidebar-brand{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;overflow:hidden}@media(max-width:991.98px){.sidebar-wrapper{margin-top:3px}.sidebar-wrapper .main-nav{max-height:calc(100vh - 147px)}}.sidebar-wrapper .main-brand{margin-left:5px;font-size:30px;line-height:96px;text-align:center;text-indent:0;border:0;-webkit-box-shadow:none;box-shadow:none}.sidebar-wrapper .main-brand a{display:block;margin-right:5px;overflow:hidden;border:0;-webkit-box-shadow:none;box-shadow:none}.sidebar-wrapper .main-brand a:hover{background:0}.sidebar-wrapper .main-brand img{width:190px}.menu-toggle-icon{width:48px;font-size:1.7rem}.main-nav{position:relative;z-index:1;width:250px;height:calc(100vh - 96px);list-style:none;background-color:#1c3d5c;opacity:1}.main-nav::after{position:absolute;top:0;right:0;bottom:0;width:0;content:"";background-color:#0f2131;-webkit-transition:all .3s ease;transition:all .3s ease}.main-nav>li{background-color:#1c3d5c;border-bottom:1px solid rgba(0,0,0,0.15)}.main-nav>li:first-of-type{border-top:1px solid rgba(0,0,0,0.15)}.main-nav li{max-height:40px;line-height:40px}.main-nav li a{position:relative;display:block;max-height:40px;overflow:hidden;color:#fff;text-decoration:none;cursor:pointer;opacity:1}.main-nav li a:hover{color:#fff;text-decoration:none;background-color:rgba(0,0,0,0.2)}.main-nav li a:active,.main-nav li a:focus{text-decoration:none;outline:0;-webkit-box-shadow:inset 0 0 0 1px #78aeda;box-shadow:inset 0 0 0 1px #78aeda}.main-nav li.menuitem-group a:hover{cursor:text;background:0}.main-nav li ul{position:absolute;top:0;left:50px;z-index:-3;display:block;width:200px;height:100%;padding:0;opacity:0;-webkit-transition:left .2s ease,opacity .2s ease;transition:left .2s ease,opacity .2s ease;-webkit-transition-delay:0;transition-delay:0}.main-nav li ul ul{display:none;opacity:1}.main-nav li ul li{text-indent:15px}.main-nav .close{padding:2px 10px;font-size:1.7rem;color:rgba(255,255,255,0.8);text-indent:0;text-shadow:none}.main-nav .close:hover{background-color:transparent}.main-nav .open>a+ul{left:50px;z-index:1;opacity:1;-webkit-transition-delay:.2s;transition-delay:.2s}.main-nav li li{line-height:2.2rem;border:0;-webkit-box-shadow:none;box-shadow:none}.main-nav li li a{-webkit-box-shadow:none;box-shadow:none}.main-nav li li a:hover{background-color:#2e5a84;-webkit-box-shadow:inset 2px 0 2px rgba(0,0,0,0.1);box-shadow:inset 2px 0 2px rgba(0,0,0,0.1)}.main-nav li li>span{color:rgba(255,255,255,0.4)}.main-nav li li:last-of-type>a{border-bottom:0}.main-nav .fa{position:relative;top:-2px;display:inline-block;margin:0 12px;font-size:20px;text-align:center;vertical-align:middle}.main-nav .collapse-level-1 a::before{display:none}.main-nav .collapse-level-1 .menuitem-group,.main-nav .collapse-level-1>li:first-of-type{margin:6px 0 0;color:rgba(255,255,255,0.7);text-transform:uppercase;letter-spacing:1px}.main-nav .collapse-level-1 li{position:relative}.main-nav .collapse-level-1 li:hover ul{display:block !important}.main-nav .collapse-level-2{position:absolute;top:0;left:100% !important;height:auto;padding:2px 0;background-color:#152d45;border-radius:0 .25rem .25rem 0;-webkit-box-shadow:0 0 8px rgba(0,0,0,0.2);box-shadow:0 0 8px rgba(0,0,0,0.2)}.main-nav .collapse-level-2>li>a{color:#fff;text-indent:15px}.main-nav .parent .collapse-arrow::after{position:absolute;top:0;right:15px;font-family:FontAwesome;font-size:.75rem;color:#fff;visibility:visible;content:"\f0da";-webkit-transition-delay:.25s;transition-delay:.25s}.closed .main-nav{overflow-x:hidden}.child-open{overflow:visible}.child-open::after{width:200px}.child-open>li.parent>.collapse-arrow::after{visibility:hidden;opacity:0;-webkit-transition-delay:0s;transition-delay:0s}.child-open>li.open>a::before{position:absolute;top:1px;bottom:1px;left:0;width:3px;content:"";background-color:#59afff}.child-open .open>ul{display:block}@media(min-width:992px){.closed{padding-left:50px}}.closed .child-open::after{display:none}.closed .sidebar-wrapper{width:50px;overflow:hidden}.closed .parent .collapse-arrow::after{visibility:hidden;-webkit-transition-delay:0s !important;transition-delay:0s !important}.closed .menu-toggle-icon::before{content:"\f054"}.layout-edit .sidebar-wrapper .no-dropdown:hover{color:#fff;cursor:not-allowed;background:0}.sidebar-item-title{visibility:visible !important;opacity:1 !important}.sidebar-nav ul{padding-left:.5rem}.sidebar-nav li{padding-bottom:3px;font-size:.9rem;font-weight:bold}.sidebar-nav li.nav-header{padding:.5rem 0 .2rem;margin-bottom:.2rem;font-size:.9rem;color:#495057;border-bottom:1px solid #ced4da}.sidebar-nav li.divider{margin:.3rem 0}.sidebar-nav li a{color:#003e5b}.status{z-index:9;padding:5px 10px;margin-left:250px;color:#626262;background:#ebebeb;border-top:1px solid #d4d4d4;-webkit-box-shadow:0 1px 0 rgba(255,255,255,0.8) inset;box-shadow:0 1px 0 rgba(255,255,255,0.8) inset;-webkit-transition:all .3s ease;transition:all .3s ease;-webkit-transition-delay:0s;transition-delay:0s}.status p{margin:0}.status li,.status a{font-size:14px;color:#555}.closed .status{margin-left:50px}.sidebar-wrapper[data-hidden="1"] ~ .status{margin-left:0}.subhead{position:absolute;top:0;right:0;left:0;width:auto;min-height:43px;padding:15px 0;color:#0c192e;background:#f2f2f2}.subhead .row{margin-right:0;margin-left:0}.subhead .btn-toolbar{margin-bottom:0}.subhead .btn-toolbar>*{margin-left:.5rem}.subhead .btn-group{margin-right:.25rem}.subhead .btn-group .btn{margin-left:0}.subhead>*:first-child{margin:0}.subhead .btn-group-sm>.btn,.subhead .btn-sm{padding:0 .8rem;line-height:24px}.subhead .btn-sm{padding:0 10px;font-size:.875rem;line-height:1.8rem;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.subhead .btn-sm [class^="icon-"],.subhead .btn-sm [class*=" icon-"],.subhead .btn-sm [class^="fa-"],.subhead .btn-sm [class*=" fa-"]{z-index:-1;display:inline-block;width:28px;height:auto;margin:0 6px 0 -10px;line-height:1.8rem;color:inherit;background-color:#e9ecef;border-right:1px solid #ccc;border-radius:3px 0 0 3px}.subhead .btn-sm:hover{background-color:#e9ecef;border-color:#ccc}.subhead .btn-outline-primary{color:#212529;background-color:#fefefe;border-color:#ccc}.subhead .btn-outline-primary [class^="icon-"],.subhead .btn-outline-primary [class*=" icon-"],.subhead .btn-outline-primary [class^="fa-"],.subhead .btn-outline-primary [class*=" fa-"]{color:#006898}.subhead .btn-primary:not(.dropdown-toggle-split){color:#fefefe;background-color:#006898;border-color:rgba(0,0,0,0.2)}.subhead .btn-primary:not(.dropdown-toggle-split) [class^="icon-"],.subhead .btn-primary:not(.dropdown-toggle-split) [class*=" icon-"],.subhead .btn-primary:not(.dropdown-toggle-split) [class^="fa-"],.subhead .btn-primary:not(.dropdown-toggle-split) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-primary:not(.dropdown-toggle-split):hover{background-color:#004565}.subhead .btn-primary.dropdown-toggle-split{background:#003e5b;border-color:#003e5b}.subhead .btn-primary.dropdown-toggle-split::after{color:#fefefe}.subhead .btn-outline-secondary{color:#212529;background-color:#fefefe;border-color:#ccc}.subhead .btn-outline-secondary [class^="icon-"],.subhead .btn-outline-secondary [class*=" icon-"],.subhead .btn-outline-secondary [class^="fa-"],.subhead .btn-outline-secondary [class*=" fa-"]{color:#868e96}.subhead .btn-secondary:not(.dropdown-toggle-split){color:#fefefe;background-color:#868e96;border-color:rgba(0,0,0,0.2)}.subhead .btn-secondary:not(.dropdown-toggle-split) [class^="icon-"],.subhead .btn-secondary:not(.dropdown-toggle-split) [class*=" icon-"],.subhead .btn-secondary:not(.dropdown-toggle-split) [class^="fa-"],.subhead .btn-secondary:not(.dropdown-toggle-split) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-secondary:not(.dropdown-toggle-split):hover{background-color:#6c757d}.subhead .btn-secondary.dropdown-toggle-split{background:#686f77;border-color:#686f77}.subhead .btn-secondary.dropdown-toggle-split::after{color:#fefefe}.subhead .btn-outline-success{color:#212529;background-color:#fefefe;border-color:#ccc}.subhead .btn-outline-success [class^="icon-"],.subhead .btn-outline-success [class*=" icon-"],.subhead .btn-outline-success [class^="fa-"],.subhead .btn-outline-success [class*=" fa-"]{color:#438243}.subhead .btn-success:not(.dropdown-toggle-split){color:#fefefe;background-color:#438243;border-color:rgba(0,0,0,0.2)}.subhead .btn-success:not(.dropdown-toggle-split) [class^="icon-"],.subhead .btn-success:not(.dropdown-toggle-split) [class*=" icon-"],.subhead .btn-success:not(.dropdown-toggle-split) [class^="fa-"],.subhead .btn-success:not(.dropdown-toggle-split) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-success:not(.dropdown-toggle-split):hover{background-color:#326032}.subhead .btn-success.dropdown-toggle-split{background:#2e5a2e;border-color:#2e5a2e}.subhead .btn-success.dropdown-toggle-split::after{color:#fefefe}.subhead .btn-outline-info{color:#212529;background-color:#fefefe;border-color:#ccc}.subhead .btn-outline-info [class^="icon-"],.subhead .btn-outline-info [class*=" icon-"],.subhead .btn-outline-info [class^="fa-"],.subhead .btn-outline-info [class*=" fa-"]{color:#17a2b8}.subhead .btn-info:not(.dropdown-toggle-split){color:#fefefe;background-color:#17a2b8;border-color:rgba(0,0,0,0.2)}.subhead .btn-info:not(.dropdown-toggle-split) [class^="icon-"],.subhead .btn-info:not(.dropdown-toggle-split) [class*=" icon-"],.subhead .btn-info:not(.dropdown-toggle-split) [class^="fa-"],.subhead .btn-info:not(.dropdown-toggle-split) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-info:not(.dropdown-toggle-split):hover{background-color:#117a8b}.subhead .btn-info.dropdown-toggle-split{background:#107282;border-color:#107282}.subhead .btn-info.dropdown-toggle-split::after{color:#fefefe}.subhead .btn-outline-warning{color:#212529;background-color:#fefefe;border-color:#ccc}.subhead .btn-outline-warning [class^="icon-"],.subhead .btn-outline-warning [class*=" icon-"],.subhead .btn-outline-warning [class^="fa-"],.subhead .btn-outline-warning [class*=" fa-"]{color:#f0ad4e}.subhead .btn-warning:not(.dropdown-toggle-split){color:#fefefe;background-color:#f0ad4e;border-color:rgba(0,0,0,0.2)}.subhead .btn-warning:not(.dropdown-toggle-split) [class^="icon-"],.subhead .btn-warning:not(.dropdown-toggle-split) [class*=" icon-"],.subhead .btn-warning:not(.dropdown-toggle-split) [class^="fa-"],.subhead .btn-warning:not(.dropdown-toggle-split) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-warning:not(.dropdown-toggle-split):hover{background-color:#ec971f}.subhead .btn-warning.dropdown-toggle-split{background:#eb9316;border-color:#eb9316}.subhead .btn-warning.dropdown-toggle-split::after{color:#fefefe}.subhead .btn-outline-danger{color:#212529;background-color:#fefefe;border-color:#ccc}.subhead .btn-outline-danger [class^="icon-"],.subhead .btn-outline-danger [class*=" icon-"],.subhead .btn-outline-danger [class^="fa-"],.subhead .btn-outline-danger [class*=" fa-"]{color:#d9534f}.subhead .btn-danger:not(.dropdown-toggle-split){color:#fefefe;background-color:#d9534f;border-color:rgba(0,0,0,0.2)}.subhead .btn-danger:not(.dropdown-toggle-split) [class^="icon-"],.subhead .btn-danger:not(.dropdown-toggle-split) [class*=" icon-"],.subhead .btn-danger:not(.dropdown-toggle-split) [class^="fa-"],.subhead .btn-danger:not(.dropdown-toggle-split) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-danger:not(.dropdown-toggle-split):hover{background-color:#c9302c}.subhead .btn-danger.dropdown-toggle-split{background:#c12e2a;border-color:#c12e2a}.subhead .btn-danger.dropdown-toggle-split::after{color:#fefefe}.subhead .btn-outline-light{color:#212529;background-color:#fefefe;border-color:#ccc}.subhead .btn-outline-light [class^="icon-"],.subhead .btn-outline-light [class*=" icon-"],.subhead .btn-outline-light [class^="fa-"],.subhead .btn-outline-light [class*=" fa-"]{color:#f8f9fa}.subhead .btn-light:not(.dropdown-toggle-split){color:#fefefe;background-color:#f8f9fa;border-color:rgba(0,0,0,0.2)}.subhead .btn-light:not(.dropdown-toggle-split) [class^="icon-"],.subhead .btn-light:not(.dropdown-toggle-split) [class*=" icon-"],.subhead .btn-light:not(.dropdown-toggle-split) [class^="fa-"],.subhead .btn-light:not(.dropdown-toggle-split) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-light:not(.dropdown-toggle-split):hover{background-color:#dae0e5}.subhead .btn-light.dropdown-toggle-split{background:#d4dae1;border-color:#d4dae1}.subhead .btn-light.dropdown-toggle-split::after{color:#fefefe}.subhead .btn-outline-dark{color:#212529;background-color:#fefefe;border-color:#ccc}.subhead .btn-outline-dark [class^="icon-"],.subhead .btn-outline-dark [class*=" icon-"],.subhead .btn-outline-dark [class^="fa-"],.subhead .btn-outline-dark [class*=" fa-"]{color:#343a40}.subhead .btn-dark:not(.dropdown-toggle-split){color:#fefefe;background-color:#343a40;border-color:rgba(0,0,0,0.2)}.subhead .btn-dark:not(.dropdown-toggle-split) [class^="icon-"],.subhead .btn-dark:not(.dropdown-toggle-split) [class*=" icon-"],.subhead .btn-dark:not(.dropdown-toggle-split) [class^="fa-"],.subhead .btn-dark:not(.dropdown-toggle-split) [class*=" fa-"]{width:16px;margin-right:0;margin-left:0;color:#fefefe;background-color:transparent;border-right:0 none;border-left:0 none}.subhead .btn-dark:not(.dropdown-toggle-split):hover{background-color:#1d2124}.subhead .btn-dark.dropdown-toggle-split{background:#191b1e;border-color:#191b1e}.subhead .btn-dark.dropdown-toggle-split::after{color:#fefefe}.subhead .button-new,.subhead .button-apply,.subhead .button-wide{width:140px}.subhead>*:first-child:not(.float-sm-right){margin-left:0}.subhead .float-sm-right{margin-left:.8rem}.subhead.subhead-fixed{position:fixed;top:0;left:250px;z-index:9;padding-top:12px;padding-bottom:12px;border-bottom:1px solid #adb5bd}.closed .subhead-fixed{left:55px}.btn-toolbar{margin-bottom:20px;margin-left:0}.treeselect{display:block;padding-left:0;list-style:none}.treeselect .nav-header{font-weight:700;color:#212529}.treeselect li{position:relative;display:block;line-height:2.2rem;list-style:none}.treeselect li::before{position:absolute;top:14px;left:25px;width:10px;height:1px;margin:auto;content:"";background-color:rgba(0,0,0,0.2)}.treeselect li::after{position:absolute;top:0;bottom:0;left:25px;width:1px;height:100%;content:"";background-color:rgba(0,0,0,0.2)}.treeselect li:last-child::after{height:14px}.treeselect li li{padding-left:40px}.treeselect>li::before,.treeselect>li::after{display:none}.treeselect .icon-{display:none}.treeselect .treeselect-toggle{display:inline-block;padding:0;margin-right:.1rem;text-align:center;cursor:pointer}.treeselect .treeselect-menu{display:inline-block}.treeselect .treeselect-item{display:inline-block}.treeselect .treeselect-item input{position:relative;top:1px;margin-right:.2rem}.treeselect .treeselect-item label{margin-bottom:0}.treeselect .dropdown-toggle{padding:0 .5rem .3rem;margin-left:.5rem}.treeselect .dropdown-toggle::after{margin-left:0;font-size:1rem;color:#495057}.treeselect-sub{padding-left:0}.tree-holder ul ul li::before,.tree-holder ul ul li::after{left:8px;display:block}.tree-holder ul ul li::before{top:12px}.tree-holder ul ul li:last-child::after{height:12px}.tree-holder li{line-height:1.8rem}.tree-holder li li{padding-left:20px}.fg-1{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.fg-2{-webkit-box-flex:2;-ms-flex-positive:2;flex-grow:2}.fg-3{-webkit-box-flex:3;-ms-flex-positive:3;flex-grow:3}.element-invisible{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%)}.hidden{display:none;visibility:hidden}joomla-alert{display:none}.awesomplete{display:block}.btn.btn-xs,.btn-group-xs>.btn{padding:.09rem .4rem;font-size:.7rem;line-height:1.2;border-radius:.2rem}.btn.btn-xs .caret{font-size:16px;line-height:13px}.btn:focus,.btn.focus,.btn:active:focus,.btn.focus:active,.btn.active:focus,.btn.active.focus{text-decoration:none}.btn.group-move{cursor:move}.btn-secondary{color:#343a40;background-color:#fefefe;border-color:#ced4da}.btn-secondary:hover,.btn-secondary:focus{color:#343a40;background-color:#f8f9fa}.card{background-color:#f8f8f8}.card.card-light{background-color:#f8f8f8}.card.card-dark{background-color:#0d1321}.card.card-dark>*,.card.card-dark a:not(.dropdown-item),.card.card-dark .module-dropdown>a{color:#fefefe}.card.card-dark .list-group-item{background:0}.custom-select.custom-select-color-state.custom-select-success{color:#fefefe;background-color:#438243}.custom-select.custom-select-color-state.custom-select-success option{color:#495057;background-color:#fefefe}.custom-select.custom-select-color-state.custom-select-danger{color:#fefefe;background-color:#d9534f}.custom-select.custom-select-color-state.custom-select-danger option{color:#495057;background-color:#fefefe}.accordion .card-header{display:block;font-size:.9286rem;font-weight:bold;line-height:1.2}.accordion .list-group-item{color:#006898}.dropdown-menu{padding:.2rem 0;margin-top:.5rem;background-color:#fefefe;border-color:#ccc}.dropdown-menu::after{position:absolute;top:-1.5rem;left:.9rem;font-family:FontAwesome;font-size:1.6rem;color:#fefefe;text-shadow:0 -1px 0 rgba(0,0,0,0.2);content:"\f0d8"}.dropdown-item{padding:3px .75rem}.dropdown-menu-right::after{right:.9rem;left:auto}.list-group-item{background-color:#fefefe}.list-unstyled .list-unstyled{padding-left:20px}.jviewport-height10{height:10vh}.jviewport-height20{height:20vh}.jviewport-height30{height:30vh}.jviewport-height40{height:40vh}.jviewport-height50{height:50vh}.jviewport-height60{height:60vh}.jviewport-height70{height:70vh}.jviewport-height80{height:80vh}.jviewport-height90{height:90vh}.jviewport-height100{height:100vh}[class*=jviewport-height] iframe{height:100%}.modal-dialog.jviewport-width10{width:10vw;max-width:none}.modal-dialog.jviewport-width20{width:20vw;max-width:none}.modal-dialog.jviewport-width30{width:30vw;max-width:none}.modal-dialog.jviewport-width40{width:40vw;max-width:none}.modal-dialog.jviewport-width50{width:50vw;max-width:none}.modal-dialog.jviewport-width60{width:60vw;max-width:none}.modal-dialog.jviewport-width70{width:70vw;max-width:none}.modal-dialog.jviewport-width80{width:80vw;max-width:none}.modal-dialog.jviewport-width90{width:90vw;max-width:none}.modal-dialog.jviewport-width100{width:100vw;max-width:none}.nav.nav-tabs{padding:0;margin:0;background-color:#f5f5f5;border:1px solid #ccc;border-bottom:0;border-radius:.25rem .25rem 0 0;-webkit-box-shadow:0 1px #fff inset,0 2px 3px -3px rgba(0,0,0,0.15),0 -4px 0 rgba(0,0,0,0.05) inset,0 0 3px rgba(0,0,0,0.04);box-shadow:0 1px #fff inset,0 2px 3px -3px rgba(0,0,0,0.15),0 -4px 0 rgba(0,0,0,0.05) inset,0 0 3px rgba(0,0,0,0.04)}.nav.nav-tabs .nav-item{margin-bottom:0;margin-left:0}.nav.nav-tabs .nav-item:first-of-type .nav-link.active{border-radius:.25rem 0 0;-webkit-box-shadow:-1px 0 1px -1px rgba(0,0,0,0.06),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02);box-shadow:-1px 0 1px -1px rgba(0,0,0,0.06),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02)}.nav.nav-tabs .nav-item:last-of-type .nav-link{-webkit-box-shadow:-1px 0 0 rgba(0,0,0,0.05),1px 0 0 rgba(0,0,0,0.05);box-shadow:-1px 0 0 rgba(0,0,0,0.05),1px 0 0 rgba(0,0,0,0.05)}.nav.nav-tabs .nav-item:last-of-type .nav-link.active{-webkit-box-shadow:inset 2px 0 1px -1px rgba(0,0,0,0.08),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02);box-shadow:inset 2px 0 1px -1px rgba(0,0,0,0.08),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02)}.nav.nav-tabs .nav-link{position:relative;padding:.75em 1em;color:#0d1321;border:0;border-top-left-radius:0;border-top-right-radius:0;-webkit-box-shadow:-1px 0 0 rgba(0,0,0,0.05);box-shadow:-1px 0 0 rgba(0,0,0,0.05)}.nav.nav-tabs .nav-link.active{background-color:rgba(0,0,0,0.03);background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,0.05)));background-image:linear-gradient(to bottom,transparent,rgba(0,0,0,0.05) 100%);border-right:0;border-left:0;border-top-left-radius:0;border-top-right-radius:0;-webkit-box-shadow:inset 2px 0 1px -1px rgba(0,0,0,0.08),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02);box-shadow:inset 2px 0 1px -1px rgba(0,0,0,0.08),inset -2px 0 1px -1px rgba(0,0,0,0.08),inset 0 1px 0 rgba(0,0,0,0.02)}.nav.nav-tabs .nav-link.active::after{position:absolute;right:0;bottom:-1px;left:0;height:5px;content:"";background-color:#006898;opacity:.8}.nav-tabs+.tab-content{padding:15px;background:#fefefe;border:1px solid;border-color:#ccc;border-radius:0 0 .25rem .25rem;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.04);box-shadow:0 0 3px rgba(0,0,0,0.04)}.pagination{margin:1rem}.table thead th{white-space:nowrap;border-bottom-width:1px}.table th,.table td{padding:8px;vertical-align:middle}.table th label,.table td label{margin-bottom:0}.chzn-container.chzn-container-single .chzn-single{display:inline-block;max-width:100%;height:calc(calc(2.25rem + 2px) - 2px);padding:.375rem 1.75rem .375rem .75rem;padding-right:.75rem \9;line-height:1.5;color:#495057;vertical-align:middle;background:#fefefe url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-image:none \9;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-box-shadow:none;box-shadow:none;-moz-appearance:none;-webkit-appearance:none}.chzn-container.chzn-container-single .chzn-single abbr{top:10px}.chzn-container.chzn-container-single .chzn-single:focus{border-color:#19b6ff;outline:0}.chzn-container.chzn-container-single .chzn-single:disabled{color:#868e96;cursor:not-allowed;background-color:#e9ecef}.chzn-container.chzn-container-single .chzn-single div b{background:0}.chzn-container.chzn-container-single .chzn-drop{background:#fefefe;border:1px solid #ced4da}.chzn-container.chzn-container-single.chzn-container-active .chzn-single{border-bottom-right-radius:0;border-bottom-left-radius:0}.chzn-container-single{width:auto !important}.card .chzn-container.chzn-container-single{width:100% !important}.card .chzn-container.chzn-container-single .chzn-single{width:100% !important}.gu-mirror{position:fixed !important;z-index:9999 !important;margin:0 !important;cursor:move;background-color:#90ee90;opacity:.8}.gu-mirror.table{display:table}.gu-mirror.table td{display:table-cell}.js-draggable .sortable-handler{cursor:move}.minicolors-theme-bootstrap .minicolors-input{width:120px}.minicolors-theme-bootstrap .rgb{width:175px}.minicolors-theme-bootstrap .rgba{width:220px}.editor .toggle-editor{margin-top:1rem}.editor .mce-tinymce{border:1px solid #ccc;border-radius:.25rem}.editor .mce-btn,.editor .mce-panel{background:#f8f8f8}.com_config .content{background-color:transparent}.com_config [class^='col-']>fieldset{margin-bottom:2rem}.com_cpanel .content{margin-top:0}.com_cpanel .card{-webkit-box-shadow:0 0 3px rgba(0,0,0,0.04);box-shadow:0 0 3px rgba(0,0,0,0.04)}.com_cpanel .card p:first-of-type{margin-top:1rem}.com_cpanel .card p:last-child{margin-bottom:0}.com_cpanel .card .list-group{margin-top:0;margin-right:-1.25rem;margin-bottom:-1.25rem;margin-left:-1.25rem}.com_cpanel .card .list-group>li{padding:.6rem 1.25rem;overflow:hidden}.com_cpanel .card .list-group>.published{padding-left:.9rem;border-left:5px solid #438243}.com_cpanel .card .list-group>.unpublished{padding-left:.9rem;border-left:5px solid #d9534f}.com_cpanel .card .list-group:first-of-type{border-top:0}.com_cpanel .card .list-group-item:first-child{border-top:0;border-top-left-radius:0;border-top-right-radius:0}.com_cpanel .card .list-group-item:last-child{border-bottom:0;border-top-left-radius:0;border-top-right-radius:0}.com_cpanel .card-title{position:relative;padding:.9em 1.25rem .75rem;margin-top:-1.25rem;margin-right:-1.25rem;margin-bottom:0;margin-left:-1.25rem;font-size:.9286rem;color:#1c3d5c;background-color:#f5f5f5;border-bottom:1px solid rgba(0,0,0,0.125);border-radius:.25rem .25rem 0 0;-webkit-box-shadow:0 1px #fefefe inset,0 2px 3px -3px rgba(0,0,0,0.15);box-shadow:0 1px #fefefe inset,0 2px 3px -3px rgba(0,0,0,0.15)}.com_cpanel .module-actions{position:absolute;top:0;right:0;z-index:2}.com_cpanel .module-actions>a{display:inline-block;width:2.6em;height:2.6em;line-height:2.6em;color:#495057;text-align:center;background-color:#f5f5f5;border-left:1px solid #ccc;border-top-right-radius:.25rem;-webkit-box-shadow:1px 0 #fefefe inset;box-shadow:1px 0 #fefefe inset}.com_cpanel .module-actions>a:hover,.com_cpanel .module-actions>a:focus{background-color:#f0f0f0;-webkit-box-shadow:none;box-shadow:none}.admin.com_modules .js-stools-container-bar .btn-toolbar{float:left}.menu-assignment{position:relative}.menu-assignment .menu-links{padding-left:0;margin-top:15px;margin-left:0;-webkit-column-count:3;column-count:3;-webkit-column-gap:15px;column-gap:15px}.menu-assignment .menu-links>li{display:inline-block;width:100%;margin-bottom:15px;vertical-align:top;list-style:none;column-break-inside:avoid;-webkit-backface-visibility:hidden;backface-visibility:hidden}.menu-assignment .menu-links-block{padding:15px;background-color:#fafafa;border:1px solid #ddd;border-radius:3px}.menu-assignment label{display:block}.menu-assignment label input{position:relative;top:2px}@media(max-width:767px){.menu-assignment .menu-links{-webkit-column-count:auto;column-count:auto}}.com_users.view-debuggroup thead th,.com_users.view-debuguser thead th{white-space:normal}.com_users.view-debuggroup .legend,.com_users.view-debuguser .legend{margin:1rem 1rem 0}.container-main,.system-debug{padding-bottom:50px}.container-main{position:relative;min-height:calc(100vh - 50px);padding-top:15px;background-color:#f2f2f2}@media(max-width:991.98px){.container-main{padding-left:50px;margin-top:47px}}.list-view-main .container-main{background-color:#f2f2f2}.content{margin-top:45px;border-radius:.25rem}.content>.row{margin-right:0;margin-left:0}.j-main-container{background-color:#fefefe;border:1px solid rgba(0,0,0,0.17);border-radius:.25rem;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.075);box-shadow:0 0 3px rgba(0,0,0,0.075)}.row-selected{background-color:#d9edf7}.chzn-container-single{width:auto !important}.item-associations{padding:0}.item-associations li{display:inline-block;list-style:none} \ No newline at end of file diff --git a/administrator/templates/atum/scss/blocks/_toolbar.scss b/administrator/templates/atum/scss/blocks/_toolbar.scss index 83f8ed0c83372..e3517f28d6b1b 100644 --- a/administrator/templates/atum/scss/blocks/_toolbar.scss +++ b/administrator/templates/atum/scss/blocks/_toolbar.scss @@ -33,7 +33,7 @@ } - button:first-of-type { + > *:first-child { margin: 0; } @@ -47,9 +47,7 @@ padding: 0 10px; font-size: .875rem; line-height: $atum-toolbar-line-height; - color: $body-color; - background-color: $white-offset; - border-color: $atum-border-color; + box-shadow: 0 1px 2px rgba(0,0,0,.05); [class^="icon-"], @@ -75,99 +73,57 @@ } - .btn-primary, - .btn-outline-primary { - - [class^="icon-"], - [class*=" icon-"], - [class^="#{$fa-css-prefix}-"], - [class*=" #{$fa-css-prefix}-"] { - color: theme-color("primary"); - } - - } - - .btn-success, - .btn-outline-success { + @each $color, $value in $theme-colors { + .btn-outline-#{$color} { + color: $body-color; + background-color: $white-offset; + border-color: $atum-border-color; - [class^="icon-"], - [class*=" icon-"], - [class^="#{$fa-css-prefix}-"], - [class*=" #{$fa-css-prefix}-"] { - color: theme-color("success"); + [class^="icon-"], + [class*=" icon-"], + [class^="#{$fa-css-prefix}-"], + [class*=" #{$fa-css-prefix}-"] { + color: theme-color($color); + } } - } - - .btn-info, - .btn-outline-info { + .btn-#{$color}:not(.dropdown-toggle-split) { + color: $white-offset; + background-color: theme-color($color); + border-color: rgba(0,0,0,.2); + + [class^="icon-"], + [class*=" icon-"], + [class^="#{$fa-css-prefix}-"], + [class*=" #{$fa-css-prefix}-"] { + width: 16px; + margin-right: 0; + margin-left: 0; + color: $white-offset; + background-color: transparent; + border-right: 0 none; + border-left: 0 none; + } + + &:hover { + background-color: darken(theme-color($color), 10%); + } - [class^="icon-"], - [class*=" icon-"], - [class^="#{$fa-css-prefix}-"], - [class*=" #{$fa-css-prefix}-"] { - color: theme-color("info"); } - } + .btn-#{$color}.dropdown-toggle-split { + background: darken(theme-color($color), 12%); + border-color: darken(theme-color($color), 12%); - .btn-danger, - .btn-outline-danger { + &::after { + color: $white-offset; + } - [class^="icon-"], - [class*=" icon-"], - [class^="#{$fa-css-prefix}-"], - [class*=" #{$fa-css-prefix}-"] { - color: theme-color("danger"); } - } - .btn-warning, - .btn-outline-warning { - - [class^="icon-"], - [class*=" icon-"], - [class^="#{$fa-css-prefix}-"], - [class*=" #{$fa-css-prefix}-"] { - color: theme-color("warning"); - } - - } - - .btn-success:not(.dropdown-toggle) { + .button-new, .button-apply, .button-wide { width: 140px; - color: $white-offset; - background-color: theme-color("success"); - border-color: rgba(0,0,0,.2); - - [class^="icon-"], - [class*=" icon-"], - [class^="#{$fa-css-prefix}-"], - [class*=" #{$fa-css-prefix}-"] { - width: 16px; - margin-right: 0; - margin-left: 0; - color: $white-offset; - background-color: transparent; - border-right: 0 none; - border-left: 0 none; - } - - &:hover { - background-color: darken(theme-color("success"), 10%); - } - - } - - .btn-success.dropdown-toggle { - background: darken(theme-color("success"), 12%); - border-color: darken(theme-color("success"), 12%); - - &::after { - color: $white-offset; - } - } > *:first-child:not(.float-sm-right) { diff --git a/layouts/joomla/toolbar/apply.php b/layouts/joomla/toolbar/apply.php deleted file mode 100644 index d58c7cc2e44fe..0000000000000 --- a/layouts/joomla/toolbar/apply.php +++ /dev/null @@ -1,36 +0,0 @@ - $ctrls); - Factory::getDocument()->addScriptOptions('keySave', $options); -} - -$id = isset($displayData['id']) ? $displayData['id'] : ''; -$doTask = $displayData['doTask']; -$class = $displayData['class']; -$text = $displayData['text']; -$btnClass = $displayData['btnClass']; -?> - onclick="" class=""> - - - diff --git a/layouts/joomla/toolbar/base.php b/layouts/joomla/toolbar/base.php index 62ebb00a6aacd..9caf45d173770 100644 --- a/layouts/joomla/toolbar/base.php +++ b/layouts/joomla/toolbar/base.php @@ -9,5 +9,11 @@ defined('JPATH_BASE') or die; +/** + * @var string $action + * @var array $options + */ +extract($displayData, EXTR_OVERWRITE); ?> - + + diff --git a/layouts/joomla/toolbar/basic.php b/layouts/joomla/toolbar/basic.php new file mode 100644 index 0000000000000..3cda1395f2416 --- /dev/null +++ b/layouts/joomla/toolbar/basic.php @@ -0,0 +1,37 @@ + +< + id="" + onclick="" + class="" + + > + + +> diff --git a/layouts/joomla/toolbar/batch.php b/layouts/joomla/toolbar/batch.php index c5c56936ead0e..e47310947d42a 100644 --- a/layouts/joomla/toolbar/batch.php +++ b/layouts/joomla/toolbar/batch.php @@ -12,6 +12,8 @@ use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; +// TODO: Deprecate this file since we can use popup button to raise batch modal. + HTMLHelper::_('behavior.core'); $id = isset($displayData['id']) ? $displayData['id'] : ''; diff --git a/layouts/joomla/toolbar/confirm.php b/layouts/joomla/toolbar/confirm.php deleted file mode 100644 index 2d6070a97d1ab..0000000000000 --- a/layouts/joomla/toolbar/confirm.php +++ /dev/null @@ -1,24 +0,0 @@ - - onclick="" class="btn btn-sm btn-outline-danger"> - - - diff --git a/layouts/joomla/toolbar/dropdown.php b/layouts/joomla/toolbar/dropdown.php new file mode 100644 index 0000000000000..d35991fd10232 --- /dev/null +++ b/layouts/joomla/toolbar/dropdown.php @@ -0,0 +1,47 @@ + + + + diff --git a/layouts/joomla/toolbar/group/groupclose.php b/layouts/joomla/toolbar/group/groupclose.php deleted file mode 100644 index be20023dae01d..0000000000000 --- a/layouts/joomla/toolbar/group/groupclose.php +++ /dev/null @@ -1,14 +0,0 @@ - - - diff --git a/layouts/joomla/toolbar/group/groupmid.php b/layouts/joomla/toolbar/group/groupmid.php deleted file mode 100644 index ce704708147cd..0000000000000 --- a/layouts/joomla/toolbar/group/groupmid.php +++ /dev/null @@ -1,19 +0,0 @@ - - -