From 154266f188dd73b10e825e66db148d226a6fa190 Mon Sep 17 00:00:00 2001 From: Yuriy Bakhtin Date: Tue, 11 Jan 2022 20:24:32 +0300 Subject: [PATCH 01/67] New interface TabbedForm for activate first tab with error input (#5472) * New interface TabbedForm for activate first tab with error input * Update CHANGELOG.md * New interface TabbedFormModel for activate first tab with error input * Test for TabbedFormModel Co-authored-by: Lucas Bartholemy --- CHANGELOG_DEV.md | 1 + .../ui/form/interfaces/TabbedFormModel.php | 42 +++++++++ .../modules/ui/form/widgets/FormTabs.php | 64 +++++++++++++ .../models/TestTabbedFormModel.php | 90 +++++++++++++++++++ .../tests/codeception/unit/TabbedFormTest.php | 44 +++++++++ .../ui/tests/codeception/views/tab-first.php | 17 ++++ .../ui/tests/codeception/views/tab-second.php | 17 ++++ protected/humhub/widgets/Tabs.php | 50 ++++++----- 8 files changed, 304 insertions(+), 21 deletions(-) create mode 100644 protected/humhub/modules/ui/form/interfaces/TabbedFormModel.php create mode 100644 protected/humhub/modules/ui/form/widgets/FormTabs.php create mode 100644 protected/humhub/modules/ui/tests/codeception/models/TestTabbedFormModel.php create mode 100644 protected/humhub/modules/ui/tests/codeception/unit/TabbedFormTest.php create mode 100644 protected/humhub/modules/ui/tests/codeception/views/tab-first.php create mode 100644 protected/humhub/modules/ui/tests/codeception/views/tab-second.php diff --git a/CHANGELOG_DEV.md b/CHANGELOG_DEV.md index 545ecd67e8..8bf48c1416 100644 --- a/CHANGELOG_DEV.md +++ b/CHANGELOG_DEV.md @@ -3,5 +3,6 @@ - Fix #5434: Hide disabled next/prev buttons on guide first/last steps - Fix #5456: `canImpersonate` only possible for SystemAdmins +- Enh #5472: New interface `TabbedFormModel` for activate first tab with error input - Enh #5224: Add reply-to email in the settings - Enh #5471: On the pending approval page, add grouped actions and custom columns diff --git a/protected/humhub/modules/ui/form/interfaces/TabbedFormModel.php b/protected/humhub/modules/ui/form/interfaces/TabbedFormModel.php new file mode 100644 index 0000000000..111f762267 --- /dev/null +++ b/protected/humhub/modules/ui/form/interfaces/TabbedFormModel.php @@ -0,0 +1,42 @@ + 'First tab', + * 'view' => 'first-tab-view', + * 'linkOptions' => ['class' => 'first-tab-style'], + * 'fields' => ['name', 'email', 'password'], // Define all fields from the tab which may have errors after submit in order to make this tab active + * ], + * [ + * 'label' => 'Second tab', + * 'view' => 'second-tab-view', + * 'linkOptions' => ['class' => 'second-tab-style'], + * 'fields' => ['description', 'tags'], + * ], + * ] + * + * @return array + */ + public function getTabs(): array; +} \ No newline at end of file diff --git a/protected/humhub/modules/ui/form/widgets/FormTabs.php b/protected/humhub/modules/ui/form/widgets/FormTabs.php new file mode 100644 index 0000000000..3b6477568a --- /dev/null +++ b/protected/humhub/modules/ui/form/widgets/FormTabs.php @@ -0,0 +1,64 @@ +initTabbedFormItems(); + + parent::beforeSortItems(); + } + + private function initTabbedFormItems() + { + if (!($this->form instanceof TabbedFormModel && $this->form instanceof Model)) { + return; + } + + $items = $this->form->tabs; + if (empty($items)) { + return; + } + + $this->items = $items; + + if (!$this->form->hasErrors()) { + return; + } + + // Find first error with field and activate that tab + $errorFields = array_keys($this->form->getErrors()); + foreach ($this->items as $t => $tab) { + if (!empty(array_intersect($tab['fields'], $errorFields))) { + $this->items[$t]['active'] = true; + // Stop on first found error + return; + } + } + } +} \ No newline at end of file diff --git a/protected/humhub/modules/ui/tests/codeception/models/TestTabbedFormModel.php b/protected/humhub/modules/ui/tests/codeception/models/TestTabbedFormModel.php new file mode 100644 index 0000000000..c6843db947 --- /dev/null +++ b/protected/humhub/modules/ui/tests/codeception/models/TestTabbedFormModel.php @@ -0,0 +1,90 @@ + 'First name', + 'lastname' => 'Last name', + 'email' => 'E-mail address', + 'countryId' => 'Country', + 'stateId' => 'State', + 'cityId' => 'City', + ]; + } + + /** + * @inheritdoc + */ + public function rules() + { + return [ + [['firstname', 'lastname', 'email'], 'string'], + [['countryId', 'stateId', 'cityId'], 'integer'], + [['email', 'countryId'], 'required'], + ]; + } + + /** + * @inheritdoc + */ + public function getTabs(): array + { + return [ + [ + 'label' => 'First tab', + 'view' => 'tab-first', + 'fields' => ['firstname', 'lastname', 'email'], + ], + [ + 'label' => 'Second tab', + 'view' => 'tab-second', + 'fields' => ['countryId', 'stateId', 'cityId'], + ] + ]; + } +} \ No newline at end of file diff --git a/protected/humhub/modules/ui/tests/codeception/unit/TabbedFormTest.php b/protected/humhub/modules/ui/tests/codeception/unit/TabbedFormTest.php new file mode 100644 index 0000000000..25377592aa --- /dev/null +++ b/protected/humhub/modules/ui/tests/codeception/unit/TabbedFormTest.php @@ -0,0 +1,44 @@ +email = 'email@test.local'; + $this->assertFalse($tabbedForm->validate()); + + // Create a form with tabs + $form = ActiveForm::begin(['action' => '/test']); + $tabs = new FormTabs([ + 'form' => $tabbedForm, + 'viewPath' => '@ui/tests/codeception/views', + 'params' => ['form' => $form, 'tabbedForm' => $tabbedForm], + ]); + $this->assertTrue($tabs->beforeRun()); + $result = $tabs->run(); + $tabs->afterRun($result); + ActiveForm::end(); + + // Check the second tab is active with error in the empty field Country ID + $this->assertArrayNotHasKey('active', $tabs->items[0]); + $this->assertArrayHasKey('active', $tabs->items[1]); + $this->assertTrue($tabs->items[1]['active']); // <- Second tab is active + + $tabbedForm->countryId = 10; + $this->assertTrue($tabbedForm->validate()); + } +} diff --git a/protected/humhub/modules/ui/tests/codeception/views/tab-first.php b/protected/humhub/modules/ui/tests/codeception/views/tab-first.php new file mode 100644 index 0000000000..312b9db72d --- /dev/null +++ b/protected/humhub/modules/ui/tests/codeception/views/tab-first.php @@ -0,0 +1,17 @@ + + +field($tabbedForm, 'firstname')->textInput() ?> +field($tabbedForm, 'lastname')->textInput() ?> +field($tabbedForm, 'email')->textInput() ?> diff --git a/protected/humhub/modules/ui/tests/codeception/views/tab-second.php b/protected/humhub/modules/ui/tests/codeception/views/tab-second.php new file mode 100644 index 0000000000..1d0faac750 --- /dev/null +++ b/protected/humhub/modules/ui/tests/codeception/views/tab-second.php @@ -0,0 +1,17 @@ + + +field($tabbedForm, 'countryId')->textInput() ?> +field($tabbedForm, 'stateId')->textInput() ?> +field($tabbedForm, 'cityId')->textInput() ?> diff --git a/protected/humhub/widgets/Tabs.php b/protected/humhub/widgets/Tabs.php index c275921897..964bce817b 100644 --- a/protected/humhub/widgets/Tabs.php +++ b/protected/humhub/widgets/Tabs.php @@ -64,27 +64,6 @@ class Tabs extends \yii\bootstrap\Tabs return false; } - $index = 0; - foreach ($this->items as $key => $item) { - if (isset($item['view'])) { - $view = $item['view']; - if ($this->viewPath && strpos($view, '@') === false) { - $view = $this->viewPath . '/'.$item['view']; - } - - $this->items[$key]['content'] = $this->render($view, $this->getParams($item)); - unset($item['view']); - unset($item['params']); - } - - if (!isset($item['sortOrder'])) { - // keep stable sorting by adding counter (otherwise equal sorOrders will destroy index ordering) - $this->items[$key]['sortOrder'] = 1000 + ($index * 10); - } - - $index++; - } - $this->sortItems(); return true; @@ -135,11 +114,40 @@ class Tabs extends \yii\bootstrap\Tabs $this->items[] = $item; } + /** + * Before sorts the items + */ + protected function beforeSortItems() + { + $index = 0; + foreach ($this->items as $key => $item) { + if (isset($item['view'])) { + $view = $item['view']; + if ($this->viewPath && strpos($view, '@') === false) { + $view = $this->viewPath . '/'.$item['view']; + } + + $this->items[$key]['content'] = $this->render($view, $this->getParams($item)); + unset($item['view']); + unset($item['params']); + } + + if (!isset($item['sortOrder'])) { + // keep stable sorting by adding counter (otherwise equal sorOrders will destroy index ordering) + $this->items[$key]['sortOrder'] = 1000 + ($index * 10); + } + + $index++; + } + } + /** * Sorts the item attribute by sortOrder */ private function sortItems() { + $this->beforeSortItems(); + usort($this->items, function ($a, $b) { if ($a['sortOrder'] == $b['sortOrder']) { return 0; From 3894b250a6bd9ddca3f3c745c36cb6bc8d8c88b5 Mon Sep 17 00:00:00 2001 From: Yuriy Bakhtin Date: Wed, 19 Jan 2022 21:05:09 +0300 Subject: [PATCH 02/67] Display confirmation message before display embedded content (#5490) * Display confirmation message before display embedded content * Fix confirmation of embedded content * Optimize loading of embedded content * New setting "Show Oembed content only after consent" * Small fix * Change wording * Fix wording --- CHANGELOG_DEV.md | 1 + .../humhub/controllers/OembedController.php | 30 +++++ protected/humhub/models/UrlOembed.php | 118 +++++++++++++++++- .../admin/controllers/SettingController.php | 15 ++- .../admin/models/forms/OEmbedSettingsForm.php | 68 ++++++++++ .../modules/admin/views/setting/oembed.php | 14 +++ protected/humhub/widgets/CoreJsConfig.php | 3 +- static/js/humhub/humhub.oembed.js | 58 ++++++--- static/less/oembed.less | 30 +++++ themes/HumHub/css/theme.css | 2 +- 10 files changed, 316 insertions(+), 23 deletions(-) create mode 100644 protected/humhub/modules/admin/models/forms/OEmbedSettingsForm.php diff --git a/CHANGELOG_DEV.md b/CHANGELOG_DEV.md index 8bf48c1416..7e383791e2 100644 --- a/CHANGELOG_DEV.md +++ b/CHANGELOG_DEV.md @@ -6,3 +6,4 @@ - Enh #5472: New interface `TabbedFormModel` for activate first tab with error input - Enh #5224: Add reply-to email in the settings - Enh #5471: On the pending approval page, add grouped actions and custom columns +- Enh #5490: Display confirmation message before display embedded content diff --git a/protected/humhub/controllers/OembedController.php b/protected/humhub/controllers/OembedController.php index 91bcc167ad..b347e91e00 100644 --- a/protected/humhub/controllers/OembedController.php +++ b/protected/humhub/controllers/OembedController.php @@ -12,6 +12,7 @@ namespace humhub\controllers; use humhub\components\Controller; use humhub\models\UrlOembed; use Yii; +use yii\web\HttpException; /** * @since 1.3 @@ -44,4 +45,33 @@ class OembedController extends Controller return $this->asJson($result); } + + /** + * Display the hidden embedded content + */ + public function actionDisplay() + { + $this->forcePostRequest(); + + $url = Yii::$app->request->post('url'); + if (empty($url)) { + throw new HttpException(400, 'URL is not provided!'); + } + + $urlData = parse_url($url); + if (!isset($urlData['host'])) { + throw new HttpException(400, 'Wrong URL!'); + } + + if (Yii::$app->request->post('alwaysShow', false)) { + UrlOembed::saveAllowedDomain($urlData['host']); + } + + $urlOembed = UrlOembed::findExistingOembed($url); + + return $this->asJson([ + 'success' => true, + 'content' => $urlOembed ? $urlOembed->preview : UrlOembed::loadUrl($url) + ]); + } } diff --git a/protected/humhub/models/UrlOembed.php b/protected/humhub/models/UrlOembed.php index ff93318900..76acee3c7d 100644 --- a/protected/humhub/models/UrlOembed.php +++ b/protected/humhub/models/UrlOembed.php @@ -8,7 +8,10 @@ namespace humhub\models; -use yii\base\InvalidArgumentException; +use humhub\modules\admin\models\forms\OEmbedSettingsForm; +use humhub\modules\ui\icon\widgets\Icon; +use humhub\modules\user\models\User; +use humhub\widgets\Button; use humhub\events\OembedFetchEvent; use humhub\libs\RestrictedCallException; use humhub\libs\UrlOembedClient; @@ -154,10 +157,15 @@ class UrlOembed extends ActiveRecord $url = trim($url); if (static::hasOEmbedSupport($url)) { - $urlOembed = static::findExistingOembed($url); - $result = $urlOembed ? $urlOembed->preview : self::loadUrl($url); + if (!self::isAllowedDomain($url)) { + $result = self::confirmationContent($url); + } else { + $urlOembed = static::findExistingOembed($url); + $result = $urlOembed ? $urlOembed->preview : self::loadUrl($url); + } if (!empty($result)) { + return trim(preg_replace('/\s+/', ' ', $result)); } } @@ -208,7 +216,7 @@ class UrlOembed extends ActiveRecord * @return UrlOembed|null * @throws RestrictedCallException */ - protected static function findExistingOembed($url) + public static function findExistingOembed($url) { if (array_key_exists($url, static::$cache)) { return static::$cache[$url]; @@ -292,6 +300,35 @@ class UrlOembed extends ActiveRecord return null; } + /** + * Replace the embedded content with confirmation before display it + * + * @param string $url + * @return string + */ + protected static function confirmationContent(string $url): string + { + $urlData = parse_url($url); + $urlPrefix = $urlData['host'] ?? $url; + + $html = Html::tag('strong', Yii::t('base', 'Allow content from external source')) . + Html::tag('br') . + Yii::t('base', 'Do you want to enable content from \'{urlPrefix}\'?', ['urlPrefix' => Html::tag('strong', $urlPrefix)]) . + Html::tag('br') . + Html::tag('label', '' . Yii::t('base', 'Always allow content from this provider!')) . + Html::tag('br') . + Button::info(Yii::t('base', 'Confirm'))->action('oembed.display')->sm(); + + $html = Icon::get('info-circle') . + Html::tag('div', $html) . + Html::tag('div', '', ['class' => 'clearfix']); + + return Html::tag('div', $html, [ + 'data-url' => $url, + 'class' => 'oembed_confirmation', + ]); + } + /** * Validates the given $data array. * @@ -399,4 +436,77 @@ class UrlOembed extends ActiveRecord Yii::$app->settings->set('oembedProviders', Json::encode($providers)); } + /** + * Check the domain is always allowed to display for current User + * + * @param string $url Domain or full URL + * @return array + */ + public static function isAllowedDomain(string $url): bool + { + $oembedSettings = new OEmbedSettingsForm(); + if (!$oembedSettings->requestConfirmation) { + return true; + } + + if (Yii::$app->user->isGuest) { + return true; + } + + if (preg_match('#^(https?:)?//#i',$url)) { + $url = parse_url($url); + if (!isset($url['host'])) { + return false; + } + $url = $url['host']; + } + + return array_search($url, self::getAllowedDomains()) !== false; + } + + /** + * Get domains always allowed to be displayed for current User + * + * @return array + */ + public static function getAllowedDomains(): array + { + if (Yii::$app->user->isGuest) { + return []; + } + + /* @var User $user */ + $user = Yii::$app->user->getIdentity(); + + $allowedUrls = $user->settings->get('allowedOembedUrls'); + + return empty($allowedUrls) ? [] : explode(',', $allowedUrls); + } + + /** + * Add a new allowed domain for oembed URLs to the current User settings + * + * @param string $domain + * @return bool + */ + public static function saveAllowedDomain(string $domain): bool + { + if (Yii::$app->user->isGuest) { + return false; + } + + if (self::isAllowedDomain($domain)) { + return true; + } + + $allowedUrls = self::getAllowedDomains(); + $allowedUrls[] = $domain; + + /* @var User $user */ + $user = Yii::$app->user->getIdentity(); + $user->settings->set('allowedOembedUrls', implode(',', $allowedUrls)); + + return true; + } + } diff --git a/protected/humhub/modules/admin/controllers/SettingController.php b/protected/humhub/modules/admin/controllers/SettingController.php index cb512a246a..df6c84773a 100644 --- a/protected/humhub/modules/admin/controllers/SettingController.php +++ b/protected/humhub/modules/admin/controllers/SettingController.php @@ -16,6 +16,7 @@ use humhub\modules\admin\models\forms\FileSettingsForm; use humhub\modules\admin\models\forms\LogsSettingsForm; use humhub\modules\admin\models\forms\MailingSettingsForm; use humhub\modules\admin\models\forms\OEmbedProviderForm; +use humhub\modules\admin\models\forms\OEmbedSettingsForm; use humhub\modules\admin\models\forms\ProxySettingsForm; use humhub\modules\admin\models\forms\StatisticSettingsForm; use humhub\modules\admin\permissions\ManageSettings; @@ -301,9 +302,17 @@ class SettingController extends Controller public function actionOembed() { $providers = UrlOembed::getProviders(); - return $this->render('oembed', - [ - 'providers' => $providers + $settings = new OEmbedSettingsForm(); + + + if ($settings->load(Yii::$app->request->post()) && $settings->save()) { + $this->view->saved(); + return $this->redirect(['/admin/setting/oembed']); + } + + return $this->render('oembed', [ + 'providers' => $providers, + 'settings' => $settings, ]); } diff --git a/protected/humhub/modules/admin/models/forms/OEmbedSettingsForm.php b/protected/humhub/modules/admin/models/forms/OEmbedSettingsForm.php new file mode 100644 index 0000000000..724c7a2f6c --- /dev/null +++ b/protected/humhub/modules/admin/models/forms/OEmbedSettingsForm.php @@ -0,0 +1,68 @@ +requestConfirmation = (bool) Yii::$app->settings->get('oembed.requestConfirmation', true); + } + + /** + * @inheritdoc + */ + public function rules() + { + return [ + ['requestConfirmation', 'boolean'], + ]; + } + + /** + * @inheritdoc + */ + public function attributeLabels() + { + return [ + 'requestConfirmation' => Yii::t('AdminModule.settings', 'Embedded content requires the user\'s consent to be loaded'), + ]; + } + + public function save(): bool + { + if (!$this->validate()) { + return false; + } + + Yii::$app->settings->set('oembed.requestConfirmation', $this->requestConfirmation); + + return true; + } + +} diff --git a/protected/humhub/modules/admin/views/setting/oembed.php b/protected/humhub/modules/admin/views/setting/oembed.php index 51375cce88..d2108587b8 100644 --- a/protected/humhub/modules/admin/views/setting/oembed.php +++ b/protected/humhub/modules/admin/views/setting/oembed.php @@ -1,7 +1,13 @@ beginContent('@admin/views/setting/_advancedLayout.php') ?> @@ -22,4 +28,12 @@ use yii\helpers\Url;

+ + + field($settings, 'requestConfirmation')->checkbox() ?> + + submit() ?> + + + endContent(); ?> diff --git a/protected/humhub/widgets/CoreJsConfig.php b/protected/humhub/widgets/CoreJsConfig.php index ea40c78a0a..16d462933a 100644 --- a/protected/humhub/widgets/CoreJsConfig.php +++ b/protected/humhub/widgets/CoreJsConfig.php @@ -162,7 +162,8 @@ class CoreJsConfig extends Widget ] ], 'oembed' => [ - 'loadUrl' => Url::to(['/oembed']) + 'loadUrl' => Url::to(['/oembed']), + 'displayUrl' => Url::to(['/oembed/display']), ], 'ui.markdown', [ 'text' => [ diff --git a/static/js/humhub/humhub.oembed.js b/static/js/humhub/humhub.oembed.js index 87090e8e52..e795af5bd3 100644 --- a/static/js/humhub/humhub.oembed.js +++ b/static/js/humhub/humhub.oembed.js @@ -28,28 +28,58 @@ humhub.module('oembed', function(module, require, $) { }); }; - var get = function(url) { - var $result = null; + const get = function(url) { + const $result = cache[url] ? $(cache[url]) : findSnippetByUrl(url); - if (cache[url]) { - $result = $(cache[url]); - } else { - var $dom = $('[data-oembed="' + $.escapeSelector(util.string.escapeHtml(url, true)) + '"]:first'); - if ($dom.length && $dom.is('[data-oembed]')) { - $result = $dom.find('.oembed_snippet').clone().show(); - } - } - - if($result && $result.is('.oembed_snippet')) { + if ($result && $result.is('.oembed_snippet,.oembed_confirmation')) { return $result; } return null; }; + const findSnippetByUrl = function(url) { + const $dom = $('[data-oembed="' + $.escapeSelector(util.string.escapeHtml(url, true)) + '"]:first') + if (!$dom.length || !$dom.is('[data-oembed]')) { + return null; + } + + const confirmation = $dom.find('.oembed_confirmation'); + if (confirmation.length) { + return confirmation.clone().show(); + } + + return $dom.find('.oembed_snippet').clone().show(); + } + + const display = function(evt) { + const confirmation = evt.$trigger.closest('.oembed_confirmation'); + if (!confirmation.length) { + return; + } + + const data = { + url: confirmation.data('url'), + alwaysShow: confirmation.find('input[type=checkbox]:checked').length ? 1 : 0, + } + + client.post(module.config.displayUrl, {data}).then(function(response) { + if (response.success) { + confirmation.after(response.content).remove(); + } else { + module.log.error(response, true); + evt.finish(); + } + }).catch(function(e) { + module.log.error(e, true); + evt.finish(); + }); + }; + module.export({ - load: load, - get: get + load, + get, + display, }); }); diff --git a/static/less/oembed.less b/static/less/oembed.less index ee97f0220b..8f43b3b963 100644 --- a/static/less/oembed.less +++ b/static/less/oembed.less @@ -20,3 +20,33 @@ width: 100%; height: 100%; } + +.oembed_confirmation { + background: #feebb4; + border-radius: 4px; + padding: 15px; + line-height: 30px; + i.fa { + float: left; + color: #02a0b0; + background: #FFF; + border-radius: 50%; + font-size: 30px; + line-height: 25px; + margin-right: 15px; + } + > div:not(.clearfix) { + float: left; + } + .regular-checkbox-box { + top: 6px; + } + .regular-checkbox { + &:not(:checked) + .regular-checkbox-box { + background: #FFF; + } + &:checked + .regular-checkbox-box:after { + top: -8px; + } + } +} \ No newline at end of file diff --git a/themes/HumHub/css/theme.css b/themes/HumHub/css/theme.css index 86e018f70c..cd107cded9 100644 --- a/themes/HumHub/css/theme.css +++ b/themes/HumHub/css/theme.css @@ -1 +1 @@ -.colorDefault{color:#f3f3f3}.backgroundDefault{background:#f3f3f3}.borderDefault{border-color:#f3f3f3}.colorPrimary{color:#435f6f !important}.backgroundPrimary{background:#435f6f !important}.borderPrimary{border-color:#435f6f !important}.colorInfo{color:#21A1B3 !important}.backgroundInfo{background:#21A1B3 !important}.borderInfo{border-color:#21A1B3 !important}.colorLink{color:#21A1B3 !important}.colorSuccess{color:#97d271 !important}.backgroundSuccess{background:#97d271 !important}.borderSuccess{border-color:#97d271 !important}.colorWarning{color:#FFC107 !important}.backgroundWarning{background:#FFC107 !important}.borderWarning{border-color:#FFC107 !important}.colorDanger{color:#FC4A64 !important}.backgroundDanger{background:#FC4A64 !important}.borderDanger{border-color:#FC4A64 !important}.colorFont1{color:#bac2c7 !important}.colorFont2{color:#7a7a7a !important}.colorFont3{color:#000 !important}.colorFont4{color:#555555 !important}.colorFont5{color:#aeaeae !important}.heading{font-size:16px;font-weight:300;color:#000;background-color:white;border:none;padding:10px}.text-center{text-align:center !important}.text-break{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.img-rounded{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}body{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;padding-top:130px;background-color:#ededed;color:#555;font-family:'Open Sans',sans-serif}body a,body a:hover,body a:focus,body a:active,body a.active{color:#000;text-decoration:none}a:hover{text-decoration:none}hr{margin-top:10px;margin-bottom:10px}.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{position:inherit}.layout-nav-container{padding:0 0 0 15px}.layout-sidebar-container{padding:0 15px 0 0}@media (max-width:768px){.layout-nav-container{padding:0 15px}.layout-nav-container .left-navigation{margin-bottom:0}}h4{font-weight:300;font-size:150%}input[type=text],input[type=password],input[type=select]{-webkit-appearance:none;-moz-appearance:none;appearance:none}.powered,.powered a{color:#b8c7d3 !important}.langSwitcher{display:inline-block}[data-ui-show-more]{overflow:hidden}@media (min-width:768px) and (max-width:991px){.layout-nav-container{padding:0 15px}body{padding-top:120px}}@media print{#topbar-first,#topbar-second{display:none}}span.likeLinkContainer .like.disabled,span.likeLinkContainer .unlike.disabled{pointer-events:none;cursor:default;text-decoration:none;color:lightgrey}.panel-body a[data-toggle],.modal-body a[data-toggle]{color:#21A1B3}.showMore{font-size:13px}.table-responsive{word-wrap:normal;overflow-wrap:normal;word-break:normal;-moz-hyphens:none;hyphens:none}.topbar{position:fixed;display:block;height:50px;width:100%;padding-left:15px;padding-right:15px}.topbar ul.nav{float:left}.topbar ul.nav>li{float:left}.topbar ul.nav>li>a{padding-top:15px;padding-bottom:15px;line-height:20px}.topbar .dropdown-footer{margin:10px}.topbar .dropdown-header{font-size:16px;padding:3px 10px;margin-bottom:10px;font-weight:300;color:#555555}.topbar .dropdown-header .dropdown-header-link{position:absolute;top:2px;right:10px}.topbar .dropdown-header .dropdown-header-link a{color:#21A1B3 !important;font-size:12px;font-weight:normal}.topbar .dropdown-header:hover{color:#555555}#topbar-first{background-color:#435f6f;top:0;z-index:1030;color:white}#topbar-first a.navbar-brand{height:50px;padding:5px}#topbar-first a.navbar-brand img#img-logo{max-height:40px}#topbar-first a.navbar-brand-text{padding-top:15px}#topbar-first .nav>li>a:hover,#topbar-first .nav>.open>a{background-color:#567a8f}#topbar-first .nav>.account{height:50px;margin-left:20px}#topbar-first .nav>.account img{margin-left:10px}#topbar-first .nav>.account .dropdown-toggle{padding:10px 5px 8px;line-height:1.1em;text-align:left}#topbar-first .nav>.account .dropdown-toggle span{font-size:12px}#topbar-first .topbar-brand{position:relative;z-index:2}#topbar-first .topbar-actions{position:relative;z-index:3}#topbar-first .notifications{position:absolute;left:0;right:0;text-align:center;z-index:1}#topbar-first .notifications .btn-group{position:relative;text-align:left}#topbar-first .notifications .btn-group>a{padding:5px 10px;margin:10px 2px;display:inline-block;border-radius:2px;text-decoration:none;text-align:left}#topbar-first .notifications .btn-group>.label{position:absolute;top:4px;right:-2px}#topbar-first .notifications .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;border-width:10px;content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff;z-index:1035}#topbar-first .notifications .arrow{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;z-index:1001;border-width:11px;left:50%;margin-left:-18px;border-top-width:0;border-bottom-color:rgba(0,0,0,0.15);top:-19px;z-index:1035}#topbar-first .notifications .dropdown-menu{width:350px;margin-left:-148px}#topbar-first .notifications .dropdown-menu ul.media-list{max-height:400px;overflow:auto}#topbar-first .notifications .dropdown-menu li{position:relative}#topbar-first .notifications .dropdown-menu li i.approval{position:absolute;left:2px;top:36px;font-size:14px}#topbar-first .notifications .dropdown-menu li i.accepted{color:#5cb85c}#topbar-first .notifications .dropdown-menu li i.declined{color:#d9534f}#topbar-first .notifications .dropdown-menu li .media{position:relative}#topbar-first .notifications .dropdown-menu li .media .img-space{position:absolute;top:14px;left:14px}#topbar-first .dropdown-footer{margin:10px 10px 5px}#topbar-first a{color:white}#topbar-first .caret{border-top-color:#fff}#topbar-first .btn-group>a{background-color:#4d6d7f}#topbar-first .btn-enter{background-color:#4d6d7f;margin:6px 0}#topbar-first .btn-enter:hover{background-color:#527588}#topbar-first .media-list a{color:#000;padding:0}#topbar-first .media-list li{color:#000}#topbar-first .media-list li i.accepted{color:#21A1B3 !important}#topbar-first .media-list li i.declined{color:#FC4A64 !important}#topbar-first .media-list li.placeholder{border-bottom:none}#topbar-first .media-list .media .media-body .label{padding:.1em .5em}#topbar-first .account .user-title{text-align:right}#topbar-first .account .user-title span{color:#d7d7d7}#topbar-first .dropdown.account>a,#topbar-first .dropdown.account.open>a,#topbar-first .dropdown.account>a:hover,#topbar-first .dropdown.account.open>a:hover{background-color:#435f6f}#topbar-second{top:50px;background-color:#fff;z-index:1029;background-image:none;-webkit-box-shadow:0 1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,0.1);box-shadow:0 1px 10px rgba(0,0,0,0.1);border-bottom:1px solid #d4d4d4}#topbar-second .dropdown-menu{padding-top:0;padding-bottom:0}#topbar-second .dropdown-menu .divider{margin:0}#topbar-second #space-menu-dropdown,#topbar-second #search-menu-dropdown{width:400px}#topbar-second #space-menu-dropdown .media-list,#topbar-second #search-menu-dropdown .media-list{max-height:400px;overflow:auto}@media screen and (max-width:768px){#topbar-second #space-menu-dropdown .media-list,#topbar-second #search-menu-dropdown .media-list{max-height:200px}}#topbar-second #space-menu-dropdown form,#topbar-second #search-menu-dropdown form{margin:10px}#topbar-second #space-menu-dropdown .search-reset,#topbar-second #search-menu-dropdown .search-reset{position:absolute;color:#BFBFBF;margin:7px;top:0px;right:40px;z-index:10;display:none;cursor:pointer}#topbar-second .nav>li>a{padding:7px 13px 0;text-decoration:none;text-shadow:none;font-weight:600;font-size:10px;min-height:50px;text-transform:uppercase;text-align:center}#topbar-second .nav>li>a:hover,#topbar-second .nav>li>a:active,#topbar-second .nav>li>a:focus{border-bottom:3px solid #21A1B3;background-color:#f7f7f7;color:#000;text-decoration:none}#topbar-second .nav>li>a i{font-size:14px}#topbar-second .nav>li>a .caret{border-top-color:#7a7a7a}#topbar-second .nav>li.active>a{min-height:47px}#topbar-second .nav>li>ul>li>a{border-left:3px solid #fff;background-color:#fff;color:#000}#topbar-second .nav>li>ul>li>a:hover,#topbar-second .nav>li>ul>li>a.active{border-left:3px solid #21A1B3;background-color:#f7f7f7;color:#000}#topbar-second .nav>li>a#space-menu{padding-right:13px;border-right:1px solid #ededed}#topbar-second .nav>li>a#search-menu{padding-top:15px}#topbar-second .nav>li>a:hover,#topbar-second .nav>li.active{border-bottom:3px solid #21A1B3;background-color:#f7f7f7;color:#000}#topbar-second .nav>li.active>a:hover,#topbar-second .nav>li.active>a:focus{border-bottom:none}#topbar-second #space-menu-dropdown li>ul>li>a>.media .media-body p{color:#555555;font-size:11px;margin:0;font-weight:400}@media (max-width:767px){.topbar{padding-left:0;padding-right:0}}.login-container{background-color:#435f6f;background-image:linear-gradient(to right, #435f6f 0%, #567a8f 50%, #567a8f 100%),linear-gradient(to right, #4d6d7f 0%, #7fa0b2 51%, #7094a8 100%);background-size:100% 100%;position:relative;padding-top:40px}.login-container #img-logo{max-width:100%}.login-container .text{color:#fff;font-size:12px;margin-bottom:15px}.login-container .text a{color:#fff;text-decoration:underline}.login-container .panel a{color:#21A1B3}.login-container h1,.login-container h2{color:#fff !important}.login-container .panel{box-shadow:0 0 15px #627d92;-moz-box-shadow:0 0 15px #627d92;-webkit-box-shadow:0 0 15px #627d92}.login-container .panel .panel-heading,.login-container .panel .panel-body{padding:15px}.login-container .panel h1,.login-container .panel h2{color:#555 !important}.login-container select{color:#000}#account-login-form .form-group{margin-bottom:10px}.dropdown-menu li a i{margin-right:5px;font-size:14px;display:inline-block;width:14px}.dropdown-menu li a:hover,.dropdown-menu li a:visited,.dropdown-menu li a:hover,.dropdown-menu li a:focus{background:none;cursor:pointer}.dropdown-menu li:hover,.dropdown-menu li.selected{color:#000}.dropdown-menu li:first-child{margin-top:3px}.dropdown-menu li:last-child{margin-bottom:3px}.modal .dropdown-menu,.panel .dropdown-menu,.nav-tabs .dropdown-menu{border:1px solid #d7d7d7}.modal .dropdown-menu li.divider,.panel .dropdown-menu li.divider,.nav-tabs .dropdown-menu li.divider{background-color:#f7f7f7;border-bottom:none;margin:9px 1px !important}.modal .dropdown-menu li,.panel .dropdown-menu li,.nav-tabs .dropdown-menu li{border-left:3px solid white}.modal .dropdown-menu li a,.panel .dropdown-menu li a,.nav-tabs .dropdown-menu li a{color:#000;font-size:13px;font-weight:600;padding:4px 15px}.modal .dropdown-menu li a i,.panel .dropdown-menu li a i,.nav-tabs .dropdown-menu li a i{margin-right:5px}.modal .dropdown-menu li a:hover,.panel .dropdown-menu li a:hover,.nav-tabs .dropdown-menu li a:hover{background:none}.modal .dropdown-menu li:hover,.panel .dropdown-menu li:hover,.nav-tabs .dropdown-menu li:hover,.modal .dropdown-menu li.selected,.panel .dropdown-menu li.selected,.nav-tabs .dropdown-menu li.selected{border-left:3px solid #21A1B3;background-color:#f7f7f7 !important}ul.contextMenu{border:1px solid #d7d7d7}ul.contextMenu li.divider{background-color:#f7f7f7;border-bottom:none;margin:9px 1px !important}ul.contextMenu li{border-left:3px solid white}ul.contextMenu li a{color:#000;font-size:14px;font-weight:400;padding:4px 15px}ul.contextMenu li a i{margin-right:5px}ul.contextMenu li a:hover{background:none}ul.contextMenu li:hover,ul.contextMenu li.selected{border-left:3px solid #21A1B3;background-color:#f7f7f7 !important}.media-list li{padding:10px;border-bottom:1px solid #eee;position:relative;border-left:3px solid white;font-size:12px}.media-list li a{color:#555}.media-list .badge-space-type{background-color:#f7f7f7;border:1px solid #d7d7d7;color:#b2b2b2;padding:3px 3px 2px 3px}.media-list li.new{border-left:3px solid #21A1B3;background-color:#c5eff4}.media-list li:hover,.media-list li.selected{background-color:#f7f7f7;border-left:3px solid #21A1B3}.media-list li.placeholder{font-size:14px !important;border-bottom:none}.media-list li.placeholder:hover{background:none !important;border-left:3px solid white}.media-left,.media>.pull-left{padding-right:0;margin-right:10px}.media:after{content:'';clear:both;display:block}.media .time{font-size:11px;color:#555555}.media .img-space{position:absolute;top:35px;left:35px}.media .media-body{overflow:hidden !important;font-size:13px;white-space:normal;word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.media .media-body h4.media-heading{font-size:14px;font-weight:500;color:#000}.media .media-body h4.media-heading a{color:#000}.media .media-body h4.media-heading small,.media .media-body h4.media-heading small a{font-size:11px;color:#555555}.media .media-body h4.media-heading .content{margin-right:35px}.media .media-body .content a{word-break:break-all}.media .media-body strong{color:#000}.media .media-body h5{color:#aeaeae;font-weight:300;margin-top:5px;margin-bottom:5px;min-height:15px}.media .media-body .module-controls{font-size:85%}.media .media-body .module-controls a{color:#21A1B3}.media .content a{color:#21A1B3}.media .content .files a{color:#000}.content span{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}#blueimp-gallery .slide img{max-height:80%}audio,canvas,progress,video{display:inline-block;vertical-align:baseline;max-width:100%;height:auto}img{image-orientation:from-image}.panel{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;border:none;background-color:#fff;box-shadow:0 0 3px #dadada;-webkit-box-shadow:0 0 3px #dadada;-moz-box-shadow:0 0 3px #dadada;border-radius:4px;position:relative;margin-bottom:15px}.panel h1{font-size:16px;font-weight:300;margin-top:0;color:#000}.panel .panel-heading{font-size:16px;font-weight:300;color:#000;background-color:white;border:none;padding:10px;border-radius:4px}.panel .panel-heading .heading-link{color:#6fdbe8 !important;font-size:.8em}.panel .panel-body{padding:10px;font-size:13px}.panel .panel-body p{color:#555}.panel .panel-body p a{color:#21A1B3}.panel .panel-body .usersearch-statuses,.panel .panel-body .spacesearch-visibilities{padding-top:5px;padding-bottom:5px}@media (min-width:992px){.panel .panel-body .usersearch-statuses,.panel .panel-body .spacesearch-visibilities{padding-top:0;padding-bottom:0;padding-left:0}}.panel .statistics .entry{margin-left:20px;font-size:12px;color:#000}.panel .statistics .entry .count{color:#21A1B3;font-weight:600;font-size:20px;line-height:.8em}.panel h3.media-heading small{font-size:75%}.panel h3.media-heading small a{color:#21A1B3}.panel-danger{border:2px solid #FC4A64}.panel-danger .panel-heading{color:#FC4A64}.panel-success{border:2px solid #97d271}.panel-success .panel-heading{color:#97d271}.panel-warning{border:2px solid #FFC107}.panel-warning .panel-heading{color:#FFC107}.panel.profile{position:relative}.panel.profile .controls{position:absolute;top:10px;right:10px}.panel.members .panel-body a img,.panel.groups .panel-body a img,.panel.follower .panel-body a img,.panel.spaces .panel-body a img{margin-bottom:5px}.panel-profile .panel-profile-header{position:relative;border:3px solid #fff;border-top-right-radius:3px;border-top-left-radius:3px}.panel-profile .panel-profile-header .img-profile-header-background{border-radius:3px;min-height:110px}.panel-profile .panel-profile-header .img-profile-data{position:absolute;height:100px;width:100%;bottom:0;left:0;padding-left:180px;padding-top:30px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;color:#fff;pointer-events:none;background:-moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(1%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0.38)));background:-webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);background:-o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);background:-ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);background:linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#94000000', GradientType=0)}.panel-profile .panel-profile-header .img-profile-data h1{font-size:30px;font-weight:100;margin-bottom:7px;color:#fff;max-width:600px;white-space:nowrap;text-overflow:ellipsis}.panel-profile .panel-profile-header .img-profile-data h2{font-size:16px;font-weight:400;margin-top:0}.panel-profile .panel-profile-header .img-profile-data h1.space{font-size:30px;font-weight:700}.panel-profile .panel-profile-header .img-profile-data h2.space{font-size:13px;font-weight:300;max-width:600px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.panel-profile .panel-profile-header .profile-user-photo-container{position:absolute;bottom:-50px;left:15px}.panel-profile .panel-profile-header .profile-user-photo-container .profile-user-photo{border:3px solid #fff;border-radius:5px}.panel-profile .panel-profile-controls{padding-left:160px}.panel.pulse,.panel.fadeIn{-webkit-animation-duration:200ms;-moz-animation-duration:200ms;animation-duration:200ms}@media (max-width:767px){.panel-profile-controls{padding-left:0 !important;padding-top:50px}.panel-profile .panel-profile-header .img-profile-data h1{font-size:20px !important;margin-bottom:2px}}.panel-body>.tab-menu{margin-left:-10px;margin-right:-10px}.installer .logo{text-align:center}.installer h2{font-weight:100}.installer .panel{margin-top:50px}.installer .panel h3{margin-top:0}.installer .powered,.installer .powered a{color:#bac2c7 !important;margin-top:10px;font-size:12px}.installer .fa{width:18px}.installer .check-ok{color:#97d271}.installer .check-warning{color:#FFC107}.installer .check-error{color:#FC4A64}.installer .prerequisites-list ul{list-style:none;padding-left:15px}.installer .prerequisites-list ul li{padding-bottom:5px}.pagination-container{text-align:center}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{background-color:#435f6f;border-color:#435f6f}.pagination>li>a,.pagination>li>span,.pagination>li>a:hover,.pagination>li>a:active,.pagination>li>a:focus{color:#000;cursor:pointer}.well-small{padding:10px;border-radius:3px}.well{border:none;box-shadow:none;background-color:#f5f5f5;margin-bottom:1px}.well hr{margin:10px 0;border-top:1px solid #d9d9d9}.well table>thead{font-size:11px}.tab-sub-menu{padding-left:10px}.tab-sub-menu li>a:hover,.tab-sub-menu li>a:focus{background-color:#f7f7f7;border-bottom-color:#ddd}.tab-sub-menu li.active>a{background-color:#fff;border-bottom-color:transparent}.nav-tabs>li>a,.nav-tabs>li>a[data-toggle]{color:#555}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus,.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{color:#000}.tab-menu{padding-top:10px;background-color:#fff}.tab-menu .nav-tabs{padding-left:10px}.tab-menu .nav-tabs li>a{padding-top:12px;border-color:#ddd;border-bottom:1px solid #ddd;background-color:#f7f7f7;max-height:41px;outline:none}.tab-menu .nav-tabs li>a:hover,.tab-menu .nav-tabs li>a:focus{padding-top:10px;border-top:3px solid #ddd}.tab-menu .nav-tabs li>a:hover{background-color:#f7f7f7}.tab-menu .nav-tabs li.active>a,.tab-menu .nav-tabs li.active>a:hover{padding-top:10px;border-top:3px solid #21A1B3}.tab-menu .nav-tabs li.active>a{background-color:#fff;border-bottom-color:transparent}ul.tab-menu{padding-top:10px;background-color:#fff;padding-left:10px}ul.tab-menu-settings li>a{padding-top:12px;border-color:#ddd;border-bottom:1px solid #ddd;background-color:#f7f7f7;max-height:41px;outline:none}ul.tab-menu-settings li>a:hover,ul.tab-menu-settings li>a:focus{padding-top:10px;border-top:3px solid #ddd !important}ul.tab-menu-settings li>a:hover{background-color:#f7f7f7}ul.tab-menu-settings li.active>a,ul.tab-menu-settings li.active>a:hover,ul.tab-menu-settings li.active>a:focus{padding-top:10px;border-top:3px solid #21A1B3 !important}ul.tab-menu-settings li.active>a{background-color:#fff;border-bottom-color:transparent !important}.nav-pills .dropdown-menu,.nav-tabs .dropdown-menu,.account .dropdown-menu{background-color:#435f6f;border:none}.nav-pills .dropdown-menu li.divider,.nav-tabs .dropdown-menu li.divider,.account .dropdown-menu li.divider{background-color:#39515f;border-bottom:none;margin:9px 1px !important}.nav-pills .dropdown-menu li,.nav-tabs .dropdown-menu li,.account .dropdown-menu li{border-left:3px solid #435f6f}.nav-pills .dropdown-menu li a,.nav-tabs .dropdown-menu li a,.account .dropdown-menu li a{color:white;font-weight:400;font-size:13px;padding:4px 15px}.nav-pills .dropdown-menu li a i,.nav-tabs .dropdown-menu li a i,.account .dropdown-menu li a i{margin-right:5px;font-size:14px;display:inline-block;width:14px}.nav-pills .dropdown-menu li a:hover,.nav-tabs .dropdown-menu li a:hover,.account .dropdown-menu li a:hover,.nav-pills .dropdown-menu li a:visited,.nav-tabs .dropdown-menu li a:visited,.account .dropdown-menu li a:visited,.nav-pills .dropdown-menu li a:hover,.nav-tabs .dropdown-menu li a:hover,.account .dropdown-menu li a:hover,.nav-pills .dropdown-menu li a:focus,.nav-tabs .dropdown-menu li a:focus,.account .dropdown-menu li a:focus{background:none}.nav-pills .dropdown-menu li:hover,.nav-tabs .dropdown-menu li:hover,.account .dropdown-menu li:hover,.nav-pills .dropdown-menu li.selected,.nav-tabs .dropdown-menu li.selected,.account .dropdown-menu li.selected{border-left:3px solid #21A1B3;color:#fff !important;background-color:#39515f !important}.nav-pills.preferences .dropdown .dropdown-toggle i{color:#21A1B3;font-size:15px;font-weight:600}.nav-pills.preferences .dropdown.open .dropdown-toggle,.nav-pills.preferences .dropdown.open .dropdown-toggle:hover{background-color:#435f6f}.nav-pills.preferences .dropdown.open .dropdown-toggle i,.nav-pills.preferences .dropdown.open .dropdown-toggle:hover i{color:#fff}.nav-pills.preferences li.divider:last-of-type{display:none}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{background-color:#435f6f}.nav-tabs{margin-bottom:10px}.list-group a [class^="fa-"],.list-group a [class*=" fa-"]{display:inline-block;width:18px}.nav-pills.preferences{position:absolute;right:10px;top:10px}.nav-pills.preferences .dropdown .dropdown-toggle{padding:2px 5px}.nav-pills.preferences .dropdown.open .dropdown-toggle,.nav-pills.preferences .dropdown.open .dropdown-toggle:hover{color:white}.nav-tabs li{font-weight:600;font-size:12px}.tab-content .tab-pane a{color:#21A1B3}.tab-content .tab-pane .form-group{margin-bottom:5px}.nav-tabs.tabs-center li{float:none;display:inline-block}.nav-tabs.tabs-small li>a{padding:5px 7px}.nav .caret,.nav .caret:hover,.nav .caret:active{border-top-color:#000;border-bottom-color:#000;height:6.928px}.nav li.dropdown>a:hover .caret,.nav li.dropdown>a:active .caret{border-top-color:#000;border-bottom-color:#000}.nav .open>a .caret,.nav .open>a:hover .caret,.nav .open>a:focus .caret{border-top-color:#000;border-bottom-color:#000}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{border-color:#ededed;color:#000}.nav .open>a .caret,.nav .open>a:hover .caret,.nav .open>a:focus .caret{color:#000}.footer-nav{filter:opacity(.6);font-size:12px;text-align:center}@media (max-width:991px){.controls-header{text-align:left !important}}.btn{float:none;border:none;-webkit-box-shadow:none;box-shadow:none;-moz-box-shadow:none;background-image:none;text-shadow:none;border-radius:3px;outline:none !important;margin-bottom:0;font-size:14px;font-weight:600;padding:8px 16px}.input.btn{outline:none}.btn-lg{padding:16px 28px}.btn-sm{padding:4px 8px;font-size:12px}.btn-sm i{font-size:14px}.btn-xs{padding:1px 5px;font-size:12px}.btn-default{background:#f3f3f3;color:#7a7a7a !important}.btn-default:hover,.btn-default:focus{background:#eee;text-decoration:none;color:#7a7a7a}.btn-default:active,.btn-default.active{outline:0;background:#e6e6e6}.btn-default[disabled],.btn-default.disabled{background:#f8f8f8}.btn-default[disabled]:hover,.btn-default.disabled:hover,.btn-default[disabled]:focus,.btn-default.disabled:focus{background:#f8f8f8}.btn-default[disabled]:active,.btn-default.disabled:active,.btn-default[disabled].active,.btn-default.disabled.active{background:#f8f8f8}.btn-primary{background:#435f6f;color:#fff !important}.btn-primary:hover,.btn-primary:focus{background:#39515f;text-decoration:none}.btn-primary:active,.btn-primary.active{outline:0;border:1px solid #435f6f;padding:7px 15px;color:#435f6f !important;background:#fff !important;box-shadow:none}.btn-primary:active.btn-sm,.btn-primary.active.btn-sm{padding:3px 7px}.btn-primary.active:hover,.btn-primary.active:focus{border:1px solid #39515f;color:#39515f !important}.btn-primary[disabled],.btn-primary.disabled{background:#4d6d7f}.btn-primary[disabled]:hover,.btn-primary.disabled:hover,.btn-primary[disabled]:focus,.btn-primary.disabled:focus{background:#4d6d7f}.btn-primary[disabled]:active,.btn-primary.disabled:active,.btn-primary[disabled].active,.btn-primary.disabled.active{background:#4d6d7f !important}.btn-info{background:#21A1B3;color:#fff !important}.btn-info:hover,.btn-info:focus{background:#1d8e9d !important;text-decoration:none}.btn-info:active,.btn-info.active{outline:0;border:1px solid #21A1B3;padding:7px 15px;color:#21A1B3 !important;background:#fff !important;box-shadow:none}.btn-info:active.btn-sm,.btn-info.active.btn-sm{padding:3px 7px}.btn-info.active:hover,.btn-info.active:focus{border:1px solid #1d8e9d;color:#1d8e9d !important}.btn-info[disabled],.btn-info.disabled{background:#25b4c9}.btn-info[disabled]:hover,.btn-info.disabled:hover,.btn-info[disabled]:focus,.btn-info.disabled:focus{background:#25b4c9}.btn-info[disabled]:active,.btn-info.disabled:active,.btn-info[disabled].active,.btn-info.disabled.active{background:#25b4c9 !important}.btn-danger{background:#FC4A64;color:#fff !important}.btn-danger:hover,.btn-danger:focus{background:#fc314f;text-decoration:none}.btn-danger:active,.btn-danger.active{outline:0;background:#fc314f !important}.btn-danger[disabled],.btn-danger.disabled{background:#fc6379}.btn-danger[disabled]:hover,.btn-danger.disabled:hover,.btn-danger[disabled]:focus,.btn-danger.disabled:focus{background:#fc6379}.btn-danger[disabled]:active,.btn-danger.disabled:active,.btn-danger[disabled].active,.btn-danger.disabled.active{background:#fc6379 !important}.btn-success{background:#97d271;color:#fff !important}.btn-success:hover,.btn-success:focus{background:#89cc5e;text-decoration:none}.btn-success:active,.btn-success.active{outline:0;background:#89cc5e !important}.btn-success[disabled],.btn-success.disabled{background:#a5d884}.btn-success[disabled]:hover,.btn-success.disabled:hover,.btn-success[disabled]:focus,.btn-success.disabled:focus{background:#a5d884}.btn-success[disabled]:active,.btn-success.disabled:active,.btn-success[disabled].active,.btn-success.disabled.active{background:#a5d884 !important}.btn-warning{background:#FFC107;color:#fff !important}.btn-warning:hover,.btn-warning:focus{background:#fcbd00;text-decoration:none}.btn-warning:active,.btn-warning.active{outline:0;background:#fcbd00 !important}.btn-warning[disabled],.btn-warning.disabled{background:#ffc721}.btn-warning[disabled]:hover,.btn-warning.disabled:hover,.btn-warning[disabled]:focus,.btn-warning.disabled:focus{background:#ffc721}.btn-warning[disabled]:active,.btn-warning.disabled:active,.btn-warning[disabled].active,.btn-warning.disabled.active{background:#ffc721 !important}.btn-link{color:#21A1B3 !important}.btn-link:hover,.btn-link:focus{color:#1f99aa;text-decoration:none}.btn-link:active,.btn-link.active{outline:0;color:#1f99aa !important}.btn-link[disabled],.btn-link.disabled{color:#25b4c9}.btn-link[disabled]:hover,.btn-link.disabled:hover,.btn-link[disabled]:focus,.btn-link.disabled:focus{color:#25b4c9}.btn-link[disabled]:active,.btn-link.disabled:active,.btn-link[disabled].active,.btn-link.disabled.active{color:#25b4c9 !important}.radio,.checkbox{margin-top:5px !important;margin-bottom:0}div.required>label:after{content:" *";color:#21A1B3}div.required.has-error>label:after{content:" *";color:#FC4A64}.radio label,.checkbox label{padding-left:10px}.form-control{border:2px solid #ededed;box-shadow:none;min-height:35px}.form-control:focus{border:2px solid #21A1B3;outline:0;box-shadow:none}.form-control.form-search{border-radius:30px;background-image:url("../img/icon_search16x16.png");background-repeat:no-repeat;background-position:10px 8px;padding-left:34px}.form-group-search{position:relative}.form-group-search .form-button-search{position:absolute;top:4px;right:4px;border-radius:30px}textarea{resize:none;height:1.5em}select.form-control:not([multiple]){-webkit-appearance:none;-moz-appearance:none;appearance:none;background-image:url("../img/select_arrow.png") !important;background-repeat:no-repeat;background-position:right 16px;overflow:hidden}label{font-weight:normal}div.PendingRegistrations thead>tr>th>label,div.PendingRegistrations tbody>tr>td>label{margin-bottom:0;height:17px}label.control-label{font-weight:bold}::placeholder{color:#bac2c7 !important}::-webkit-input-placeholder{color:#bac2c7 !important}::-moz-placeholder{color:#bac2c7 !important}:-ms-input-placeholder{color:#bac2c7 !important}input::-ms-clear,input::-ms-reveal{display:none}input:-moz-placeholder{color:#555555 !important}.placeholder{padding:10px}input.placeholder,textarea.placeholder{padding:0 0 0 10px;color:#999}.help-block-error{font-size:12px}.hint-block,.help-block:not(.help-block-error){color:#aeaeae !important;font-size:12px}.hint-block:hover,.help-block:not(.help-block-error):hover{color:#7a7a7a !important;font-size:12px}.input-group-addon{border:none}a.input-field-addon{font-size:12px;float:right;margin-top:-10px}a.input-field-addon-sm{font-size:11px;float:right;margin-top:-10px}.timeZoneInputContainer{padding-top:10px}.timeZoneInputContainer~.help-block{margin:0px}.regular-checkbox:focus+.regular-checkbox-box{border:2px solid #000 !important}.regular-checkbox:checked+.regular-checkbox-box{border:2px solid #21A1B3;background:#21A1B3;color:white}.regular-checkbox-box.disabled{background:#d7d7d7 !important;border:2px solid #d7d7d7 !important;cursor:not-allowed}.regular-radio:checked+.regular-radio-button:after{background:#21A1B3}.regular-radio:checked+.regular-radio-button{background-color:transparent;color:#99a1a7;border:2px solid #d7d7d7;margin-right:5px}.regular-radio.disabled{background:#d7d7d7 !important;border:2px solid #d7d7d7 !important;cursor:not-allowed}div.form-group div.checkbox .help-block{margin-left:33px}div.form-group div.checkbox .help-block.help-block-error:empty{display:none}.errorMessage{color:#FC4A64;padding:10px 0}.error{border-color:#FC4A64 !important}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#FC4A64 !important}.has-error .form-control,.has-error .form-control:focus{border-color:#FC4A64;-webkit-box-shadow:none;box-shadow:none}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#97d271}.has-success .form-control,.has-success .form-control:focus{border-color:#97d271;-webkit-box-shadow:none;box-shadow:none}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#FFC107}.has-warning .form-control,.has-warning .form-control:focus{border-color:#FFC107;-webkit-box-shadow:none;box-shadow:none}.bootstrap-timepicker-widget .form-control{padding:0}.form-collapsible-fields{margin-bottom:12px;border-left:3px solid #435f6f;background-color:#F4F4F4}.form-collapsible-fields-label{margin-bottom:0px;padding:12px}.form-collapsible-fields fieldset{padding-top:15px;padding-left:12px;padding-right:12px}.form-collapsible-fields.opened fieldset{display:block}.form-collapsible-fields.opened .iconClose{display:inline}.form-collapsible-fields.opened .iconOpen{display:none}.form-collapsible-fields.closed fieldset,.form-collapsible-fields.closed .iconClose{display:none}.form-collapsible-fields.closed .iconOpen{display:inline}#notification_overview_filter label{display:block}#notification_overview_list .img-space{position:absolute;top:25px;left:25px}@media (max-width:767px){.notifications{position:inherit !important;float:left !important}.notifications .dropdown-menu{width:300px !important;margin-left:0 !important}.notifications .dropdown-menu .arrow{margin-left:-142px !important}}.badge-space{margin-top:6px}.badge-space-chooser{padding:3px 5px;margin-left:1px}.badge{padding:3px 5px;border-radius:2px;font-weight:normal;font-family:Arial,sans-serif;font-size:10px !important;text-transform:uppercase;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:none;background-color:#d7d7d7;line-height:1}.popover{border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);-moz-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175)}.popover .popover-title{background:none;border-bottom:none;color:#000;font-weight:300;font-size:16px;padding:15px}.popover .popover-content{font-size:13px;padding:5px 15px;color:#000}.popover .popover-content a{color:#21A1B3}.popover .popover-content img{max-width:100%}.popover .popover-navigation{padding:15px}.panel-profile .panel-profile-header .image-upload-container{width:100%;height:100%;overflow:hidden}.panel-profile .panel-profile-header .image-upload-container #bannerfileupload{position:absolute;top:0;left:0;opacity:0;width:100%;height:100%}.panel-profile .panel-profile-header .img-profile-header-background{width:100%;max-height:192px}@media print{.panel-profile{display:none}}.list-group-item{padding:6px 15px;border:none;border-width:0 !important;border-left:3px solid #fff !important;font-size:12px;font-weight:600}.list-group-item i{font-size:14px}a.list-group-item:hover,a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#000;background-color:#f7f7f7;border-left:3px solid #21A1B3 !important}@media (max-width:991px){.list-group{margin-left:4px}.list-group-item{display:inline-block !important;border-radius:3px !important;margin:4px 0;margin-bottom:4px !important}.list-group-item{border:none !important}a.list-group-item:hover,a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{border:none !important;background:#435f6f !important;color:#fff !important}}.modal-backdrop{background-color:rgba(0,0,0,0.5)}.modal-dialog.fadeIn,.modal-dialog.pulse{-webkit-animation-duration:200ms;-moz-animation-duration:200ms;animation-duration:200ms}body.modal-open{height:100vh;overflow-y:hidden}@media screen and (max-width:768px){.modal-dialog{width:calc(100vw - 4px) !important}}.modal-top{z-index:999999 !important}.modal{overflow-y:visible}.modal.in{padding-right:0 !important}.modal-dialog-extra-small{width:400px}.modal-dialog-small{width:500px}.modal-dialog-normal{width:600px}.modal-dialog-medium{width:768px}.modal-dialog-large{width:900px}@media screen and (max-width:991px){.modal-dialog-large{width:auto !important;padding-top:30px;padding-bottom:30px}}.modal{border:none}.modal h1,.modal h2,.modal h3,.modal h4,.modal h5{margin-top:20px;color:#000;font-weight:300}.modal h4.media-heading{margin-top:0}.modal-title{font-size:20px;font-weight:200;color:#000}.modal-dialog,.modal-content{min-width:150px}.modal-content{-webkit-border-radius:3px;-moz-border-radius:3px;box-shadow:0 2px 26px rgba(0,0,0,0.3),0 0 0 1px rgba(0,0,0,0.1);-webkit-box-shadow:0 2px 26px rgba(0,0,0,0.3),0 0 0 1px rgba(0,0,0,0.1);-moz-box-shadow:0 2px 26px rgba(0,0,0,0.3),0 0 0 1px rgba(0,0,0,0.1);border:none}.modal-content .modal-header{padding:20px 20px 0;border-bottom:none;text-align:center}.modal-content .modal-header .close{margin-top:2px;margin-right:5px}.modal-content .modal-body{padding:20px;font-size:13px}.modal-content .modal-footer{margin-top:0;text-align:left;padding:10px 20px 30px;border-top:none;text-align:center}.modal-content .modal-footer hr{margin-top:0}.module-installed{opacity:.5}.module-installed .label-success{background-color:#d7d7d7}.tooltip-inner{background-color:#435f6f;max-width:400px;text-align:left;padding:2px 8px 4px;font-weight:bold;white-space:pre-wrap}.tooltip.top .tooltip-arrow{border-top-color:#435f6f}.tooltip.top-left .tooltip-arrow{border-top-color:#435f6f}.tooltip.top-right .tooltip-arrow{border-top-color:#435f6f}.tooltip.right .tooltip-arrow{border-right-color:#435f6f}.tooltip.left .tooltip-arrow{border-left-color:#435f6f}.tooltip.bottom .tooltip-arrow{border-bottom-color:#435f6f}.tooltip.bottom-left .tooltip-arrow{border-bottom-color:#435f6f}.tooltip.bottom-right .tooltip-arrow{border-bottom-color:#435f6f}.tooltip.in{opacity:1;filter:alpha(opacity=100)}.progress{height:10px;margin-bottom:15px;box-shadow:none;background:#ededed;border-radius:10px}.progress-bar-info{background-color:#21A1B3;-webkit-box-shadow:none;box-shadow:none}#nprogress .bar{height:2px;background:#27c0d5}table{margin-bottom:0 !important}table th{font-size:11px;color:#555555;font-weight:normal}table thead tr th{border:none !important}table .time{font-size:12px}table td a:hover{color:#21A1B3}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:10px 10px 10px 0}.table>thead>tr>th select,.table>tbody>tr>th select,.table>tfoot>tr>th select,.table>thead>tr>td select,.table>tbody>tr>td select,.table>tfoot>tr>td select{font-size:12px;padding:4px 8px;height:30px;margin:0}.table-middle>thead>tr>th,.table-middle>tbody>tr>th,.table-middle>tfoot>tr>th,.table-middle>thead>tr>td,.table-middle>tbody>tr>td,.table-middle>tfoot>tr>td{vertical-align:middle !important}@media (max-width:767px){.table-responsive>.table>tbody>tr>td.notification-type{white-space:normal}}.comment-container{margin-top:10px}.comment-container .wall-entry-controls{margin-left:35px}@media (max-width:767px){.comment .post-files img{height:100px}}.comment .media{position:relative !important;margin-top:0}.comment .media .nav-pills.preferences{display:none;right:-3px}.comment .media.comment-current{background:rgba(255,193,7,0.25);padding:0 5px 5px 5px;margin:0 -5px -5px -5px;border-radius:3px}.comment .media.comment-current hr{position:relative;top:-6px}.comment .media.comment-current:first-of-type{padding-top:5px;margin-top:-5px}.comment .media.comment-current:first-of-type>.nav.preferences{margin-top:10px}.comment .media.comment-current>.nav.preferences{margin-right:10px}.comment .comment-blocked-user img[data-contentcontainer-id]{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.comment .media-body{overflow:visible}.comment .jp-progress{background-color:#dbdcdd !important}.comment .jp-play-bar{background:#cacaca}.comment .post-file-list{background-color:#ededed}.comment.guest-mode .media:last-child .wall-entry-controls{margin-bottom:0;margin-left:35px}.comment.guest-mode .media:last-child hr{display:none}.comment_create,.content_edit{position:relative}.comment_create .comment-buttons,.content_edit .comment-buttons{position:absolute;bottom:2px;right:5px;z-index:300}.comment_create .comment-buttons button,.content_edit .comment-buttons button{background-color:#21A1B3 !important;color:#fff !important}.comment_create .has-error+.comment-buttons,.content_edit .has-error+.comment-buttons{bottom:19px !important}.comment_create .btn-comment-submit,.content_edit .btn-comment-submit{margin-top:3px}.comment_create .fileinput-button,.content_edit .fileinput-button{float:left;padding:6px 10px;background:transparent !important}.comment_create .fileinput-button i,.content_edit .fileinput-button i{color:#aeaeae}.comment_create .fileinput-button i:hover,.content_edit .fileinput-button i:hover{color:#21A1B3}.comment_create .fileinput-button:hover i,.content_edit .fileinput-button:hover i{color:#21A1B3}.comment_create .fileinput-button:active,.content_edit .fileinput-button:active{box-shadow:none !important}.post-richtext-input-group{position:relative}.post-richtext-input-group .comment-buttons{bottom:7px !important}.comment-container .content_edit{margin-left:35px}.comment-container .media{overflow:visible}.comment-container [data-ui-richtext] pre,.comment-container [data-ui-richtext] pre code.hljs{background-color:#eaeaea}.comment_edit_content{margin-left:35px;margin-top:0}.comment-message{overflow:hidden;word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.comment-create-input-group,.post-richtext-input-group{position:relative}.comment-create-input-group .ProsemirrorEditor .ProseMirror,.post-richtext-input-group .ProsemirrorEditor .ProseMirror{padding-right:72px}.comment-create-input-group .form-group,.post-richtext-input-group .form-group,.comment-create-input-group .help-block,.post-richtext-input-group .help-block{margin:0}.comment-create-input-group.scrollActive .comment-buttons{right:22px}.comment .media .media-body h4.media-heading a{font-size:13px;color:#000;margin-bottom:3px;font-weight:500}div.comment>div.media:first-of-type hr.comment-separator{display:none}div.comment>div.media:first-of-type .nav-pills.preferences{display:none;top:-3px}hr.comments-start-separator{margin-top:10px}div.nested-comments-root{margin-left:28px}div.nested-comments-root .ProseMirror-menubar-wrapper{z-index:210}div.nested-comments-root hr.comment-separator{display:inherit !important}div.nested-comments-root hr.comments-start-separator{display:none}div.nested-comments-root a.show-all-link{margin-top:10px}div.nested-comments-root div.comment .media{position:relative !important;margin-top:0}div.nested-comments-root div.comment .media .nav-pills.preferences{display:none;top:8px;right:0}div.nested-comments-root div.comment-container{margin-top:0;padding-bottom:0;padding-top:0}.grid-view img{width:24px;height:24px}.grid-view .filters input,.grid-view .filters select{border:2px solid #ededed;box-shadow:none;min-height:35px;border-radius:4px;font-size:12px;padding:4px}.grid-view .filters input:focus,.grid-view .filters select:focus{border:2px solid #21A1B3;outline:0;box-shadow:none}.grid-view{padding:15px 0 0}.grid-view img{border-radius:3px}.grid-view table th{font-size:13px !important;font-weight:bold !important}.grid-view table td{vertical-align:middle !important}.grid-view table tr{font-size:13px !important}.grid-view table thead tr th:first-of-type{padding-left:5px}.grid-view table tbody tr{height:50px}.grid-view table tbody tr td:first-of-type{padding-left:5px}.grid-view .summary{font-size:12px;color:#bac2c7}.permission-grid-editor>.table>tbody>tr:first-child>td{border:none}.permission-grid-editor{padding-top:0px}.detail-view td,.detail-view th{padding:8px !important}.detail-view th{font-size:13px}.oembed_snippet[data-oembed-provider="youtube.com"],.oembed_snippet{margin-top:10px;position:relative;padding-bottom:55%;padding-top:15px;overflow:hidden}.oembed_snippet[data-oembed-provider="twitter.com"]{padding-bottom:0 !important;padding-top:0;margin-top:0}.oembed_snippet iframe{position:absolute;top:0;left:0;width:100%;height:100%}.activities{max-height:400px;overflow:auto}.activities li.activity-entry{padding:0}.activities li .media{position:relative;padding:10px}.activities li .media .img-space{position:absolute;top:24px;left:24px}.activities li .media .media-body{max-width:295px}.contentForm_options{margin-top:10px;min-height:29px}.contentForm_options .btn_container{position:relative}.contentForm_options .btn_container .label-public{position:absolute;right:40px;top:11px}#content-topic-bar{margin-top:5px;text-align:right}#content-topic-bar .label{margin-left:4px}#contentFormError{color:#FC4A64;padding-left:0;list-style:none}.placeholder-empty-stream{background-image:url("../img/placeholder-postform-arrow.png");background-repeat:no-repeat;padding:37px 0 0 70px;margin-left:90px}#streamUpdateBadge{text-align:center;z-index:9999;margin-bottom:15px;margin-top:15px}#streamUpdateBadge .label{border-radius:10px;font-size:.8em !important;padding:5px 10px}#wallStream .back_button_holder{padding-bottom:15px}.wall-entry{position:relative}.wall-entry .panel .panel-body{padding:10px}.wall-entry .wall-entry-header{color:#000;position:relative;padding-bottom:10px;margin-bottom:10px;border-bottom:1px solid #eeeeee}.wall-entry .wall-entry-header .img-space{top:25px;left:25px}.wall-entry .wall-entry-header .wall-entry-container-link{color:#21A1B3}.wall-entry .wall-entry-header .stream-entry-icon-list{position:absolute;top:0;right:25px;display:inline-block;padding-top:2px}.wall-entry .wall-entry-header .stream-entry-icon-list i{padding-right:5px}.wall-entry .wall-entry-header .stream-entry-icon-list .icon-pin{color:#FC4A64}.wall-entry .wall-entry-header .stream-entry-icon-list .fa-archive{color:#FFC107}.wall-entry .wall-entry-header .wall-entry-header-image{display:table-cell;width:40px;padding-right:10px}.wall-entry .wall-entry-header .wall-entry-header-image .fa{font-size:2.39em;color:#21A1B3;margin-top:5px}.wall-entry .wall-entry-header .wall-entry-header-info{display:table-cell;padding-right:30px;width:100%}.wall-entry .wall-entry-header .wall-entry-header-info .media-heading{font-size:15px;padding-top:1px;margin-bottom:3px}.wall-entry .wall-entry-header .wall-entry-header-info i.archived{color:#FFC107}.wall-entry .wall-entry-header .preferences{position:absolute;right:0;top:0}.wall-entry .wall-entry-header .media-subheading i.fa-caret-right{margin:0 2px}.wall-entry .wall-entry-header .media-subheading .wall-entry-icons{display:inline-block}.wall-entry .wall-entry-header .media-subheading .wall-entry-icons i{margin-right:2px}.wall-entry .wall-entry-header .media-subheading .time,.wall-entry .wall-entry-header .media-subheading i,.wall-entry .wall-entry-header .media-subheading span{font-size:11px;white-space:nowrap}.wall-entry .wall-entry-body{padding-left:50px}.wall-entry .wall-entry-body .wall-entry-content{margin-bottom:5px}.wall-entry .wall-entry-body .wall-entry-content .post-short-text{font-size:1.6em}.wall-entry .wall-entry-body .wall-entry-content .post-short-text .emoji{width:20px}.wall-entry .wall-entry-body audio,.wall-entry .wall-entry-body video{width:100%}.wall-entry .wall-stream-footer .wall-stream-addons .files{margin-bottom:5px}.wall-entry .content a{color:#21A1B3}.wall-entry .content img{max-width:100%}.wall-entry .media{overflow:visible}.wall-entry .well{margin-bottom:0}.wall-entry .well .comment .show-all-link{font-size:12px;cursor:pointer}.wall-entry .media-heading{font-size:14px;padding-top:1px;margin-bottom:3px}.wall-entry .media-heading .labels{padding-right:32px}.wall-entry .media-heading .viaLink{font-size:13px}.wall-entry .media-heading .viaLink i{color:#555555;padding-left:4px;padding-right:4px}.wall-entry .media-subheading{color:#555555;font-size:12px}.wall-entry .media-subheading .time{font-size:12px;white-space:nowrap}.wall-entry [data-ui-richtext] h1{font-size:1.45em;font-weight:normal}.wall-entry [data-ui-richtext] h2{font-size:1.3em;font-weight:normal}.wall-entry [data-ui-richtext] h3{font-size:1.2em;font-weight:normal}.wall-entry [data-ui-richtext] h4{font-size:1.1em;font-weight:normal}.wall-entry [data-ui-richtext] h5{font-size:1em;font-weight:normal}.wall-entry [data-ui-richtext] h6{font-size:.85em;font-weight:normal}@media (max-width:767px){.wall-entry .wall-entry-body{padding-left:0}#wallStream .back_button_holder{padding-bottom:5px;text-align:center}}.wall-entry-controls a{font-size:11px;color:#21A1B3 !important;margin-top:10px;margin-bottom:0}#wall-stream-filter-nav{font-size:12px;margin-bottom:10px;padding-top:2px;border-radius:0 0 4px 4px}#wall-stream-filter-nav .wall-stream-filter-root{margin:0;border:0 !important}#wall-stream-filter-nav .filter-panel{padding:0 10px}#wall-stream-filter-nav .wall-stream-filter-head{padding:5px 5px 10px 5px;border-bottom:1px solid #ddd}#wall-stream-filter-nav .wall-stream-filter-body{overflow:hidden;background-color:#f7f7f7;border:1px solid #ddd;border-top:0;border-radius:0 0 4px 4px}#wall-stream-filter-nav hr{margin:5px 0 0 0}#wall-stream-filter-nav .topic-remove-label{float:left}#wall-stream-filter-nav .topic-remove-label,#wall-stream-filter-nav .content-type-remove-label{margin-right:6px}#wall-stream-filter-nav .select2{width:260px !important;margin-bottom:5px;margin-top:2px}#wall-stream-filter-nav .select2 .select2-search__field{height:25px !important}#wall-stream-filter-nav .select2 .select2-selection__choice{height:23px !important}#wall-stream-filter-nav .select2 .select2-selection__choice span,#wall-stream-filter-nav .select2 .select2-selection__choice i{line-height:19px !important}#wall-stream-filter-nav .select2 .select2-selection__choice .img-rounded{width:18px !important;height:18px !important}#wall-stream-filter-nav .wall-stream-filter-bar{display:inline;float:right;white-space:normal}#wall-stream-filter-nav .wall-stream-filter-bar .label{height:18px;padding-top:4px;background-color:#fff}#wall-stream-filter-nav .wall-stream-filter-bar .btn,#wall-stream-filter-nav .wall-stream-filter-bar .label{box-shadow:0 0 2px #7a7a7a;-webkit-box-shadow:0 0 2px #7a7a7a;-moz-box-shadow:0 0 2px #7a7a7a}@media (max-width:767px){#wall-stream-filter-nav{margin-bottom:5px}#wall-stream-filter-nav .wall-stream-filter-root{white-space:nowrap}#wall-stream-filter-nav .wall-stream-filter-body{overflow:auto}}.filter-root{margin:15px}.filter-root .row{display:table !important}.filter-root .filter-panel{padding:0 5px;display:table-cell !important;float:none}.filter-root .filter-panel .filter-block strong{margin-bottom:5px}.filter-root .filter-panel .filter-block ul.filter-list{list-style:none;padding:0;margin:0 0 5px}.filter-root .filter-panel .filter-block ul.filter-list li{font-size:12px;padding:2px}.filter-root .filter-panel .filter-block ul.filter-list li a{color:#000}.filter-root .filter-panel div.filter-block:last-of-type ul.filter-list{margin:0}.filter-root .filter-panel+.filter-panel{border-left:2px solid #ededed}.stream-entry-loader{float:right;margin-top:5px}.load-suppressed{margin-top:-17px;margin-bottom:15px;text-align:center}.load-suppressed a{display:inline-block;background-color:white;padding:5px;border-radius:0 0 4px 4px;border:1px solid #ddd;font-size:11px}@media print{.wall-entry{page-break-inside:avoid}#wall-stream-filter-nav,#contentFormBody{display:none}}.space-owner{text-align:center;margin:14px 0;font-size:13px;color:#999}.space-member-sign{color:#97d271;position:absolute;top:42px;left:42px;font-size:16px;background:#fff;width:24px;height:24px;padding:2px 3px 1px 4px;border-radius:50px;border:2px solid #97d271}#space-menu-dropdown i.type{font-size:16px;color:#BFBFBF}#space-menu-spaces [data-space-chooser-item]{cursor:pointer}#space-menu-dropdown .input-group-addon{border-radius:0 4px 4px 0}#space-menu-dropdown .input-group-addon.focus{border-radius:0 4px 4px 0;border:2px solid #21A1B3;border-left:0}.input-group #space-menu-search{border-right:0}#space-menu-dropdown div:not(.input-group)>.search-reset{top:10px !important;right:15px !important}#space-directory-link i{margin-right:0}.space-acronym{color:#fff;text-align:center;display:inline-block}.current-space-image{margin-right:3px;margin-top:3px}@media (max-width:767px){#space-menu>.title{display:none}#space-menu-dropdown{width:300px !important}}.files,#postFormFiles_list{padding-left:0}ul.files{list-style:none;margin:0 0 5px;padding:0}ul.files li.file-preview-item{padding-left:24px;display:none}ul.files li.file-preview-item .file-fileInfo{padding-right:20px}.contentForm-upload-list{padding-left:0}.contentForm-upload-list li:first-child{margin-top:10px}.file_upload_remove_link,.file_upload_remove_link:hover{color:#FC4A64;cursor:pointer}.file-preview-item{text-overflow:ellipsis;overflow:hidden}.post-files{margin-top:10px;margin-bottom:10px}.post-files video{border-radius:4px}.post-files .jp-audio{margin-bottom:10px}.post-files .col-media{padding-left:0 !important;padding-right:0 !important}.post-files img{vertical-align:top;padding:2px;height:150px;width:100%;object-fit:cover;border-radius:4px}@media (max-width:650px){.post-files img{height:100px}}.post-file-list{padding:10px;padding-bottom:1px;margin-bottom:10px !important}.post-file-list a,.post-file-list a:active,.post-file-list a:focus,.post-file-list a:hover{color:#21A1B3}#wallStream.mobile .post-files{margin-top:10px;display:flex;overflow-x:auto}#wallStream.mobile .post-files img{max-width:190px;height:100px;width:auto}.file-preview-content{cursor:pointer}.image-upload-container{position:relative}.image-upload-container .image-upload-buttons{display:none;position:absolute;right:5px;bottom:5px}.image-upload-container input[type="file"]{position:absolute;opacity:0}.image-upload-container .image-upload-loader{display:none;position:absolute;top:0;left:0;width:100%;height:100%;padding:20px;background:#f8f8f8}.mime{background-repeat:no-repeat;background-position:0 0;padding:1px 0 4px 26px}.mime-word{background-image:url("../img/mime/word.png")}.mime-excel{background-image:url("../img/mime/excel.png")}.mime-powerpoint{background-image:url("../img/mime/powerpoint.png")}.mime-pdf{background-image:url("../img/mime/pdf.png")}.mime-zip{background-image:url("../img/mime/zip.png")}.mime-image{background-image:url("../img/mime/image.png")}.mime-file{background-image:url("../img/mime/file.png")}.mime-photoshop{background-image:url("../img/mime/photoshop.png")}.mime-illustrator{background-image:url("../img/mime/illustrator.png")}.mime-video{background-image:url("../img/mime/video.png")}.mime-audio{background-image:url("../img/mime/audio.png")}@media (max-width:480px){.jp-current-time{margin-left:0 !important}.jp-audio{width:auto !important;margin-left:0 !important}.jp-audio .jp-controls{padding:2px 12px 0 !important}.jp-audio .jp-progress{left:3px !important;top:45px !important;width:200px !important}.jp-audio .jp-volume-controls{position:absolute !important;top:15px !important;left:170px !important}.jp-audio .jp-time-holder{left:3px !important;top:60px !important;width:200px !important}.jp-audio .jp-toggles{left:210px !important;top:45px !important;width:auto !important}.jp-playlist ul{padding:0 0 0 0 !important}}div.jp-type-playlist div.jp-playlist a.jp-playlist-current,div.jp-type-playlist div.jp-playlist a:hover{color:#21A1B3 !important}.jp-details,.jp-playlist{border-top:1px solid #21A1B3}.jp-audio,.jp-audio-stream,.jp-video{border:1px solid #21A1B3}ul.tour-list{list-style:none;margin-bottom:0;padding-left:10px}ul.tour-list li{padding-top:5px}ul.tour-list li a{color:#21A1B3}ul.tour-list li a .fa{width:16px}ul.tour-list li.completed a{text-decoration:line-through;color:#555555}.atwho-view{position:absolute;top:0;left:0;display:none;margin-top:18px;background:white;color:#555555;font-size:14px;font-weight:400;border:1px solid #d7d7d7;border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);min-width:120px;max-width:265px;z-index:11110 !important;padding:5px 0}.atwho-view strong,.atwho-view b{font-weight:normal}.atwho-view ul li.hint{background:#fff !important;border-left:3px solid transparent !important;font-size:12px;color:#999}.atwho-view .cur small{color:red}.atwho-view strong{background-color:#f9f0d2}.atwho-view .cur strong{background-color:#f9f0d2}.atwho-view ul{list-style:none;padding:0;margin:auto}.atwho-view ul li{display:block;padding:5px 10px;border-left:3px solid transparent;padding:4px 15px 4px 8px;cursor:pointer}.atwho-view small{font-size:smaller;color:#777;font-weight:normal}.atwho-input.form-control{min-height:36px;height:auto;padding-right:95px;word-wrap:break-word}.atwho-input p{padding:0;margin:0}.atwho-placeholder{color:#bebebe !important}.atwho-emoji-entry{float:left;padding:4px !important;margin:0px !important;border:none !important}.atwho-emoji-entry:hover,.atwho-emoji-entry:active,.atwho-emoji-entry:focus{padding:4px !important;margin:0px !important;border:none !important;background-color:#f7f7f7 !important;border-radius:3px}.atwho-view .cur{border-left:3px solid #21A1B3;background-color:#f7f7f7 !important}.atwho-user,.atwho-space,.atwho-input a{color:#21A1B3}.atwho-input a:hover{color:#21A1B3}.atwho-view strong{background-color:#f9f0d2}.atwho-view .cur strong{background-color:#f9f0d2}.atwho-view span{padding:5px}.sk-spinner-three-bounce.sk-spinner{margin:0 auto;width:70px;text-align:center}.loader{padding:30px 0}.loader .sk-spinner-three-bounce div,.loader .sk-spinner-three-bounce span{width:12px;height:12px;background-color:#21A1B3;border-radius:100%;display:inline-block;-webkit-animation:sk-threeBounceDelay 1.4s infinite ease-in-out;animation:sk-threeBounceDelay 1.4s infinite ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both}.loader .sk-spinner-three-bounce .sk-bounce1{-webkit-animation-delay:-0.32s;animation-delay:-0.32s}.loader .sk-spinner-three-bounce .sk-bounce2{-webkit-animation-delay:-0.16s;animation-delay:-0.16s}@-webkit-keyframes sk-threeBounceDelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-threeBounceDelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}.loader-modal{padding:8px 0}.loader-postform{padding:9px 0}.loader-postform .sk-spinner-three-bounce.sk-spinner{text-align:left;margin:0}.md-editor.active{border:2px solid #21A1B3 !important}.md-editor textarea{padding:10px !important}.markdown-render,[data-ui-markdown],[data-ui-richtext]{overflow:hidden;overflow-wrap:break-word;line-height:1.57}.markdown-render h1,[data-ui-markdown] h1,[data-ui-richtext] h1,.markdown-render h2,[data-ui-markdown] h2,[data-ui-richtext] h2,.markdown-render h3,[data-ui-markdown] h3,[data-ui-richtext] h3,.markdown-render h4,[data-ui-markdown] h4,[data-ui-richtext] h4,.markdown-render h5,[data-ui-markdown] h5,[data-ui-richtext] h5,.markdown-render h6,[data-ui-markdown] h6,[data-ui-richtext] h6{text-align:start;font-weight:normal;margin:1.2em 0 .8em;color:#555}.markdown-render h1:first-child,[data-ui-markdown] h1:first-child,[data-ui-richtext] h1:first-child,.markdown-render h2:first-child,[data-ui-markdown] h2:first-child,[data-ui-richtext] h2:first-child,.markdown-render h3:first-child,[data-ui-markdown] h3:first-child,[data-ui-richtext] h3:first-child,.markdown-render h4:first-child,[data-ui-markdown] h4:first-child,[data-ui-richtext] h4:first-child,.markdown-render h5:first-child,[data-ui-markdown] h5:first-child,[data-ui-richtext] h5:first-child,.markdown-render h6:first-child,[data-ui-markdown] h6:first-child,[data-ui-richtext] h6:first-child{margin:0 0 .8em}.markdown-render h1,[data-ui-markdown] h1,[data-ui-richtext] h1{font-size:1.7em}.markdown-render h2,[data-ui-markdown] h2,[data-ui-richtext] h2{font-size:1.5em}.markdown-render h3,[data-ui-markdown] h3,[data-ui-richtext] h3{font-size:1.2em}.markdown-render h4,[data-ui-markdown] h4,[data-ui-richtext] h4{font-size:1.1em}.markdown-render h5,[data-ui-markdown] h5,[data-ui-richtext] h5{font-size:1em}.markdown-render h6,[data-ui-markdown] h6,[data-ui-richtext] h6{font-size:.85em}.markdown-render p,[data-ui-markdown] p,[data-ui-richtext] p,.markdown-render pre,[data-ui-markdown] pre,[data-ui-richtext] pre,.markdown-render blockquote,[data-ui-markdown] blockquote,[data-ui-richtext] blockquote,.markdown-render ul,[data-ui-markdown] ul,[data-ui-richtext] ul,.markdown-render ol,[data-ui-markdown] ol,[data-ui-richtext] ol{margin:0 0 1.2em}.markdown-render li ul,[data-ui-markdown] li ul,[data-ui-richtext] li ul,.markdown-render li ol,[data-ui-markdown] li ol,[data-ui-richtext] li ol{margin:0}.markdown-render p:last-child,[data-ui-markdown] p:last-child,[data-ui-richtext] p:last-child{margin:0}.markdown-render pre,[data-ui-markdown] pre,[data-ui-richtext] pre{padding:0;border:none;background-color:#f7f7f7}.markdown-render pre code,[data-ui-markdown] pre code,[data-ui-richtext] pre code{background-color:#f7f7f7;color:#555}.markdown-render code,[data-ui-markdown] code,[data-ui-richtext] code{background-color:#dbf5f8;color:#197a88}.markdown-render blockquote,[data-ui-markdown] blockquote,[data-ui-richtext] blockquote{background-color:rgba(128,128,128,0.05);border-top-right-radius:5px;border-bottom-right-radius:5px;padding:15px 20px;font-size:1em;border-left:5px solid #435f6f}.markdown-render dt,[data-ui-markdown] dt,[data-ui-richtext] dt,.markdown-render dd,[data-ui-markdown] dd,[data-ui-richtext] dd{margin-top:5px;margin-bottom:5px;line-height:1.45}.markdown-render dt,[data-ui-markdown] dt,[data-ui-richtext] dt{font-weight:bold}.markdown-render dd,[data-ui-markdown] dd,[data-ui-richtext] dd{margin-left:40px}.markdown-render pre,[data-ui-markdown] pre,[data-ui-richtext] pre{text-align:start;border:0;padding:10px 20px;border-radius:0;border-left:2px solid #435f6f}.markdown-render pre code,[data-ui-markdown] pre code,[data-ui-richtext] pre code{white-space:pre !important}.markdown-render blockquote ul:last-child,[data-ui-markdown] blockquote ul:last-child,[data-ui-richtext] blockquote ul:last-child,.markdown-render blockquote ol:last-child,[data-ui-markdown] blockquote ol:last-child,[data-ui-richtext] blockquote ol:last-child{margin-bottom:0}.markdown-render ul,[data-ui-markdown] ul,[data-ui-richtext] ul,.markdown-render ol,[data-ui-markdown] ol,[data-ui-richtext] ol{margin-top:0;padding-left:30px}.markdown-render ul li p,[data-ui-markdown] ul li p,[data-ui-richtext] ul li p,.markdown-render ol li p,[data-ui-markdown] ol li p,[data-ui-richtext] ol li p{overflow:visible !important}.markdown-render .footnote,[data-ui-markdown] .footnote,[data-ui-richtext] .footnote{vertical-align:top;position:relative;top:-0.5em;font-size:.8em}.markdown-render .emoji,[data-ui-markdown] .emoji,[data-ui-richtext] .emoji{width:16px}.markdown-render a,[data-ui-markdown] a,[data-ui-richtext] a,.markdown-render a:visited,[data-ui-markdown] a:visited,[data-ui-richtext] a:visited{background-color:inherit;text-decoration:none;color:#21A1B3 !important}.markdown-render a.header-anchor,[data-ui-markdown] a.header-anchor,[data-ui-richtext] a.header-anchor{color:#555 !important}.markdown-render a.not-found,[data-ui-markdown] a.not-found,[data-ui-richtext] a.not-found{color:#FFC107}.markdown-render li,[data-ui-markdown] li,[data-ui-richtext] li{border:0 !important;background-color:transparent !important;padding:0;margin:5px 0}.markdown-render img:not(.center-block),[data-ui-markdown] img:not(.center-block),[data-ui-richtext] img:not(.center-block){max-width:100%}.markdown-render img.pull-right,[data-ui-markdown] img.pull-right,[data-ui-richtext] img.pull-right{margin:5px 0 0 10px}.markdown-render img.pull-left,[data-ui-markdown] img.pull-left,[data-ui-richtext] img.pull-left{margin:5px 10px 0 0}.markdown-render img.center-block,[data-ui-markdown] img.center-block,[data-ui-richtext] img.center-block{margin-top:5px;margin-bottom:5px}.markdown-render img[width='100%'],[data-ui-markdown] img[width='100%'],[data-ui-richtext] img[width='100%']{border-radius:4px}.markdown-render table,[data-ui-markdown] table,[data-ui-richtext] table{width:100%;font-size:1em;border:1px solid #d7d7d7;margin-bottom:1.2em !important}.markdown-render table th,[data-ui-markdown] table th,[data-ui-richtext] table th{font-size:1em;color:#fff !important;background-color:#435f6f}.markdown-render table th p,[data-ui-markdown] table th p,[data-ui-richtext] table th p{color:#fff !important}.markdown-render table td,[data-ui-markdown] table td,[data-ui-richtext] table td{padding:15px;border:1px solid #d7d7d7 !important}.markdown-render table th,[data-ui-markdown] table th,[data-ui-richtext] table th{padding:10px 15px;border:1px solid #d7d7d7 !important}@media (max-width:991px){.layout-sidebar-container{display:none}}.ui-widget-header{border:none !important;background:#fff !important;color:#7a7a7a !important;font-weight:300 !important}.ui-widget-content{border:1px solid #dddcda !important;border-radius:0 !important;background:#fff;color:#000 !important;-webkit-box-shadow:0 6px 6px rgba(0,0,0,0.1);box-shadow:0 6px 6px rgba(0,0,0,0.1)}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{opacity:.2}.ui-datepicker .ui-datepicker-prev:hover,.ui-datepicker .ui-datepicker-next:hover{background:#fff !important;border:none;margin:1px}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:none !important;background:#f7f7f7 !important;color:#7a7a7a !important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:none !important;border:1px solid #b2b2b2 !important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #21A1B3 !important;background:#6fd6e4 !important}.status-bar-body{color:white;position:fixed;width:100%;background-color:rgba(0,0,0,0.7);text-align:center;padding:20px;z-index:9999999;bottom:0px;display:block;line-height:20px}.status-bar-close{color:white;font-weight:bold;font-size:21px;cursor:pointer}.status-bar-close:hover{color:white}.status-bar-close i{vertical-align:top !important;padding-top:3px}.status-bar-content i{margin-right:10px;font-size:21px;vertical-align:middle}.status-bar-content .showMore{color:#21A1B3;float:right;margin-left:10px;font-size:.7em;cursor:pointer;vertical-align:middle;white-space:nowrap}.status-bar-content .status-bar-details{text-align:left;font-size:.7em;margin-top:20px;max-height:200px;overflow:auto}.status-bar-content span{vertical-align:middle}.status-bar-content i.error,.status-bar-content i.fatal{color:#FC4A64}.status-bar-content i.warning{color:#FFC107}.status-bar-content i.info,.status-bar-content i.debug{color:#21A1B3}.status-bar-content i.success{color:#85CA2B}.highlight{background-color:#fff8e0}.alert-default{color:#000;background-color:#f7f7f7;border-color:#ededed;font-size:13px}.alert-default .info{margin:10px 0}.alert-success{color:#84be5e;background-color:#f7fbf4;border-color:#97d271}.alert-warning{color:#e9b168;background-color:#fffbf7;border-color:#fdd198}.alert-danger{color:#ff8989;background-color:#fff6f6;border-color:#ff8989}.data-saved{padding-left:10px;color:#21A1B3}img.bounceIn{-webkit-animation-duration:800ms;-moz-animation-duration:800ms;animation-duration:800ms}.tags .tag{margin-top:5px;border-radius:2px;padding:4px 8px;text-transform:uppercase;max-width:150px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#user-tags-panel .tags .tag{max-width:250px}.label{text-transform:uppercase}.label{text-transform:uppercase;display:inline-block;padding:3px 5px 4px;font-weight:600;font-size:10px;color:white;vertical-align:baseline;white-space:nowrap;text-shadow:none}.label-default{background:#ededed;color:#7a7a7a !important}a.label-default:hover{background:#e0e0e0 !important}.label-info{background-color:#21A1B3}a.label-info:hover{background:#1d8e9d !important}.label-danger{background-color:#FC4A64}a.label-danger:hover{background:#fc314f !important}.label-success{background-color:#97d271}a.label-success:hover{background:#89cc5e !important}.label-warning{background-color:#FFC107}a.label-warning:hover{background:#ecb100 !important}.label-light{background-color:transparent;color:#7a7a7a;border:1px solid #bababa}.topic-label-list,.wall-entry-topics{margin-bottom:10px}.topic-label-list a,.wall-entry-topics a{margin-right:4px}.topic-label-list .label,.wall-entry-topics .label{padding:5px;border-radius:4px}.ProsemirrorEditor.fullscreen{position:fixed;top:0;left:0;width:100vw;height:calc(100vh - 3px);z-index:9998}.ProsemirrorEditor.fullscreen .ProseMirror-menubar-wrapper{height:100%}.ProsemirrorEditor.fullscreen .humhub-ui-richtext{max-height:none !important}.ProsemirrorEditor.fullscreen .ProseMirror{position:static;overflow:auto;height:calc(100% - 26px)}.ProsemirrorEditor.fullscreen .ProseMirror-menubar{position:static !important;top:0 !important;left:0 !important;margin:0 !important;width:100% !important}.login-container .ProsemirrorEditor.fullscreen,.modal-dialog .ProsemirrorEditor.fullscreen{width:100%;height:100%}.ProsemirrorEditor .ProseMirror{padding-right:12px}.ProsemirrorEditor .ProseMirror-menu{margin:0 -4px;line-height:1}.ProsemirrorEditor .ProseMirror-tooltip .ProseMirror-menu{width:-webkit-fit-content;width:fit-content;white-space:pre}.ProsemirrorEditor .ProseMirror-menuitem{margin-right:0;display:inline-block}.ProsemirrorEditor .ProseMirror-menuseparator{border-right:1px solid #ddd;margin-right:3px}.ProsemirrorEditor .ProseMirror-menubar-wrapper{z-index:200}.ProsemirrorEditor .ProseMirror-menuitem .ProseMirror-menu-group{border-right:1px solid #ddd}.ProsemirrorEditor .ProseMirror-menuitem .ProseMirror-menu-group.last{border-right:none}.ProsemirrorEditor .ProseMirror-menuitem .seperator{border-right:1px solid #ddd;margin-right:2px;padding-right:2px}.ProsemirrorEditor .ProseMirror-menu-dropdown,.ProsemirrorEditor .ProseMirror-menu-dropdown-menu{font-size:90%;white-space:nowrap}.ProsemirrorEditor .ProseMirror-menu-dropdown{cursor:pointer;position:relative;padding-right:15px !important}.ProsemirrorEditor .ProseMirror-menu-dropdown-wrap{padding:1px 0 1px 0;display:inline-block;position:relative}.ProsemirrorEditor .ProseMirror-menu-dropdown-right{right:0}.ProsemirrorEditor .ProseMirror-menu-dropdown:after{content:"";border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid currentColor;opacity:.6;position:absolute;right:4px;top:calc(50% - 2px)}.ProsemirrorEditor .ProseMirror-menu-submenu{border-top-right-radius:4px}.ProsemirrorEditor .ProseMirror-menu-dropdown-menu,.ProsemirrorEditor .ProseMirror-menu-submenu{position:absolute;background:white;color:#666;border:1px solid #aaa;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.ProsemirrorEditor .ProseMirror-menu-dropdown-menu{z-index:15;min-width:6em;margin-top:2px}.ProsemirrorEditor .ProseMirror-menu-dropdown-item{cursor:pointer}.ProsemirrorEditor .ProseMirror-menu-dropdown-item div[title],.ProsemirrorEditor .ProseMirror-menu-submenu-wrap{padding:4px}.ProsemirrorEditor .ProseMirror-menu-dropdown-item:hover{background:#f2f2f2}.ProsemirrorEditor .ProseMirror-menu-submenu-wrap{position:relative}.ProsemirrorEditor .ProseMirror-menu-submenu-label:after{content:"";border-top:4px solid transparent;border-bottom:4px solid transparent;border-left:4px solid currentColor;opacity:.6;position:absolute;right:4px;top:calc(50% - 4px)}.ProsemirrorEditor .ProseMirror-menu-submenu{display:none;min-width:4em;left:100%;top:0}.ProsemirrorEditor .ProseMirror-menu-active{background:#eee;border-radius:4px;border:1px solid #ededed !important}.ProsemirrorEditor .ProseMirror-menu-disabled{opacity:.3}.ProsemirrorEditor .ProseMirror-menu-submenu-wrap:hover .ProseMirror-menu-submenu,.ProsemirrorEditor .ProseMirror-menu-submenu-wrap-active .ProseMirror-menu-submenu{display:block}.ProsemirrorEditor .ProseMirror-icon{display:inline-block;line-height:.8;vertical-align:-2px;padding:1px 7px;cursor:pointer;border:1px solid transparent}.ProsemirrorEditor .ProseMirror-menu-disabled.ProseMirror-icon{cursor:default}.ProsemirrorEditor .ProseMirror-icon svg{fill:currentColor;height:1em}.ProsemirrorEditor .ProseMirror-icon span{vertical-align:text-top}.ProsemirrorEditor.plainMenu .ProseMirror{border-top-left-radius:0 !important;border-top-right-radius:0 !important;border-top-width:1px !important;min-height:100px}.ProsemirrorEditor.plainMenu .ProseMirror-menu-group{padding:5px}.ProsemirrorEditor.plainMenu .ProseMirror-menuitem .ProseMirror-menu-group{padding:2px}.ProsemirrorEditor.plainMenu .ProseMirror-menubar~.ProseMirror-focused{border-color:#21A1B3 !important}.ProsemirrorEditor.plainMenu .ProseMirror-textblock-dropdown{min-width:3em}.ProsemirrorEditor.plainMenu .ProseMirror-menubar-wrapper{z-index:8}.ProsemirrorEditor.plainMenu .ProseMirror-menubar{background-color:#f7f7f7;border-top-left-radius:4px;border-top-right-radius:4px;border:1px solid #ddd;position:relative;min-height:1em;color:#666;padding:1px 6px 1px 0;top:0;left:0;right:0;z-index:10;-moz-box-sizing:border-box;box-sizing:border-box;overflow:visible}.ProsemirrorEditor.focusMenu .form-control:focus{border-top-left-radius:0 !important}.ProsemirrorEditor.focusMenu .ProseMirror-menubar{display:table;min-height:1em;color:#666;padding:2px 6px;top:0;left:0;right:0;z-index:10;-moz-box-sizing:border-box;box-sizing:border-box;overflow:visible;margin-top:-25px;background:white;border:1px solid #aeaeae;border-bottom:0;border-top:1px solid #aeaeae;border-top-left-radius:4px;border-top-right-radius:4px;float:left}@-moz-document url-prefix(){.ProsemirrorEditor.focusMenu .ProseMirror-menubar{margin-top:-26px}}.ProsemirrorEditor .ProseMirror{position:relative;word-wrap:break-word;white-space:pre-wrap;-webkit-font-variant-ligatures:none;font-variant-ligatures:none}.ProsemirrorEditor .ProseMirror ul,.ProsemirrorEditor .ProseMirror ol{cursor:default}.ProsemirrorEditor .ProseMirror pre{white-space:pre-wrap}.ProsemirrorEditor .ProseMirror li{position:relative}.ProsemirrorEditor .ProseMirror img{max-width:100%}.ProsemirrorEditor .ProseMirror-hideselection *::selection{background:transparent}.ProsemirrorEditor .ProseMirror-hideselection *::-moz-selection{background:transparent}.ProsemirrorEditor .ProseMirror-selectednode{outline:2px dashed #8cf}.ProsemirrorEditor li.ProseMirror-selectednode{outline:none}.ProsemirrorEditor li.ProseMirror-selectednode:after{content:"";position:absolute;left:-32px;right:-2px;top:-2px;bottom:-2px;border:2px solid #8cf;pointer-events:none}.ProsemirrorEditor .ProseMirror-textblock-dropdown{min-width:3em}.ProsemirrorEditor .ProseMirror-menu{margin:0 -4px;line-height:1}.ProsemirrorEditor .ProseMirror-tooltip .ProseMirror-menu{width:-webkit-fit-content;width:fit-content;white-space:pre}.ProsemirrorEditor .ProseMirror-gapcursor{display:none;pointer-events:none;position:absolute}.ProsemirrorEditor .ProseMirror-gapcursor:after{content:"";display:block;position:absolute;top:-2px;width:20px;border-top:1px solid black;animation:ProseMirror-cursor-blink 1.1s steps(2, start) infinite}@keyframes ProseMirror-cursor-blink{to{visibility:hidden}}.ProsemirrorEditor .ProseMirror-focused .ProseMirror-gapcursor{display:block}.ProsemirrorEditor .ProseMirror-example-setup-style hr{padding:2px 10px;border:none;margin:1em 0}.ProsemirrorEditor .ProseMirror-example-setup-style hr:after{content:"";display:block;height:1px;background-color:silver;line-height:2px}.ProsemirrorEditor .ProseMirror-example-setup-style img{cursor:default}.ProsemirrorEditor .ProseMirror p{margin-top:1.2em}.ProsemirrorEditor .ProseMirror p:first-child{margin:0}.ProsemirrorEditor .ProseMirror>p:first-child+*{margin-top:1.2em}.ProsemirrorEditor .ProsemirrorEditor{position:relative}.ProsemirrorEditor .ProsemirrorEditor .ProseMirror{padding-right:12px !important}.ProsemirrorEditor .ProsemirrorEditor img{max-width:100%}.ProsemirrorEditor .ProseMirror h1:first-child,.ProsemirrorEditor .ProseMirror h2:first-child,.ProsemirrorEditor .ProseMirror h3:first-child,.ProsemirrorEditor .ProseMirror h4:first-child,.ProsemirrorEditor .ProseMirror h5:first-child,.ProsemirrorEditor .ProseMirror h6:first-child{margin-top:10px}.ProsemirrorEditor .ProseMirror [data-mention]{color:#21A1B3}.ProsemirrorEditor .ProseMirror{outline:none}.ProsemirrorEditor .ProseMirror [data-oembed]{font-size:0}.ProsemirrorEditor .ProseMirror iframe{pointer-events:none;display:block}.ProsemirrorEditor .ProseMirror p{margin-bottom:1em}.ProsemirrorEditor .ProseMirror-textblock-dropdown{min-width:3em}.ProsemirrorEditor .ProseMirror .placeholder{padding:0 !important;pointer-events:none;height:0}.ProsemirrorEditor .ProseMirror:focus .placeholder{display:none}.ProsemirrorEditor .ProseMirror .tableWrapper{overflow-x:auto}.ProsemirrorEditor .ProseMirror .column-resize-handle{position:absolute;right:-2px;top:0;bottom:0;width:4px;z-index:20;background-color:#adf;pointer-events:none}.ProsemirrorEditor .ProseMirror.resize-cursor{cursor:ew-resize;cursor:col-resize}.ProsemirrorEditor .ProseMirror .selectedCell:after{z-index:2;position:absolute;content:"";left:0;right:0;top:0;bottom:0;background:rgba(200,200,255,0.4);pointer-events:none}.ProsemirrorEditor .ProseMirror-menubar-wrapper{position:relative;outline:none}.ProsemirrorEditor .ProseMirror table{margin:0}.ProsemirrorEditor .ProseMirror .tableWrapper{margin:1em 0}.ProseMirror-prompt{background:white;padding:5px 10px 5px 15px;border:1px solid silver;position:fixed;border-radius:3px;min-width:300px;z-index:999999;box-shadow:-0.5px 2px 5px rgba(0,0,0,0.2)}.ProseMirror-prompt h5{font-weight:bold;font-size:100%;margin:15px 0}.ProseMirror-prompt input{margin-bottom:5px}.ProseMirror-prompt-close{position:absolute;left:2px;top:1px;color:#666;border:none;background:transparent;padding:0}.ProseMirror-prompt-close:after{content:"✕";font-size:12px}.ProseMirror-invalid{background:#ffc;border:1px solid #cc7;border-radius:4px;padding:5px 10px;position:absolute;min-width:10em}.ProseMirror-prompt-buttons{margin:15px 0;text-align:center}.atwho-view .cur{border-left:3px solid #59d6e4;background-color:#f7f7f7 !important}.atwho-user,.atwho-space,.atwho-input a{color:#59d6e4}.atwho-input a:hover{color:#59d6e4}.atwho-view strong{background-color:#f9f0d2}.atwho-view .cur strong{background-color:#f9f0d2}[data-emoji-category]{max-height:200px;display:block;position:relative;overflow:auto}[data-emoji-category] .atwho-emoji-entry{width:24px;height:28px;overflow:hidden}[data-emoji-category] .atwho-emoji-entry.cur{background-color:#ededed !important}.emoji-nav{padding-top:10px}.emoji-nav .emoji-nav-item{border-top:2px solid #fff8e0}.emoji-nav .emoji-nav-item.cur{border-left:0;border-top:2px solid #21A1B3}[data-ui-markdown],[data-ui-richtext]{overflow-x:auto;overflow-wrap:break-word}[data-ui-markdown] a,[data-ui-richtext] a{color:#21A1B3}#wallStream [data-ui-markdown],#wallStream [data-ui-richtext]{overflow-wrap:initial;word-break:initial;hyphens:initial}@media screen and (max-width:768px){.ProsemirrorEditor.focusMenu .form-control:focus{border-top-right-radius:0 !important}.ProsemirrorEditor.focusMenu .ProseMirror-menubar{min-height:1em;margin-top:0}.ProsemirrorEditor.focusMenu .humhub-ui-richtext{margin-top:0}}@media only screen and (max-width : 768px){body{padding-top:105px}.modal-open #layout-content>.container{overflow-x:unset}#layout-content .left-navigation .list-group{-webkit-overflow-scrolling:auto;white-space:nowrap;overflow-x:auto}#layout-content .left-navigation .list-group::-webkit-scrollbar{-webkit-appearance:none}#layout-content .left-navigation .list-group::-webkit-scrollbar:vertical{width:8px}#layout-content .left-navigation .list-group::-webkit-scrollbar:horizontal{height:8px}#layout-content .left-navigation .list-group::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,0.5);border-radius:10px;border:2px solid #ffffff}#layout-content .left-navigation .list-group::-webkit-scrollbar-track{border-radius:10px;background-color:#ffffff}#layout-content .table-responsive::-webkit-scrollbar{-webkit-appearance:none}#layout-content .table-responsive::-webkit-scrollbar:vertical{width:8px}#layout-content .table-responsive::-webkit-scrollbar:horizontal{height:8px}#layout-content .table-responsive::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,0.5);border-radius:10px;border:2px solid #ffffff}#layout-content .table-responsive::-webkit-scrollbar-track{border-radius:10px;background-color:#ffffff}#layout-content .panel{margin-bottom:5px}#layout-content .panel .statistics .entry{margin-left:10px}#layout-content>.container{padding-right:2px !important;padding-left:2px !important;overflow-x:hidden}#layout-content .layout-nav-container .panel-heading{display:none}#layout-content .panel-profile-header #profilefileupload,#layout-content .panel-profile-header .profile-user-photo-container,#layout-content .panel-profile-header .space-acronym,#layout-content .panel-profile-header .profile-user-photo{height:100px !important;width:100px !important}#layout-content .image-upload-container .image-upload-buttons{right:2px !important}#layout-content .space-acronym{padding:6px 0 !important}#layout-content .panel-profile .panel-profile-header .img-profile-header-background{min-height:80px !important}#layout-content .panel-profile .panel-profile-header .img-profile-data{padding-top:50px !important;padding-left:130px}.modal-dialog{width:calc(100vw - 4px) !important;padding:0 !important;margin:2px !important}.dropdown-menu>li a,.nav-pills .dropdown-menu li a,.nav-tabs .dropdown-menu li a,.account .dropdown-menu li a,.modal .dropdown-menu li a,.panel .dropdown-menu li a,.nav-tabs .dropdown-menu li a{padding-top:10px;padding-bottom:10px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.dropdown-menu{max-width:320px}select.form-control:not([multiple]){padding-right:23px;width:auto}.modal.in{padding-right:0 !important}.load-suppressed{margin-top:-8px;margin-bottom:5px}.ProsemirrorEditor .ProseMirror-menuitem{font-size:1.2em !important}}.icon-sm,.fa-sm{font-size:.875em}.icon-lg,.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-0.0667em}.icon-2x,.fa-2x{font-size:2em}.icon-3x,.fa-3x{font-size:3em}.icon-4x,.fa-4x{font-size:4em}.icon-5x,.fa-5x{font-size:5em}.icon-6x,.fa-6x{font-size:6em}.icon-7x,.fa-7x{font-size:7em}.icon-9x,.fa-9x{font-size:9em}.icon-10x,.fa-10x{font-size:10em}@media print{a[href]:after{content:none}body{padding-top:0}pre,blockquote{page-break-inside:avoid}.preferences,.layout-sidebar-container,.layout-nav-container,button{display:none !important}}@media (min-width:500px){.container-directory.container-fluid .card{width:50%}}@media (min-width:1000px){.container-directory.container-fluid .card{width:33.33333333%}}@media (min-width:1300px){.container-directory.container-fluid .card{width:25%}}@media (min-width:1600px){.container-directory.container-fluid .card{width:20%}}@media (min-width:1900px){.container-directory.container-fluid .card{width:16.66666667%}}.container-directory .form-search .row>div{padding-bottom:3px}.container-directory .form-search .form-search-filter-keyword{position:relative}.container-directory .form-search .form-search-filter-keyword .form-button-search{position:absolute;right:18px;margin-bottom:3px}.container-directory .form-search .form-control.form-search-filter{width:100%;height:40px;margin:3px 0 0;padding:8px 30px 10px 8px;border-radius:4px;border:solid 1px #c5c5c5}.container-directory .form-search .form-button-search{background:none;border:0;font-size:16px;color:#000;top:initial;bottom:9px}.container-directory .form-search .form-search-field-info{font-size:80%}.container-directory .form-search-reset{text-decoration:underline;display:block;margin-top:26px}.container-directory .form-search-reset:hover{text-decoration:none}.container-directory .cards{display:flex;flex-direction:row;flex-wrap:wrap}.container-directory .card{display:flex;flex-direction:row}.container-directory .card .card-panel{position:relative;width:100%;display:flex;flex-direction:column;margin:15px 0;border-radius:4px;background-color:#ffffff}.container-directory .card .card-panel.card-archived{filter:opacity(60%)}.container-directory .card .card-icons .fa{color:#21a1b3}.container-directory .card .card-icons .fa span{font:12px 'Open Sans',sans-serif;font-weight:600}.container-directory .card .card-bg-image{width:100%;height:86px;background-color:#cfcfcf;background-size:cover;background-position:center;border-radius:4px 4px 0 0}.container-directory .card .card-header{position:absolute;padding:16px;display:table;width:100%}.container-directory .card .card-header .card-image-wrapper{display:table-cell;width:98px}.container-directory .card .card-header .card-image-link{display:inline-block;border:2px solid #fff;border-radius:6px}.container-directory .card .card-header .card-status{position:absolute;right:16px;background:#435f6f}.container-directory .card .card-header .card-icons{display:table-cell;padding:0 0 2px 5px;text-align:right;vertical-align:bottom;font-size:16px}.container-directory .card .card-header .card-icons .fa{color:#21a1b3}.container-directory .card .card-header .card-icons .fa.fa-mobile-phone{font-size:22px;line-height:15px;position:relative;top:2px}.container-directory .card .card-body{flex-grow:1;padding:44px 16px 24px 16px;overflow:auto}.container-directory .card .card-body .card-title{font-size:16px;font-weight:bold;line-height:24px}.container-directory .card .card-body .card-details{margin-top:8px;color:#57646c}.container-directory .card .card-body .card-details a{color:#21a1b3;text-decoration:underline}.container-directory .card .card-body .card-details a:hover{text-decoration:none}.container-directory .card .card-body .card-tags{margin-top:20px}.container-directory .card .card-footer{padding:0 16px 20px}.container-directory .card .card-footer a.btn{float:left;margin:0 8px 4px 0;white-space:normal;hyphens:none}.container-directory .card .card-footer a.btn:last-child{margin-right:0}.container-directory .card .card-footer .btn-group a.btn{margin-right:0}/*! Select2 humhub Theme v0.1.0-beta.4 | MIT License | github.com/select2/select2-humhub-theme */.select2-container--humhub{display:block}.select2-container--humhub .select2-selection{background-color:#fff;border:2px solid #ededed;border-radius:4px;color:#555;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;outline:0}.select2-container--humhub .select2-search--dropdown .select2-search__field{background-color:#fff;border:2px solid #ededed;border-radius:4px;color:#555;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px}.select2-container--humhub .select2-search__field{outline:0}.select2-container--humhub .select2-search__field::placeholder{color:#999;font-weight:normal}.select2-container--humhub .select2-search__field::-webkit-input-placeholder{color:#999;font-weight:normal}.select2-container--humhub .select2-search__field:-moz-placeholder{color:#999;font-weight:normal}.select2-container--humhub .select2-search__field::-moz-placeholder{color:#999;font-weight:normal;opacity:1}.select2-container--humhub .select2-search__field:-ms-input-placeholder{color:#999;font-weight:normal}.select2-container--humhub .select2-results__option[role=group]{padding:0}.select2-container--humhub .select2-results__option[aria-disabled=true]{color:#777;cursor:not-allowed}.select2-container--humhub .select2-results__option[aria-selected=true]{background-color:#f5f5f5;color:#262626;border-left:3px solid transparent}.select2-container--humhub .select2-results__option[aria-selected=false]{border-left:3px solid transparent}.select2-container--humhub .select2-results__option--highlighted[aria-selected]{background-color:#f7f7f7;border-left:3px solid #21A1B3;color:#000}.select2-container--humhub .select2-results__option .select2-results__option{padding:6px 12px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option{margin-left:-12px;padding-left:24px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-24px;padding-left:36px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-36px;padding-left:48px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-48px;padding-left:60px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-60px;padding-left:72px}.select2-container--humhub .select2-results__group{color:#777;display:block;padding:6px 12px;font-size:12px;line-height:1.42857143;white-space:nowrap}.select2-container--humhub.select2-container--focus .select2-selection,.select2-container--humhub.select2-container--open .select2-selection{border:2px solid #21A1B3;outline:0;box-shadow:none}.select2-container--humhub.select2-container--open .select2-selection .select2-selection__arrow b{border-color:transparent transparent #999 transparent;border-width:0 4px 4px 4px}.select2-container--humhub .select2-selection__clear{color:#999;cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--humhub .select2-selection__clear:hover{color:#333}.select2-container--humhub.select2-container--disabled .select2-selection{border-color:#ccc;-webkit-box-shadow:none;box-shadow:none}.select2-container--humhub.select2-container--disabled .select2-selection,.select2-container--humhub.select2-container--disabled .select2-search__field{cursor:not-allowed}.select2-container--humhub.select2-container--disabled .select2-selection,.select2-container--humhub.select2-container--disabled .select2-selection--multiple .select2-selection__choice{background-color:#eee}.select2-container--humhub.select2-container--disabled .select2-selection__clear,.select2-container--humhub.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove{display:none}.select2-container--humhub .select2-dropdown{-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);border-color:#d7d7d7;overflow-x:hidden;margin-top:-1px}.select2-container--humhub .select2-dropdown--above{margin-top:1px}.select2-container--humhub .select2-results>.select2-results__options{max-height:400px;overflow-y:auto}.select2-container--humhub .select2-selection--single{height:34px;line-height:1.42857143;padding:6px 24px 6px 12px}.select2-container--humhub .select2-selection--single .select2-selection__arrow{position:absolute;bottom:0;right:12px;top:0;width:4px}.select2-container--humhub .select2-selection--single .select2-selection__arrow b{border-color:#999 transparent transparent transparent;border-style:solid;border-width:4px 4px 0 4px;height:0;left:0;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--humhub .select2-selection--single .select2-selection__rendered{color:#555;padding:0}.select2-container--humhub .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--humhub .select2-selection--multiple{min-height:34px;padding:2px}.select2-container--humhub .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;display:block;line-height:1.42857143;list-style:none;margin:0;overflow:hidden;padding:0;width:100%;text-overflow:ellipsis;white-space:nowrap}.select2-container--humhub .select2-selection--multiple .select2-selection__placeholder{color:#999;float:left;margin-top:5px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice{color:#555;border-radius:4px;cursor:default;padding:0 6px;background-color:#21A1B3;color:#fff;border-radius:3px;font-size:12px !important;padding:0 5px 2px 2px;float:left;margin:2px;height:28px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice img,.select2-container--humhub .select2-selection--multiple .select2-selection__choice div{margin-right:5px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice span.no-image{line-height:27px;padding-left:5px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice i{margin:0px 2px;line-height:27px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice .picker-close{cursor:pointer}.select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field{background:transparent;padding:0 5px;width:auto !important;height:32px;line-height:1.42857143;margin-top:0;min-width:5em}.select2-container--humhub .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:none;font-weight:bold;margin-right:3px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--humhub .select2-selection--multiple .select2-selection__clear{margin-top:6px}.select2-container--humhub.input-sm,.select2-container--humhub.input-lg{border-radius:0;font-size:12px;height:auto;line-height:1;padding:0}.select2-container--humhub.input-sm .select2-selection--single,.input-group-sm .select2-container--humhub .select2-selection--single,.form-group-sm .select2-container--humhub .select2-selection--single{border-radius:3px;font-size:12px;height:30px;line-height:1.5;padding:5px 22px 5px 10px}.select2-container--humhub.input-sm .select2-selection--single .select2-selection__arrow b,.input-group-sm .select2-container--humhub .select2-selection--single .select2-selection__arrow b,.form-group-sm .select2-container--humhub .select2-selection--single .select2-selection__arrow b{margin-left:-5px}.select2-container--humhub.input-sm .select2-selection--multiple,.input-group-sm .select2-container--humhub .select2-selection--multiple,.form-group-sm .select2-container--humhub .select2-selection--multiple{min-height:30px}.select2-container--humhub.input-sm .select2-selection--multiple .select2-selection__choice,.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__choice,.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__choice{font-size:12px;line-height:1.5;margin:4px 0 0 5px;padding:0 5px}.select2-container--humhub.input-sm .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field,.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field{padding:0 10px;font-size:12px;height:28px;line-height:1.5}.select2-container--humhub.input-sm .select2-selection--multiple .select2-selection__clear,.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__clear,.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__clear{margin-top:5px}.select2-container--humhub.input-lg .select2-selection--single,.input-group-lg .select2-container--humhub .select2-selection--single,.form-group-lg .select2-container--humhub .select2-selection--single{border-radius:6px;font-size:18px;height:46px;line-height:1.3333333;padding:10px 31px 10px 16px}.select2-container--humhub.input-lg .select2-selection--single .select2-selection__arrow,.input-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow,.form-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow{width:5px}.select2-container--humhub.input-lg .select2-selection--single .select2-selection__arrow b,.input-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow b,.form-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow b{border-width:5px 5px 0 5px;margin-left:-5px;margin-left:-10px;margin-top:-2.5px}.select2-container--humhub.input-lg .select2-selection--multiple,.input-group-lg .select2-container--humhub .select2-selection--multiple,.form-group-lg .select2-container--humhub .select2-selection--multiple{min-height:46px}.select2-container--humhub.input-lg .select2-selection--multiple .select2-selection__choice,.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__choice,.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__choice{font-size:18px;line-height:1.3333333;border-radius:4px;margin:9px 0 0 8px;padding:0 10px}.select2-container--humhub.input-lg .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field,.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field{padding:0 16px;font-size:18px;height:44px;line-height:1.3333333}.select2-container--humhub.input-lg .select2-selection--multiple .select2-selection__clear,.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__clear,.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__clear{margin-top:10px}.select2-container--humhub.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #999 transparent;border-width:0 5px 5px 5px}.input-group-lg .select2-container--humhub.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #999 transparent;border-width:0 5px 5px 5px}.select2-container--humhub[dir="rtl"] .select2-selection--single{padding-left:24px;padding-right:12px}.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:0;padding-left:0;text-align:right}.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:12px;right:auto}.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__arrow b{margin-left:0}.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:0;margin-right:6px}.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.has-warning .select2-dropdown,.has-warning .select2-selection{border-color:#FFC107}.has-warning .select2-container--focus .select2-selection,.has-warning .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ffdb6d;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ffdb6d;border-color:#d39e00}.has-warning.select2-drop-active{border-color:#d39e00}.has-warning.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#d39e00}.has-error .select2-dropdown,.has-error .select2-selection{border-color:#FC4A64}.has-error .select2-container--focus .select2-selection,.has-error .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #feaeba;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #feaeba;border-color:#fb1839}.has-error.select2-drop-active{border-color:#fb1839}.has-error.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#fb1839}.has-success .select2-dropdown,.has-success .select2-selection{border-color:#97d271}.has-success .select2-container--focus .select2-selection,.has-success .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d0ebbe;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d0ebbe;border-color:#7bc64a}.has-success.select2-drop-active{border-color:#7bc64a}.has-success.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#7bc64a}.input-group .select2-container--humhub{display:table;table-layout:fixed;position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group.select2-humhub-prepend .select2-container--humhub .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group.select2-humhub-append .select2-container--humhub .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.select2-humhub-append .select2-container--humhub,.select2-humhub-prepend .select2-container--humhub,.select2-humhub-append .input-group-btn,.select2-humhub-prepend .input-group-btn,.select2-humhub-append .input-group-btn .btn,.select2-humhub-prepend .input-group-btn .btn{vertical-align:top}.form-control.select2-hidden-accessible{position:absolute !important;width:1px !important}.form-inline .select2-container--humhub{display:inline-block}ul.tag_input{list-style:none;background-color:#fff;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;padding:0 0 9px 4px}ul.tag_input li img{margin:0 5px 0 0}.tag_input_field{outline:none;border:none !important;padding:5px 4px 0 !important;width:170px;margin:2px 0 0 !important}.userInput,.spaceInput{background-color:#21A1B3;font-weight:600;color:#fff;border-radius:3px;font-size:12px !important;padding:2px;float:left;margin:3px 4px 0 0}.userInput i,.spaceInput i{padding:0 6px;font-size:14px;cursor:pointer;line-height:8px} \ No newline at end of file +.colorDefault{color:#f3f3f3}.backgroundDefault{background:#f3f3f3}.borderDefault{border-color:#f3f3f3}.colorPrimary{color:#435f6f !important}.backgroundPrimary{background:#435f6f !important}.borderPrimary{border-color:#435f6f !important}.colorInfo{color:#21A1B3 !important}.backgroundInfo{background:#21A1B3 !important}.borderInfo{border-color:#21A1B3 !important}.colorLink{color:#21A1B3 !important}.colorSuccess{color:#97d271 !important}.backgroundSuccess{background:#97d271 !important}.borderSuccess{border-color:#97d271 !important}.colorWarning{color:#FFC107 !important}.backgroundWarning{background:#FFC107 !important}.borderWarning{border-color:#FFC107 !important}.colorDanger{color:#FC4A64 !important}.backgroundDanger{background:#FC4A64 !important}.borderDanger{border-color:#FC4A64 !important}.colorFont1{color:#bac2c7 !important}.colorFont2{color:#7a7a7a !important}.colorFont3{color:#000 !important}.colorFont4{color:#555555 !important}.colorFont5{color:#aeaeae !important}.heading{font-size:16px;font-weight:300;color:#000;background-color:white;border:none;padding:10px}.text-center{text-align:center !important}.text-break{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.img-rounded{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}body{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;padding-top:130px;background-color:#ededed;color:#555;font-family:'Open Sans',sans-serif}body a,body a:hover,body a:focus,body a:active,body a.active{color:#000;text-decoration:none}a:hover{text-decoration:none}hr{margin-top:10px;margin-bottom:10px}.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{position:inherit}.layout-nav-container{padding:0 0 0 15px}.layout-sidebar-container{padding:0 15px 0 0}@media (max-width:768px){.layout-nav-container{padding:0 15px}.layout-nav-container .left-navigation{margin-bottom:0}}h4{font-weight:300;font-size:150%}input[type=text],input[type=password],input[type=select]{-webkit-appearance:none;-moz-appearance:none;appearance:none}.powered,.powered a{color:#b8c7d3 !important}.langSwitcher{display:inline-block}[data-ui-show-more]{overflow:hidden}@media (min-width:768px) and (max-width:991px){.layout-nav-container{padding:0 15px}body{padding-top:120px}}@media print{#topbar-first,#topbar-second{display:none}}span.likeLinkContainer .like.disabled,span.likeLinkContainer .unlike.disabled{pointer-events:none;cursor:default;text-decoration:none;color:lightgrey}.panel-body a[data-toggle],.modal-body a[data-toggle]{color:#21A1B3}.showMore{font-size:13px}.table-responsive{word-wrap:normal;overflow-wrap:normal;word-break:normal;-moz-hyphens:none;hyphens:none}.topbar{position:fixed;display:block;height:50px;width:100%;padding-left:15px;padding-right:15px}.topbar ul.nav{float:left}.topbar ul.nav>li{float:left}.topbar ul.nav>li>a{padding-top:15px;padding-bottom:15px;line-height:20px}.topbar .dropdown-footer{margin:10px}.topbar .dropdown-header{font-size:16px;padding:3px 10px;margin-bottom:10px;font-weight:300;color:#555555}.topbar .dropdown-header .dropdown-header-link{position:absolute;top:2px;right:10px}.topbar .dropdown-header .dropdown-header-link a{color:#21A1B3 !important;font-size:12px;font-weight:normal}.topbar .dropdown-header:hover{color:#555555}#topbar-first{background-color:#435f6f;top:0;z-index:1030;color:white}#topbar-first a.navbar-brand{height:50px;padding:5px}#topbar-first a.navbar-brand img#img-logo{max-height:40px}#topbar-first a.navbar-brand-text{padding-top:15px}#topbar-first .nav>li>a:hover,#topbar-first .nav>.open>a{background-color:#567a8f}#topbar-first .nav>.account{height:50px;margin-left:20px}#topbar-first .nav>.account img{margin-left:10px}#topbar-first .nav>.account .dropdown-toggle{padding:10px 5px 8px;line-height:1.1em;text-align:left}#topbar-first .nav>.account .dropdown-toggle span{font-size:12px}#topbar-first .topbar-brand{position:relative;z-index:2}#topbar-first .topbar-actions{position:relative;z-index:3}#topbar-first .notifications{position:absolute;left:0;right:0;text-align:center;z-index:1}#topbar-first .notifications .btn-group{position:relative;text-align:left}#topbar-first .notifications .btn-group>a{padding:5px 10px;margin:10px 2px;display:inline-block;border-radius:2px;text-decoration:none;text-align:left}#topbar-first .notifications .btn-group>.label{position:absolute;top:4px;right:-2px}#topbar-first .notifications .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;border-width:10px;content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff;z-index:1035}#topbar-first .notifications .arrow{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;z-index:1001;border-width:11px;left:50%;margin-left:-18px;border-top-width:0;border-bottom-color:rgba(0,0,0,0.15);top:-19px;z-index:1035}#topbar-first .notifications .dropdown-menu{width:350px;margin-left:-148px}#topbar-first .notifications .dropdown-menu ul.media-list{max-height:400px;overflow:auto}#topbar-first .notifications .dropdown-menu li{position:relative}#topbar-first .notifications .dropdown-menu li i.approval{position:absolute;left:2px;top:36px;font-size:14px}#topbar-first .notifications .dropdown-menu li i.accepted{color:#5cb85c}#topbar-first .notifications .dropdown-menu li i.declined{color:#d9534f}#topbar-first .notifications .dropdown-menu li .media{position:relative}#topbar-first .notifications .dropdown-menu li .media .img-space{position:absolute;top:14px;left:14px}#topbar-first .dropdown-footer{margin:10px 10px 5px}#topbar-first a{color:white}#topbar-first .caret{border-top-color:#fff}#topbar-first .btn-group>a{background-color:#4d6d7f}#topbar-first .btn-enter{background-color:#4d6d7f;margin:6px 0}#topbar-first .btn-enter:hover{background-color:#527588}#topbar-first .media-list a{color:#000;padding:0}#topbar-first .media-list li{color:#000}#topbar-first .media-list li i.accepted{color:#21A1B3 !important}#topbar-first .media-list li i.declined{color:#FC4A64 !important}#topbar-first .media-list li.placeholder{border-bottom:none}#topbar-first .media-list .media .media-body .label{padding:.1em .5em}#topbar-first .account .user-title{text-align:right}#topbar-first .account .user-title span{color:#d7d7d7}#topbar-first .dropdown.account>a,#topbar-first .dropdown.account.open>a,#topbar-first .dropdown.account>a:hover,#topbar-first .dropdown.account.open>a:hover{background-color:#435f6f}#topbar-second{top:50px;background-color:#fff;z-index:1029;background-image:none;-webkit-box-shadow:0 1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,0.1);box-shadow:0 1px 10px rgba(0,0,0,0.1);border-bottom:1px solid #d4d4d4}#topbar-second .dropdown-menu{padding-top:0;padding-bottom:0}#topbar-second .dropdown-menu .divider{margin:0}#topbar-second #space-menu-dropdown,#topbar-second #search-menu-dropdown{width:400px}#topbar-second #space-menu-dropdown .media-list,#topbar-second #search-menu-dropdown .media-list{max-height:400px;overflow:auto}@media screen and (max-width:768px){#topbar-second #space-menu-dropdown .media-list,#topbar-second #search-menu-dropdown .media-list{max-height:200px}}#topbar-second #space-menu-dropdown form,#topbar-second #search-menu-dropdown form{margin:10px}#topbar-second #space-menu-dropdown .search-reset,#topbar-second #search-menu-dropdown .search-reset{position:absolute;color:#BFBFBF;margin:7px;top:0px;right:40px;z-index:10;display:none;cursor:pointer}#topbar-second .nav>li>a{padding:7px 13px 0;text-decoration:none;text-shadow:none;font-weight:600;font-size:10px;min-height:50px;text-transform:uppercase;text-align:center}#topbar-second .nav>li>a:hover,#topbar-second .nav>li>a:active,#topbar-second .nav>li>a:focus{border-bottom:3px solid #21A1B3;background-color:#f7f7f7;color:#000;text-decoration:none}#topbar-second .nav>li>a i{font-size:14px}#topbar-second .nav>li>a .caret{border-top-color:#7a7a7a}#topbar-second .nav>li.active>a{min-height:47px}#topbar-second .nav>li>ul>li>a{border-left:3px solid #fff;background-color:#fff;color:#000}#topbar-second .nav>li>ul>li>a:hover,#topbar-second .nav>li>ul>li>a.active{border-left:3px solid #21A1B3;background-color:#f7f7f7;color:#000}#topbar-second .nav>li>a#space-menu{padding-right:13px;border-right:1px solid #ededed}#topbar-second .nav>li>a#search-menu{padding-top:15px}#topbar-second .nav>li>a:hover,#topbar-second .nav>li.active{border-bottom:3px solid #21A1B3;background-color:#f7f7f7;color:#000}#topbar-second .nav>li.active>a:hover,#topbar-second .nav>li.active>a:focus{border-bottom:none}#topbar-second #space-menu-dropdown li>ul>li>a>.media .media-body p{color:#555555;font-size:11px;margin:0;font-weight:400}@media (max-width:767px){.topbar{padding-left:0;padding-right:0}}.login-container{background-color:#435f6f;background-image:linear-gradient(to right, #435f6f 0%, #567a8f 50%, #567a8f 100%),linear-gradient(to right, #4d6d7f 0%, #7fa0b2 51%, #7094a8 100%);background-size:100% 100%;position:relative;padding-top:40px}.login-container #img-logo{max-width:100%}.login-container .text{color:#fff;font-size:12px;margin-bottom:15px}.login-container .text a{color:#fff;text-decoration:underline}.login-container .panel a{color:#21A1B3}.login-container h1,.login-container h2{color:#fff !important}.login-container .panel{box-shadow:0 0 15px #627d92;-moz-box-shadow:0 0 15px #627d92;-webkit-box-shadow:0 0 15px #627d92}.login-container .panel .panel-heading,.login-container .panel .panel-body{padding:15px}.login-container .panel h1,.login-container .panel h2{color:#555 !important}.login-container select{color:#000}#account-login-form .form-group{margin-bottom:10px}.dropdown-menu li a i{margin-right:5px;font-size:14px;display:inline-block;width:14px}.dropdown-menu li a:hover,.dropdown-menu li a:visited,.dropdown-menu li a:hover,.dropdown-menu li a:focus{background:none;cursor:pointer}.dropdown-menu li:hover,.dropdown-menu li.selected{color:#000}.dropdown-menu li:first-child{margin-top:3px}.dropdown-menu li:last-child{margin-bottom:3px}.modal .dropdown-menu,.panel .dropdown-menu,.nav-tabs .dropdown-menu{border:1px solid #d7d7d7}.modal .dropdown-menu li.divider,.panel .dropdown-menu li.divider,.nav-tabs .dropdown-menu li.divider{background-color:#f7f7f7;border-bottom:none;margin:9px 1px !important}.modal .dropdown-menu li,.panel .dropdown-menu li,.nav-tabs .dropdown-menu li{border-left:3px solid white}.modal .dropdown-menu li a,.panel .dropdown-menu li a,.nav-tabs .dropdown-menu li a{color:#000;font-size:13px;font-weight:600;padding:4px 15px}.modal .dropdown-menu li a i,.panel .dropdown-menu li a i,.nav-tabs .dropdown-menu li a i{margin-right:5px}.modal .dropdown-menu li a:hover,.panel .dropdown-menu li a:hover,.nav-tabs .dropdown-menu li a:hover{background:none}.modal .dropdown-menu li:hover,.panel .dropdown-menu li:hover,.nav-tabs .dropdown-menu li:hover,.modal .dropdown-menu li.selected,.panel .dropdown-menu li.selected,.nav-tabs .dropdown-menu li.selected{border-left:3px solid #21A1B3;background-color:#f7f7f7 !important}ul.contextMenu{border:1px solid #d7d7d7}ul.contextMenu li.divider{background-color:#f7f7f7;border-bottom:none;margin:9px 1px !important}ul.contextMenu li{border-left:3px solid white}ul.contextMenu li a{color:#000;font-size:14px;font-weight:400;padding:4px 15px}ul.contextMenu li a i{margin-right:5px}ul.contextMenu li a:hover{background:none}ul.contextMenu li:hover,ul.contextMenu li.selected{border-left:3px solid #21A1B3;background-color:#f7f7f7 !important}.media-list li{padding:10px;border-bottom:1px solid #eee;position:relative;border-left:3px solid white;font-size:12px}.media-list li a{color:#555}.media-list .badge-space-type{background-color:#f7f7f7;border:1px solid #d7d7d7;color:#b2b2b2;padding:3px 3px 2px 3px}.media-list li.new{border-left:3px solid #21A1B3;background-color:#c5eff4}.media-list li:hover,.media-list li.selected{background-color:#f7f7f7;border-left:3px solid #21A1B3}.media-list li.placeholder{font-size:14px !important;border-bottom:none}.media-list li.placeholder:hover{background:none !important;border-left:3px solid white}.media-left,.media>.pull-left{padding-right:0;margin-right:10px}.media:after{content:'';clear:both;display:block}.media .time{font-size:11px;color:#555555}.media .img-space{position:absolute;top:35px;left:35px}.media .media-body{overflow:hidden !important;font-size:13px;white-space:normal;word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.media .media-body h4.media-heading{font-size:14px;font-weight:500;color:#000}.media .media-body h4.media-heading a{color:#000}.media .media-body h4.media-heading small,.media .media-body h4.media-heading small a{font-size:11px;color:#555555}.media .media-body h4.media-heading .content{margin-right:35px}.media .media-body .content a{word-break:break-all}.media .media-body strong{color:#000}.media .media-body h5{color:#aeaeae;font-weight:300;margin-top:5px;margin-bottom:5px;min-height:15px}.media .media-body .module-controls{font-size:85%}.media .media-body .module-controls a{color:#21A1B3}.media .content a{color:#21A1B3}.media .content .files a{color:#000}.content span{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}#blueimp-gallery .slide img{max-height:80%}audio,canvas,progress,video{display:inline-block;vertical-align:baseline;max-width:100%;height:auto}img{image-orientation:from-image}.panel{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;border:none;background-color:#fff;box-shadow:0 0 3px #dadada;-webkit-box-shadow:0 0 3px #dadada;-moz-box-shadow:0 0 3px #dadada;border-radius:4px;position:relative;margin-bottom:15px}.panel h1{font-size:16px;font-weight:300;margin-top:0;color:#000}.panel .panel-heading{font-size:16px;font-weight:300;color:#000;background-color:white;border:none;padding:10px;border-radius:4px}.panel .panel-heading .heading-link{color:#6fdbe8 !important;font-size:.8em}.panel .panel-body{padding:10px;font-size:13px}.panel .panel-body p{color:#555}.panel .panel-body p a{color:#21A1B3}.panel .panel-body .usersearch-statuses,.panel .panel-body .spacesearch-visibilities{padding-top:5px;padding-bottom:5px}@media (min-width:992px){.panel .panel-body .usersearch-statuses,.panel .panel-body .spacesearch-visibilities{padding-top:0;padding-bottom:0;padding-left:0}}.panel .statistics .entry{margin-left:20px;font-size:12px;color:#000}.panel .statistics .entry .count{color:#21A1B3;font-weight:600;font-size:20px;line-height:.8em}.panel h3.media-heading small{font-size:75%}.panel h3.media-heading small a{color:#21A1B3}.panel-danger{border:2px solid #FC4A64}.panel-danger .panel-heading{color:#FC4A64}.panel-success{border:2px solid #97d271}.panel-success .panel-heading{color:#97d271}.panel-warning{border:2px solid #FFC107}.panel-warning .panel-heading{color:#FFC107}.panel.profile{position:relative}.panel.profile .controls{position:absolute;top:10px;right:10px}.panel.members .panel-body a img,.panel.groups .panel-body a img,.panel.follower .panel-body a img,.panel.spaces .panel-body a img{margin-bottom:5px}.panel-profile .panel-profile-header{position:relative;border:3px solid #fff;border-top-right-radius:3px;border-top-left-radius:3px}.panel-profile .panel-profile-header .img-profile-header-background{border-radius:3px;min-height:110px}.panel-profile .panel-profile-header .img-profile-data{position:absolute;height:100px;width:100%;bottom:0;left:0;padding-left:180px;padding-top:30px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;color:#fff;pointer-events:none;background:-moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(1%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0.38)));background:-webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);background:-o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);background:-ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);background:linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#94000000', GradientType=0)}.panel-profile .panel-profile-header .img-profile-data h1{font-size:30px;font-weight:100;margin-bottom:7px;color:#fff;max-width:600px;white-space:nowrap;text-overflow:ellipsis}.panel-profile .panel-profile-header .img-profile-data h2{font-size:16px;font-weight:400;margin-top:0}.panel-profile .panel-profile-header .img-profile-data h1.space{font-size:30px;font-weight:700}.panel-profile .panel-profile-header .img-profile-data h2.space{font-size:13px;font-weight:300;max-width:600px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.panel-profile .panel-profile-header .profile-user-photo-container{position:absolute;bottom:-50px;left:15px}.panel-profile .panel-profile-header .profile-user-photo-container .profile-user-photo{border:3px solid #fff;border-radius:5px}.panel-profile .panel-profile-controls{padding-left:160px}.panel.pulse,.panel.fadeIn{-webkit-animation-duration:200ms;-moz-animation-duration:200ms;animation-duration:200ms}@media (max-width:767px){.panel-profile-controls{padding-left:0 !important;padding-top:50px}.panel-profile .panel-profile-header .img-profile-data h1{font-size:20px !important;margin-bottom:2px}}.panel-body>.tab-menu{margin-left:-10px;margin-right:-10px}.installer .logo{text-align:center}.installer h2{font-weight:100}.installer .panel{margin-top:50px}.installer .panel h3{margin-top:0}.installer .powered,.installer .powered a{color:#bac2c7 !important;margin-top:10px;font-size:12px}.installer .fa{width:18px}.installer .check-ok{color:#97d271}.installer .check-warning{color:#FFC107}.installer .check-error{color:#FC4A64}.installer .prerequisites-list ul{list-style:none;padding-left:15px}.installer .prerequisites-list ul li{padding-bottom:5px}.pagination-container{text-align:center}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{background-color:#435f6f;border-color:#435f6f}.pagination>li>a,.pagination>li>span,.pagination>li>a:hover,.pagination>li>a:active,.pagination>li>a:focus{color:#000;cursor:pointer}.well-small{padding:10px;border-radius:3px}.well{border:none;box-shadow:none;background-color:#f5f5f5;margin-bottom:1px}.well hr{margin:10px 0;border-top:1px solid #d9d9d9}.well table>thead{font-size:11px}.tab-sub-menu{padding-left:10px}.tab-sub-menu li>a:hover,.tab-sub-menu li>a:focus{background-color:#f7f7f7;border-bottom-color:#ddd}.tab-sub-menu li.active>a{background-color:#fff;border-bottom-color:transparent}.nav-tabs>li>a,.nav-tabs>li>a[data-toggle]{color:#555}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus,.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{color:#000}.tab-menu{padding-top:10px;background-color:#fff}.tab-menu .nav-tabs{padding-left:10px}.tab-menu .nav-tabs li>a{padding-top:12px;border-color:#ddd;border-bottom:1px solid #ddd;background-color:#f7f7f7;max-height:41px;outline:none}.tab-menu .nav-tabs li>a:hover,.tab-menu .nav-tabs li>a:focus{padding-top:10px;border-top:3px solid #ddd}.tab-menu .nav-tabs li>a:hover{background-color:#f7f7f7}.tab-menu .nav-tabs li.active>a,.tab-menu .nav-tabs li.active>a:hover{padding-top:10px;border-top:3px solid #21A1B3}.tab-menu .nav-tabs li.active>a{background-color:#fff;border-bottom-color:transparent}ul.tab-menu{padding-top:10px;background-color:#fff;padding-left:10px}ul.tab-menu-settings li>a{padding-top:12px;border-color:#ddd;border-bottom:1px solid #ddd;background-color:#f7f7f7;max-height:41px;outline:none}ul.tab-menu-settings li>a:hover,ul.tab-menu-settings li>a:focus{padding-top:10px;border-top:3px solid #ddd !important}ul.tab-menu-settings li>a:hover{background-color:#f7f7f7}ul.tab-menu-settings li.active>a,ul.tab-menu-settings li.active>a:hover,ul.tab-menu-settings li.active>a:focus{padding-top:10px;border-top:3px solid #21A1B3 !important}ul.tab-menu-settings li.active>a{background-color:#fff;border-bottom-color:transparent !important}.nav-pills .dropdown-menu,.nav-tabs .dropdown-menu,.account .dropdown-menu{background-color:#435f6f;border:none}.nav-pills .dropdown-menu li.divider,.nav-tabs .dropdown-menu li.divider,.account .dropdown-menu li.divider{background-color:#39515f;border-bottom:none;margin:9px 1px !important}.nav-pills .dropdown-menu li,.nav-tabs .dropdown-menu li,.account .dropdown-menu li{border-left:3px solid #435f6f}.nav-pills .dropdown-menu li a,.nav-tabs .dropdown-menu li a,.account .dropdown-menu li a{color:white;font-weight:400;font-size:13px;padding:4px 15px}.nav-pills .dropdown-menu li a i,.nav-tabs .dropdown-menu li a i,.account .dropdown-menu li a i{margin-right:5px;font-size:14px;display:inline-block;width:14px}.nav-pills .dropdown-menu li a:hover,.nav-tabs .dropdown-menu li a:hover,.account .dropdown-menu li a:hover,.nav-pills .dropdown-menu li a:visited,.nav-tabs .dropdown-menu li a:visited,.account .dropdown-menu li a:visited,.nav-pills .dropdown-menu li a:hover,.nav-tabs .dropdown-menu li a:hover,.account .dropdown-menu li a:hover,.nav-pills .dropdown-menu li a:focus,.nav-tabs .dropdown-menu li a:focus,.account .dropdown-menu li a:focus{background:none}.nav-pills .dropdown-menu li:hover,.nav-tabs .dropdown-menu li:hover,.account .dropdown-menu li:hover,.nav-pills .dropdown-menu li.selected,.nav-tabs .dropdown-menu li.selected,.account .dropdown-menu li.selected{border-left:3px solid #21A1B3;color:#fff !important;background-color:#39515f !important}.nav-pills.preferences .dropdown .dropdown-toggle i{color:#21A1B3;font-size:15px;font-weight:600}.nav-pills.preferences .dropdown.open .dropdown-toggle,.nav-pills.preferences .dropdown.open .dropdown-toggle:hover{background-color:#435f6f}.nav-pills.preferences .dropdown.open .dropdown-toggle i,.nav-pills.preferences .dropdown.open .dropdown-toggle:hover i{color:#fff}.nav-pills.preferences li.divider:last-of-type{display:none}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{background-color:#435f6f}.nav-tabs{margin-bottom:10px}.list-group a [class^="fa-"],.list-group a [class*=" fa-"]{display:inline-block;width:18px}.nav-pills.preferences{position:absolute;right:10px;top:10px}.nav-pills.preferences .dropdown .dropdown-toggle{padding:2px 5px}.nav-pills.preferences .dropdown.open .dropdown-toggle,.nav-pills.preferences .dropdown.open .dropdown-toggle:hover{color:white}.nav-tabs li{font-weight:600;font-size:12px}.tab-content .tab-pane a{color:#21A1B3}.tab-content .tab-pane .form-group{margin-bottom:5px}.nav-tabs.tabs-center li{float:none;display:inline-block}.nav-tabs.tabs-small li>a{padding:5px 7px}.nav .caret,.nav .caret:hover,.nav .caret:active{border-top-color:#000;border-bottom-color:#000;height:6.928px}.nav li.dropdown>a:hover .caret,.nav li.dropdown>a:active .caret{border-top-color:#000;border-bottom-color:#000}.nav .open>a .caret,.nav .open>a:hover .caret,.nav .open>a:focus .caret{border-top-color:#000;border-bottom-color:#000}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{border-color:#ededed;color:#000}.nav .open>a .caret,.nav .open>a:hover .caret,.nav .open>a:focus .caret{color:#000}.footer-nav{filter:opacity(.6);font-size:12px;text-align:center}@media (max-width:991px){.controls-header{text-align:left !important}}.btn{float:none;border:none;-webkit-box-shadow:none;box-shadow:none;-moz-box-shadow:none;background-image:none;text-shadow:none;border-radius:3px;outline:none !important;margin-bottom:0;font-size:14px;font-weight:600;padding:8px 16px}.input.btn{outline:none}.btn-lg{padding:16px 28px}.btn-sm{padding:4px 8px;font-size:12px}.btn-sm i{font-size:14px}.btn-xs{padding:1px 5px;font-size:12px}.btn-default{background:#f3f3f3;color:#7a7a7a !important}.btn-default:hover,.btn-default:focus{background:#eee;text-decoration:none;color:#7a7a7a}.btn-default:active,.btn-default.active{outline:0;background:#e6e6e6}.btn-default[disabled],.btn-default.disabled{background:#f8f8f8}.btn-default[disabled]:hover,.btn-default.disabled:hover,.btn-default[disabled]:focus,.btn-default.disabled:focus{background:#f8f8f8}.btn-default[disabled]:active,.btn-default.disabled:active,.btn-default[disabled].active,.btn-default.disabled.active{background:#f8f8f8}.btn-primary{background:#435f6f;color:#fff !important}.btn-primary:hover,.btn-primary:focus{background:#39515f;text-decoration:none}.btn-primary:active,.btn-primary.active{outline:0;border:1px solid #435f6f;padding:7px 15px;color:#435f6f !important;background:#fff !important;box-shadow:none}.btn-primary:active.btn-sm,.btn-primary.active.btn-sm{padding:3px 7px}.btn-primary.active:hover,.btn-primary.active:focus{border:1px solid #39515f;color:#39515f !important}.btn-primary[disabled],.btn-primary.disabled{background:#4d6d7f}.btn-primary[disabled]:hover,.btn-primary.disabled:hover,.btn-primary[disabled]:focus,.btn-primary.disabled:focus{background:#4d6d7f}.btn-primary[disabled]:active,.btn-primary.disabled:active,.btn-primary[disabled].active,.btn-primary.disabled.active{background:#4d6d7f !important}.btn-info{background:#21A1B3;color:#fff !important}.btn-info:hover,.btn-info:focus{background:#1d8e9d !important;text-decoration:none}.btn-info:active,.btn-info.active{outline:0;border:1px solid #21A1B3;padding:7px 15px;color:#21A1B3 !important;background:#fff !important;box-shadow:none}.btn-info:active.btn-sm,.btn-info.active.btn-sm{padding:3px 7px}.btn-info.active:hover,.btn-info.active:focus{border:1px solid #1d8e9d;color:#1d8e9d !important}.btn-info[disabled],.btn-info.disabled{background:#25b4c9}.btn-info[disabled]:hover,.btn-info.disabled:hover,.btn-info[disabled]:focus,.btn-info.disabled:focus{background:#25b4c9}.btn-info[disabled]:active,.btn-info.disabled:active,.btn-info[disabled].active,.btn-info.disabled.active{background:#25b4c9 !important}.btn-danger{background:#FC4A64;color:#fff !important}.btn-danger:hover,.btn-danger:focus{background:#fc314f;text-decoration:none}.btn-danger:active,.btn-danger.active{outline:0;background:#fc314f !important}.btn-danger[disabled],.btn-danger.disabled{background:#fc6379}.btn-danger[disabled]:hover,.btn-danger.disabled:hover,.btn-danger[disabled]:focus,.btn-danger.disabled:focus{background:#fc6379}.btn-danger[disabled]:active,.btn-danger.disabled:active,.btn-danger[disabled].active,.btn-danger.disabled.active{background:#fc6379 !important}.btn-success{background:#97d271;color:#fff !important}.btn-success:hover,.btn-success:focus{background:#89cc5e;text-decoration:none}.btn-success:active,.btn-success.active{outline:0;background:#89cc5e !important}.btn-success[disabled],.btn-success.disabled{background:#a5d884}.btn-success[disabled]:hover,.btn-success.disabled:hover,.btn-success[disabled]:focus,.btn-success.disabled:focus{background:#a5d884}.btn-success[disabled]:active,.btn-success.disabled:active,.btn-success[disabled].active,.btn-success.disabled.active{background:#a5d884 !important}.btn-warning{background:#FFC107;color:#fff !important}.btn-warning:hover,.btn-warning:focus{background:#fcbd00;text-decoration:none}.btn-warning:active,.btn-warning.active{outline:0;background:#fcbd00 !important}.btn-warning[disabled],.btn-warning.disabled{background:#ffc721}.btn-warning[disabled]:hover,.btn-warning.disabled:hover,.btn-warning[disabled]:focus,.btn-warning.disabled:focus{background:#ffc721}.btn-warning[disabled]:active,.btn-warning.disabled:active,.btn-warning[disabled].active,.btn-warning.disabled.active{background:#ffc721 !important}.btn-link{color:#21A1B3 !important}.btn-link:hover,.btn-link:focus{color:#1f99aa;text-decoration:none}.btn-link:active,.btn-link.active{outline:0;color:#1f99aa !important}.btn-link[disabled],.btn-link.disabled{color:#25b4c9}.btn-link[disabled]:hover,.btn-link.disabled:hover,.btn-link[disabled]:focus,.btn-link.disabled:focus{color:#25b4c9}.btn-link[disabled]:active,.btn-link.disabled:active,.btn-link[disabled].active,.btn-link.disabled.active{color:#25b4c9 !important}.radio,.checkbox{margin-top:5px !important;margin-bottom:0}div.required>label:after{content:" *";color:#21A1B3}div.required.has-error>label:after{content:" *";color:#FC4A64}.radio label,.checkbox label{padding-left:10px}.form-control{border:2px solid #ededed;box-shadow:none;min-height:35px}.form-control:focus{border:2px solid #21A1B3;outline:0;box-shadow:none}.form-control.form-search{border-radius:30px;background-image:url("../img/icon_search16x16.png");background-repeat:no-repeat;background-position:10px 8px;padding-left:34px}.form-group-search{position:relative}.form-group-search .form-button-search{position:absolute;top:4px;right:4px;border-radius:30px}textarea{resize:none;height:1.5em}select.form-control:not([multiple]){-webkit-appearance:none;-moz-appearance:none;appearance:none;background-image:url("../img/select_arrow.png") !important;background-repeat:no-repeat;background-position:right 16px;overflow:hidden}label{font-weight:normal}div.PendingRegistrations thead>tr>th>label,div.PendingRegistrations tbody>tr>td>label{margin-bottom:0;height:17px}label.control-label{font-weight:bold}::placeholder{color:#bac2c7 !important}::-webkit-input-placeholder{color:#bac2c7 !important}::-moz-placeholder{color:#bac2c7 !important}:-ms-input-placeholder{color:#bac2c7 !important}input::-ms-clear,input::-ms-reveal{display:none}input:-moz-placeholder{color:#555555 !important}.placeholder{padding:10px}input.placeholder,textarea.placeholder{padding:0 0 0 10px;color:#999}.help-block-error{font-size:12px}.hint-block,.help-block:not(.help-block-error){color:#aeaeae !important;font-size:12px}.hint-block:hover,.help-block:not(.help-block-error):hover{color:#7a7a7a !important;font-size:12px}.input-group-addon{border:none}a.input-field-addon{font-size:12px;float:right;margin-top:-10px}a.input-field-addon-sm{font-size:11px;float:right;margin-top:-10px}.timeZoneInputContainer{padding-top:10px}.timeZoneInputContainer~.help-block{margin:0px}.regular-checkbox:focus+.regular-checkbox-box{border:2px solid #000 !important}.regular-checkbox:checked+.regular-checkbox-box{border:2px solid #21A1B3;background:#21A1B3;color:white}.regular-checkbox-box.disabled{background:#d7d7d7 !important;border:2px solid #d7d7d7 !important;cursor:not-allowed}.regular-radio:checked+.regular-radio-button:after{background:#21A1B3}.regular-radio:checked+.regular-radio-button{background-color:transparent;color:#99a1a7;border:2px solid #d7d7d7;margin-right:5px}.regular-radio.disabled{background:#d7d7d7 !important;border:2px solid #d7d7d7 !important;cursor:not-allowed}div.form-group div.checkbox .help-block{margin-left:33px}div.form-group div.checkbox .help-block.help-block-error:empty{display:none}.errorMessage{color:#FC4A64;padding:10px 0}.error{border-color:#FC4A64 !important}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#FC4A64 !important}.has-error .form-control,.has-error .form-control:focus{border-color:#FC4A64;-webkit-box-shadow:none;box-shadow:none}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#97d271}.has-success .form-control,.has-success .form-control:focus{border-color:#97d271;-webkit-box-shadow:none;box-shadow:none}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#FFC107}.has-warning .form-control,.has-warning .form-control:focus{border-color:#FFC107;-webkit-box-shadow:none;box-shadow:none}.bootstrap-timepicker-widget .form-control{padding:0}.form-collapsible-fields{margin-bottom:12px;border-left:3px solid #435f6f;background-color:#F4F4F4}.form-collapsible-fields-label{margin-bottom:0px;padding:12px}.form-collapsible-fields fieldset{padding-top:15px;padding-left:12px;padding-right:12px}.form-collapsible-fields.opened fieldset{display:block}.form-collapsible-fields.opened .iconClose{display:inline}.form-collapsible-fields.opened .iconOpen{display:none}.form-collapsible-fields.closed fieldset,.form-collapsible-fields.closed .iconClose{display:none}.form-collapsible-fields.closed .iconOpen{display:inline}#notification_overview_filter label{display:block}#notification_overview_list .img-space{position:absolute;top:25px;left:25px}@media (max-width:767px){.notifications{position:inherit !important;float:left !important}.notifications .dropdown-menu{width:300px !important;margin-left:0 !important}.notifications .dropdown-menu .arrow{margin-left:-142px !important}}.badge-space{margin-top:6px}.badge-space-chooser{padding:3px 5px;margin-left:1px}.badge{padding:3px 5px;border-radius:2px;font-weight:normal;font-family:Arial,sans-serif;font-size:10px !important;text-transform:uppercase;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:none;background-color:#d7d7d7;line-height:1}.popover{border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);-moz-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175)}.popover .popover-title{background:none;border-bottom:none;color:#000;font-weight:300;font-size:16px;padding:15px}.popover .popover-content{font-size:13px;padding:5px 15px;color:#000}.popover .popover-content a{color:#21A1B3}.popover .popover-content img{max-width:100%}.popover .popover-navigation{padding:15px}.panel-profile .panel-profile-header .image-upload-container{width:100%;height:100%;overflow:hidden}.panel-profile .panel-profile-header .image-upload-container #bannerfileupload{position:absolute;top:0;left:0;opacity:0;width:100%;height:100%}.panel-profile .panel-profile-header .img-profile-header-background{width:100%;max-height:192px}@media print{.panel-profile{display:none}}.list-group-item{padding:6px 15px;border:none;border-width:0 !important;border-left:3px solid #fff !important;font-size:12px;font-weight:600}.list-group-item i{font-size:14px}a.list-group-item:hover,a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#000;background-color:#f7f7f7;border-left:3px solid #21A1B3 !important}@media (max-width:991px){.list-group{margin-left:4px}.list-group-item{display:inline-block !important;border-radius:3px !important;margin:4px 0;margin-bottom:4px !important}.list-group-item{border:none !important}a.list-group-item:hover,a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{border:none !important;background:#435f6f !important;color:#fff !important}}.modal-backdrop{background-color:rgba(0,0,0,0.5)}.modal-dialog.fadeIn,.modal-dialog.pulse{-webkit-animation-duration:200ms;-moz-animation-duration:200ms;animation-duration:200ms}body.modal-open{height:100vh;overflow-y:hidden}@media screen and (max-width:768px){.modal-dialog{width:calc(100vw - 4px) !important}}.modal-top{z-index:999999 !important}.modal{overflow-y:visible}.modal.in{padding-right:0 !important}.modal-dialog-extra-small{width:400px}.modal-dialog-small{width:500px}.modal-dialog-normal{width:600px}.modal-dialog-medium{width:768px}.modal-dialog-large{width:900px}@media screen and (max-width:991px){.modal-dialog-large{width:auto !important;padding-top:30px;padding-bottom:30px}}.modal{border:none}.modal h1,.modal h2,.modal h3,.modal h4,.modal h5{margin-top:20px;color:#000;font-weight:300}.modal h4.media-heading{margin-top:0}.modal-title{font-size:20px;font-weight:200;color:#000}.modal-dialog,.modal-content{min-width:150px}.modal-content{-webkit-border-radius:3px;-moz-border-radius:3px;box-shadow:0 2px 26px rgba(0,0,0,0.3),0 0 0 1px rgba(0,0,0,0.1);-webkit-box-shadow:0 2px 26px rgba(0,0,0,0.3),0 0 0 1px rgba(0,0,0,0.1);-moz-box-shadow:0 2px 26px rgba(0,0,0,0.3),0 0 0 1px rgba(0,0,0,0.1);border:none}.modal-content .modal-header{padding:20px 20px 0;border-bottom:none;text-align:center}.modal-content .modal-header .close{margin-top:2px;margin-right:5px}.modal-content .modal-body{padding:20px;font-size:13px}.modal-content .modal-footer{margin-top:0;text-align:left;padding:10px 20px 30px;border-top:none;text-align:center}.modal-content .modal-footer hr{margin-top:0}.module-installed{opacity:.5}.module-installed .label-success{background-color:#d7d7d7}.tooltip-inner{background-color:#435f6f;max-width:400px;text-align:left;padding:2px 8px 4px;font-weight:bold;white-space:pre-wrap}.tooltip.top .tooltip-arrow{border-top-color:#435f6f}.tooltip.top-left .tooltip-arrow{border-top-color:#435f6f}.tooltip.top-right .tooltip-arrow{border-top-color:#435f6f}.tooltip.right .tooltip-arrow{border-right-color:#435f6f}.tooltip.left .tooltip-arrow{border-left-color:#435f6f}.tooltip.bottom .tooltip-arrow{border-bottom-color:#435f6f}.tooltip.bottom-left .tooltip-arrow{border-bottom-color:#435f6f}.tooltip.bottom-right .tooltip-arrow{border-bottom-color:#435f6f}.tooltip.in{opacity:1;filter:alpha(opacity=100)}.progress{height:10px;margin-bottom:15px;box-shadow:none;background:#ededed;border-radius:10px}.progress-bar-info{background-color:#21A1B3;-webkit-box-shadow:none;box-shadow:none}#nprogress .bar{height:2px;background:#27c0d5}table{margin-bottom:0 !important}table th{font-size:11px;color:#555555;font-weight:normal}table thead tr th{border:none !important}table .time{font-size:12px}table td a:hover{color:#21A1B3}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:10px 10px 10px 0}.table>thead>tr>th select,.table>tbody>tr>th select,.table>tfoot>tr>th select,.table>thead>tr>td select,.table>tbody>tr>td select,.table>tfoot>tr>td select{font-size:12px;padding:4px 8px;height:30px;margin:0}.table-middle>thead>tr>th,.table-middle>tbody>tr>th,.table-middle>tfoot>tr>th,.table-middle>thead>tr>td,.table-middle>tbody>tr>td,.table-middle>tfoot>tr>td{vertical-align:middle !important}@media (max-width:767px){.table-responsive>.table>tbody>tr>td.notification-type{white-space:normal}}.comment-container{margin-top:10px}.comment-container .wall-entry-controls{margin-left:35px}@media (max-width:767px){.comment .post-files img{height:100px}}.comment .media{position:relative !important;margin-top:0}.comment .media .nav-pills.preferences{display:none;right:-3px}.comment .media.comment-current{background:rgba(255,193,7,0.25);padding:0 5px 5px 5px;margin:0 -5px -5px -5px;border-radius:3px}.comment .media.comment-current hr{position:relative;top:-6px}.comment .media.comment-current:first-of-type{padding-top:5px;margin-top:-5px}.comment .media.comment-current:first-of-type>.nav.preferences{margin-top:10px}.comment .media.comment-current>.nav.preferences{margin-right:10px}.comment .comment-blocked-user img[data-contentcontainer-id]{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.comment .media-body{overflow:visible}.comment .jp-progress{background-color:#dbdcdd !important}.comment .jp-play-bar{background:#cacaca}.comment .post-file-list{background-color:#ededed}.comment.guest-mode .media:last-child .wall-entry-controls{margin-bottom:0;margin-left:35px}.comment.guest-mode .media:last-child hr{display:none}.comment_create,.content_edit{position:relative}.comment_create .comment-buttons,.content_edit .comment-buttons{position:absolute;bottom:2px;right:5px;z-index:300}.comment_create .comment-buttons button,.content_edit .comment-buttons button{background-color:#21A1B3 !important;color:#fff !important}.comment_create .has-error+.comment-buttons,.content_edit .has-error+.comment-buttons{bottom:19px !important}.comment_create .btn-comment-submit,.content_edit .btn-comment-submit{margin-top:3px}.comment_create .fileinput-button,.content_edit .fileinput-button{float:left;padding:6px 10px;background:transparent !important}.comment_create .fileinput-button i,.content_edit .fileinput-button i{color:#aeaeae}.comment_create .fileinput-button i:hover,.content_edit .fileinput-button i:hover{color:#21A1B3}.comment_create .fileinput-button:hover i,.content_edit .fileinput-button:hover i{color:#21A1B3}.comment_create .fileinput-button:active,.content_edit .fileinput-button:active{box-shadow:none !important}.post-richtext-input-group{position:relative}.post-richtext-input-group .comment-buttons{bottom:7px !important}.comment-container .content_edit{margin-left:35px}.comment-container .media{overflow:visible}.comment-container [data-ui-richtext] pre,.comment-container [data-ui-richtext] pre code.hljs{background-color:#eaeaea}.comment_edit_content{margin-left:35px;margin-top:0}.comment-message{overflow:hidden;word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.comment-create-input-group,.post-richtext-input-group{position:relative}.comment-create-input-group .ProsemirrorEditor .ProseMirror,.post-richtext-input-group .ProsemirrorEditor .ProseMirror{padding-right:72px}.comment-create-input-group .form-group,.post-richtext-input-group .form-group,.comment-create-input-group .help-block,.post-richtext-input-group .help-block{margin:0}.comment-create-input-group.scrollActive .comment-buttons{right:22px}.comment .media .media-body h4.media-heading a{font-size:13px;color:#000;margin-bottom:3px;font-weight:500}div.comment>div.media:first-of-type hr.comment-separator{display:none}div.comment>div.media:first-of-type .nav-pills.preferences{display:none;top:-3px}hr.comments-start-separator{margin-top:10px}div.nested-comments-root{margin-left:28px}div.nested-comments-root .ProseMirror-menubar-wrapper{z-index:210}div.nested-comments-root hr.comment-separator{display:inherit !important}div.nested-comments-root hr.comments-start-separator{display:none}div.nested-comments-root a.show-all-link{margin-top:10px}div.nested-comments-root div.comment .media{position:relative !important;margin-top:0}div.nested-comments-root div.comment .media .nav-pills.preferences{display:none;top:8px;right:0}div.nested-comments-root div.comment-container{margin-top:0;padding-bottom:0;padding-top:0}.grid-view img{width:24px;height:24px}.grid-view .filters input,.grid-view .filters select{border:2px solid #ededed;box-shadow:none;min-height:35px;border-radius:4px;font-size:12px;padding:4px}.grid-view .filters input:focus,.grid-view .filters select:focus{border:2px solid #21A1B3;outline:0;box-shadow:none}.grid-view{padding:15px 0 0}.grid-view img{border-radius:3px}.grid-view table th{font-size:13px !important;font-weight:bold !important}.grid-view table td{vertical-align:middle !important}.grid-view table tr{font-size:13px !important}.grid-view table thead tr th:first-of-type{padding-left:5px}.grid-view table tbody tr{height:50px}.grid-view table tbody tr td:first-of-type{padding-left:5px}.grid-view .summary{font-size:12px;color:#bac2c7}.permission-grid-editor>.table>tbody>tr:first-child>td{border:none}.permission-grid-editor{padding-top:0px}.detail-view td,.detail-view th{padding:8px !important}.detail-view th{font-size:13px}.oembed_snippet[data-oembed-provider="youtube.com"],.oembed_snippet{margin-top:10px;position:relative;padding-bottom:55%;padding-top:15px;overflow:hidden}.oembed_snippet[data-oembed-provider="twitter.com"]{padding-bottom:0 !important;padding-top:0;margin-top:0}.oembed_snippet iframe{position:absolute;top:0;left:0;width:100%;height:100%}.oembed_confirmation{background:#feebb4;border-radius:4px;padding:15px;line-height:30px}.oembed_confirmation i.fa{float:left;color:#02a0b0;background:#FFF;border-radius:50%;font-size:30px;line-height:25px;margin-right:15px}.oembed_confirmation>div:not(.clearfix){float:left}.oembed_confirmation .regular-checkbox-box{top:6px}.oembed_confirmation .regular-checkbox:not(:checked)+.regular-checkbox-box{background:#FFF}.oembed_confirmation .regular-checkbox:checked+.regular-checkbox-box:after{top:-8px}.activities{max-height:400px;overflow:auto}.activities li.activity-entry{padding:0}.activities li .media{position:relative;padding:10px}.activities li .media .img-space{position:absolute;top:24px;left:24px}.activities li .media .media-body{max-width:295px}.contentForm_options{margin-top:10px;min-height:29px}.contentForm_options .btn_container{position:relative}.contentForm_options .btn_container .label-public{position:absolute;right:40px;top:11px}#content-topic-bar{margin-top:5px;text-align:right}#content-topic-bar .label{margin-left:4px}#contentFormError{color:#FC4A64;padding-left:0;list-style:none}.placeholder-empty-stream{background-image:url("../img/placeholder-postform-arrow.png");background-repeat:no-repeat;padding:37px 0 0 70px;margin-left:90px}#streamUpdateBadge{text-align:center;z-index:9999;margin-bottom:15px;margin-top:15px}#streamUpdateBadge .label{border-radius:10px;font-size:.8em !important;padding:5px 10px}#wallStream .back_button_holder{padding-bottom:15px}.wall-entry{position:relative}.wall-entry .panel .panel-body{padding:10px}.wall-entry .wall-entry-header{color:#000;position:relative;padding-bottom:10px;margin-bottom:10px;border-bottom:1px solid #eeeeee}.wall-entry .wall-entry-header .img-space{top:25px;left:25px}.wall-entry .wall-entry-header .wall-entry-container-link{color:#21A1B3}.wall-entry .wall-entry-header .stream-entry-icon-list{position:absolute;top:0;right:25px;display:inline-block;padding-top:2px}.wall-entry .wall-entry-header .stream-entry-icon-list i{padding-right:5px}.wall-entry .wall-entry-header .stream-entry-icon-list .icon-pin{color:#FC4A64}.wall-entry .wall-entry-header .stream-entry-icon-list .fa-archive{color:#FFC107}.wall-entry .wall-entry-header .wall-entry-header-image{display:table-cell;width:40px;padding-right:10px}.wall-entry .wall-entry-header .wall-entry-header-image .fa{font-size:2.39em;color:#21A1B3;margin-top:5px}.wall-entry .wall-entry-header .wall-entry-header-info{display:table-cell;padding-right:30px;width:100%}.wall-entry .wall-entry-header .wall-entry-header-info .media-heading{font-size:15px;padding-top:1px;margin-bottom:3px}.wall-entry .wall-entry-header .wall-entry-header-info i.archived{color:#FFC107}.wall-entry .wall-entry-header .preferences{position:absolute;right:0;top:0}.wall-entry .wall-entry-header .media-subheading i.fa-caret-right{margin:0 2px}.wall-entry .wall-entry-header .media-subheading .wall-entry-icons{display:inline-block}.wall-entry .wall-entry-header .media-subheading .wall-entry-icons i{margin-right:2px}.wall-entry .wall-entry-header .media-subheading .time,.wall-entry .wall-entry-header .media-subheading i,.wall-entry .wall-entry-header .media-subheading span{font-size:11px;white-space:nowrap}.wall-entry .wall-entry-body{padding-left:50px}.wall-entry .wall-entry-body .wall-entry-content{margin-bottom:5px}.wall-entry .wall-entry-body .wall-entry-content .post-short-text{font-size:1.6em}.wall-entry .wall-entry-body .wall-entry-content .post-short-text .emoji{width:20px}.wall-entry .wall-entry-body audio,.wall-entry .wall-entry-body video{width:100%}.wall-entry .wall-stream-footer .wall-stream-addons .files{margin-bottom:5px}.wall-entry .content a{color:#21A1B3}.wall-entry .content img{max-width:100%}.wall-entry .media{overflow:visible}.wall-entry .well{margin-bottom:0}.wall-entry .well .comment .show-all-link{font-size:12px;cursor:pointer}.wall-entry .media-heading{font-size:14px;padding-top:1px;margin-bottom:3px}.wall-entry .media-heading .labels{padding-right:32px}.wall-entry .media-heading .viaLink{font-size:13px}.wall-entry .media-heading .viaLink i{color:#555555;padding-left:4px;padding-right:4px}.wall-entry .media-subheading{color:#555555;font-size:12px}.wall-entry .media-subheading .time{font-size:12px;white-space:nowrap}.wall-entry [data-ui-richtext] h1{font-size:1.45em;font-weight:normal}.wall-entry [data-ui-richtext] h2{font-size:1.3em;font-weight:normal}.wall-entry [data-ui-richtext] h3{font-size:1.2em;font-weight:normal}.wall-entry [data-ui-richtext] h4{font-size:1.1em;font-weight:normal}.wall-entry [data-ui-richtext] h5{font-size:1em;font-weight:normal}.wall-entry [data-ui-richtext] h6{font-size:.85em;font-weight:normal}@media (max-width:767px){.wall-entry .wall-entry-body{padding-left:0}#wallStream .back_button_holder{padding-bottom:5px;text-align:center}}.wall-entry-controls a{font-size:11px;color:#21A1B3 !important;margin-top:10px;margin-bottom:0}#wall-stream-filter-nav{font-size:12px;margin-bottom:10px;padding-top:2px;border-radius:0 0 4px 4px}#wall-stream-filter-nav .wall-stream-filter-root{margin:0;border:0 !important}#wall-stream-filter-nav .filter-panel{padding:0 10px}#wall-stream-filter-nav .wall-stream-filter-head{padding:5px 5px 10px 5px;border-bottom:1px solid #ddd}#wall-stream-filter-nav .wall-stream-filter-body{overflow:hidden;background-color:#f7f7f7;border:1px solid #ddd;border-top:0;border-radius:0 0 4px 4px}#wall-stream-filter-nav hr{margin:5px 0 0 0}#wall-stream-filter-nav .topic-remove-label{float:left}#wall-stream-filter-nav .topic-remove-label,#wall-stream-filter-nav .content-type-remove-label{margin-right:6px}#wall-stream-filter-nav .select2{width:260px !important;margin-bottom:5px;margin-top:2px}#wall-stream-filter-nav .select2 .select2-search__field{height:25px !important}#wall-stream-filter-nav .select2 .select2-selection__choice{height:23px !important}#wall-stream-filter-nav .select2 .select2-selection__choice span,#wall-stream-filter-nav .select2 .select2-selection__choice i{line-height:19px !important}#wall-stream-filter-nav .select2 .select2-selection__choice .img-rounded{width:18px !important;height:18px !important}#wall-stream-filter-nav .wall-stream-filter-bar{display:inline;float:right;white-space:normal}#wall-stream-filter-nav .wall-stream-filter-bar .label{height:18px;padding-top:4px;background-color:#fff}#wall-stream-filter-nav .wall-stream-filter-bar .btn,#wall-stream-filter-nav .wall-stream-filter-bar .label{box-shadow:0 0 2px #7a7a7a;-webkit-box-shadow:0 0 2px #7a7a7a;-moz-box-shadow:0 0 2px #7a7a7a}@media (max-width:767px){#wall-stream-filter-nav{margin-bottom:5px}#wall-stream-filter-nav .wall-stream-filter-root{white-space:nowrap}#wall-stream-filter-nav .wall-stream-filter-body{overflow:auto}}.filter-root{margin:15px}.filter-root .row{display:table !important}.filter-root .filter-panel{padding:0 5px;display:table-cell !important;float:none}.filter-root .filter-panel .filter-block strong{margin-bottom:5px}.filter-root .filter-panel .filter-block ul.filter-list{list-style:none;padding:0;margin:0 0 5px}.filter-root .filter-panel .filter-block ul.filter-list li{font-size:12px;padding:2px}.filter-root .filter-panel .filter-block ul.filter-list li a{color:#000}.filter-root .filter-panel div.filter-block:last-of-type ul.filter-list{margin:0}.filter-root .filter-panel+.filter-panel{border-left:2px solid #ededed}.stream-entry-loader{float:right;margin-top:5px}.load-suppressed{margin-top:-17px;margin-bottom:15px;text-align:center}.load-suppressed a{display:inline-block;background-color:white;padding:5px;border-radius:0 0 4px 4px;border:1px solid #ddd;font-size:11px}@media print{.wall-entry{page-break-inside:avoid}#wall-stream-filter-nav,#contentFormBody{display:none}}.space-owner{text-align:center;margin:14px 0;font-size:13px;color:#999}.space-member-sign{color:#97d271;position:absolute;top:42px;left:42px;font-size:16px;background:#fff;width:24px;height:24px;padding:2px 3px 1px 4px;border-radius:50px;border:2px solid #97d271}#space-menu-dropdown i.type{font-size:16px;color:#BFBFBF}#space-menu-spaces [data-space-chooser-item]{cursor:pointer}#space-menu-dropdown .input-group-addon{border-radius:0 4px 4px 0}#space-menu-dropdown .input-group-addon.focus{border-radius:0 4px 4px 0;border:2px solid #21A1B3;border-left:0}.input-group #space-menu-search{border-right:0}#space-menu-dropdown div:not(.input-group)>.search-reset{top:10px !important;right:15px !important}#space-directory-link i{margin-right:0}.space-acronym{color:#fff;text-align:center;display:inline-block}.current-space-image{margin-right:3px;margin-top:3px}@media (max-width:767px){#space-menu>.title{display:none}#space-menu-dropdown{width:300px !important}}.files,#postFormFiles_list{padding-left:0}ul.files{list-style:none;margin:0 0 5px;padding:0}ul.files li.file-preview-item{padding-left:24px;display:none}ul.files li.file-preview-item .file-fileInfo{padding-right:20px}.contentForm-upload-list{padding-left:0}.contentForm-upload-list li:first-child{margin-top:10px}.file_upload_remove_link,.file_upload_remove_link:hover{color:#FC4A64;cursor:pointer}.file-preview-item{text-overflow:ellipsis;overflow:hidden}.post-files{margin-top:10px;margin-bottom:10px}.post-files video{border-radius:4px}.post-files .jp-audio{margin-bottom:10px}.post-files .col-media{padding-left:0 !important;padding-right:0 !important}.post-files img{vertical-align:top;padding:2px;height:150px;width:100%;object-fit:cover;border-radius:4px}@media (max-width:650px){.post-files img{height:100px}}.post-file-list{padding:10px;padding-bottom:1px;margin-bottom:10px !important}.post-file-list a,.post-file-list a:active,.post-file-list a:focus,.post-file-list a:hover{color:#21A1B3}#wallStream.mobile .post-files{margin-top:10px;display:flex;overflow-x:auto}#wallStream.mobile .post-files img{max-width:190px;height:100px;width:auto}.file-preview-content{cursor:pointer}.image-upload-container{position:relative}.image-upload-container .image-upload-buttons{display:none;position:absolute;right:5px;bottom:5px}.image-upload-container input[type="file"]{position:absolute;opacity:0}.image-upload-container .image-upload-loader{display:none;position:absolute;top:0;left:0;width:100%;height:100%;padding:20px;background:#f8f8f8}.mime{background-repeat:no-repeat;background-position:0 0;padding:1px 0 4px 26px}.mime-word{background-image:url("../img/mime/word.png")}.mime-excel{background-image:url("../img/mime/excel.png")}.mime-powerpoint{background-image:url("../img/mime/powerpoint.png")}.mime-pdf{background-image:url("../img/mime/pdf.png")}.mime-zip{background-image:url("../img/mime/zip.png")}.mime-image{background-image:url("../img/mime/image.png")}.mime-file{background-image:url("../img/mime/file.png")}.mime-photoshop{background-image:url("../img/mime/photoshop.png")}.mime-illustrator{background-image:url("../img/mime/illustrator.png")}.mime-video{background-image:url("../img/mime/video.png")}.mime-audio{background-image:url("../img/mime/audio.png")}@media (max-width:480px){.jp-current-time{margin-left:0 !important}.jp-audio{width:auto !important;margin-left:0 !important}.jp-audio .jp-controls{padding:2px 12px 0 !important}.jp-audio .jp-progress{left:3px !important;top:45px !important;width:200px !important}.jp-audio .jp-volume-controls{position:absolute !important;top:15px !important;left:170px !important}.jp-audio .jp-time-holder{left:3px !important;top:60px !important;width:200px !important}.jp-audio .jp-toggles{left:210px !important;top:45px !important;width:auto !important}.jp-playlist ul{padding:0 0 0 0 !important}}div.jp-type-playlist div.jp-playlist a.jp-playlist-current,div.jp-type-playlist div.jp-playlist a:hover{color:#21A1B3 !important}.jp-details,.jp-playlist{border-top:1px solid #21A1B3}.jp-audio,.jp-audio-stream,.jp-video{border:1px solid #21A1B3}ul.tour-list{list-style:none;margin-bottom:0;padding-left:10px}ul.tour-list li{padding-top:5px}ul.tour-list li a{color:#21A1B3}ul.tour-list li a .fa{width:16px}ul.tour-list li.completed a{text-decoration:line-through;color:#555555}.atwho-view{position:absolute;top:0;left:0;display:none;margin-top:18px;background:white;color:#555555;font-size:14px;font-weight:400;border:1px solid #d7d7d7;border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);min-width:120px;max-width:265px;z-index:11110 !important;padding:5px 0}.atwho-view strong,.atwho-view b{font-weight:normal}.atwho-view ul li.hint{background:#fff !important;border-left:3px solid transparent !important;font-size:12px;color:#999}.atwho-view .cur small{color:red}.atwho-view strong{background-color:#f9f0d2}.atwho-view .cur strong{background-color:#f9f0d2}.atwho-view ul{list-style:none;padding:0;margin:auto}.atwho-view ul li{display:block;padding:5px 10px;border-left:3px solid transparent;padding:4px 15px 4px 8px;cursor:pointer}.atwho-view small{font-size:smaller;color:#777;font-weight:normal}.atwho-input.form-control{min-height:36px;height:auto;padding-right:95px;word-wrap:break-word}.atwho-input p{padding:0;margin:0}.atwho-placeholder{color:#bebebe !important}.atwho-emoji-entry{float:left;padding:4px !important;margin:0px !important;border:none !important}.atwho-emoji-entry:hover,.atwho-emoji-entry:active,.atwho-emoji-entry:focus{padding:4px !important;margin:0px !important;border:none !important;background-color:#f7f7f7 !important;border-radius:3px}.atwho-view .cur{border-left:3px solid #21A1B3;background-color:#f7f7f7 !important}.atwho-user,.atwho-space,.atwho-input a{color:#21A1B3}.atwho-input a:hover{color:#21A1B3}.atwho-view strong{background-color:#f9f0d2}.atwho-view .cur strong{background-color:#f9f0d2}.atwho-view span{padding:5px}.sk-spinner-three-bounce.sk-spinner{margin:0 auto;width:70px;text-align:center}.loader{padding:30px 0}.loader .sk-spinner-three-bounce div,.loader .sk-spinner-three-bounce span{width:12px;height:12px;background-color:#21A1B3;border-radius:100%;display:inline-block;-webkit-animation:sk-threeBounceDelay 1.4s infinite ease-in-out;animation:sk-threeBounceDelay 1.4s infinite ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both}.loader .sk-spinner-three-bounce .sk-bounce1{-webkit-animation-delay:-0.32s;animation-delay:-0.32s}.loader .sk-spinner-three-bounce .sk-bounce2{-webkit-animation-delay:-0.16s;animation-delay:-0.16s}@-webkit-keyframes sk-threeBounceDelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-threeBounceDelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}.loader-modal{padding:8px 0}.loader-postform{padding:9px 0}.loader-postform .sk-spinner-three-bounce.sk-spinner{text-align:left;margin:0}.md-editor.active{border:2px solid #21A1B3 !important}.md-editor textarea{padding:10px !important}.markdown-render,[data-ui-markdown],[data-ui-richtext]{overflow:hidden;overflow-wrap:break-word;line-height:1.57}.markdown-render h1,[data-ui-markdown] h1,[data-ui-richtext] h1,.markdown-render h2,[data-ui-markdown] h2,[data-ui-richtext] h2,.markdown-render h3,[data-ui-markdown] h3,[data-ui-richtext] h3,.markdown-render h4,[data-ui-markdown] h4,[data-ui-richtext] h4,.markdown-render h5,[data-ui-markdown] h5,[data-ui-richtext] h5,.markdown-render h6,[data-ui-markdown] h6,[data-ui-richtext] h6{text-align:start;font-weight:normal;margin:1.2em 0 .8em;color:#555}.markdown-render h1:first-child,[data-ui-markdown] h1:first-child,[data-ui-richtext] h1:first-child,.markdown-render h2:first-child,[data-ui-markdown] h2:first-child,[data-ui-richtext] h2:first-child,.markdown-render h3:first-child,[data-ui-markdown] h3:first-child,[data-ui-richtext] h3:first-child,.markdown-render h4:first-child,[data-ui-markdown] h4:first-child,[data-ui-richtext] h4:first-child,.markdown-render h5:first-child,[data-ui-markdown] h5:first-child,[data-ui-richtext] h5:first-child,.markdown-render h6:first-child,[data-ui-markdown] h6:first-child,[data-ui-richtext] h6:first-child{margin:0 0 .8em}.markdown-render h1,[data-ui-markdown] h1,[data-ui-richtext] h1{font-size:1.7em}.markdown-render h2,[data-ui-markdown] h2,[data-ui-richtext] h2{font-size:1.5em}.markdown-render h3,[data-ui-markdown] h3,[data-ui-richtext] h3{font-size:1.2em}.markdown-render h4,[data-ui-markdown] h4,[data-ui-richtext] h4{font-size:1.1em}.markdown-render h5,[data-ui-markdown] h5,[data-ui-richtext] h5{font-size:1em}.markdown-render h6,[data-ui-markdown] h6,[data-ui-richtext] h6{font-size:.85em}.markdown-render p,[data-ui-markdown] p,[data-ui-richtext] p,.markdown-render pre,[data-ui-markdown] pre,[data-ui-richtext] pre,.markdown-render blockquote,[data-ui-markdown] blockquote,[data-ui-richtext] blockquote,.markdown-render ul,[data-ui-markdown] ul,[data-ui-richtext] ul,.markdown-render ol,[data-ui-markdown] ol,[data-ui-richtext] ol{margin:0 0 1.2em}.markdown-render li ul,[data-ui-markdown] li ul,[data-ui-richtext] li ul,.markdown-render li ol,[data-ui-markdown] li ol,[data-ui-richtext] li ol{margin:0}.markdown-render p:last-child,[data-ui-markdown] p:last-child,[data-ui-richtext] p:last-child{margin:0}.markdown-render pre,[data-ui-markdown] pre,[data-ui-richtext] pre{padding:0;border:none;background-color:#f7f7f7}.markdown-render pre code,[data-ui-markdown] pre code,[data-ui-richtext] pre code{background-color:#f7f7f7;color:#555}.markdown-render code,[data-ui-markdown] code,[data-ui-richtext] code{background-color:#dbf5f8;color:#197a88}.markdown-render blockquote,[data-ui-markdown] blockquote,[data-ui-richtext] blockquote{background-color:rgba(128,128,128,0.05);border-top-right-radius:5px;border-bottom-right-radius:5px;padding:15px 20px;font-size:1em;border-left:5px solid #435f6f}.markdown-render dt,[data-ui-markdown] dt,[data-ui-richtext] dt,.markdown-render dd,[data-ui-markdown] dd,[data-ui-richtext] dd{margin-top:5px;margin-bottom:5px;line-height:1.45}.markdown-render dt,[data-ui-markdown] dt,[data-ui-richtext] dt{font-weight:bold}.markdown-render dd,[data-ui-markdown] dd,[data-ui-richtext] dd{margin-left:40px}.markdown-render pre,[data-ui-markdown] pre,[data-ui-richtext] pre{text-align:start;border:0;padding:10px 20px;border-radius:0;border-left:2px solid #435f6f}.markdown-render pre code,[data-ui-markdown] pre code,[data-ui-richtext] pre code{white-space:pre !important}.markdown-render blockquote ul:last-child,[data-ui-markdown] blockquote ul:last-child,[data-ui-richtext] blockquote ul:last-child,.markdown-render blockquote ol:last-child,[data-ui-markdown] blockquote ol:last-child,[data-ui-richtext] blockquote ol:last-child{margin-bottom:0}.markdown-render ul,[data-ui-markdown] ul,[data-ui-richtext] ul,.markdown-render ol,[data-ui-markdown] ol,[data-ui-richtext] ol{margin-top:0;padding-left:30px}.markdown-render ul li p,[data-ui-markdown] ul li p,[data-ui-richtext] ul li p,.markdown-render ol li p,[data-ui-markdown] ol li p,[data-ui-richtext] ol li p{overflow:visible !important}.markdown-render .footnote,[data-ui-markdown] .footnote,[data-ui-richtext] .footnote{vertical-align:top;position:relative;top:-0.5em;font-size:.8em}.markdown-render .emoji,[data-ui-markdown] .emoji,[data-ui-richtext] .emoji{width:16px}.markdown-render a,[data-ui-markdown] a,[data-ui-richtext] a,.markdown-render a:visited,[data-ui-markdown] a:visited,[data-ui-richtext] a:visited{background-color:inherit;text-decoration:none;color:#21A1B3 !important}.markdown-render a.header-anchor,[data-ui-markdown] a.header-anchor,[data-ui-richtext] a.header-anchor{color:#555 !important}.markdown-render a.not-found,[data-ui-markdown] a.not-found,[data-ui-richtext] a.not-found{color:#FFC107}.markdown-render li,[data-ui-markdown] li,[data-ui-richtext] li{border:0 !important;background-color:transparent !important;padding:0;margin:5px 0}.markdown-render img:not(.center-block),[data-ui-markdown] img:not(.center-block),[data-ui-richtext] img:not(.center-block){max-width:100%}.markdown-render img.pull-right,[data-ui-markdown] img.pull-right,[data-ui-richtext] img.pull-right{margin:5px 0 0 10px}.markdown-render img.pull-left,[data-ui-markdown] img.pull-left,[data-ui-richtext] img.pull-left{margin:5px 10px 0 0}.markdown-render img.center-block,[data-ui-markdown] img.center-block,[data-ui-richtext] img.center-block{margin-top:5px;margin-bottom:5px}.markdown-render img[width='100%'],[data-ui-markdown] img[width='100%'],[data-ui-richtext] img[width='100%']{border-radius:4px}.markdown-render table,[data-ui-markdown] table,[data-ui-richtext] table{width:100%;font-size:1em;border:1px solid #d7d7d7;margin-bottom:1.2em !important}.markdown-render table th,[data-ui-markdown] table th,[data-ui-richtext] table th{font-size:1em;color:#fff !important;background-color:#435f6f}.markdown-render table th p,[data-ui-markdown] table th p,[data-ui-richtext] table th p{color:#fff !important}.markdown-render table td,[data-ui-markdown] table td,[data-ui-richtext] table td{padding:15px;border:1px solid #d7d7d7 !important}.markdown-render table th,[data-ui-markdown] table th,[data-ui-richtext] table th{padding:10px 15px;border:1px solid #d7d7d7 !important}@media (max-width:991px){.layout-sidebar-container{display:none}}.ui-widget-header{border:none !important;background:#fff !important;color:#7a7a7a !important;font-weight:300 !important}.ui-widget-content{border:1px solid #dddcda !important;border-radius:0 !important;background:#fff;color:#000 !important;-webkit-box-shadow:0 6px 6px rgba(0,0,0,0.1);box-shadow:0 6px 6px rgba(0,0,0,0.1)}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{opacity:.2}.ui-datepicker .ui-datepicker-prev:hover,.ui-datepicker .ui-datepicker-next:hover{background:#fff !important;border:none;margin:1px}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:none !important;background:#f7f7f7 !important;color:#7a7a7a !important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:none !important;border:1px solid #b2b2b2 !important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #21A1B3 !important;background:#6fd6e4 !important}.status-bar-body{color:white;position:fixed;width:100%;background-color:rgba(0,0,0,0.7);text-align:center;padding:20px;z-index:9999999;bottom:0px;display:block;line-height:20px}.status-bar-close{color:white;font-weight:bold;font-size:21px;cursor:pointer}.status-bar-close:hover{color:white}.status-bar-close i{vertical-align:top !important;padding-top:3px}.status-bar-content i{margin-right:10px;font-size:21px;vertical-align:middle}.status-bar-content .showMore{color:#21A1B3;float:right;margin-left:10px;font-size:.7em;cursor:pointer;vertical-align:middle;white-space:nowrap}.status-bar-content .status-bar-details{text-align:left;font-size:.7em;margin-top:20px;max-height:200px;overflow:auto}.status-bar-content span{vertical-align:middle}.status-bar-content i.error,.status-bar-content i.fatal{color:#FC4A64}.status-bar-content i.warning{color:#FFC107}.status-bar-content i.info,.status-bar-content i.debug{color:#21A1B3}.status-bar-content i.success{color:#85CA2B}.highlight{background-color:#fff8e0}.alert-default{color:#000;background-color:#f7f7f7;border-color:#ededed;font-size:13px}.alert-default .info{margin:10px 0}.alert-success{color:#84be5e;background-color:#f7fbf4;border-color:#97d271}.alert-warning{color:#e9b168;background-color:#fffbf7;border-color:#fdd198}.alert-danger{color:#ff8989;background-color:#fff6f6;border-color:#ff8989}.data-saved{padding-left:10px;color:#21A1B3}img.bounceIn{-webkit-animation-duration:800ms;-moz-animation-duration:800ms;animation-duration:800ms}.tags .tag{margin-top:5px;border-radius:2px;padding:4px 8px;text-transform:uppercase;max-width:150px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#user-tags-panel .tags .tag{max-width:250px}.label{text-transform:uppercase}.label{text-transform:uppercase;display:inline-block;padding:3px 5px 4px;font-weight:600;font-size:10px;color:white;vertical-align:baseline;white-space:nowrap;text-shadow:none}.label-default{background:#ededed;color:#7a7a7a !important}a.label-default:hover{background:#e0e0e0 !important}.label-info{background-color:#21A1B3}a.label-info:hover{background:#1d8e9d !important}.label-danger{background-color:#FC4A64}a.label-danger:hover{background:#fc314f !important}.label-success{background-color:#97d271}a.label-success:hover{background:#89cc5e !important}.label-warning{background-color:#FFC107}a.label-warning:hover{background:#ecb100 !important}.label-light{background-color:transparent;color:#7a7a7a;border:1px solid #bababa}.topic-label-list,.wall-entry-topics{margin-bottom:10px}.topic-label-list a,.wall-entry-topics a{margin-right:4px}.topic-label-list .label,.wall-entry-topics .label{padding:5px;border-radius:4px}.ProsemirrorEditor.fullscreen{position:fixed;top:0;left:0;width:100vw;height:calc(100vh - 3px);z-index:9998}.ProsemirrorEditor.fullscreen .ProseMirror-menubar-wrapper{height:100%}.ProsemirrorEditor.fullscreen .humhub-ui-richtext{max-height:none !important}.ProsemirrorEditor.fullscreen .ProseMirror{position:static;overflow:auto;height:calc(100% - 26px)}.ProsemirrorEditor.fullscreen .ProseMirror-menubar{position:static !important;top:0 !important;left:0 !important;margin:0 !important;width:100% !important}.login-container .ProsemirrorEditor.fullscreen,.modal-dialog .ProsemirrorEditor.fullscreen{width:100%;height:100%}.ProsemirrorEditor .ProseMirror{padding-right:12px}.ProsemirrorEditor .ProseMirror-menu{margin:0 -4px;line-height:1}.ProsemirrorEditor .ProseMirror-tooltip .ProseMirror-menu{width:-webkit-fit-content;width:fit-content;white-space:pre}.ProsemirrorEditor .ProseMirror-menuitem{margin-right:0;display:inline-block}.ProsemirrorEditor .ProseMirror-menuseparator{border-right:1px solid #ddd;margin-right:3px}.ProsemirrorEditor .ProseMirror-menubar-wrapper{z-index:200}.ProsemirrorEditor .ProseMirror-menuitem .ProseMirror-menu-group{border-right:1px solid #ddd}.ProsemirrorEditor .ProseMirror-menuitem .ProseMirror-menu-group.last{border-right:none}.ProsemirrorEditor .ProseMirror-menuitem .seperator{border-right:1px solid #ddd;margin-right:2px;padding-right:2px}.ProsemirrorEditor .ProseMirror-menu-dropdown,.ProsemirrorEditor .ProseMirror-menu-dropdown-menu{font-size:90%;white-space:nowrap}.ProsemirrorEditor .ProseMirror-menu-dropdown{cursor:pointer;position:relative;padding-right:15px !important}.ProsemirrorEditor .ProseMirror-menu-dropdown-wrap{padding:1px 0 1px 0;display:inline-block;position:relative}.ProsemirrorEditor .ProseMirror-menu-dropdown-right{right:0}.ProsemirrorEditor .ProseMirror-menu-dropdown:after{content:"";border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid currentColor;opacity:.6;position:absolute;right:4px;top:calc(50% - 2px)}.ProsemirrorEditor .ProseMirror-menu-submenu{border-top-right-radius:4px}.ProsemirrorEditor .ProseMirror-menu-dropdown-menu,.ProsemirrorEditor .ProseMirror-menu-submenu{position:absolute;background:white;color:#666;border:1px solid #aaa;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.ProsemirrorEditor .ProseMirror-menu-dropdown-menu{z-index:15;min-width:6em;margin-top:2px}.ProsemirrorEditor .ProseMirror-menu-dropdown-item{cursor:pointer}.ProsemirrorEditor .ProseMirror-menu-dropdown-item div[title],.ProsemirrorEditor .ProseMirror-menu-submenu-wrap{padding:4px}.ProsemirrorEditor .ProseMirror-menu-dropdown-item:hover{background:#f2f2f2}.ProsemirrorEditor .ProseMirror-menu-submenu-wrap{position:relative}.ProsemirrorEditor .ProseMirror-menu-submenu-label:after{content:"";border-top:4px solid transparent;border-bottom:4px solid transparent;border-left:4px solid currentColor;opacity:.6;position:absolute;right:4px;top:calc(50% - 4px)}.ProsemirrorEditor .ProseMirror-menu-submenu{display:none;min-width:4em;left:100%;top:0}.ProsemirrorEditor .ProseMirror-menu-active{background:#eee;border-radius:4px;border:1px solid #ededed !important}.ProsemirrorEditor .ProseMirror-menu-disabled{opacity:.3}.ProsemirrorEditor .ProseMirror-menu-submenu-wrap:hover .ProseMirror-menu-submenu,.ProsemirrorEditor .ProseMirror-menu-submenu-wrap-active .ProseMirror-menu-submenu{display:block}.ProsemirrorEditor .ProseMirror-icon{display:inline-block;line-height:.8;vertical-align:-2px;padding:1px 7px;cursor:pointer;border:1px solid transparent}.ProsemirrorEditor .ProseMirror-menu-disabled.ProseMirror-icon{cursor:default}.ProsemirrorEditor .ProseMirror-icon svg{fill:currentColor;height:1em}.ProsemirrorEditor .ProseMirror-icon span{vertical-align:text-top}.ProsemirrorEditor.plainMenu .ProseMirror{border-top-left-radius:0 !important;border-top-right-radius:0 !important;border-top-width:1px !important;min-height:100px}.ProsemirrorEditor.plainMenu .ProseMirror-menu-group{padding:5px}.ProsemirrorEditor.plainMenu .ProseMirror-menuitem .ProseMirror-menu-group{padding:2px}.ProsemirrorEditor.plainMenu .ProseMirror-menubar~.ProseMirror-focused{border-color:#21A1B3 !important}.ProsemirrorEditor.plainMenu .ProseMirror-textblock-dropdown{min-width:3em}.ProsemirrorEditor.plainMenu .ProseMirror-menubar-wrapper{z-index:8}.ProsemirrorEditor.plainMenu .ProseMirror-menubar{background-color:#f7f7f7;border-top-left-radius:4px;border-top-right-radius:4px;border:1px solid #ddd;position:relative;min-height:1em;color:#666;padding:1px 6px 1px 0;top:0;left:0;right:0;z-index:10;-moz-box-sizing:border-box;box-sizing:border-box;overflow:visible}.ProsemirrorEditor.focusMenu .form-control:focus{border-top-left-radius:0 !important}.ProsemirrorEditor.focusMenu .ProseMirror-menubar{display:table;min-height:1em;color:#666;padding:2px 6px;top:0;left:0;right:0;z-index:10;-moz-box-sizing:border-box;box-sizing:border-box;overflow:visible;margin-top:-25px;background:white;border:1px solid #aeaeae;border-bottom:0;border-top:1px solid #aeaeae;border-top-left-radius:4px;border-top-right-radius:4px;float:left}@-moz-document url-prefix(){.ProsemirrorEditor.focusMenu .ProseMirror-menubar{margin-top:-26px}}.ProsemirrorEditor .ProseMirror{position:relative;word-wrap:break-word;white-space:pre-wrap;-webkit-font-variant-ligatures:none;font-variant-ligatures:none}.ProsemirrorEditor .ProseMirror ul,.ProsemirrorEditor .ProseMirror ol{cursor:default}.ProsemirrorEditor .ProseMirror pre{white-space:pre-wrap}.ProsemirrorEditor .ProseMirror li{position:relative}.ProsemirrorEditor .ProseMirror img{max-width:100%}.ProsemirrorEditor .ProseMirror-hideselection *::selection{background:transparent}.ProsemirrorEditor .ProseMirror-hideselection *::-moz-selection{background:transparent}.ProsemirrorEditor .ProseMirror-selectednode{outline:2px dashed #8cf}.ProsemirrorEditor li.ProseMirror-selectednode{outline:none}.ProsemirrorEditor li.ProseMirror-selectednode:after{content:"";position:absolute;left:-32px;right:-2px;top:-2px;bottom:-2px;border:2px solid #8cf;pointer-events:none}.ProsemirrorEditor .ProseMirror-textblock-dropdown{min-width:3em}.ProsemirrorEditor .ProseMirror-menu{margin:0 -4px;line-height:1}.ProsemirrorEditor .ProseMirror-tooltip .ProseMirror-menu{width:-webkit-fit-content;width:fit-content;white-space:pre}.ProsemirrorEditor .ProseMirror-gapcursor{display:none;pointer-events:none;position:absolute}.ProsemirrorEditor .ProseMirror-gapcursor:after{content:"";display:block;position:absolute;top:-2px;width:20px;border-top:1px solid black;animation:ProseMirror-cursor-blink 1.1s steps(2, start) infinite}@keyframes ProseMirror-cursor-blink{to{visibility:hidden}}.ProsemirrorEditor .ProseMirror-focused .ProseMirror-gapcursor{display:block}.ProsemirrorEditor .ProseMirror-example-setup-style hr{padding:2px 10px;border:none;margin:1em 0}.ProsemirrorEditor .ProseMirror-example-setup-style hr:after{content:"";display:block;height:1px;background-color:silver;line-height:2px}.ProsemirrorEditor .ProseMirror-example-setup-style img{cursor:default}.ProsemirrorEditor .ProseMirror p{margin-top:1.2em}.ProsemirrorEditor .ProseMirror p:first-child{margin:0}.ProsemirrorEditor .ProseMirror>p:first-child+*{margin-top:1.2em}.ProsemirrorEditor .ProsemirrorEditor{position:relative}.ProsemirrorEditor .ProsemirrorEditor .ProseMirror{padding-right:12px !important}.ProsemirrorEditor .ProsemirrorEditor img{max-width:100%}.ProsemirrorEditor .ProseMirror h1:first-child,.ProsemirrorEditor .ProseMirror h2:first-child,.ProsemirrorEditor .ProseMirror h3:first-child,.ProsemirrorEditor .ProseMirror h4:first-child,.ProsemirrorEditor .ProseMirror h5:first-child,.ProsemirrorEditor .ProseMirror h6:first-child{margin-top:10px}.ProsemirrorEditor .ProseMirror [data-mention]{color:#21A1B3}.ProsemirrorEditor .ProseMirror{outline:none}.ProsemirrorEditor .ProseMirror [data-oembed]{font-size:0}.ProsemirrorEditor .ProseMirror iframe{pointer-events:none;display:block}.ProsemirrorEditor .ProseMirror p{margin-bottom:1em}.ProsemirrorEditor .ProseMirror-textblock-dropdown{min-width:3em}.ProsemirrorEditor .ProseMirror .placeholder{padding:0 !important;pointer-events:none;height:0}.ProsemirrorEditor .ProseMirror:focus .placeholder{display:none}.ProsemirrorEditor .ProseMirror .tableWrapper{overflow-x:auto}.ProsemirrorEditor .ProseMirror .column-resize-handle{position:absolute;right:-2px;top:0;bottom:0;width:4px;z-index:20;background-color:#adf;pointer-events:none}.ProsemirrorEditor .ProseMirror.resize-cursor{cursor:ew-resize;cursor:col-resize}.ProsemirrorEditor .ProseMirror .selectedCell:after{z-index:2;position:absolute;content:"";left:0;right:0;top:0;bottom:0;background:rgba(200,200,255,0.4);pointer-events:none}.ProsemirrorEditor .ProseMirror-menubar-wrapper{position:relative;outline:none}.ProsemirrorEditor .ProseMirror table{margin:0}.ProsemirrorEditor .ProseMirror .tableWrapper{margin:1em 0}.ProseMirror-prompt{background:white;padding:5px 10px 5px 15px;border:1px solid silver;position:fixed;border-radius:3px;min-width:300px;z-index:999999;box-shadow:-0.5px 2px 5px rgba(0,0,0,0.2)}.ProseMirror-prompt h5{font-weight:bold;font-size:100%;margin:15px 0}.ProseMirror-prompt input{margin-bottom:5px}.ProseMirror-prompt-close{position:absolute;left:2px;top:1px;color:#666;border:none;background:transparent;padding:0}.ProseMirror-prompt-close:after{content:"✕";font-size:12px}.ProseMirror-invalid{background:#ffc;border:1px solid #cc7;border-radius:4px;padding:5px 10px;position:absolute;min-width:10em}.ProseMirror-prompt-buttons{margin:15px 0;text-align:center}.atwho-view .cur{border-left:3px solid #59d6e4;background-color:#f7f7f7 !important}.atwho-user,.atwho-space,.atwho-input a{color:#59d6e4}.atwho-input a:hover{color:#59d6e4}.atwho-view strong{background-color:#f9f0d2}.atwho-view .cur strong{background-color:#f9f0d2}[data-emoji-category]{max-height:200px;display:block;position:relative;overflow:auto}[data-emoji-category] .atwho-emoji-entry{width:24px;height:28px;overflow:hidden}[data-emoji-category] .atwho-emoji-entry.cur{background-color:#ededed !important}.emoji-nav{padding-top:10px}.emoji-nav .emoji-nav-item{border-top:2px solid #fff8e0}.emoji-nav .emoji-nav-item.cur{border-left:0;border-top:2px solid #21A1B3}[data-ui-markdown],[data-ui-richtext]{overflow-x:auto;overflow-wrap:break-word}[data-ui-markdown] a,[data-ui-richtext] a{color:#21A1B3}#wallStream [data-ui-markdown],#wallStream [data-ui-richtext]{overflow-wrap:initial;word-break:initial;hyphens:initial}@media screen and (max-width:768px){.ProsemirrorEditor.focusMenu .form-control:focus{border-top-right-radius:0 !important}.ProsemirrorEditor.focusMenu .ProseMirror-menubar{min-height:1em;margin-top:0}.ProsemirrorEditor.focusMenu .humhub-ui-richtext{margin-top:0}}@media only screen and (max-width : 768px){body{padding-top:105px}.modal-open #layout-content>.container{overflow-x:unset}#layout-content .left-navigation .list-group{-webkit-overflow-scrolling:auto;white-space:nowrap;overflow-x:auto}#layout-content .left-navigation .list-group::-webkit-scrollbar{-webkit-appearance:none}#layout-content .left-navigation .list-group::-webkit-scrollbar:vertical{width:8px}#layout-content .left-navigation .list-group::-webkit-scrollbar:horizontal{height:8px}#layout-content .left-navigation .list-group::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,0.5);border-radius:10px;border:2px solid #ffffff}#layout-content .left-navigation .list-group::-webkit-scrollbar-track{border-radius:10px;background-color:#ffffff}#layout-content .table-responsive::-webkit-scrollbar{-webkit-appearance:none}#layout-content .table-responsive::-webkit-scrollbar:vertical{width:8px}#layout-content .table-responsive::-webkit-scrollbar:horizontal{height:8px}#layout-content .table-responsive::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,0.5);border-radius:10px;border:2px solid #ffffff}#layout-content .table-responsive::-webkit-scrollbar-track{border-radius:10px;background-color:#ffffff}#layout-content .panel{margin-bottom:5px}#layout-content .panel .statistics .entry{margin-left:10px}#layout-content>.container{padding-right:2px !important;padding-left:2px !important;overflow-x:hidden}#layout-content .layout-nav-container .panel-heading{display:none}#layout-content .panel-profile-header #profilefileupload,#layout-content .panel-profile-header .profile-user-photo-container,#layout-content .panel-profile-header .space-acronym,#layout-content .panel-profile-header .profile-user-photo{height:100px !important;width:100px !important}#layout-content .image-upload-container .image-upload-buttons{right:2px !important}#layout-content .space-acronym{padding:6px 0 !important}#layout-content .panel-profile .panel-profile-header .img-profile-header-background{min-height:80px !important}#layout-content .panel-profile .panel-profile-header .img-profile-data{padding-top:50px !important;padding-left:130px}.modal-dialog{width:calc(100vw - 4px) !important;padding:0 !important;margin:2px !important}.dropdown-menu>li a,.nav-pills .dropdown-menu li a,.nav-tabs .dropdown-menu li a,.account .dropdown-menu li a,.modal .dropdown-menu li a,.panel .dropdown-menu li a,.nav-tabs .dropdown-menu li a{padding-top:10px;padding-bottom:10px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.dropdown-menu{max-width:320px}select.form-control:not([multiple]){padding-right:23px;width:auto}.modal.in{padding-right:0 !important}.load-suppressed{margin-top:-8px;margin-bottom:5px}.ProsemirrorEditor .ProseMirror-menuitem{font-size:1.2em !important}}.icon-sm,.fa-sm{font-size:.875em}.icon-lg,.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-0.0667em}.icon-2x,.fa-2x{font-size:2em}.icon-3x,.fa-3x{font-size:3em}.icon-4x,.fa-4x{font-size:4em}.icon-5x,.fa-5x{font-size:5em}.icon-6x,.fa-6x{font-size:6em}.icon-7x,.fa-7x{font-size:7em}.icon-9x,.fa-9x{font-size:9em}.icon-10x,.fa-10x{font-size:10em}@media print{a[href]:after{content:none}body{padding-top:0}pre,blockquote{page-break-inside:avoid}.preferences,.layout-sidebar-container,.layout-nav-container,button{display:none !important}}@media (min-width:500px){.container-directory.container-fluid .card{width:50%}}@media (min-width:1000px){.container-directory.container-fluid .card{width:33.33333333%}}@media (min-width:1300px){.container-directory.container-fluid .card{width:25%}}@media (min-width:1600px){.container-directory.container-fluid .card{width:20%}}@media (min-width:1900px){.container-directory.container-fluid .card{width:16.66666667%}}.container-directory .form-search .row>div{padding-bottom:3px}.container-directory .form-search .form-search-filter-keyword{position:relative}.container-directory .form-search .form-search-filter-keyword .form-button-search{position:absolute;right:18px;margin-bottom:3px}.container-directory .form-search .form-control.form-search-filter{width:100%;height:40px;margin:3px 0 0;padding:8px 30px 10px 8px;border-radius:4px;border:solid 1px #c5c5c5}.container-directory .form-search .form-button-search{background:none;border:0;font-size:16px;color:#000;top:initial;bottom:9px}.container-directory .form-search .form-search-field-info{font-size:80%}.container-directory .form-search-reset{text-decoration:underline;display:block;margin-top:26px}.container-directory .form-search-reset:hover{text-decoration:none}.container-directory .cards{display:flex;flex-direction:row;flex-wrap:wrap}.container-directory .card{display:flex;flex-direction:row}.container-directory .card .card-panel{position:relative;width:100%;display:flex;flex-direction:column;margin:15px 0;border-radius:4px;background-color:#ffffff}.container-directory .card .card-panel.card-archived{filter:opacity(60%)}.container-directory .card .card-icons .fa{color:#21a1b3}.container-directory .card .card-icons .fa span{font:12px 'Open Sans',sans-serif;font-weight:600}.container-directory .card .card-bg-image{width:100%;height:86px;background-color:#cfcfcf;background-size:cover;background-position:center;border-radius:4px 4px 0 0}.container-directory .card .card-header{position:absolute;padding:16px;display:table;width:100%}.container-directory .card .card-header .card-image-wrapper{display:table-cell;width:98px}.container-directory .card .card-header .card-image-link{display:inline-block;border:2px solid #fff;border-radius:6px}.container-directory .card .card-header .card-status{position:absolute;right:16px;background:#435f6f}.container-directory .card .card-header .card-icons{display:table-cell;padding:0 0 2px 5px;text-align:right;vertical-align:bottom;font-size:16px}.container-directory .card .card-header .card-icons .fa{color:#21a1b3}.container-directory .card .card-header .card-icons .fa.fa-mobile-phone{font-size:22px;line-height:15px;position:relative;top:2px}.container-directory .card .card-body{flex-grow:1;padding:44px 16px 24px 16px;overflow:auto}.container-directory .card .card-body .card-title{font-size:16px;font-weight:bold;line-height:24px}.container-directory .card .card-body .card-details{margin-top:8px;color:#57646c}.container-directory .card .card-body .card-details a{color:#21a1b3;text-decoration:underline}.container-directory .card .card-body .card-details a:hover{text-decoration:none}.container-directory .card .card-body .card-tags{margin-top:20px}.container-directory .card .card-footer{padding:0 16px 20px}.container-directory .card .card-footer a.btn{float:left;margin:0 8px 4px 0;white-space:normal;hyphens:none}.container-directory .card .card-footer a.btn:last-child{margin-right:0}.container-directory .card .card-footer .btn-group a.btn{margin-right:0}/*! Select2 humhub Theme v0.1.0-beta.4 | MIT License | github.com/select2/select2-humhub-theme */.select2-container--humhub{display:block}.select2-container--humhub .select2-selection{background-color:#fff;border:2px solid #ededed;border-radius:4px;color:#555;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;outline:0}.select2-container--humhub .select2-search--dropdown .select2-search__field{background-color:#fff;border:2px solid #ededed;border-radius:4px;color:#555;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px}.select2-container--humhub .select2-search__field{outline:0}.select2-container--humhub .select2-search__field::placeholder{color:#999;font-weight:normal}.select2-container--humhub .select2-search__field::-webkit-input-placeholder{color:#999;font-weight:normal}.select2-container--humhub .select2-search__field:-moz-placeholder{color:#999;font-weight:normal}.select2-container--humhub .select2-search__field::-moz-placeholder{color:#999;font-weight:normal;opacity:1}.select2-container--humhub .select2-search__field:-ms-input-placeholder{color:#999;font-weight:normal}.select2-container--humhub .select2-results__option[role=group]{padding:0}.select2-container--humhub .select2-results__option[aria-disabled=true]{color:#777;cursor:not-allowed}.select2-container--humhub .select2-results__option[aria-selected=true]{background-color:#f5f5f5;color:#262626;border-left:3px solid transparent}.select2-container--humhub .select2-results__option[aria-selected=false]{border-left:3px solid transparent}.select2-container--humhub .select2-results__option--highlighted[aria-selected]{background-color:#f7f7f7;border-left:3px solid #21A1B3;color:#000}.select2-container--humhub .select2-results__option .select2-results__option{padding:6px 12px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option{margin-left:-12px;padding-left:24px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-24px;padding-left:36px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-36px;padding-left:48px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-48px;padding-left:60px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-60px;padding-left:72px}.select2-container--humhub .select2-results__group{color:#777;display:block;padding:6px 12px;font-size:12px;line-height:1.42857143;white-space:nowrap}.select2-container--humhub.select2-container--focus .select2-selection,.select2-container--humhub.select2-container--open .select2-selection{border:2px solid #21A1B3;outline:0;box-shadow:none}.select2-container--humhub.select2-container--open .select2-selection .select2-selection__arrow b{border-color:transparent transparent #999 transparent;border-width:0 4px 4px 4px}.select2-container--humhub .select2-selection__clear{color:#999;cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--humhub .select2-selection__clear:hover{color:#333}.select2-container--humhub.select2-container--disabled .select2-selection{border-color:#ccc;-webkit-box-shadow:none;box-shadow:none}.select2-container--humhub.select2-container--disabled .select2-selection,.select2-container--humhub.select2-container--disabled .select2-search__field{cursor:not-allowed}.select2-container--humhub.select2-container--disabled .select2-selection,.select2-container--humhub.select2-container--disabled .select2-selection--multiple .select2-selection__choice{background-color:#eee}.select2-container--humhub.select2-container--disabled .select2-selection__clear,.select2-container--humhub.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove{display:none}.select2-container--humhub .select2-dropdown{-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);border-color:#d7d7d7;overflow-x:hidden;margin-top:-1px}.select2-container--humhub .select2-dropdown--above{margin-top:1px}.select2-container--humhub .select2-results>.select2-results__options{max-height:400px;overflow-y:auto}.select2-container--humhub .select2-selection--single{height:34px;line-height:1.42857143;padding:6px 24px 6px 12px}.select2-container--humhub .select2-selection--single .select2-selection__arrow{position:absolute;bottom:0;right:12px;top:0;width:4px}.select2-container--humhub .select2-selection--single .select2-selection__arrow b{border-color:#999 transparent transparent transparent;border-style:solid;border-width:4px 4px 0 4px;height:0;left:0;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--humhub .select2-selection--single .select2-selection__rendered{color:#555;padding:0}.select2-container--humhub .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--humhub .select2-selection--multiple{min-height:34px;padding:2px}.select2-container--humhub .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;display:block;line-height:1.42857143;list-style:none;margin:0;overflow:hidden;padding:0;width:100%;text-overflow:ellipsis;white-space:nowrap}.select2-container--humhub .select2-selection--multiple .select2-selection__placeholder{color:#999;float:left;margin-top:5px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice{color:#555;border-radius:4px;cursor:default;padding:0 6px;background-color:#21A1B3;color:#fff;border-radius:3px;font-size:12px !important;padding:0 5px 2px 2px;float:left;margin:2px;height:28px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice img,.select2-container--humhub .select2-selection--multiple .select2-selection__choice div{margin-right:5px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice span.no-image{line-height:27px;padding-left:5px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice i{margin:0px 2px;line-height:27px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice .picker-close{cursor:pointer}.select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field{background:transparent;padding:0 5px;width:auto !important;height:32px;line-height:1.42857143;margin-top:0;min-width:5em}.select2-container--humhub .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:none;font-weight:bold;margin-right:3px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--humhub .select2-selection--multiple .select2-selection__clear{margin-top:6px}.select2-container--humhub.input-sm,.select2-container--humhub.input-lg{border-radius:0;font-size:12px;height:auto;line-height:1;padding:0}.select2-container--humhub.input-sm .select2-selection--single,.input-group-sm .select2-container--humhub .select2-selection--single,.form-group-sm .select2-container--humhub .select2-selection--single{border-radius:3px;font-size:12px;height:30px;line-height:1.5;padding:5px 22px 5px 10px}.select2-container--humhub.input-sm .select2-selection--single .select2-selection__arrow b,.input-group-sm .select2-container--humhub .select2-selection--single .select2-selection__arrow b,.form-group-sm .select2-container--humhub .select2-selection--single .select2-selection__arrow b{margin-left:-5px}.select2-container--humhub.input-sm .select2-selection--multiple,.input-group-sm .select2-container--humhub .select2-selection--multiple,.form-group-sm .select2-container--humhub .select2-selection--multiple{min-height:30px}.select2-container--humhub.input-sm .select2-selection--multiple .select2-selection__choice,.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__choice,.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__choice{font-size:12px;line-height:1.5;margin:4px 0 0 5px;padding:0 5px}.select2-container--humhub.input-sm .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field,.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field{padding:0 10px;font-size:12px;height:28px;line-height:1.5}.select2-container--humhub.input-sm .select2-selection--multiple .select2-selection__clear,.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__clear,.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__clear{margin-top:5px}.select2-container--humhub.input-lg .select2-selection--single,.input-group-lg .select2-container--humhub .select2-selection--single,.form-group-lg .select2-container--humhub .select2-selection--single{border-radius:6px;font-size:18px;height:46px;line-height:1.3333333;padding:10px 31px 10px 16px}.select2-container--humhub.input-lg .select2-selection--single .select2-selection__arrow,.input-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow,.form-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow{width:5px}.select2-container--humhub.input-lg .select2-selection--single .select2-selection__arrow b,.input-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow b,.form-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow b{border-width:5px 5px 0 5px;margin-left:-5px;margin-left:-10px;margin-top:-2.5px}.select2-container--humhub.input-lg .select2-selection--multiple,.input-group-lg .select2-container--humhub .select2-selection--multiple,.form-group-lg .select2-container--humhub .select2-selection--multiple{min-height:46px}.select2-container--humhub.input-lg .select2-selection--multiple .select2-selection__choice,.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__choice,.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__choice{font-size:18px;line-height:1.3333333;border-radius:4px;margin:9px 0 0 8px;padding:0 10px}.select2-container--humhub.input-lg .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field,.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field{padding:0 16px;font-size:18px;height:44px;line-height:1.3333333}.select2-container--humhub.input-lg .select2-selection--multiple .select2-selection__clear,.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__clear,.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__clear{margin-top:10px}.select2-container--humhub.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #999 transparent;border-width:0 5px 5px 5px}.input-group-lg .select2-container--humhub.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #999 transparent;border-width:0 5px 5px 5px}.select2-container--humhub[dir="rtl"] .select2-selection--single{padding-left:24px;padding-right:12px}.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:0;padding-left:0;text-align:right}.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:12px;right:auto}.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__arrow b{margin-left:0}.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:0;margin-right:6px}.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.has-warning .select2-dropdown,.has-warning .select2-selection{border-color:#FFC107}.has-warning .select2-container--focus .select2-selection,.has-warning .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ffdb6d;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ffdb6d;border-color:#d39e00}.has-warning.select2-drop-active{border-color:#d39e00}.has-warning.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#d39e00}.has-error .select2-dropdown,.has-error .select2-selection{border-color:#FC4A64}.has-error .select2-container--focus .select2-selection,.has-error .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #feaeba;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #feaeba;border-color:#fb1839}.has-error.select2-drop-active{border-color:#fb1839}.has-error.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#fb1839}.has-success .select2-dropdown,.has-success .select2-selection{border-color:#97d271}.has-success .select2-container--focus .select2-selection,.has-success .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d0ebbe;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d0ebbe;border-color:#7bc64a}.has-success.select2-drop-active{border-color:#7bc64a}.has-success.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#7bc64a}.input-group .select2-container--humhub{display:table;table-layout:fixed;position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group.select2-humhub-prepend .select2-container--humhub .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group.select2-humhub-append .select2-container--humhub .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.select2-humhub-append .select2-container--humhub,.select2-humhub-prepend .select2-container--humhub,.select2-humhub-append .input-group-btn,.select2-humhub-prepend .input-group-btn,.select2-humhub-append .input-group-btn .btn,.select2-humhub-prepend .input-group-btn .btn{vertical-align:top}.form-control.select2-hidden-accessible{position:absolute !important;width:1px !important}.form-inline .select2-container--humhub{display:inline-block}ul.tag_input{list-style:none;background-color:#fff;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;padding:0 0 9px 4px}ul.tag_input li img{margin:0 5px 0 0}.tag_input_field{outline:none;border:none !important;padding:5px 4px 0 !important;width:170px;margin:2px 0 0 !important}.userInput,.spaceInput{background-color:#21A1B3;font-weight:600;color:#fff;border-radius:3px;font-size:12px !important;padding:2px;float:left;margin:3px 4px 0 0}.userInput i,.spaceInput i{padding:0 6px;font-size:14px;cursor:pointer;line-height:8px} \ No newline at end of file From 3967aa45c1fb39ce32193faf27d4a81eef729db7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Farr=C3=A9?= <23310825+funkycram@users.noreply.github.com> Date: Fri, 21 Jan 2022 09:51:51 +0100 Subject: [PATCH 03/67] Update SpreadsheetExport.php (#5508) * Update SpreadsheetExport.php Remove pagination if `$dataProvider` is an instance of `ArrayDataProvider` * Update SpreadsheetExport.php --- protected/humhub/components/export/SpreadsheetExport.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/protected/humhub/components/export/SpreadsheetExport.php b/protected/humhub/components/export/SpreadsheetExport.php index 5a344c0481..2a2c2040cc 100644 --- a/protected/humhub/components/export/SpreadsheetExport.php +++ b/protected/humhub/components/export/SpreadsheetExport.php @@ -12,6 +12,7 @@ use Yii; use yii\base\Component; use yii\base\InvalidConfigException; use yii\data\ActiveDataProvider; +use yii\data\BaseDataProvider; use yii\di\Instance; use yii\i18n\Formatter; @@ -136,7 +137,7 @@ class SpreadsheetExport extends Component ]); } - if ($this->dataProvider instanceof ActiveDataProvider) { + if ($this->dataProvider instanceof BaseDataProvider) { $this->dataProvider->setPagination(false); } } From e1b29a71f18fa6fa3ef223eb11b2c45c0597be79 Mon Sep 17 00:00:00 2001 From: Igor Morozov Date: Tue, 25 Jan 2022 14:27:03 +0200 Subject: [PATCH 04/67] invite by in approval (#5511) * invite by in approval * edit CHANGELOG_DEV.md * Update CHANGELOG_DEV.md Co-authored-by: Lucas Bartholemy --- CHANGELOG_DEV.md | 1 + protected/humhub/modules/admin/views/approval/index.php | 1 + protected/humhub/modules/user/models/User.php | 6 ++++++ 3 files changed, 8 insertions(+) diff --git a/CHANGELOG_DEV.md b/CHANGELOG_DEV.md index 7e383791e2..6f1ed0b38e 100644 --- a/CHANGELOG_DEV.md +++ b/CHANGELOG_DEV.md @@ -7,3 +7,4 @@ - Enh #5224: Add reply-to email in the settings - Enh #5471: On the pending approval page, add grouped actions and custom columns - Enh #5490: Display confirmation message before display embedded content +- Enh #5258: Display who invited the user on the Approval page diff --git a/protected/humhub/modules/admin/views/approval/index.php b/protected/humhub/modules/admin/views/approval/index.php index 1514d6b7a3..b17f24fe64 100644 --- a/protected/humhub/modules/admin/views/approval/index.php +++ b/protected/humhub/modules/admin/views/approval/index.php @@ -28,6 +28,7 @@ $columns = [ ['class' => ImageColumn::class], ['class' => DisplayNameColumn::class], 'email', + 'originator.username', ]; foreach ($profileFieldsColumns as $profileField) { $columns[] = [ diff --git a/protected/humhub/modules/user/models/User.php b/protected/humhub/modules/user/models/User.php index 89c56dcb33..2aa62d6f85 100644 --- a/protected/humhub/modules/user/models/User.php +++ b/protected/humhub/modules/user/models/User.php @@ -281,6 +281,7 @@ class User extends ContentContainerActiveRecord implements IdentityInterface, Se 'updated_by' => Yii::t('UserModule.base', 'Updated by'), 'last_login' => Yii::t('UserModule.base', 'Last Login'), 'visibility' => Yii::t('UserModule.base', 'Visibility'), + 'originator.username' => Yii::t('UserModule.base', 'Invited by'), ]; } @@ -342,6 +343,11 @@ class User extends ContentContainerActiveRecord implements IdentityInterface, Se return $this->hasOne(Profile::class, ['user_id' => 'id']); } + public function getOriginator() + { + return $this->hasOne(User::class, ['id' => 'user_originator_id'])->viaTable(Invite::tableName(), ['email' => 'email']); + } + /** * Returns all GroupUser relations of this user as ActiveQuery * @return \yii\db\ActiveQuery From 9b7ec58bbfda7635d3fd2e938dda1dbd87deb6d2 Mon Sep 17 00:00:00 2001 From: Yuriy Bakhtin Date: Fri, 28 Jan 2022 15:24:57 +0300 Subject: [PATCH 05/67] =?UTF-8?q?Allow=20to=20define=20actions=20in=20a=20?= =?UTF-8?q?controller=20which=20should=20not=20be=20intercept=E2=80=A6=20(?= =?UTF-8?q?#4966)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Allow to define actions in a controller which should not be intercepted by other actions * Update Controller.php * Configure controller `live/poll` for not intercepted actions Co-authored-by: Lucas Bartholemy --- CHANGELOG_DEV.md | 2 +- protected/humhub/components/Controller.php | 32 +++++++++++++++++++ .../live/controllers/PollController.php | 4 +++ .../user/controllers/AccountController.php | 5 +++ .../user/controllers/AuthController.php | 5 +++ 5 files changed, 47 insertions(+), 1 deletion(-) diff --git a/CHANGELOG_DEV.md b/CHANGELOG_DEV.md index 6f1ed0b38e..3f9b62e939 100644 --- a/CHANGELOG_DEV.md +++ b/CHANGELOG_DEV.md @@ -1,6 +1,5 @@ 1.11.0-beta.1 (March 1, 2022 - UNRELEASED) ------------------------------------------ - - Fix #5434: Hide disabled next/prev buttons on guide first/last steps - Fix #5456: `canImpersonate` only possible for SystemAdmins - Enh #5472: New interface `TabbedFormModel` for activate first tab with error input @@ -8,3 +7,4 @@ - Enh #5471: On the pending approval page, add grouped actions and custom columns - Enh #5490: Display confirmation message before display embedded content - Enh #5258: Display who invited the user on the Approval page +- Enh #4890: Allow to define actions in a controller which should not be intercepted by other actions diff --git a/protected/humhub/components/Controller.php b/protected/humhub/components/Controller.php index a4f4841ae2..1e541bfb8b 100644 --- a/protected/humhub/components/Controller.php +++ b/protected/humhub/components/Controller.php @@ -59,6 +59,12 @@ class Controller extends \yii\web\Controller */ protected $access = StrictAccess::class; + /** + * @var string[] List of action ids which should not be intercepted by another actions. Use '*' for all action ids. + * @since 1.9 + */ + protected $doNotInterceptActionIds = []; + /** * Returns access rules for the standard access control behavior. * @@ -284,4 +290,30 @@ class Controller extends \yii\web\Controller \humhub\widgets\TopMenu::setViewState(); } } + + /** + * Check if action cannot be intercepted + * + * @since 1.9 + * @param string|null $actionId, NULL - to use current action + * @return bool + */ + public function isNotInterceptedAction(string $actionId = null) : bool + { + if ($actionId === null) { + if (isset($this->action->id)) { + $actionId = $this->action->id; + } else { + return false; + } + } + + foreach ($this->doNotInterceptActionIds as $doNotInterceptActionId) { + if ($doNotInterceptActionId === '*' || $doNotInterceptActionId === $actionId) { + return true; + } + } + + return false; + } } diff --git a/protected/humhub/modules/live/controllers/PollController.php b/protected/humhub/modules/live/controllers/PollController.php index 7a66018888..06250c7bf6 100644 --- a/protected/humhub/modules/live/controllers/PollController.php +++ b/protected/humhub/modules/live/controllers/PollController.php @@ -25,6 +25,10 @@ use humhub\modules\live\components\LiveEvent; */ class PollController extends Controller { + /** + * @inheritdoc + */ + protected $doNotInterceptActionIds = ['*']; /** * @var int maximum events by query diff --git a/protected/humhub/modules/user/controllers/AccountController.php b/protected/humhub/modules/user/controllers/AccountController.php index a67150b4f0..568c234547 100644 --- a/protected/humhub/modules/user/controllers/AccountController.php +++ b/protected/humhub/modules/user/controllers/AccountController.php @@ -32,6 +32,11 @@ use humhub\modules\user\models\forms\AccountDelete; class AccountController extends BaseAccountController { + /** + * @inheritdoc + */ + protected $doNotInterceptActionIds = ['delete']; + /** * @inheritdoc */ diff --git a/protected/humhub/modules/user/controllers/AuthController.php b/protected/humhub/modules/user/controllers/AuthController.php index e34de0afcd..50c80a9e99 100644 --- a/protected/humhub/modules/user/controllers/AuthController.php +++ b/protected/humhub/modules/user/controllers/AuthController.php @@ -54,6 +54,11 @@ class AuthController extends Controller */ public $access = ControllerAccess::class; + /** + * @inheritdoc + */ + protected $doNotInterceptActionIds = ['*']; + /** * @inheritdoc */ From d1a387137c3c6809f0a6500c25e4930498cbf0c9 Mon Sep 17 00:00:00 2001 From: s-tyshchenko Date: Mon, 31 Jan 2022 18:32:00 +0200 Subject: [PATCH 06/67] oEmbed for Facebook, Instagram and Twitter (#5510) * oEmbed for FB, Inst and Twitter - Support of oEmbed for Twitter, Facebook and Instagram - Redesigned of oEmbed settings pages - Added dynamic endpoint parameters inputs * Migration and tests - Migration: keep oEmbed providers already defined by users - Adapted unit tests * Access token required - If an Access Token param is used in the Endpoint URL and is empty, we indicate that the configuration is incomplete - Adapted Unit Tests --- CHANGELOG_DEV.md | 1 + protected/humhub/events/OembedFetchEvent.php | 6 +- .../m220121_193617_oembed_setting_update.php | 97 + protected/humhub/models/UrlOembed.php | 12 +- .../admin/controllers/SettingController.php | 27 +- .../admin/models/forms/OEmbedProviderForm.php | 16 +- .../modules/admin/views/setting/oembed.php | 40 +- .../admin/views/setting/oembed_edit.php | 86 +- .../codeception/fixtures/data/setting.php | 39 +- .../codeception/unit/models/UrlOembedTest.php | 9 +- static/less/oembed.less | 46 +- themes/HumHub/css/theme.css | 5486 ++++++++++++++++- 12 files changed, 5822 insertions(+), 43 deletions(-) create mode 100644 protected/humhub/migrations/m220121_193617_oembed_setting_update.php diff --git a/CHANGELOG_DEV.md b/CHANGELOG_DEV.md index 3f9b62e939..aa6585725b 100644 --- a/CHANGELOG_DEV.md +++ b/CHANGELOG_DEV.md @@ -8,3 +8,4 @@ - Enh #5490: Display confirmation message before display embedded content - Enh #5258: Display who invited the user on the Approval page - Enh #4890: Allow to define actions in a controller which should not be intercepted by other actions +- Enh #5510: oEmbed support for other social networks, redesign of oEmbed settings pages \ No newline at end of file diff --git a/protected/humhub/events/OembedFetchEvent.php b/protected/humhub/events/OembedFetchEvent.php index 75ac0e65d9..26b4fd2e37 100644 --- a/protected/humhub/events/OembedFetchEvent.php +++ b/protected/humhub/events/OembedFetchEvent.php @@ -40,9 +40,9 @@ class OembedFetchEvent extends Event private function getProviderUrl() { - foreach ($this->providers as $url => $endpoint) { - if (strpos($this->url, $url) !== false) { - return str_replace("%url%", urlencode($this->url), $endpoint); + foreach ($this->providers as $providerName => $provider) { + if (preg_match($provider['pattern'], $this->url)) { + return str_replace("%url%", urlencode($this->url), $provider['endpoint']); } } return ''; diff --git a/protected/humhub/migrations/m220121_193617_oembed_setting_update.php b/protected/humhub/migrations/m220121_193617_oembed_setting_update.php new file mode 100644 index 0000000000..16bc2a1ba5 --- /dev/null +++ b/protected/humhub/migrations/m220121_193617_oembed_setting_update.php @@ -0,0 +1,97 @@ + [ + 'pattern' => '/facebook\.com\/(.*)(video)/', + 'endpoint' => 'https://graph.facebook.com/v12.0/oembed_video?url=%url%&access_token=' + ], + 'Facebook Post' => [ + 'pattern' => '/facebook\.com\/(.*)(post|activity|photo|permalink|media|question|note)/', + 'endpoint' => 'https://graph.facebook.com/v12.0/oembed_post?url=%url%&access_token=' + ], + 'Facebook Page' => [ + 'pattern' => '/^(https\:\/\/)*(www\.)*facebook\.com\/((?!video|post|activity|photo|permalink|media|question|note).)*$/', + 'endpoint' => 'https://graph.facebook.com/v12.0/oembed_post?url=%url%&access_token=' + ], + 'Instagram' => [ + 'pattern' => '/instagram\.com/', + 'endpoint' => 'https://graph.facebook.com/v12.0/instagram_oembed?url=%url%&access_token=' + ], + 'Twitter' => [ + 'pattern' => '/twitter\.com/', + 'endpoint' => 'https://publish.twitter.com/oembed?url=%url%&maxwidth=450' + ], + 'YouTube' => [ + 'pattern' => '/youtube\.com|youtu.be/', + 'endpoint' => 'https://www.youtube.com/oembed?scheme=https&url=%url%&format=json&maxwidth=450' + ], + 'Soundcloud' => [ + 'pattern' => '/soundcloud\.com/', + 'endpoint' => 'https://soundcloud.com/oembed?url=%url%&format=json&maxwidth=450' + ], + 'Vimeo' => [ + 'pattern' => '/vimeo\.com/', + 'endpoint' => 'https://vimeo.com/api/oembed.json?scheme=https&url=%url%&format=json&maxwidth=450' + ], + 'SlideShare' => [ + 'pattern' => '/slideshare\.net/', + 'endpoint' => 'https://www.slideshare.net/api/oembed/2?url=%url%&format=json&maxwidth=450' + ] + ]; + + foreach (\humhub\models\UrlOembed::getProviders() as $providerUrl => $providerEndpoint) + { + $providerExists = false; + + foreach ($oembedProviders as $provider) { + if(preg_match($provider['pattern'], $providerUrl)) { + $providerExists = true; + } + } + + if(!$providerExists) { + $oembedProviders[$providerUrl] = [ + 'pattern' => '/' . str_replace('.', '\.', $providerUrl) . '/', + 'endpoint' => $providerEndpoint + ]; + } + } + + $this->update('setting', ['value' => Json::encode($oembedProviders)], ['name' => 'oembedProviders', 'module_id' => 'base']); + + Yii::$app->settings->set('oembedProviders', Json::encode($oembedProviders)); + } + + /** + * {@inheritdoc} + */ + public function down() + { + $oembedProvidersJson = Json::encode([ + 'twitter.com' => 'https://publish.twitter.com/oembed?url=%url%&maxwidth=450', + 'instagram.com' => 'https://graph.facebook.com/v12.0/instagram_oembed?url=%url%&access_token=', + 'vimeo.com' => 'https://vimeo.com/api/oembed.json?scheme=https&url=%url%&format=json&maxwidth=450', + 'youtube.com' => 'https://www.youtube.com/oembed?scheme=https&url=%url%&format=json&maxwidth=450', + 'youtu.be' => 'https://www.youtube.com/oembed?scheme=https&url=%url%&format=json&maxwidth=450', + 'soundcloud.com' => 'https://soundcloud.com/oembed?url=%url%&format=json&maxwidth=450', + 'slideshare.net' => 'https://www.slideshare.net/api/oembed/2?url=%url%&format=json&maxwidth=450', + ]); + + $this->update('setting', ['value' => $oembedProvidersJson], ['name' => 'oembedProviders', 'module_id' => 'base']); + + Yii::$app->settings->set('oembedProviders', $oembedProvidersJson); + } +} diff --git a/protected/humhub/models/UrlOembed.php b/protected/humhub/models/UrlOembed.php index 76acee3c7d..a4d0ed429a 100644 --- a/protected/humhub/models/UrlOembed.php +++ b/protected/humhub/models/UrlOembed.php @@ -117,9 +117,9 @@ class UrlOembed extends ActiveRecord */ public function getProviderUrl() { - foreach (static::getProviders() as $providerBaseUrl => $providerAPI) { - if (strpos($this->url, $providerBaseUrl) !== false) { - return str_replace("%url%", urlencode($this->url), $providerAPI); + foreach (static::getProviders() as $provider) { + if (preg_match($provider['pattern'], $this->url)) { + return str_replace("%url%", urlencode($this->url), $provider['endpoint']); } } return null; @@ -360,9 +360,9 @@ class UrlOembed extends ActiveRecord */ public static function getProviderByUrl($url) { - foreach (static::getProviders() as $providerBaseUrl => $providerAPI) { - if (strpos($url, $providerBaseUrl) !== false) { - return $providerBaseUrl; + foreach (static::getProviders() as $provider) { + if (preg_match($provider['pattern'], $url)) { + return $provider['endpoint']; } } diff --git a/protected/humhub/modules/admin/controllers/SettingController.php b/protected/humhub/modules/admin/controllers/SettingController.php index df6c84773a..be60c7b4fc 100644 --- a/protected/humhub/modules/admin/controllers/SettingController.php +++ b/protected/humhub/modules/admin/controllers/SettingController.php @@ -28,6 +28,7 @@ use humhub\models\UrlOembed; use humhub\modules\admin\components\Controller; use humhub\modules\admin\models\Log; use humhub\modules\notification\models\forms\NotificationSettings; +use yii\base\BaseObject; /** * SettingController @@ -358,19 +359,23 @@ class SettingController extends Controller { $form = new OEmbedProviderForm; - $prefix = Yii::$app->request->get('prefix'); + $name = Yii::$app->request->get('name'); $providers = UrlOembed::getProviders(); - if (isset($providers[$prefix])) { - $form->prefix = $prefix; - $form->endpoint = $providers[$prefix]; + if (isset($providers[$name])) { + $form->name = $name; + $form->endpoint = $providers[$name]['endpoint']; + $form->pattern = $providers[$name]['pattern']; } if ($form->load(Yii::$app->request->post()) && $form->validate()) { - if ($prefix && isset($providers[$prefix])) { - unset($providers[$prefix]); + if ($name && isset($providers[$name])) { + unset($providers[$name]); } - $providers[$form->prefix] = $form->endpoint; + $providers[$form->name] = [ + 'endpoint' => $form->endpoint, + 'pattern' => $form->pattern + ]; UrlOembed::setProviders($providers); return $this->redirect( @@ -382,7 +387,7 @@ class SettingController extends Controller return $this->render('oembed_edit', [ 'model' => $form, - 'prefix' => $prefix + 'name' => $name ]); } @@ -392,11 +397,11 @@ class SettingController extends Controller public function actionOembedDelete() { $this->forcePostRequest(); - $prefix = Yii::$app->request->get('prefix'); + $name = Yii::$app->request->get('name'); $providers = UrlOembed::getProviders(); - if (isset($providers[$prefix])) { - unset($providers[$prefix]); + if (isset($providers[$name])) { + unset($providers[$name]); UrlOembed::setProviders($providers); } return $this->redirect([ diff --git a/protected/humhub/modules/admin/models/forms/OEmbedProviderForm.php b/protected/humhub/modules/admin/models/forms/OEmbedProviderForm.php index 00d38fc9b5..9c52cfed80 100644 --- a/protected/humhub/modules/admin/models/forms/OEmbedProviderForm.php +++ b/protected/humhub/modules/admin/models/forms/OEmbedProviderForm.php @@ -11,8 +11,10 @@ use Yii; class OEmbedProviderForm extends \yii\base\Model { - public $prefix; + public $name; public $endpoint; + public $pattern; + public $access_token; /** * Declares the validation rules. @@ -20,9 +22,13 @@ class OEmbedProviderForm extends \yii\base\Model public function rules() { return [ - ['prefix', 'safe'], - [['prefix', 'endpoint'], 'required'], + [['name', 'pattern', 'endpoint'], 'string'], + [['name', 'pattern', 'endpoint'], 'required'], ['endpoint', 'url'], + ['access_token', 'required', 'when' => function($model) { + parse_str($model->endpoint, $query); + return isset($query['access_token']); + }] ]; } @@ -34,8 +40,10 @@ class OEmbedProviderForm extends \yii\base\Model public function attributeLabels() { return [ - 'prefix' => Yii::t('AdminModule.settings', 'Url Prefix'), + 'name' => Yii::t('AdminModule.settings', 'Provider Name'), 'endpoint' => Yii::t('AdminModule.settings', 'Endpoint Url'), + 'pattern' => Yii::t('AdminModule.settings', 'Url Pattern'), + 'access_token' => Yii::t('AdminModule.settings', 'Access Token'), ]; } diff --git a/protected/humhub/modules/admin/views/setting/oembed.php b/protected/humhub/modules/admin/views/setting/oembed.php index d2108587b8..68e6a919b2 100644 --- a/protected/humhub/modules/admin/views/setting/oembed.php +++ b/protected/humhub/modules/admin/views/setting/oembed.php @@ -5,9 +5,15 @@ use humhub\modules\ui\form\widgets\ActiveForm; use humhub\widgets\Button; use yii\helpers\Html; use yii\helpers\Url; +use yii\web\View; /* @var array $providers */ /* @var OEmbedSettingsForm $settings */ + +$this->registerJs(<< beginContent('@admin/views/setting/_advancedLayout.php') ?> @@ -19,20 +25,42 @@ use yii\helpers\Url;

-
    - $providerOEmbedAPI) : ?> -
  • $providerUrl]), ['data-method' => 'POST']); ?>
  • +
    + $provider) : ?> +
    +
    + +
    + + + + + + + + + +
    + + $providerName]), ['data-method' => 'POST', 'class' => 'btn btn-xs btn-link']); ?> + +
    +
    -
+

+
+ - field($settings, 'requestConfirmation')->checkbox() ?> +field($settings, 'requestConfirmation')->checkbox() ?> - submit() ?> +submit() ?> diff --git a/protected/humhub/modules/admin/views/setting/oembed_edit.php b/protected/humhub/modules/admin/views/setting/oembed_edit.php index 2bfdfb9d52..e9b2d718cc 100644 --- a/protected/humhub/modules/admin/views/setting/oembed_edit.php +++ b/protected/humhub/modules/admin/views/setting/oembed_edit.php @@ -1,11 +1,72 @@ endpoint, $query); + +$this->registerJs(<<' + label + '' + + '' + + ''; + + $('#endpoint-parameters').append(formGroup); + } + } + + $('input[data-param-name]').on('input change', composeEndpoint); + } + + function composeEndpoint() { + var endpointInput = $('#oembedproviderform-endpoint'); + var url = new URL(endpointInput.val()); + + $('.endpoint-param').each(function (index) { + url.searchParams.set($(this).attr('data-param-name'), $(this).val()); + }); + + endpointInput.val(url.toString()); + } + + $('#oembedproviderform-endpoint').on('input change', function () { + initEndpointInputs(); + }); + + $('#oembed-provider-form').on('submit', function () { + composeEndpoint(); + }); + +JS, View::POS_END); + +$this->registerJs(<< beginContent('@admin/views/setting/_advancedLayout.php') ?> @@ -14,7 +75,7 @@ use humhub\modules\ui\form\widgets\ActiveForm;

- 'authentication-settings-form', 'acknowledge' => true]); ?> + 'oembed-provider-form', 'acknowledge' => true]); ?> errorSummary($model); ?> -field($model, 'prefix')->textInput(['class' => 'form-control']); ?> -

+field($model, 'name')->textInput(['class' => 'form-control']); ?> + +field($model, 'pattern')->textInput(['class' => 'form-control']); ?> +

field($model, 'endpoint')->textInput(['class' => 'form-control']); ?>

+ + field($model, 'access_token')->textInput(['class' => 'form-control endpoint-param', 'data-param-name' => 'access_token', 'value' => $query['access_token']]) ?> + + +
+ 'btn btn-primary', 'data-ui-loader' => ""]); ?> - - $prefix]), ['class' => 'btn btn-danger pull-right', 'data-method' => 'POST']); ?> + + $name]), ['class' => 'btn btn-danger pull-right', 'data-method' => 'POST']); ?> + endContent(); ?> diff --git a/protected/humhub/tests/codeception/fixtures/data/setting.php b/protected/humhub/tests/codeception/fixtures/data/setting.php index 658380dcdd..e9fc23faf8 100644 --- a/protected/humhub/tests/codeception/fixtures/data/setting.php +++ b/protected/humhub/tests/codeception/fixtures/data/setting.php @@ -25,7 +25,44 @@ return [ ['name' => 'colorInfo', 'value' => '#6fdbe8', 'module_id' => 'base'], ['name' => 'colorSuccess', 'value' => '#97d271', 'module_id' => 'base'], ['name' => 'colorDanger', 'value' => '#ff8989', 'module_id' => 'base'], - ['name' => 'oembedProviders', 'value' => '{"vimeo.com":"http:\/\/vimeo.com\/api\/oembed.json?scheme=https&url=%url%&format=json&maxwidth=450","youtube.com":"http:\/\/www.youtube.com\/oembed?scheme=https&url=%url%&format=json&maxwidth=450","youtu.be":"http:\/\/www.youtube.com\/oembed?scheme=https&url=%url%&format=json&maxwidth=450","soundcloud.com":"https:\/\/soundcloud.com\/oembed?url=%url%&format=json&maxwidth=450","slideshare.net":"https:\/\/www.slideshare.net\/api\/oembed\/2?url=%url%&format=json&maxwidth=450"}', 'module_id' => 'base'], + ['name' => 'oembedProviders', 'value' => json_encode([ + 'Facebook Video' => [ + 'pattern' => '/facebook\.com\/(.*)(video)/', + 'endpoint' => 'https://graph.facebook.com/v12.0/oembed_video?url=%url%&access_token=' + ], + 'Facebook Post' => [ + 'pattern' => '/facebook\.com\/(.*)(post|activity|photo|permalink|media|question|note)/', + 'endpoint' => 'https://graph.facebook.com/v12.0/oembed_post?url=%url%&access_token=' + ], + 'Facebook Page' => [ + 'pattern' => '/^(https\:\/\/)*(www\.)*facebook\.com\/((?!video|post|activity|photo|permalink|media|question|note).)*$/', + 'endpoint' => 'https://graph.facebook.com/v12.0/oembed_post?url=%url%&access_token=' + ], + 'Instagram' => [ + 'pattern' => '/instagram\.com/', + 'endpoint' => 'https://graph.facebook.com/v12.0/instagram_oembed?url=%url%&access_token=' + ], + 'Twitter' => [ + 'pattern' => '/twitter\.com/', + 'endpoint' => 'https://publish.twitter.com/oembed?url=%url%&maxwidth=450' + ], + 'YouTube' => [ + 'pattern' => '/youtube\.com|youtu.be/', + 'endpoint' => 'https://www.youtube.com/oembed?scheme=https&url=%url%&format=json&maxwidth=450' + ], + 'Soundcloud' => [ + 'pattern' => '/soundcloud\.com/', + 'endpoint' => 'https://soundcloud.com/oembed?url=%url%&format=json&maxwidth=450' + ], + 'Vimeo' => [ + 'pattern' => '/vimeo\.com/', + 'endpoint' => 'https://vimeo.com/api/oembed.json?scheme=https&url=%url%&format=json&maxwidth=450' + ], + 'SlideShare' => [ + 'pattern' => '/slideshare\.net/', + 'endpoint' => 'https://www.slideshare.net/api/oembed/2?url=%url%&format=json&maxwidth=450' + ] + ]), 'module_id' => 'base'], ['name' => 'defaultLanguage', 'value' => 'en-US', 'module_id' => 'base'], ['name' => 'maintenanceMode', 'value' => '0', 'module_id' => 'base'], ['name' => 'enableProfilePermissions', 'value' => '1', 'module_id' => 'user'], diff --git a/protected/humhub/tests/codeception/unit/models/UrlOembedTest.php b/protected/humhub/tests/codeception/unit/models/UrlOembedTest.php index c0fdd3ccfb..cb514a9bed 100644 --- a/protected/humhub/tests/codeception/unit/models/UrlOembedTest.php +++ b/protected/humhub/tests/codeception/unit/models/UrlOembedTest.php @@ -12,7 +12,12 @@ class UrlOembedTest extends HumHubDbTestCase { parent::_before(); UrlOembedMock::setClient(new UrlOembedClientMock()); - UrlOembedMock::setProviders(['test.de' => UrlOembedMock::TEST_PROVIDER_URL_PREFIX.'%url%']); + UrlOembedMock::setProviders([ + 'Test.de' => [ + 'pattern' => '/test\.de/', + 'endpoint' => UrlOembedMock::TEST_PROVIDER_URL_PREFIX.'%url%' + ] + ]); UrlOembedMock::flush(); } @@ -124,4 +129,4 @@ class UrlOembedTest extends HumHubDbTestCase } -} \ No newline at end of file +} diff --git a/static/less/oembed.less b/static/less/oembed.less index 8f43b3b963..7bb6cf43b3 100644 --- a/static/less/oembed.less +++ b/static/less/oembed.less @@ -49,4 +49,48 @@ top: -8px; } } -} \ No newline at end of file +} + +#oembed-providers { + width: 100%; + display: flex; + flex-direction: row; + justify-content: left; + align-items: center; + flex-wrap: wrap; + margin: 0 -0.5rem; + + .oembed-provider-container { + padding: 0; + + .oembed-provider { + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: center; + border: 1px solid #ddd; + border-radius: 2px; + padding: 0.75rem; + margin: 0 0.5rem 0.5rem 0.5rem; + + .oembed-provider-name { + display: flex; + justify-content: center; + align-items: center; + + .label.label-error { + margin-left: 2px; + } + } + } + } +} + +#endpoint-parameters { + display: flex; + flex-direction: row; + justify-content: left; + align-items: center; + flex-wrap: wrap; + margin: 0 -15px; +} diff --git a/themes/HumHub/css/theme.css b/themes/HumHub/css/theme.css index cd107cded9..32498b01c0 100644 --- a/themes/HumHub/css/theme.css +++ b/themes/HumHub/css/theme.css @@ -1 +1,5485 @@ -.colorDefault{color:#f3f3f3}.backgroundDefault{background:#f3f3f3}.borderDefault{border-color:#f3f3f3}.colorPrimary{color:#435f6f !important}.backgroundPrimary{background:#435f6f !important}.borderPrimary{border-color:#435f6f !important}.colorInfo{color:#21A1B3 !important}.backgroundInfo{background:#21A1B3 !important}.borderInfo{border-color:#21A1B3 !important}.colorLink{color:#21A1B3 !important}.colorSuccess{color:#97d271 !important}.backgroundSuccess{background:#97d271 !important}.borderSuccess{border-color:#97d271 !important}.colorWarning{color:#FFC107 !important}.backgroundWarning{background:#FFC107 !important}.borderWarning{border-color:#FFC107 !important}.colorDanger{color:#FC4A64 !important}.backgroundDanger{background:#FC4A64 !important}.borderDanger{border-color:#FC4A64 !important}.colorFont1{color:#bac2c7 !important}.colorFont2{color:#7a7a7a !important}.colorFont3{color:#000 !important}.colorFont4{color:#555555 !important}.colorFont5{color:#aeaeae !important}.heading{font-size:16px;font-weight:300;color:#000;background-color:white;border:none;padding:10px}.text-center{text-align:center !important}.text-break{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.img-rounded{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}body{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;padding-top:130px;background-color:#ededed;color:#555;font-family:'Open Sans',sans-serif}body a,body a:hover,body a:focus,body a:active,body a.active{color:#000;text-decoration:none}a:hover{text-decoration:none}hr{margin-top:10px;margin-bottom:10px}.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{position:inherit}.layout-nav-container{padding:0 0 0 15px}.layout-sidebar-container{padding:0 15px 0 0}@media (max-width:768px){.layout-nav-container{padding:0 15px}.layout-nav-container .left-navigation{margin-bottom:0}}h4{font-weight:300;font-size:150%}input[type=text],input[type=password],input[type=select]{-webkit-appearance:none;-moz-appearance:none;appearance:none}.powered,.powered a{color:#b8c7d3 !important}.langSwitcher{display:inline-block}[data-ui-show-more]{overflow:hidden}@media (min-width:768px) and (max-width:991px){.layout-nav-container{padding:0 15px}body{padding-top:120px}}@media print{#topbar-first,#topbar-second{display:none}}span.likeLinkContainer .like.disabled,span.likeLinkContainer .unlike.disabled{pointer-events:none;cursor:default;text-decoration:none;color:lightgrey}.panel-body a[data-toggle],.modal-body a[data-toggle]{color:#21A1B3}.showMore{font-size:13px}.table-responsive{word-wrap:normal;overflow-wrap:normal;word-break:normal;-moz-hyphens:none;hyphens:none}.topbar{position:fixed;display:block;height:50px;width:100%;padding-left:15px;padding-right:15px}.topbar ul.nav{float:left}.topbar ul.nav>li{float:left}.topbar ul.nav>li>a{padding-top:15px;padding-bottom:15px;line-height:20px}.topbar .dropdown-footer{margin:10px}.topbar .dropdown-header{font-size:16px;padding:3px 10px;margin-bottom:10px;font-weight:300;color:#555555}.topbar .dropdown-header .dropdown-header-link{position:absolute;top:2px;right:10px}.topbar .dropdown-header .dropdown-header-link a{color:#21A1B3 !important;font-size:12px;font-weight:normal}.topbar .dropdown-header:hover{color:#555555}#topbar-first{background-color:#435f6f;top:0;z-index:1030;color:white}#topbar-first a.navbar-brand{height:50px;padding:5px}#topbar-first a.navbar-brand img#img-logo{max-height:40px}#topbar-first a.navbar-brand-text{padding-top:15px}#topbar-first .nav>li>a:hover,#topbar-first .nav>.open>a{background-color:#567a8f}#topbar-first .nav>.account{height:50px;margin-left:20px}#topbar-first .nav>.account img{margin-left:10px}#topbar-first .nav>.account .dropdown-toggle{padding:10px 5px 8px;line-height:1.1em;text-align:left}#topbar-first .nav>.account .dropdown-toggle span{font-size:12px}#topbar-first .topbar-brand{position:relative;z-index:2}#topbar-first .topbar-actions{position:relative;z-index:3}#topbar-first .notifications{position:absolute;left:0;right:0;text-align:center;z-index:1}#topbar-first .notifications .btn-group{position:relative;text-align:left}#topbar-first .notifications .btn-group>a{padding:5px 10px;margin:10px 2px;display:inline-block;border-radius:2px;text-decoration:none;text-align:left}#topbar-first .notifications .btn-group>.label{position:absolute;top:4px;right:-2px}#topbar-first .notifications .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;border-width:10px;content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff;z-index:1035}#topbar-first .notifications .arrow{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;z-index:1001;border-width:11px;left:50%;margin-left:-18px;border-top-width:0;border-bottom-color:rgba(0,0,0,0.15);top:-19px;z-index:1035}#topbar-first .notifications .dropdown-menu{width:350px;margin-left:-148px}#topbar-first .notifications .dropdown-menu ul.media-list{max-height:400px;overflow:auto}#topbar-first .notifications .dropdown-menu li{position:relative}#topbar-first .notifications .dropdown-menu li i.approval{position:absolute;left:2px;top:36px;font-size:14px}#topbar-first .notifications .dropdown-menu li i.accepted{color:#5cb85c}#topbar-first .notifications .dropdown-menu li i.declined{color:#d9534f}#topbar-first .notifications .dropdown-menu li .media{position:relative}#topbar-first .notifications .dropdown-menu li .media .img-space{position:absolute;top:14px;left:14px}#topbar-first .dropdown-footer{margin:10px 10px 5px}#topbar-first a{color:white}#topbar-first .caret{border-top-color:#fff}#topbar-first .btn-group>a{background-color:#4d6d7f}#topbar-first .btn-enter{background-color:#4d6d7f;margin:6px 0}#topbar-first .btn-enter:hover{background-color:#527588}#topbar-first .media-list a{color:#000;padding:0}#topbar-first .media-list li{color:#000}#topbar-first .media-list li i.accepted{color:#21A1B3 !important}#topbar-first .media-list li i.declined{color:#FC4A64 !important}#topbar-first .media-list li.placeholder{border-bottom:none}#topbar-first .media-list .media .media-body .label{padding:.1em .5em}#topbar-first .account .user-title{text-align:right}#topbar-first .account .user-title span{color:#d7d7d7}#topbar-first .dropdown.account>a,#topbar-first .dropdown.account.open>a,#topbar-first .dropdown.account>a:hover,#topbar-first .dropdown.account.open>a:hover{background-color:#435f6f}#topbar-second{top:50px;background-color:#fff;z-index:1029;background-image:none;-webkit-box-shadow:0 1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,0.1);box-shadow:0 1px 10px rgba(0,0,0,0.1);border-bottom:1px solid #d4d4d4}#topbar-second .dropdown-menu{padding-top:0;padding-bottom:0}#topbar-second .dropdown-menu .divider{margin:0}#topbar-second #space-menu-dropdown,#topbar-second #search-menu-dropdown{width:400px}#topbar-second #space-menu-dropdown .media-list,#topbar-second #search-menu-dropdown .media-list{max-height:400px;overflow:auto}@media screen and (max-width:768px){#topbar-second #space-menu-dropdown .media-list,#topbar-second #search-menu-dropdown .media-list{max-height:200px}}#topbar-second #space-menu-dropdown form,#topbar-second #search-menu-dropdown form{margin:10px}#topbar-second #space-menu-dropdown .search-reset,#topbar-second #search-menu-dropdown .search-reset{position:absolute;color:#BFBFBF;margin:7px;top:0px;right:40px;z-index:10;display:none;cursor:pointer}#topbar-second .nav>li>a{padding:7px 13px 0;text-decoration:none;text-shadow:none;font-weight:600;font-size:10px;min-height:50px;text-transform:uppercase;text-align:center}#topbar-second .nav>li>a:hover,#topbar-second .nav>li>a:active,#topbar-second .nav>li>a:focus{border-bottom:3px solid #21A1B3;background-color:#f7f7f7;color:#000;text-decoration:none}#topbar-second .nav>li>a i{font-size:14px}#topbar-second .nav>li>a .caret{border-top-color:#7a7a7a}#topbar-second .nav>li.active>a{min-height:47px}#topbar-second .nav>li>ul>li>a{border-left:3px solid #fff;background-color:#fff;color:#000}#topbar-second .nav>li>ul>li>a:hover,#topbar-second .nav>li>ul>li>a.active{border-left:3px solid #21A1B3;background-color:#f7f7f7;color:#000}#topbar-second .nav>li>a#space-menu{padding-right:13px;border-right:1px solid #ededed}#topbar-second .nav>li>a#search-menu{padding-top:15px}#topbar-second .nav>li>a:hover,#topbar-second .nav>li.active{border-bottom:3px solid #21A1B3;background-color:#f7f7f7;color:#000}#topbar-second .nav>li.active>a:hover,#topbar-second .nav>li.active>a:focus{border-bottom:none}#topbar-second #space-menu-dropdown li>ul>li>a>.media .media-body p{color:#555555;font-size:11px;margin:0;font-weight:400}@media (max-width:767px){.topbar{padding-left:0;padding-right:0}}.login-container{background-color:#435f6f;background-image:linear-gradient(to right, #435f6f 0%, #567a8f 50%, #567a8f 100%),linear-gradient(to right, #4d6d7f 0%, #7fa0b2 51%, #7094a8 100%);background-size:100% 100%;position:relative;padding-top:40px}.login-container #img-logo{max-width:100%}.login-container .text{color:#fff;font-size:12px;margin-bottom:15px}.login-container .text a{color:#fff;text-decoration:underline}.login-container .panel a{color:#21A1B3}.login-container h1,.login-container h2{color:#fff !important}.login-container .panel{box-shadow:0 0 15px #627d92;-moz-box-shadow:0 0 15px #627d92;-webkit-box-shadow:0 0 15px #627d92}.login-container .panel .panel-heading,.login-container .panel .panel-body{padding:15px}.login-container .panel h1,.login-container .panel h2{color:#555 !important}.login-container select{color:#000}#account-login-form .form-group{margin-bottom:10px}.dropdown-menu li a i{margin-right:5px;font-size:14px;display:inline-block;width:14px}.dropdown-menu li a:hover,.dropdown-menu li a:visited,.dropdown-menu li a:hover,.dropdown-menu li a:focus{background:none;cursor:pointer}.dropdown-menu li:hover,.dropdown-menu li.selected{color:#000}.dropdown-menu li:first-child{margin-top:3px}.dropdown-menu li:last-child{margin-bottom:3px}.modal .dropdown-menu,.panel .dropdown-menu,.nav-tabs .dropdown-menu{border:1px solid #d7d7d7}.modal .dropdown-menu li.divider,.panel .dropdown-menu li.divider,.nav-tabs .dropdown-menu li.divider{background-color:#f7f7f7;border-bottom:none;margin:9px 1px !important}.modal .dropdown-menu li,.panel .dropdown-menu li,.nav-tabs .dropdown-menu li{border-left:3px solid white}.modal .dropdown-menu li a,.panel .dropdown-menu li a,.nav-tabs .dropdown-menu li a{color:#000;font-size:13px;font-weight:600;padding:4px 15px}.modal .dropdown-menu li a i,.panel .dropdown-menu li a i,.nav-tabs .dropdown-menu li a i{margin-right:5px}.modal .dropdown-menu li a:hover,.panel .dropdown-menu li a:hover,.nav-tabs .dropdown-menu li a:hover{background:none}.modal .dropdown-menu li:hover,.panel .dropdown-menu li:hover,.nav-tabs .dropdown-menu li:hover,.modal .dropdown-menu li.selected,.panel .dropdown-menu li.selected,.nav-tabs .dropdown-menu li.selected{border-left:3px solid #21A1B3;background-color:#f7f7f7 !important}ul.contextMenu{border:1px solid #d7d7d7}ul.contextMenu li.divider{background-color:#f7f7f7;border-bottom:none;margin:9px 1px !important}ul.contextMenu li{border-left:3px solid white}ul.contextMenu li a{color:#000;font-size:14px;font-weight:400;padding:4px 15px}ul.contextMenu li a i{margin-right:5px}ul.contextMenu li a:hover{background:none}ul.contextMenu li:hover,ul.contextMenu li.selected{border-left:3px solid #21A1B3;background-color:#f7f7f7 !important}.media-list li{padding:10px;border-bottom:1px solid #eee;position:relative;border-left:3px solid white;font-size:12px}.media-list li a{color:#555}.media-list .badge-space-type{background-color:#f7f7f7;border:1px solid #d7d7d7;color:#b2b2b2;padding:3px 3px 2px 3px}.media-list li.new{border-left:3px solid #21A1B3;background-color:#c5eff4}.media-list li:hover,.media-list li.selected{background-color:#f7f7f7;border-left:3px solid #21A1B3}.media-list li.placeholder{font-size:14px !important;border-bottom:none}.media-list li.placeholder:hover{background:none !important;border-left:3px solid white}.media-left,.media>.pull-left{padding-right:0;margin-right:10px}.media:after{content:'';clear:both;display:block}.media .time{font-size:11px;color:#555555}.media .img-space{position:absolute;top:35px;left:35px}.media .media-body{overflow:hidden !important;font-size:13px;white-space:normal;word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.media .media-body h4.media-heading{font-size:14px;font-weight:500;color:#000}.media .media-body h4.media-heading a{color:#000}.media .media-body h4.media-heading small,.media .media-body h4.media-heading small a{font-size:11px;color:#555555}.media .media-body h4.media-heading .content{margin-right:35px}.media .media-body .content a{word-break:break-all}.media .media-body strong{color:#000}.media .media-body h5{color:#aeaeae;font-weight:300;margin-top:5px;margin-bottom:5px;min-height:15px}.media .media-body .module-controls{font-size:85%}.media .media-body .module-controls a{color:#21A1B3}.media .content a{color:#21A1B3}.media .content .files a{color:#000}.content span{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}#blueimp-gallery .slide img{max-height:80%}audio,canvas,progress,video{display:inline-block;vertical-align:baseline;max-width:100%;height:auto}img{image-orientation:from-image}.panel{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;border:none;background-color:#fff;box-shadow:0 0 3px #dadada;-webkit-box-shadow:0 0 3px #dadada;-moz-box-shadow:0 0 3px #dadada;border-radius:4px;position:relative;margin-bottom:15px}.panel h1{font-size:16px;font-weight:300;margin-top:0;color:#000}.panel .panel-heading{font-size:16px;font-weight:300;color:#000;background-color:white;border:none;padding:10px;border-radius:4px}.panel .panel-heading .heading-link{color:#6fdbe8 !important;font-size:.8em}.panel .panel-body{padding:10px;font-size:13px}.panel .panel-body p{color:#555}.panel .panel-body p a{color:#21A1B3}.panel .panel-body .usersearch-statuses,.panel .panel-body .spacesearch-visibilities{padding-top:5px;padding-bottom:5px}@media (min-width:992px){.panel .panel-body .usersearch-statuses,.panel .panel-body .spacesearch-visibilities{padding-top:0;padding-bottom:0;padding-left:0}}.panel .statistics .entry{margin-left:20px;font-size:12px;color:#000}.panel .statistics .entry .count{color:#21A1B3;font-weight:600;font-size:20px;line-height:.8em}.panel h3.media-heading small{font-size:75%}.panel h3.media-heading small a{color:#21A1B3}.panel-danger{border:2px solid #FC4A64}.panel-danger .panel-heading{color:#FC4A64}.panel-success{border:2px solid #97d271}.panel-success .panel-heading{color:#97d271}.panel-warning{border:2px solid #FFC107}.panel-warning .panel-heading{color:#FFC107}.panel.profile{position:relative}.panel.profile .controls{position:absolute;top:10px;right:10px}.panel.members .panel-body a img,.panel.groups .panel-body a img,.panel.follower .panel-body a img,.panel.spaces .panel-body a img{margin-bottom:5px}.panel-profile .panel-profile-header{position:relative;border:3px solid #fff;border-top-right-radius:3px;border-top-left-radius:3px}.panel-profile .panel-profile-header .img-profile-header-background{border-radius:3px;min-height:110px}.panel-profile .panel-profile-header .img-profile-data{position:absolute;height:100px;width:100%;bottom:0;left:0;padding-left:180px;padding-top:30px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;color:#fff;pointer-events:none;background:-moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(1%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0.38)));background:-webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);background:-o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);background:-ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);background:linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#94000000', GradientType=0)}.panel-profile .panel-profile-header .img-profile-data h1{font-size:30px;font-weight:100;margin-bottom:7px;color:#fff;max-width:600px;white-space:nowrap;text-overflow:ellipsis}.panel-profile .panel-profile-header .img-profile-data h2{font-size:16px;font-weight:400;margin-top:0}.panel-profile .panel-profile-header .img-profile-data h1.space{font-size:30px;font-weight:700}.panel-profile .panel-profile-header .img-profile-data h2.space{font-size:13px;font-weight:300;max-width:600px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.panel-profile .panel-profile-header .profile-user-photo-container{position:absolute;bottom:-50px;left:15px}.panel-profile .panel-profile-header .profile-user-photo-container .profile-user-photo{border:3px solid #fff;border-radius:5px}.panel-profile .panel-profile-controls{padding-left:160px}.panel.pulse,.panel.fadeIn{-webkit-animation-duration:200ms;-moz-animation-duration:200ms;animation-duration:200ms}@media (max-width:767px){.panel-profile-controls{padding-left:0 !important;padding-top:50px}.panel-profile .panel-profile-header .img-profile-data h1{font-size:20px !important;margin-bottom:2px}}.panel-body>.tab-menu{margin-left:-10px;margin-right:-10px}.installer .logo{text-align:center}.installer h2{font-weight:100}.installer .panel{margin-top:50px}.installer .panel h3{margin-top:0}.installer .powered,.installer .powered a{color:#bac2c7 !important;margin-top:10px;font-size:12px}.installer .fa{width:18px}.installer .check-ok{color:#97d271}.installer .check-warning{color:#FFC107}.installer .check-error{color:#FC4A64}.installer .prerequisites-list ul{list-style:none;padding-left:15px}.installer .prerequisites-list ul li{padding-bottom:5px}.pagination-container{text-align:center}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{background-color:#435f6f;border-color:#435f6f}.pagination>li>a,.pagination>li>span,.pagination>li>a:hover,.pagination>li>a:active,.pagination>li>a:focus{color:#000;cursor:pointer}.well-small{padding:10px;border-radius:3px}.well{border:none;box-shadow:none;background-color:#f5f5f5;margin-bottom:1px}.well hr{margin:10px 0;border-top:1px solid #d9d9d9}.well table>thead{font-size:11px}.tab-sub-menu{padding-left:10px}.tab-sub-menu li>a:hover,.tab-sub-menu li>a:focus{background-color:#f7f7f7;border-bottom-color:#ddd}.tab-sub-menu li.active>a{background-color:#fff;border-bottom-color:transparent}.nav-tabs>li>a,.nav-tabs>li>a[data-toggle]{color:#555}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus,.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{color:#000}.tab-menu{padding-top:10px;background-color:#fff}.tab-menu .nav-tabs{padding-left:10px}.tab-menu .nav-tabs li>a{padding-top:12px;border-color:#ddd;border-bottom:1px solid #ddd;background-color:#f7f7f7;max-height:41px;outline:none}.tab-menu .nav-tabs li>a:hover,.tab-menu .nav-tabs li>a:focus{padding-top:10px;border-top:3px solid #ddd}.tab-menu .nav-tabs li>a:hover{background-color:#f7f7f7}.tab-menu .nav-tabs li.active>a,.tab-menu .nav-tabs li.active>a:hover{padding-top:10px;border-top:3px solid #21A1B3}.tab-menu .nav-tabs li.active>a{background-color:#fff;border-bottom-color:transparent}ul.tab-menu{padding-top:10px;background-color:#fff;padding-left:10px}ul.tab-menu-settings li>a{padding-top:12px;border-color:#ddd;border-bottom:1px solid #ddd;background-color:#f7f7f7;max-height:41px;outline:none}ul.tab-menu-settings li>a:hover,ul.tab-menu-settings li>a:focus{padding-top:10px;border-top:3px solid #ddd !important}ul.tab-menu-settings li>a:hover{background-color:#f7f7f7}ul.tab-menu-settings li.active>a,ul.tab-menu-settings li.active>a:hover,ul.tab-menu-settings li.active>a:focus{padding-top:10px;border-top:3px solid #21A1B3 !important}ul.tab-menu-settings li.active>a{background-color:#fff;border-bottom-color:transparent !important}.nav-pills .dropdown-menu,.nav-tabs .dropdown-menu,.account .dropdown-menu{background-color:#435f6f;border:none}.nav-pills .dropdown-menu li.divider,.nav-tabs .dropdown-menu li.divider,.account .dropdown-menu li.divider{background-color:#39515f;border-bottom:none;margin:9px 1px !important}.nav-pills .dropdown-menu li,.nav-tabs .dropdown-menu li,.account .dropdown-menu li{border-left:3px solid #435f6f}.nav-pills .dropdown-menu li a,.nav-tabs .dropdown-menu li a,.account .dropdown-menu li a{color:white;font-weight:400;font-size:13px;padding:4px 15px}.nav-pills .dropdown-menu li a i,.nav-tabs .dropdown-menu li a i,.account .dropdown-menu li a i{margin-right:5px;font-size:14px;display:inline-block;width:14px}.nav-pills .dropdown-menu li a:hover,.nav-tabs .dropdown-menu li a:hover,.account .dropdown-menu li a:hover,.nav-pills .dropdown-menu li a:visited,.nav-tabs .dropdown-menu li a:visited,.account .dropdown-menu li a:visited,.nav-pills .dropdown-menu li a:hover,.nav-tabs .dropdown-menu li a:hover,.account .dropdown-menu li a:hover,.nav-pills .dropdown-menu li a:focus,.nav-tabs .dropdown-menu li a:focus,.account .dropdown-menu li a:focus{background:none}.nav-pills .dropdown-menu li:hover,.nav-tabs .dropdown-menu li:hover,.account .dropdown-menu li:hover,.nav-pills .dropdown-menu li.selected,.nav-tabs .dropdown-menu li.selected,.account .dropdown-menu li.selected{border-left:3px solid #21A1B3;color:#fff !important;background-color:#39515f !important}.nav-pills.preferences .dropdown .dropdown-toggle i{color:#21A1B3;font-size:15px;font-weight:600}.nav-pills.preferences .dropdown.open .dropdown-toggle,.nav-pills.preferences .dropdown.open .dropdown-toggle:hover{background-color:#435f6f}.nav-pills.preferences .dropdown.open .dropdown-toggle i,.nav-pills.preferences .dropdown.open .dropdown-toggle:hover i{color:#fff}.nav-pills.preferences li.divider:last-of-type{display:none}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{background-color:#435f6f}.nav-tabs{margin-bottom:10px}.list-group a [class^="fa-"],.list-group a [class*=" fa-"]{display:inline-block;width:18px}.nav-pills.preferences{position:absolute;right:10px;top:10px}.nav-pills.preferences .dropdown .dropdown-toggle{padding:2px 5px}.nav-pills.preferences .dropdown.open .dropdown-toggle,.nav-pills.preferences .dropdown.open .dropdown-toggle:hover{color:white}.nav-tabs li{font-weight:600;font-size:12px}.tab-content .tab-pane a{color:#21A1B3}.tab-content .tab-pane .form-group{margin-bottom:5px}.nav-tabs.tabs-center li{float:none;display:inline-block}.nav-tabs.tabs-small li>a{padding:5px 7px}.nav .caret,.nav .caret:hover,.nav .caret:active{border-top-color:#000;border-bottom-color:#000;height:6.928px}.nav li.dropdown>a:hover .caret,.nav li.dropdown>a:active .caret{border-top-color:#000;border-bottom-color:#000}.nav .open>a .caret,.nav .open>a:hover .caret,.nav .open>a:focus .caret{border-top-color:#000;border-bottom-color:#000}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{border-color:#ededed;color:#000}.nav .open>a .caret,.nav .open>a:hover .caret,.nav .open>a:focus .caret{color:#000}.footer-nav{filter:opacity(.6);font-size:12px;text-align:center}@media (max-width:991px){.controls-header{text-align:left !important}}.btn{float:none;border:none;-webkit-box-shadow:none;box-shadow:none;-moz-box-shadow:none;background-image:none;text-shadow:none;border-radius:3px;outline:none !important;margin-bottom:0;font-size:14px;font-weight:600;padding:8px 16px}.input.btn{outline:none}.btn-lg{padding:16px 28px}.btn-sm{padding:4px 8px;font-size:12px}.btn-sm i{font-size:14px}.btn-xs{padding:1px 5px;font-size:12px}.btn-default{background:#f3f3f3;color:#7a7a7a !important}.btn-default:hover,.btn-default:focus{background:#eee;text-decoration:none;color:#7a7a7a}.btn-default:active,.btn-default.active{outline:0;background:#e6e6e6}.btn-default[disabled],.btn-default.disabled{background:#f8f8f8}.btn-default[disabled]:hover,.btn-default.disabled:hover,.btn-default[disabled]:focus,.btn-default.disabled:focus{background:#f8f8f8}.btn-default[disabled]:active,.btn-default.disabled:active,.btn-default[disabled].active,.btn-default.disabled.active{background:#f8f8f8}.btn-primary{background:#435f6f;color:#fff !important}.btn-primary:hover,.btn-primary:focus{background:#39515f;text-decoration:none}.btn-primary:active,.btn-primary.active{outline:0;border:1px solid #435f6f;padding:7px 15px;color:#435f6f !important;background:#fff !important;box-shadow:none}.btn-primary:active.btn-sm,.btn-primary.active.btn-sm{padding:3px 7px}.btn-primary.active:hover,.btn-primary.active:focus{border:1px solid #39515f;color:#39515f !important}.btn-primary[disabled],.btn-primary.disabled{background:#4d6d7f}.btn-primary[disabled]:hover,.btn-primary.disabled:hover,.btn-primary[disabled]:focus,.btn-primary.disabled:focus{background:#4d6d7f}.btn-primary[disabled]:active,.btn-primary.disabled:active,.btn-primary[disabled].active,.btn-primary.disabled.active{background:#4d6d7f !important}.btn-info{background:#21A1B3;color:#fff !important}.btn-info:hover,.btn-info:focus{background:#1d8e9d !important;text-decoration:none}.btn-info:active,.btn-info.active{outline:0;border:1px solid #21A1B3;padding:7px 15px;color:#21A1B3 !important;background:#fff !important;box-shadow:none}.btn-info:active.btn-sm,.btn-info.active.btn-sm{padding:3px 7px}.btn-info.active:hover,.btn-info.active:focus{border:1px solid #1d8e9d;color:#1d8e9d !important}.btn-info[disabled],.btn-info.disabled{background:#25b4c9}.btn-info[disabled]:hover,.btn-info.disabled:hover,.btn-info[disabled]:focus,.btn-info.disabled:focus{background:#25b4c9}.btn-info[disabled]:active,.btn-info.disabled:active,.btn-info[disabled].active,.btn-info.disabled.active{background:#25b4c9 !important}.btn-danger{background:#FC4A64;color:#fff !important}.btn-danger:hover,.btn-danger:focus{background:#fc314f;text-decoration:none}.btn-danger:active,.btn-danger.active{outline:0;background:#fc314f !important}.btn-danger[disabled],.btn-danger.disabled{background:#fc6379}.btn-danger[disabled]:hover,.btn-danger.disabled:hover,.btn-danger[disabled]:focus,.btn-danger.disabled:focus{background:#fc6379}.btn-danger[disabled]:active,.btn-danger.disabled:active,.btn-danger[disabled].active,.btn-danger.disabled.active{background:#fc6379 !important}.btn-success{background:#97d271;color:#fff !important}.btn-success:hover,.btn-success:focus{background:#89cc5e;text-decoration:none}.btn-success:active,.btn-success.active{outline:0;background:#89cc5e !important}.btn-success[disabled],.btn-success.disabled{background:#a5d884}.btn-success[disabled]:hover,.btn-success.disabled:hover,.btn-success[disabled]:focus,.btn-success.disabled:focus{background:#a5d884}.btn-success[disabled]:active,.btn-success.disabled:active,.btn-success[disabled].active,.btn-success.disabled.active{background:#a5d884 !important}.btn-warning{background:#FFC107;color:#fff !important}.btn-warning:hover,.btn-warning:focus{background:#fcbd00;text-decoration:none}.btn-warning:active,.btn-warning.active{outline:0;background:#fcbd00 !important}.btn-warning[disabled],.btn-warning.disabled{background:#ffc721}.btn-warning[disabled]:hover,.btn-warning.disabled:hover,.btn-warning[disabled]:focus,.btn-warning.disabled:focus{background:#ffc721}.btn-warning[disabled]:active,.btn-warning.disabled:active,.btn-warning[disabled].active,.btn-warning.disabled.active{background:#ffc721 !important}.btn-link{color:#21A1B3 !important}.btn-link:hover,.btn-link:focus{color:#1f99aa;text-decoration:none}.btn-link:active,.btn-link.active{outline:0;color:#1f99aa !important}.btn-link[disabled],.btn-link.disabled{color:#25b4c9}.btn-link[disabled]:hover,.btn-link.disabled:hover,.btn-link[disabled]:focus,.btn-link.disabled:focus{color:#25b4c9}.btn-link[disabled]:active,.btn-link.disabled:active,.btn-link[disabled].active,.btn-link.disabled.active{color:#25b4c9 !important}.radio,.checkbox{margin-top:5px !important;margin-bottom:0}div.required>label:after{content:" *";color:#21A1B3}div.required.has-error>label:after{content:" *";color:#FC4A64}.radio label,.checkbox label{padding-left:10px}.form-control{border:2px solid #ededed;box-shadow:none;min-height:35px}.form-control:focus{border:2px solid #21A1B3;outline:0;box-shadow:none}.form-control.form-search{border-radius:30px;background-image:url("../img/icon_search16x16.png");background-repeat:no-repeat;background-position:10px 8px;padding-left:34px}.form-group-search{position:relative}.form-group-search .form-button-search{position:absolute;top:4px;right:4px;border-radius:30px}textarea{resize:none;height:1.5em}select.form-control:not([multiple]){-webkit-appearance:none;-moz-appearance:none;appearance:none;background-image:url("../img/select_arrow.png") !important;background-repeat:no-repeat;background-position:right 16px;overflow:hidden}label{font-weight:normal}div.PendingRegistrations thead>tr>th>label,div.PendingRegistrations tbody>tr>td>label{margin-bottom:0;height:17px}label.control-label{font-weight:bold}::placeholder{color:#bac2c7 !important}::-webkit-input-placeholder{color:#bac2c7 !important}::-moz-placeholder{color:#bac2c7 !important}:-ms-input-placeholder{color:#bac2c7 !important}input::-ms-clear,input::-ms-reveal{display:none}input:-moz-placeholder{color:#555555 !important}.placeholder{padding:10px}input.placeholder,textarea.placeholder{padding:0 0 0 10px;color:#999}.help-block-error{font-size:12px}.hint-block,.help-block:not(.help-block-error){color:#aeaeae !important;font-size:12px}.hint-block:hover,.help-block:not(.help-block-error):hover{color:#7a7a7a !important;font-size:12px}.input-group-addon{border:none}a.input-field-addon{font-size:12px;float:right;margin-top:-10px}a.input-field-addon-sm{font-size:11px;float:right;margin-top:-10px}.timeZoneInputContainer{padding-top:10px}.timeZoneInputContainer~.help-block{margin:0px}.regular-checkbox:focus+.regular-checkbox-box{border:2px solid #000 !important}.regular-checkbox:checked+.regular-checkbox-box{border:2px solid #21A1B3;background:#21A1B3;color:white}.regular-checkbox-box.disabled{background:#d7d7d7 !important;border:2px solid #d7d7d7 !important;cursor:not-allowed}.regular-radio:checked+.regular-radio-button:after{background:#21A1B3}.regular-radio:checked+.regular-radio-button{background-color:transparent;color:#99a1a7;border:2px solid #d7d7d7;margin-right:5px}.regular-radio.disabled{background:#d7d7d7 !important;border:2px solid #d7d7d7 !important;cursor:not-allowed}div.form-group div.checkbox .help-block{margin-left:33px}div.form-group div.checkbox .help-block.help-block-error:empty{display:none}.errorMessage{color:#FC4A64;padding:10px 0}.error{border-color:#FC4A64 !important}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#FC4A64 !important}.has-error .form-control,.has-error .form-control:focus{border-color:#FC4A64;-webkit-box-shadow:none;box-shadow:none}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#97d271}.has-success .form-control,.has-success .form-control:focus{border-color:#97d271;-webkit-box-shadow:none;box-shadow:none}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#FFC107}.has-warning .form-control,.has-warning .form-control:focus{border-color:#FFC107;-webkit-box-shadow:none;box-shadow:none}.bootstrap-timepicker-widget .form-control{padding:0}.form-collapsible-fields{margin-bottom:12px;border-left:3px solid #435f6f;background-color:#F4F4F4}.form-collapsible-fields-label{margin-bottom:0px;padding:12px}.form-collapsible-fields fieldset{padding-top:15px;padding-left:12px;padding-right:12px}.form-collapsible-fields.opened fieldset{display:block}.form-collapsible-fields.opened .iconClose{display:inline}.form-collapsible-fields.opened .iconOpen{display:none}.form-collapsible-fields.closed fieldset,.form-collapsible-fields.closed .iconClose{display:none}.form-collapsible-fields.closed .iconOpen{display:inline}#notification_overview_filter label{display:block}#notification_overview_list .img-space{position:absolute;top:25px;left:25px}@media (max-width:767px){.notifications{position:inherit !important;float:left !important}.notifications .dropdown-menu{width:300px !important;margin-left:0 !important}.notifications .dropdown-menu .arrow{margin-left:-142px !important}}.badge-space{margin-top:6px}.badge-space-chooser{padding:3px 5px;margin-left:1px}.badge{padding:3px 5px;border-radius:2px;font-weight:normal;font-family:Arial,sans-serif;font-size:10px !important;text-transform:uppercase;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:none;background-color:#d7d7d7;line-height:1}.popover{border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);-moz-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175)}.popover .popover-title{background:none;border-bottom:none;color:#000;font-weight:300;font-size:16px;padding:15px}.popover .popover-content{font-size:13px;padding:5px 15px;color:#000}.popover .popover-content a{color:#21A1B3}.popover .popover-content img{max-width:100%}.popover .popover-navigation{padding:15px}.panel-profile .panel-profile-header .image-upload-container{width:100%;height:100%;overflow:hidden}.panel-profile .panel-profile-header .image-upload-container #bannerfileupload{position:absolute;top:0;left:0;opacity:0;width:100%;height:100%}.panel-profile .panel-profile-header .img-profile-header-background{width:100%;max-height:192px}@media print{.panel-profile{display:none}}.list-group-item{padding:6px 15px;border:none;border-width:0 !important;border-left:3px solid #fff !important;font-size:12px;font-weight:600}.list-group-item i{font-size:14px}a.list-group-item:hover,a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#000;background-color:#f7f7f7;border-left:3px solid #21A1B3 !important}@media (max-width:991px){.list-group{margin-left:4px}.list-group-item{display:inline-block !important;border-radius:3px !important;margin:4px 0;margin-bottom:4px !important}.list-group-item{border:none !important}a.list-group-item:hover,a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{border:none !important;background:#435f6f !important;color:#fff !important}}.modal-backdrop{background-color:rgba(0,0,0,0.5)}.modal-dialog.fadeIn,.modal-dialog.pulse{-webkit-animation-duration:200ms;-moz-animation-duration:200ms;animation-duration:200ms}body.modal-open{height:100vh;overflow-y:hidden}@media screen and (max-width:768px){.modal-dialog{width:calc(100vw - 4px) !important}}.modal-top{z-index:999999 !important}.modal{overflow-y:visible}.modal.in{padding-right:0 !important}.modal-dialog-extra-small{width:400px}.modal-dialog-small{width:500px}.modal-dialog-normal{width:600px}.modal-dialog-medium{width:768px}.modal-dialog-large{width:900px}@media screen and (max-width:991px){.modal-dialog-large{width:auto !important;padding-top:30px;padding-bottom:30px}}.modal{border:none}.modal h1,.modal h2,.modal h3,.modal h4,.modal h5{margin-top:20px;color:#000;font-weight:300}.modal h4.media-heading{margin-top:0}.modal-title{font-size:20px;font-weight:200;color:#000}.modal-dialog,.modal-content{min-width:150px}.modal-content{-webkit-border-radius:3px;-moz-border-radius:3px;box-shadow:0 2px 26px rgba(0,0,0,0.3),0 0 0 1px rgba(0,0,0,0.1);-webkit-box-shadow:0 2px 26px rgba(0,0,0,0.3),0 0 0 1px rgba(0,0,0,0.1);-moz-box-shadow:0 2px 26px rgba(0,0,0,0.3),0 0 0 1px rgba(0,0,0,0.1);border:none}.modal-content .modal-header{padding:20px 20px 0;border-bottom:none;text-align:center}.modal-content .modal-header .close{margin-top:2px;margin-right:5px}.modal-content .modal-body{padding:20px;font-size:13px}.modal-content .modal-footer{margin-top:0;text-align:left;padding:10px 20px 30px;border-top:none;text-align:center}.modal-content .modal-footer hr{margin-top:0}.module-installed{opacity:.5}.module-installed .label-success{background-color:#d7d7d7}.tooltip-inner{background-color:#435f6f;max-width:400px;text-align:left;padding:2px 8px 4px;font-weight:bold;white-space:pre-wrap}.tooltip.top .tooltip-arrow{border-top-color:#435f6f}.tooltip.top-left .tooltip-arrow{border-top-color:#435f6f}.tooltip.top-right .tooltip-arrow{border-top-color:#435f6f}.tooltip.right .tooltip-arrow{border-right-color:#435f6f}.tooltip.left .tooltip-arrow{border-left-color:#435f6f}.tooltip.bottom .tooltip-arrow{border-bottom-color:#435f6f}.tooltip.bottom-left .tooltip-arrow{border-bottom-color:#435f6f}.tooltip.bottom-right .tooltip-arrow{border-bottom-color:#435f6f}.tooltip.in{opacity:1;filter:alpha(opacity=100)}.progress{height:10px;margin-bottom:15px;box-shadow:none;background:#ededed;border-radius:10px}.progress-bar-info{background-color:#21A1B3;-webkit-box-shadow:none;box-shadow:none}#nprogress .bar{height:2px;background:#27c0d5}table{margin-bottom:0 !important}table th{font-size:11px;color:#555555;font-weight:normal}table thead tr th{border:none !important}table .time{font-size:12px}table td a:hover{color:#21A1B3}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:10px 10px 10px 0}.table>thead>tr>th select,.table>tbody>tr>th select,.table>tfoot>tr>th select,.table>thead>tr>td select,.table>tbody>tr>td select,.table>tfoot>tr>td select{font-size:12px;padding:4px 8px;height:30px;margin:0}.table-middle>thead>tr>th,.table-middle>tbody>tr>th,.table-middle>tfoot>tr>th,.table-middle>thead>tr>td,.table-middle>tbody>tr>td,.table-middle>tfoot>tr>td{vertical-align:middle !important}@media (max-width:767px){.table-responsive>.table>tbody>tr>td.notification-type{white-space:normal}}.comment-container{margin-top:10px}.comment-container .wall-entry-controls{margin-left:35px}@media (max-width:767px){.comment .post-files img{height:100px}}.comment .media{position:relative !important;margin-top:0}.comment .media .nav-pills.preferences{display:none;right:-3px}.comment .media.comment-current{background:rgba(255,193,7,0.25);padding:0 5px 5px 5px;margin:0 -5px -5px -5px;border-radius:3px}.comment .media.comment-current hr{position:relative;top:-6px}.comment .media.comment-current:first-of-type{padding-top:5px;margin-top:-5px}.comment .media.comment-current:first-of-type>.nav.preferences{margin-top:10px}.comment .media.comment-current>.nav.preferences{margin-right:10px}.comment .comment-blocked-user img[data-contentcontainer-id]{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.comment .media-body{overflow:visible}.comment .jp-progress{background-color:#dbdcdd !important}.comment .jp-play-bar{background:#cacaca}.comment .post-file-list{background-color:#ededed}.comment.guest-mode .media:last-child .wall-entry-controls{margin-bottom:0;margin-left:35px}.comment.guest-mode .media:last-child hr{display:none}.comment_create,.content_edit{position:relative}.comment_create .comment-buttons,.content_edit .comment-buttons{position:absolute;bottom:2px;right:5px;z-index:300}.comment_create .comment-buttons button,.content_edit .comment-buttons button{background-color:#21A1B3 !important;color:#fff !important}.comment_create .has-error+.comment-buttons,.content_edit .has-error+.comment-buttons{bottom:19px !important}.comment_create .btn-comment-submit,.content_edit .btn-comment-submit{margin-top:3px}.comment_create .fileinput-button,.content_edit .fileinput-button{float:left;padding:6px 10px;background:transparent !important}.comment_create .fileinput-button i,.content_edit .fileinput-button i{color:#aeaeae}.comment_create .fileinput-button i:hover,.content_edit .fileinput-button i:hover{color:#21A1B3}.comment_create .fileinput-button:hover i,.content_edit .fileinput-button:hover i{color:#21A1B3}.comment_create .fileinput-button:active,.content_edit .fileinput-button:active{box-shadow:none !important}.post-richtext-input-group{position:relative}.post-richtext-input-group .comment-buttons{bottom:7px !important}.comment-container .content_edit{margin-left:35px}.comment-container .media{overflow:visible}.comment-container [data-ui-richtext] pre,.comment-container [data-ui-richtext] pre code.hljs{background-color:#eaeaea}.comment_edit_content{margin-left:35px;margin-top:0}.comment-message{overflow:hidden;word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.comment-create-input-group,.post-richtext-input-group{position:relative}.comment-create-input-group .ProsemirrorEditor .ProseMirror,.post-richtext-input-group .ProsemirrorEditor .ProseMirror{padding-right:72px}.comment-create-input-group .form-group,.post-richtext-input-group .form-group,.comment-create-input-group .help-block,.post-richtext-input-group .help-block{margin:0}.comment-create-input-group.scrollActive .comment-buttons{right:22px}.comment .media .media-body h4.media-heading a{font-size:13px;color:#000;margin-bottom:3px;font-weight:500}div.comment>div.media:first-of-type hr.comment-separator{display:none}div.comment>div.media:first-of-type .nav-pills.preferences{display:none;top:-3px}hr.comments-start-separator{margin-top:10px}div.nested-comments-root{margin-left:28px}div.nested-comments-root .ProseMirror-menubar-wrapper{z-index:210}div.nested-comments-root hr.comment-separator{display:inherit !important}div.nested-comments-root hr.comments-start-separator{display:none}div.nested-comments-root a.show-all-link{margin-top:10px}div.nested-comments-root div.comment .media{position:relative !important;margin-top:0}div.nested-comments-root div.comment .media .nav-pills.preferences{display:none;top:8px;right:0}div.nested-comments-root div.comment-container{margin-top:0;padding-bottom:0;padding-top:0}.grid-view img{width:24px;height:24px}.grid-view .filters input,.grid-view .filters select{border:2px solid #ededed;box-shadow:none;min-height:35px;border-radius:4px;font-size:12px;padding:4px}.grid-view .filters input:focus,.grid-view .filters select:focus{border:2px solid #21A1B3;outline:0;box-shadow:none}.grid-view{padding:15px 0 0}.grid-view img{border-radius:3px}.grid-view table th{font-size:13px !important;font-weight:bold !important}.grid-view table td{vertical-align:middle !important}.grid-view table tr{font-size:13px !important}.grid-view table thead tr th:first-of-type{padding-left:5px}.grid-view table tbody tr{height:50px}.grid-view table tbody tr td:first-of-type{padding-left:5px}.grid-view .summary{font-size:12px;color:#bac2c7}.permission-grid-editor>.table>tbody>tr:first-child>td{border:none}.permission-grid-editor{padding-top:0px}.detail-view td,.detail-view th{padding:8px !important}.detail-view th{font-size:13px}.oembed_snippet[data-oembed-provider="youtube.com"],.oembed_snippet{margin-top:10px;position:relative;padding-bottom:55%;padding-top:15px;overflow:hidden}.oembed_snippet[data-oembed-provider="twitter.com"]{padding-bottom:0 !important;padding-top:0;margin-top:0}.oembed_snippet iframe{position:absolute;top:0;left:0;width:100%;height:100%}.oembed_confirmation{background:#feebb4;border-radius:4px;padding:15px;line-height:30px}.oembed_confirmation i.fa{float:left;color:#02a0b0;background:#FFF;border-radius:50%;font-size:30px;line-height:25px;margin-right:15px}.oembed_confirmation>div:not(.clearfix){float:left}.oembed_confirmation .regular-checkbox-box{top:6px}.oembed_confirmation .regular-checkbox:not(:checked)+.regular-checkbox-box{background:#FFF}.oembed_confirmation .regular-checkbox:checked+.regular-checkbox-box:after{top:-8px}.activities{max-height:400px;overflow:auto}.activities li.activity-entry{padding:0}.activities li .media{position:relative;padding:10px}.activities li .media .img-space{position:absolute;top:24px;left:24px}.activities li .media .media-body{max-width:295px}.contentForm_options{margin-top:10px;min-height:29px}.contentForm_options .btn_container{position:relative}.contentForm_options .btn_container .label-public{position:absolute;right:40px;top:11px}#content-topic-bar{margin-top:5px;text-align:right}#content-topic-bar .label{margin-left:4px}#contentFormError{color:#FC4A64;padding-left:0;list-style:none}.placeholder-empty-stream{background-image:url("../img/placeholder-postform-arrow.png");background-repeat:no-repeat;padding:37px 0 0 70px;margin-left:90px}#streamUpdateBadge{text-align:center;z-index:9999;margin-bottom:15px;margin-top:15px}#streamUpdateBadge .label{border-radius:10px;font-size:.8em !important;padding:5px 10px}#wallStream .back_button_holder{padding-bottom:15px}.wall-entry{position:relative}.wall-entry .panel .panel-body{padding:10px}.wall-entry .wall-entry-header{color:#000;position:relative;padding-bottom:10px;margin-bottom:10px;border-bottom:1px solid #eeeeee}.wall-entry .wall-entry-header .img-space{top:25px;left:25px}.wall-entry .wall-entry-header .wall-entry-container-link{color:#21A1B3}.wall-entry .wall-entry-header .stream-entry-icon-list{position:absolute;top:0;right:25px;display:inline-block;padding-top:2px}.wall-entry .wall-entry-header .stream-entry-icon-list i{padding-right:5px}.wall-entry .wall-entry-header .stream-entry-icon-list .icon-pin{color:#FC4A64}.wall-entry .wall-entry-header .stream-entry-icon-list .fa-archive{color:#FFC107}.wall-entry .wall-entry-header .wall-entry-header-image{display:table-cell;width:40px;padding-right:10px}.wall-entry .wall-entry-header .wall-entry-header-image .fa{font-size:2.39em;color:#21A1B3;margin-top:5px}.wall-entry .wall-entry-header .wall-entry-header-info{display:table-cell;padding-right:30px;width:100%}.wall-entry .wall-entry-header .wall-entry-header-info .media-heading{font-size:15px;padding-top:1px;margin-bottom:3px}.wall-entry .wall-entry-header .wall-entry-header-info i.archived{color:#FFC107}.wall-entry .wall-entry-header .preferences{position:absolute;right:0;top:0}.wall-entry .wall-entry-header .media-subheading i.fa-caret-right{margin:0 2px}.wall-entry .wall-entry-header .media-subheading .wall-entry-icons{display:inline-block}.wall-entry .wall-entry-header .media-subheading .wall-entry-icons i{margin-right:2px}.wall-entry .wall-entry-header .media-subheading .time,.wall-entry .wall-entry-header .media-subheading i,.wall-entry .wall-entry-header .media-subheading span{font-size:11px;white-space:nowrap}.wall-entry .wall-entry-body{padding-left:50px}.wall-entry .wall-entry-body .wall-entry-content{margin-bottom:5px}.wall-entry .wall-entry-body .wall-entry-content .post-short-text{font-size:1.6em}.wall-entry .wall-entry-body .wall-entry-content .post-short-text .emoji{width:20px}.wall-entry .wall-entry-body audio,.wall-entry .wall-entry-body video{width:100%}.wall-entry .wall-stream-footer .wall-stream-addons .files{margin-bottom:5px}.wall-entry .content a{color:#21A1B3}.wall-entry .content img{max-width:100%}.wall-entry .media{overflow:visible}.wall-entry .well{margin-bottom:0}.wall-entry .well .comment .show-all-link{font-size:12px;cursor:pointer}.wall-entry .media-heading{font-size:14px;padding-top:1px;margin-bottom:3px}.wall-entry .media-heading .labels{padding-right:32px}.wall-entry .media-heading .viaLink{font-size:13px}.wall-entry .media-heading .viaLink i{color:#555555;padding-left:4px;padding-right:4px}.wall-entry .media-subheading{color:#555555;font-size:12px}.wall-entry .media-subheading .time{font-size:12px;white-space:nowrap}.wall-entry [data-ui-richtext] h1{font-size:1.45em;font-weight:normal}.wall-entry [data-ui-richtext] h2{font-size:1.3em;font-weight:normal}.wall-entry [data-ui-richtext] h3{font-size:1.2em;font-weight:normal}.wall-entry [data-ui-richtext] h4{font-size:1.1em;font-weight:normal}.wall-entry [data-ui-richtext] h5{font-size:1em;font-weight:normal}.wall-entry [data-ui-richtext] h6{font-size:.85em;font-weight:normal}@media (max-width:767px){.wall-entry .wall-entry-body{padding-left:0}#wallStream .back_button_holder{padding-bottom:5px;text-align:center}}.wall-entry-controls a{font-size:11px;color:#21A1B3 !important;margin-top:10px;margin-bottom:0}#wall-stream-filter-nav{font-size:12px;margin-bottom:10px;padding-top:2px;border-radius:0 0 4px 4px}#wall-stream-filter-nav .wall-stream-filter-root{margin:0;border:0 !important}#wall-stream-filter-nav .filter-panel{padding:0 10px}#wall-stream-filter-nav .wall-stream-filter-head{padding:5px 5px 10px 5px;border-bottom:1px solid #ddd}#wall-stream-filter-nav .wall-stream-filter-body{overflow:hidden;background-color:#f7f7f7;border:1px solid #ddd;border-top:0;border-radius:0 0 4px 4px}#wall-stream-filter-nav hr{margin:5px 0 0 0}#wall-stream-filter-nav .topic-remove-label{float:left}#wall-stream-filter-nav .topic-remove-label,#wall-stream-filter-nav .content-type-remove-label{margin-right:6px}#wall-stream-filter-nav .select2{width:260px !important;margin-bottom:5px;margin-top:2px}#wall-stream-filter-nav .select2 .select2-search__field{height:25px !important}#wall-stream-filter-nav .select2 .select2-selection__choice{height:23px !important}#wall-stream-filter-nav .select2 .select2-selection__choice span,#wall-stream-filter-nav .select2 .select2-selection__choice i{line-height:19px !important}#wall-stream-filter-nav .select2 .select2-selection__choice .img-rounded{width:18px !important;height:18px !important}#wall-stream-filter-nav .wall-stream-filter-bar{display:inline;float:right;white-space:normal}#wall-stream-filter-nav .wall-stream-filter-bar .label{height:18px;padding-top:4px;background-color:#fff}#wall-stream-filter-nav .wall-stream-filter-bar .btn,#wall-stream-filter-nav .wall-stream-filter-bar .label{box-shadow:0 0 2px #7a7a7a;-webkit-box-shadow:0 0 2px #7a7a7a;-moz-box-shadow:0 0 2px #7a7a7a}@media (max-width:767px){#wall-stream-filter-nav{margin-bottom:5px}#wall-stream-filter-nav .wall-stream-filter-root{white-space:nowrap}#wall-stream-filter-nav .wall-stream-filter-body{overflow:auto}}.filter-root{margin:15px}.filter-root .row{display:table !important}.filter-root .filter-panel{padding:0 5px;display:table-cell !important;float:none}.filter-root .filter-panel .filter-block strong{margin-bottom:5px}.filter-root .filter-panel .filter-block ul.filter-list{list-style:none;padding:0;margin:0 0 5px}.filter-root .filter-panel .filter-block ul.filter-list li{font-size:12px;padding:2px}.filter-root .filter-panel .filter-block ul.filter-list li a{color:#000}.filter-root .filter-panel div.filter-block:last-of-type ul.filter-list{margin:0}.filter-root .filter-panel+.filter-panel{border-left:2px solid #ededed}.stream-entry-loader{float:right;margin-top:5px}.load-suppressed{margin-top:-17px;margin-bottom:15px;text-align:center}.load-suppressed a{display:inline-block;background-color:white;padding:5px;border-radius:0 0 4px 4px;border:1px solid #ddd;font-size:11px}@media print{.wall-entry{page-break-inside:avoid}#wall-stream-filter-nav,#contentFormBody{display:none}}.space-owner{text-align:center;margin:14px 0;font-size:13px;color:#999}.space-member-sign{color:#97d271;position:absolute;top:42px;left:42px;font-size:16px;background:#fff;width:24px;height:24px;padding:2px 3px 1px 4px;border-radius:50px;border:2px solid #97d271}#space-menu-dropdown i.type{font-size:16px;color:#BFBFBF}#space-menu-spaces [data-space-chooser-item]{cursor:pointer}#space-menu-dropdown .input-group-addon{border-radius:0 4px 4px 0}#space-menu-dropdown .input-group-addon.focus{border-radius:0 4px 4px 0;border:2px solid #21A1B3;border-left:0}.input-group #space-menu-search{border-right:0}#space-menu-dropdown div:not(.input-group)>.search-reset{top:10px !important;right:15px !important}#space-directory-link i{margin-right:0}.space-acronym{color:#fff;text-align:center;display:inline-block}.current-space-image{margin-right:3px;margin-top:3px}@media (max-width:767px){#space-menu>.title{display:none}#space-menu-dropdown{width:300px !important}}.files,#postFormFiles_list{padding-left:0}ul.files{list-style:none;margin:0 0 5px;padding:0}ul.files li.file-preview-item{padding-left:24px;display:none}ul.files li.file-preview-item .file-fileInfo{padding-right:20px}.contentForm-upload-list{padding-left:0}.contentForm-upload-list li:first-child{margin-top:10px}.file_upload_remove_link,.file_upload_remove_link:hover{color:#FC4A64;cursor:pointer}.file-preview-item{text-overflow:ellipsis;overflow:hidden}.post-files{margin-top:10px;margin-bottom:10px}.post-files video{border-radius:4px}.post-files .jp-audio{margin-bottom:10px}.post-files .col-media{padding-left:0 !important;padding-right:0 !important}.post-files img{vertical-align:top;padding:2px;height:150px;width:100%;object-fit:cover;border-radius:4px}@media (max-width:650px){.post-files img{height:100px}}.post-file-list{padding:10px;padding-bottom:1px;margin-bottom:10px !important}.post-file-list a,.post-file-list a:active,.post-file-list a:focus,.post-file-list a:hover{color:#21A1B3}#wallStream.mobile .post-files{margin-top:10px;display:flex;overflow-x:auto}#wallStream.mobile .post-files img{max-width:190px;height:100px;width:auto}.file-preview-content{cursor:pointer}.image-upload-container{position:relative}.image-upload-container .image-upload-buttons{display:none;position:absolute;right:5px;bottom:5px}.image-upload-container input[type="file"]{position:absolute;opacity:0}.image-upload-container .image-upload-loader{display:none;position:absolute;top:0;left:0;width:100%;height:100%;padding:20px;background:#f8f8f8}.mime{background-repeat:no-repeat;background-position:0 0;padding:1px 0 4px 26px}.mime-word{background-image:url("../img/mime/word.png")}.mime-excel{background-image:url("../img/mime/excel.png")}.mime-powerpoint{background-image:url("../img/mime/powerpoint.png")}.mime-pdf{background-image:url("../img/mime/pdf.png")}.mime-zip{background-image:url("../img/mime/zip.png")}.mime-image{background-image:url("../img/mime/image.png")}.mime-file{background-image:url("../img/mime/file.png")}.mime-photoshop{background-image:url("../img/mime/photoshop.png")}.mime-illustrator{background-image:url("../img/mime/illustrator.png")}.mime-video{background-image:url("../img/mime/video.png")}.mime-audio{background-image:url("../img/mime/audio.png")}@media (max-width:480px){.jp-current-time{margin-left:0 !important}.jp-audio{width:auto !important;margin-left:0 !important}.jp-audio .jp-controls{padding:2px 12px 0 !important}.jp-audio .jp-progress{left:3px !important;top:45px !important;width:200px !important}.jp-audio .jp-volume-controls{position:absolute !important;top:15px !important;left:170px !important}.jp-audio .jp-time-holder{left:3px !important;top:60px !important;width:200px !important}.jp-audio .jp-toggles{left:210px !important;top:45px !important;width:auto !important}.jp-playlist ul{padding:0 0 0 0 !important}}div.jp-type-playlist div.jp-playlist a.jp-playlist-current,div.jp-type-playlist div.jp-playlist a:hover{color:#21A1B3 !important}.jp-details,.jp-playlist{border-top:1px solid #21A1B3}.jp-audio,.jp-audio-stream,.jp-video{border:1px solid #21A1B3}ul.tour-list{list-style:none;margin-bottom:0;padding-left:10px}ul.tour-list li{padding-top:5px}ul.tour-list li a{color:#21A1B3}ul.tour-list li a .fa{width:16px}ul.tour-list li.completed a{text-decoration:line-through;color:#555555}.atwho-view{position:absolute;top:0;left:0;display:none;margin-top:18px;background:white;color:#555555;font-size:14px;font-weight:400;border:1px solid #d7d7d7;border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);min-width:120px;max-width:265px;z-index:11110 !important;padding:5px 0}.atwho-view strong,.atwho-view b{font-weight:normal}.atwho-view ul li.hint{background:#fff !important;border-left:3px solid transparent !important;font-size:12px;color:#999}.atwho-view .cur small{color:red}.atwho-view strong{background-color:#f9f0d2}.atwho-view .cur strong{background-color:#f9f0d2}.atwho-view ul{list-style:none;padding:0;margin:auto}.atwho-view ul li{display:block;padding:5px 10px;border-left:3px solid transparent;padding:4px 15px 4px 8px;cursor:pointer}.atwho-view small{font-size:smaller;color:#777;font-weight:normal}.atwho-input.form-control{min-height:36px;height:auto;padding-right:95px;word-wrap:break-word}.atwho-input p{padding:0;margin:0}.atwho-placeholder{color:#bebebe !important}.atwho-emoji-entry{float:left;padding:4px !important;margin:0px !important;border:none !important}.atwho-emoji-entry:hover,.atwho-emoji-entry:active,.atwho-emoji-entry:focus{padding:4px !important;margin:0px !important;border:none !important;background-color:#f7f7f7 !important;border-radius:3px}.atwho-view .cur{border-left:3px solid #21A1B3;background-color:#f7f7f7 !important}.atwho-user,.atwho-space,.atwho-input a{color:#21A1B3}.atwho-input a:hover{color:#21A1B3}.atwho-view strong{background-color:#f9f0d2}.atwho-view .cur strong{background-color:#f9f0d2}.atwho-view span{padding:5px}.sk-spinner-three-bounce.sk-spinner{margin:0 auto;width:70px;text-align:center}.loader{padding:30px 0}.loader .sk-spinner-three-bounce div,.loader .sk-spinner-three-bounce span{width:12px;height:12px;background-color:#21A1B3;border-radius:100%;display:inline-block;-webkit-animation:sk-threeBounceDelay 1.4s infinite ease-in-out;animation:sk-threeBounceDelay 1.4s infinite ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both}.loader .sk-spinner-three-bounce .sk-bounce1{-webkit-animation-delay:-0.32s;animation-delay:-0.32s}.loader .sk-spinner-three-bounce .sk-bounce2{-webkit-animation-delay:-0.16s;animation-delay:-0.16s}@-webkit-keyframes sk-threeBounceDelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-threeBounceDelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}.loader-modal{padding:8px 0}.loader-postform{padding:9px 0}.loader-postform .sk-spinner-three-bounce.sk-spinner{text-align:left;margin:0}.md-editor.active{border:2px solid #21A1B3 !important}.md-editor textarea{padding:10px !important}.markdown-render,[data-ui-markdown],[data-ui-richtext]{overflow:hidden;overflow-wrap:break-word;line-height:1.57}.markdown-render h1,[data-ui-markdown] h1,[data-ui-richtext] h1,.markdown-render h2,[data-ui-markdown] h2,[data-ui-richtext] h2,.markdown-render h3,[data-ui-markdown] h3,[data-ui-richtext] h3,.markdown-render h4,[data-ui-markdown] h4,[data-ui-richtext] h4,.markdown-render h5,[data-ui-markdown] h5,[data-ui-richtext] h5,.markdown-render h6,[data-ui-markdown] h6,[data-ui-richtext] h6{text-align:start;font-weight:normal;margin:1.2em 0 .8em;color:#555}.markdown-render h1:first-child,[data-ui-markdown] h1:first-child,[data-ui-richtext] h1:first-child,.markdown-render h2:first-child,[data-ui-markdown] h2:first-child,[data-ui-richtext] h2:first-child,.markdown-render h3:first-child,[data-ui-markdown] h3:first-child,[data-ui-richtext] h3:first-child,.markdown-render h4:first-child,[data-ui-markdown] h4:first-child,[data-ui-richtext] h4:first-child,.markdown-render h5:first-child,[data-ui-markdown] h5:first-child,[data-ui-richtext] h5:first-child,.markdown-render h6:first-child,[data-ui-markdown] h6:first-child,[data-ui-richtext] h6:first-child{margin:0 0 .8em}.markdown-render h1,[data-ui-markdown] h1,[data-ui-richtext] h1{font-size:1.7em}.markdown-render h2,[data-ui-markdown] h2,[data-ui-richtext] h2{font-size:1.5em}.markdown-render h3,[data-ui-markdown] h3,[data-ui-richtext] h3{font-size:1.2em}.markdown-render h4,[data-ui-markdown] h4,[data-ui-richtext] h4{font-size:1.1em}.markdown-render h5,[data-ui-markdown] h5,[data-ui-richtext] h5{font-size:1em}.markdown-render h6,[data-ui-markdown] h6,[data-ui-richtext] h6{font-size:.85em}.markdown-render p,[data-ui-markdown] p,[data-ui-richtext] p,.markdown-render pre,[data-ui-markdown] pre,[data-ui-richtext] pre,.markdown-render blockquote,[data-ui-markdown] blockquote,[data-ui-richtext] blockquote,.markdown-render ul,[data-ui-markdown] ul,[data-ui-richtext] ul,.markdown-render ol,[data-ui-markdown] ol,[data-ui-richtext] ol{margin:0 0 1.2em}.markdown-render li ul,[data-ui-markdown] li ul,[data-ui-richtext] li ul,.markdown-render li ol,[data-ui-markdown] li ol,[data-ui-richtext] li ol{margin:0}.markdown-render p:last-child,[data-ui-markdown] p:last-child,[data-ui-richtext] p:last-child{margin:0}.markdown-render pre,[data-ui-markdown] pre,[data-ui-richtext] pre{padding:0;border:none;background-color:#f7f7f7}.markdown-render pre code,[data-ui-markdown] pre code,[data-ui-richtext] pre code{background-color:#f7f7f7;color:#555}.markdown-render code,[data-ui-markdown] code,[data-ui-richtext] code{background-color:#dbf5f8;color:#197a88}.markdown-render blockquote,[data-ui-markdown] blockquote,[data-ui-richtext] blockquote{background-color:rgba(128,128,128,0.05);border-top-right-radius:5px;border-bottom-right-radius:5px;padding:15px 20px;font-size:1em;border-left:5px solid #435f6f}.markdown-render dt,[data-ui-markdown] dt,[data-ui-richtext] dt,.markdown-render dd,[data-ui-markdown] dd,[data-ui-richtext] dd{margin-top:5px;margin-bottom:5px;line-height:1.45}.markdown-render dt,[data-ui-markdown] dt,[data-ui-richtext] dt{font-weight:bold}.markdown-render dd,[data-ui-markdown] dd,[data-ui-richtext] dd{margin-left:40px}.markdown-render pre,[data-ui-markdown] pre,[data-ui-richtext] pre{text-align:start;border:0;padding:10px 20px;border-radius:0;border-left:2px solid #435f6f}.markdown-render pre code,[data-ui-markdown] pre code,[data-ui-richtext] pre code{white-space:pre !important}.markdown-render blockquote ul:last-child,[data-ui-markdown] blockquote ul:last-child,[data-ui-richtext] blockquote ul:last-child,.markdown-render blockquote ol:last-child,[data-ui-markdown] blockquote ol:last-child,[data-ui-richtext] blockquote ol:last-child{margin-bottom:0}.markdown-render ul,[data-ui-markdown] ul,[data-ui-richtext] ul,.markdown-render ol,[data-ui-markdown] ol,[data-ui-richtext] ol{margin-top:0;padding-left:30px}.markdown-render ul li p,[data-ui-markdown] ul li p,[data-ui-richtext] ul li p,.markdown-render ol li p,[data-ui-markdown] ol li p,[data-ui-richtext] ol li p{overflow:visible !important}.markdown-render .footnote,[data-ui-markdown] .footnote,[data-ui-richtext] .footnote{vertical-align:top;position:relative;top:-0.5em;font-size:.8em}.markdown-render .emoji,[data-ui-markdown] .emoji,[data-ui-richtext] .emoji{width:16px}.markdown-render a,[data-ui-markdown] a,[data-ui-richtext] a,.markdown-render a:visited,[data-ui-markdown] a:visited,[data-ui-richtext] a:visited{background-color:inherit;text-decoration:none;color:#21A1B3 !important}.markdown-render a.header-anchor,[data-ui-markdown] a.header-anchor,[data-ui-richtext] a.header-anchor{color:#555 !important}.markdown-render a.not-found,[data-ui-markdown] a.not-found,[data-ui-richtext] a.not-found{color:#FFC107}.markdown-render li,[data-ui-markdown] li,[data-ui-richtext] li{border:0 !important;background-color:transparent !important;padding:0;margin:5px 0}.markdown-render img:not(.center-block),[data-ui-markdown] img:not(.center-block),[data-ui-richtext] img:not(.center-block){max-width:100%}.markdown-render img.pull-right,[data-ui-markdown] img.pull-right,[data-ui-richtext] img.pull-right{margin:5px 0 0 10px}.markdown-render img.pull-left,[data-ui-markdown] img.pull-left,[data-ui-richtext] img.pull-left{margin:5px 10px 0 0}.markdown-render img.center-block,[data-ui-markdown] img.center-block,[data-ui-richtext] img.center-block{margin-top:5px;margin-bottom:5px}.markdown-render img[width='100%'],[data-ui-markdown] img[width='100%'],[data-ui-richtext] img[width='100%']{border-radius:4px}.markdown-render table,[data-ui-markdown] table,[data-ui-richtext] table{width:100%;font-size:1em;border:1px solid #d7d7d7;margin-bottom:1.2em !important}.markdown-render table th,[data-ui-markdown] table th,[data-ui-richtext] table th{font-size:1em;color:#fff !important;background-color:#435f6f}.markdown-render table th p,[data-ui-markdown] table th p,[data-ui-richtext] table th p{color:#fff !important}.markdown-render table td,[data-ui-markdown] table td,[data-ui-richtext] table td{padding:15px;border:1px solid #d7d7d7 !important}.markdown-render table th,[data-ui-markdown] table th,[data-ui-richtext] table th{padding:10px 15px;border:1px solid #d7d7d7 !important}@media (max-width:991px){.layout-sidebar-container{display:none}}.ui-widget-header{border:none !important;background:#fff !important;color:#7a7a7a !important;font-weight:300 !important}.ui-widget-content{border:1px solid #dddcda !important;border-radius:0 !important;background:#fff;color:#000 !important;-webkit-box-shadow:0 6px 6px rgba(0,0,0,0.1);box-shadow:0 6px 6px rgba(0,0,0,0.1)}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{opacity:.2}.ui-datepicker .ui-datepicker-prev:hover,.ui-datepicker .ui-datepicker-next:hover{background:#fff !important;border:none;margin:1px}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:none !important;background:#f7f7f7 !important;color:#7a7a7a !important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:none !important;border:1px solid #b2b2b2 !important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #21A1B3 !important;background:#6fd6e4 !important}.status-bar-body{color:white;position:fixed;width:100%;background-color:rgba(0,0,0,0.7);text-align:center;padding:20px;z-index:9999999;bottom:0px;display:block;line-height:20px}.status-bar-close{color:white;font-weight:bold;font-size:21px;cursor:pointer}.status-bar-close:hover{color:white}.status-bar-close i{vertical-align:top !important;padding-top:3px}.status-bar-content i{margin-right:10px;font-size:21px;vertical-align:middle}.status-bar-content .showMore{color:#21A1B3;float:right;margin-left:10px;font-size:.7em;cursor:pointer;vertical-align:middle;white-space:nowrap}.status-bar-content .status-bar-details{text-align:left;font-size:.7em;margin-top:20px;max-height:200px;overflow:auto}.status-bar-content span{vertical-align:middle}.status-bar-content i.error,.status-bar-content i.fatal{color:#FC4A64}.status-bar-content i.warning{color:#FFC107}.status-bar-content i.info,.status-bar-content i.debug{color:#21A1B3}.status-bar-content i.success{color:#85CA2B}.highlight{background-color:#fff8e0}.alert-default{color:#000;background-color:#f7f7f7;border-color:#ededed;font-size:13px}.alert-default .info{margin:10px 0}.alert-success{color:#84be5e;background-color:#f7fbf4;border-color:#97d271}.alert-warning{color:#e9b168;background-color:#fffbf7;border-color:#fdd198}.alert-danger{color:#ff8989;background-color:#fff6f6;border-color:#ff8989}.data-saved{padding-left:10px;color:#21A1B3}img.bounceIn{-webkit-animation-duration:800ms;-moz-animation-duration:800ms;animation-duration:800ms}.tags .tag{margin-top:5px;border-radius:2px;padding:4px 8px;text-transform:uppercase;max-width:150px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#user-tags-panel .tags .tag{max-width:250px}.label{text-transform:uppercase}.label{text-transform:uppercase;display:inline-block;padding:3px 5px 4px;font-weight:600;font-size:10px;color:white;vertical-align:baseline;white-space:nowrap;text-shadow:none}.label-default{background:#ededed;color:#7a7a7a !important}a.label-default:hover{background:#e0e0e0 !important}.label-info{background-color:#21A1B3}a.label-info:hover{background:#1d8e9d !important}.label-danger{background-color:#FC4A64}a.label-danger:hover{background:#fc314f !important}.label-success{background-color:#97d271}a.label-success:hover{background:#89cc5e !important}.label-warning{background-color:#FFC107}a.label-warning:hover{background:#ecb100 !important}.label-light{background-color:transparent;color:#7a7a7a;border:1px solid #bababa}.topic-label-list,.wall-entry-topics{margin-bottom:10px}.topic-label-list a,.wall-entry-topics a{margin-right:4px}.topic-label-list .label,.wall-entry-topics .label{padding:5px;border-radius:4px}.ProsemirrorEditor.fullscreen{position:fixed;top:0;left:0;width:100vw;height:calc(100vh - 3px);z-index:9998}.ProsemirrorEditor.fullscreen .ProseMirror-menubar-wrapper{height:100%}.ProsemirrorEditor.fullscreen .humhub-ui-richtext{max-height:none !important}.ProsemirrorEditor.fullscreen .ProseMirror{position:static;overflow:auto;height:calc(100% - 26px)}.ProsemirrorEditor.fullscreen .ProseMirror-menubar{position:static !important;top:0 !important;left:0 !important;margin:0 !important;width:100% !important}.login-container .ProsemirrorEditor.fullscreen,.modal-dialog .ProsemirrorEditor.fullscreen{width:100%;height:100%}.ProsemirrorEditor .ProseMirror{padding-right:12px}.ProsemirrorEditor .ProseMirror-menu{margin:0 -4px;line-height:1}.ProsemirrorEditor .ProseMirror-tooltip .ProseMirror-menu{width:-webkit-fit-content;width:fit-content;white-space:pre}.ProsemirrorEditor .ProseMirror-menuitem{margin-right:0;display:inline-block}.ProsemirrorEditor .ProseMirror-menuseparator{border-right:1px solid #ddd;margin-right:3px}.ProsemirrorEditor .ProseMirror-menubar-wrapper{z-index:200}.ProsemirrorEditor .ProseMirror-menuitem .ProseMirror-menu-group{border-right:1px solid #ddd}.ProsemirrorEditor .ProseMirror-menuitem .ProseMirror-menu-group.last{border-right:none}.ProsemirrorEditor .ProseMirror-menuitem .seperator{border-right:1px solid #ddd;margin-right:2px;padding-right:2px}.ProsemirrorEditor .ProseMirror-menu-dropdown,.ProsemirrorEditor .ProseMirror-menu-dropdown-menu{font-size:90%;white-space:nowrap}.ProsemirrorEditor .ProseMirror-menu-dropdown{cursor:pointer;position:relative;padding-right:15px !important}.ProsemirrorEditor .ProseMirror-menu-dropdown-wrap{padding:1px 0 1px 0;display:inline-block;position:relative}.ProsemirrorEditor .ProseMirror-menu-dropdown-right{right:0}.ProsemirrorEditor .ProseMirror-menu-dropdown:after{content:"";border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid currentColor;opacity:.6;position:absolute;right:4px;top:calc(50% - 2px)}.ProsemirrorEditor .ProseMirror-menu-submenu{border-top-right-radius:4px}.ProsemirrorEditor .ProseMirror-menu-dropdown-menu,.ProsemirrorEditor .ProseMirror-menu-submenu{position:absolute;background:white;color:#666;border:1px solid #aaa;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.ProsemirrorEditor .ProseMirror-menu-dropdown-menu{z-index:15;min-width:6em;margin-top:2px}.ProsemirrorEditor .ProseMirror-menu-dropdown-item{cursor:pointer}.ProsemirrorEditor .ProseMirror-menu-dropdown-item div[title],.ProsemirrorEditor .ProseMirror-menu-submenu-wrap{padding:4px}.ProsemirrorEditor .ProseMirror-menu-dropdown-item:hover{background:#f2f2f2}.ProsemirrorEditor .ProseMirror-menu-submenu-wrap{position:relative}.ProsemirrorEditor .ProseMirror-menu-submenu-label:after{content:"";border-top:4px solid transparent;border-bottom:4px solid transparent;border-left:4px solid currentColor;opacity:.6;position:absolute;right:4px;top:calc(50% - 4px)}.ProsemirrorEditor .ProseMirror-menu-submenu{display:none;min-width:4em;left:100%;top:0}.ProsemirrorEditor .ProseMirror-menu-active{background:#eee;border-radius:4px;border:1px solid #ededed !important}.ProsemirrorEditor .ProseMirror-menu-disabled{opacity:.3}.ProsemirrorEditor .ProseMirror-menu-submenu-wrap:hover .ProseMirror-menu-submenu,.ProsemirrorEditor .ProseMirror-menu-submenu-wrap-active .ProseMirror-menu-submenu{display:block}.ProsemirrorEditor .ProseMirror-icon{display:inline-block;line-height:.8;vertical-align:-2px;padding:1px 7px;cursor:pointer;border:1px solid transparent}.ProsemirrorEditor .ProseMirror-menu-disabled.ProseMirror-icon{cursor:default}.ProsemirrorEditor .ProseMirror-icon svg{fill:currentColor;height:1em}.ProsemirrorEditor .ProseMirror-icon span{vertical-align:text-top}.ProsemirrorEditor.plainMenu .ProseMirror{border-top-left-radius:0 !important;border-top-right-radius:0 !important;border-top-width:1px !important;min-height:100px}.ProsemirrorEditor.plainMenu .ProseMirror-menu-group{padding:5px}.ProsemirrorEditor.plainMenu .ProseMirror-menuitem .ProseMirror-menu-group{padding:2px}.ProsemirrorEditor.plainMenu .ProseMirror-menubar~.ProseMirror-focused{border-color:#21A1B3 !important}.ProsemirrorEditor.plainMenu .ProseMirror-textblock-dropdown{min-width:3em}.ProsemirrorEditor.plainMenu .ProseMirror-menubar-wrapper{z-index:8}.ProsemirrorEditor.plainMenu .ProseMirror-menubar{background-color:#f7f7f7;border-top-left-radius:4px;border-top-right-radius:4px;border:1px solid #ddd;position:relative;min-height:1em;color:#666;padding:1px 6px 1px 0;top:0;left:0;right:0;z-index:10;-moz-box-sizing:border-box;box-sizing:border-box;overflow:visible}.ProsemirrorEditor.focusMenu .form-control:focus{border-top-left-radius:0 !important}.ProsemirrorEditor.focusMenu .ProseMirror-menubar{display:table;min-height:1em;color:#666;padding:2px 6px;top:0;left:0;right:0;z-index:10;-moz-box-sizing:border-box;box-sizing:border-box;overflow:visible;margin-top:-25px;background:white;border:1px solid #aeaeae;border-bottom:0;border-top:1px solid #aeaeae;border-top-left-radius:4px;border-top-right-radius:4px;float:left}@-moz-document url-prefix(){.ProsemirrorEditor.focusMenu .ProseMirror-menubar{margin-top:-26px}}.ProsemirrorEditor .ProseMirror{position:relative;word-wrap:break-word;white-space:pre-wrap;-webkit-font-variant-ligatures:none;font-variant-ligatures:none}.ProsemirrorEditor .ProseMirror ul,.ProsemirrorEditor .ProseMirror ol{cursor:default}.ProsemirrorEditor .ProseMirror pre{white-space:pre-wrap}.ProsemirrorEditor .ProseMirror li{position:relative}.ProsemirrorEditor .ProseMirror img{max-width:100%}.ProsemirrorEditor .ProseMirror-hideselection *::selection{background:transparent}.ProsemirrorEditor .ProseMirror-hideselection *::-moz-selection{background:transparent}.ProsemirrorEditor .ProseMirror-selectednode{outline:2px dashed #8cf}.ProsemirrorEditor li.ProseMirror-selectednode{outline:none}.ProsemirrorEditor li.ProseMirror-selectednode:after{content:"";position:absolute;left:-32px;right:-2px;top:-2px;bottom:-2px;border:2px solid #8cf;pointer-events:none}.ProsemirrorEditor .ProseMirror-textblock-dropdown{min-width:3em}.ProsemirrorEditor .ProseMirror-menu{margin:0 -4px;line-height:1}.ProsemirrorEditor .ProseMirror-tooltip .ProseMirror-menu{width:-webkit-fit-content;width:fit-content;white-space:pre}.ProsemirrorEditor .ProseMirror-gapcursor{display:none;pointer-events:none;position:absolute}.ProsemirrorEditor .ProseMirror-gapcursor:after{content:"";display:block;position:absolute;top:-2px;width:20px;border-top:1px solid black;animation:ProseMirror-cursor-blink 1.1s steps(2, start) infinite}@keyframes ProseMirror-cursor-blink{to{visibility:hidden}}.ProsemirrorEditor .ProseMirror-focused .ProseMirror-gapcursor{display:block}.ProsemirrorEditor .ProseMirror-example-setup-style hr{padding:2px 10px;border:none;margin:1em 0}.ProsemirrorEditor .ProseMirror-example-setup-style hr:after{content:"";display:block;height:1px;background-color:silver;line-height:2px}.ProsemirrorEditor .ProseMirror-example-setup-style img{cursor:default}.ProsemirrorEditor .ProseMirror p{margin-top:1.2em}.ProsemirrorEditor .ProseMirror p:first-child{margin:0}.ProsemirrorEditor .ProseMirror>p:first-child+*{margin-top:1.2em}.ProsemirrorEditor .ProsemirrorEditor{position:relative}.ProsemirrorEditor .ProsemirrorEditor .ProseMirror{padding-right:12px !important}.ProsemirrorEditor .ProsemirrorEditor img{max-width:100%}.ProsemirrorEditor .ProseMirror h1:first-child,.ProsemirrorEditor .ProseMirror h2:first-child,.ProsemirrorEditor .ProseMirror h3:first-child,.ProsemirrorEditor .ProseMirror h4:first-child,.ProsemirrorEditor .ProseMirror h5:first-child,.ProsemirrorEditor .ProseMirror h6:first-child{margin-top:10px}.ProsemirrorEditor .ProseMirror [data-mention]{color:#21A1B3}.ProsemirrorEditor .ProseMirror{outline:none}.ProsemirrorEditor .ProseMirror [data-oembed]{font-size:0}.ProsemirrorEditor .ProseMirror iframe{pointer-events:none;display:block}.ProsemirrorEditor .ProseMirror p{margin-bottom:1em}.ProsemirrorEditor .ProseMirror-textblock-dropdown{min-width:3em}.ProsemirrorEditor .ProseMirror .placeholder{padding:0 !important;pointer-events:none;height:0}.ProsemirrorEditor .ProseMirror:focus .placeholder{display:none}.ProsemirrorEditor .ProseMirror .tableWrapper{overflow-x:auto}.ProsemirrorEditor .ProseMirror .column-resize-handle{position:absolute;right:-2px;top:0;bottom:0;width:4px;z-index:20;background-color:#adf;pointer-events:none}.ProsemirrorEditor .ProseMirror.resize-cursor{cursor:ew-resize;cursor:col-resize}.ProsemirrorEditor .ProseMirror .selectedCell:after{z-index:2;position:absolute;content:"";left:0;right:0;top:0;bottom:0;background:rgba(200,200,255,0.4);pointer-events:none}.ProsemirrorEditor .ProseMirror-menubar-wrapper{position:relative;outline:none}.ProsemirrorEditor .ProseMirror table{margin:0}.ProsemirrorEditor .ProseMirror .tableWrapper{margin:1em 0}.ProseMirror-prompt{background:white;padding:5px 10px 5px 15px;border:1px solid silver;position:fixed;border-radius:3px;min-width:300px;z-index:999999;box-shadow:-0.5px 2px 5px rgba(0,0,0,0.2)}.ProseMirror-prompt h5{font-weight:bold;font-size:100%;margin:15px 0}.ProseMirror-prompt input{margin-bottom:5px}.ProseMirror-prompt-close{position:absolute;left:2px;top:1px;color:#666;border:none;background:transparent;padding:0}.ProseMirror-prompt-close:after{content:"✕";font-size:12px}.ProseMirror-invalid{background:#ffc;border:1px solid #cc7;border-radius:4px;padding:5px 10px;position:absolute;min-width:10em}.ProseMirror-prompt-buttons{margin:15px 0;text-align:center}.atwho-view .cur{border-left:3px solid #59d6e4;background-color:#f7f7f7 !important}.atwho-user,.atwho-space,.atwho-input a{color:#59d6e4}.atwho-input a:hover{color:#59d6e4}.atwho-view strong{background-color:#f9f0d2}.atwho-view .cur strong{background-color:#f9f0d2}[data-emoji-category]{max-height:200px;display:block;position:relative;overflow:auto}[data-emoji-category] .atwho-emoji-entry{width:24px;height:28px;overflow:hidden}[data-emoji-category] .atwho-emoji-entry.cur{background-color:#ededed !important}.emoji-nav{padding-top:10px}.emoji-nav .emoji-nav-item{border-top:2px solid #fff8e0}.emoji-nav .emoji-nav-item.cur{border-left:0;border-top:2px solid #21A1B3}[data-ui-markdown],[data-ui-richtext]{overflow-x:auto;overflow-wrap:break-word}[data-ui-markdown] a,[data-ui-richtext] a{color:#21A1B3}#wallStream [data-ui-markdown],#wallStream [data-ui-richtext]{overflow-wrap:initial;word-break:initial;hyphens:initial}@media screen and (max-width:768px){.ProsemirrorEditor.focusMenu .form-control:focus{border-top-right-radius:0 !important}.ProsemirrorEditor.focusMenu .ProseMirror-menubar{min-height:1em;margin-top:0}.ProsemirrorEditor.focusMenu .humhub-ui-richtext{margin-top:0}}@media only screen and (max-width : 768px){body{padding-top:105px}.modal-open #layout-content>.container{overflow-x:unset}#layout-content .left-navigation .list-group{-webkit-overflow-scrolling:auto;white-space:nowrap;overflow-x:auto}#layout-content .left-navigation .list-group::-webkit-scrollbar{-webkit-appearance:none}#layout-content .left-navigation .list-group::-webkit-scrollbar:vertical{width:8px}#layout-content .left-navigation .list-group::-webkit-scrollbar:horizontal{height:8px}#layout-content .left-navigation .list-group::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,0.5);border-radius:10px;border:2px solid #ffffff}#layout-content .left-navigation .list-group::-webkit-scrollbar-track{border-radius:10px;background-color:#ffffff}#layout-content .table-responsive::-webkit-scrollbar{-webkit-appearance:none}#layout-content .table-responsive::-webkit-scrollbar:vertical{width:8px}#layout-content .table-responsive::-webkit-scrollbar:horizontal{height:8px}#layout-content .table-responsive::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,0.5);border-radius:10px;border:2px solid #ffffff}#layout-content .table-responsive::-webkit-scrollbar-track{border-radius:10px;background-color:#ffffff}#layout-content .panel{margin-bottom:5px}#layout-content .panel .statistics .entry{margin-left:10px}#layout-content>.container{padding-right:2px !important;padding-left:2px !important;overflow-x:hidden}#layout-content .layout-nav-container .panel-heading{display:none}#layout-content .panel-profile-header #profilefileupload,#layout-content .panel-profile-header .profile-user-photo-container,#layout-content .panel-profile-header .space-acronym,#layout-content .panel-profile-header .profile-user-photo{height:100px !important;width:100px !important}#layout-content .image-upload-container .image-upload-buttons{right:2px !important}#layout-content .space-acronym{padding:6px 0 !important}#layout-content .panel-profile .panel-profile-header .img-profile-header-background{min-height:80px !important}#layout-content .panel-profile .panel-profile-header .img-profile-data{padding-top:50px !important;padding-left:130px}.modal-dialog{width:calc(100vw - 4px) !important;padding:0 !important;margin:2px !important}.dropdown-menu>li a,.nav-pills .dropdown-menu li a,.nav-tabs .dropdown-menu li a,.account .dropdown-menu li a,.modal .dropdown-menu li a,.panel .dropdown-menu li a,.nav-tabs .dropdown-menu li a{padding-top:10px;padding-bottom:10px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.dropdown-menu{max-width:320px}select.form-control:not([multiple]){padding-right:23px;width:auto}.modal.in{padding-right:0 !important}.load-suppressed{margin-top:-8px;margin-bottom:5px}.ProsemirrorEditor .ProseMirror-menuitem{font-size:1.2em !important}}.icon-sm,.fa-sm{font-size:.875em}.icon-lg,.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-0.0667em}.icon-2x,.fa-2x{font-size:2em}.icon-3x,.fa-3x{font-size:3em}.icon-4x,.fa-4x{font-size:4em}.icon-5x,.fa-5x{font-size:5em}.icon-6x,.fa-6x{font-size:6em}.icon-7x,.fa-7x{font-size:7em}.icon-9x,.fa-9x{font-size:9em}.icon-10x,.fa-10x{font-size:10em}@media print{a[href]:after{content:none}body{padding-top:0}pre,blockquote{page-break-inside:avoid}.preferences,.layout-sidebar-container,.layout-nav-container,button{display:none !important}}@media (min-width:500px){.container-directory.container-fluid .card{width:50%}}@media (min-width:1000px){.container-directory.container-fluid .card{width:33.33333333%}}@media (min-width:1300px){.container-directory.container-fluid .card{width:25%}}@media (min-width:1600px){.container-directory.container-fluid .card{width:20%}}@media (min-width:1900px){.container-directory.container-fluid .card{width:16.66666667%}}.container-directory .form-search .row>div{padding-bottom:3px}.container-directory .form-search .form-search-filter-keyword{position:relative}.container-directory .form-search .form-search-filter-keyword .form-button-search{position:absolute;right:18px;margin-bottom:3px}.container-directory .form-search .form-control.form-search-filter{width:100%;height:40px;margin:3px 0 0;padding:8px 30px 10px 8px;border-radius:4px;border:solid 1px #c5c5c5}.container-directory .form-search .form-button-search{background:none;border:0;font-size:16px;color:#000;top:initial;bottom:9px}.container-directory .form-search .form-search-field-info{font-size:80%}.container-directory .form-search-reset{text-decoration:underline;display:block;margin-top:26px}.container-directory .form-search-reset:hover{text-decoration:none}.container-directory .cards{display:flex;flex-direction:row;flex-wrap:wrap}.container-directory .card{display:flex;flex-direction:row}.container-directory .card .card-panel{position:relative;width:100%;display:flex;flex-direction:column;margin:15px 0;border-radius:4px;background-color:#ffffff}.container-directory .card .card-panel.card-archived{filter:opacity(60%)}.container-directory .card .card-icons .fa{color:#21a1b3}.container-directory .card .card-icons .fa span{font:12px 'Open Sans',sans-serif;font-weight:600}.container-directory .card .card-bg-image{width:100%;height:86px;background-color:#cfcfcf;background-size:cover;background-position:center;border-radius:4px 4px 0 0}.container-directory .card .card-header{position:absolute;padding:16px;display:table;width:100%}.container-directory .card .card-header .card-image-wrapper{display:table-cell;width:98px}.container-directory .card .card-header .card-image-link{display:inline-block;border:2px solid #fff;border-radius:6px}.container-directory .card .card-header .card-status{position:absolute;right:16px;background:#435f6f}.container-directory .card .card-header .card-icons{display:table-cell;padding:0 0 2px 5px;text-align:right;vertical-align:bottom;font-size:16px}.container-directory .card .card-header .card-icons .fa{color:#21a1b3}.container-directory .card .card-header .card-icons .fa.fa-mobile-phone{font-size:22px;line-height:15px;position:relative;top:2px}.container-directory .card .card-body{flex-grow:1;padding:44px 16px 24px 16px;overflow:auto}.container-directory .card .card-body .card-title{font-size:16px;font-weight:bold;line-height:24px}.container-directory .card .card-body .card-details{margin-top:8px;color:#57646c}.container-directory .card .card-body .card-details a{color:#21a1b3;text-decoration:underline}.container-directory .card .card-body .card-details a:hover{text-decoration:none}.container-directory .card .card-body .card-tags{margin-top:20px}.container-directory .card .card-footer{padding:0 16px 20px}.container-directory .card .card-footer a.btn{float:left;margin:0 8px 4px 0;white-space:normal;hyphens:none}.container-directory .card .card-footer a.btn:last-child{margin-right:0}.container-directory .card .card-footer .btn-group a.btn{margin-right:0}/*! Select2 humhub Theme v0.1.0-beta.4 | MIT License | github.com/select2/select2-humhub-theme */.select2-container--humhub{display:block}.select2-container--humhub .select2-selection{background-color:#fff;border:2px solid #ededed;border-radius:4px;color:#555;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;outline:0}.select2-container--humhub .select2-search--dropdown .select2-search__field{background-color:#fff;border:2px solid #ededed;border-radius:4px;color:#555;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px}.select2-container--humhub .select2-search__field{outline:0}.select2-container--humhub .select2-search__field::placeholder{color:#999;font-weight:normal}.select2-container--humhub .select2-search__field::-webkit-input-placeholder{color:#999;font-weight:normal}.select2-container--humhub .select2-search__field:-moz-placeholder{color:#999;font-weight:normal}.select2-container--humhub .select2-search__field::-moz-placeholder{color:#999;font-weight:normal;opacity:1}.select2-container--humhub .select2-search__field:-ms-input-placeholder{color:#999;font-weight:normal}.select2-container--humhub .select2-results__option[role=group]{padding:0}.select2-container--humhub .select2-results__option[aria-disabled=true]{color:#777;cursor:not-allowed}.select2-container--humhub .select2-results__option[aria-selected=true]{background-color:#f5f5f5;color:#262626;border-left:3px solid transparent}.select2-container--humhub .select2-results__option[aria-selected=false]{border-left:3px solid transparent}.select2-container--humhub .select2-results__option--highlighted[aria-selected]{background-color:#f7f7f7;border-left:3px solid #21A1B3;color:#000}.select2-container--humhub .select2-results__option .select2-results__option{padding:6px 12px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option{margin-left:-12px;padding-left:24px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-24px;padding-left:36px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-36px;padding-left:48px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-48px;padding-left:60px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-60px;padding-left:72px}.select2-container--humhub .select2-results__group{color:#777;display:block;padding:6px 12px;font-size:12px;line-height:1.42857143;white-space:nowrap}.select2-container--humhub.select2-container--focus .select2-selection,.select2-container--humhub.select2-container--open .select2-selection{border:2px solid #21A1B3;outline:0;box-shadow:none}.select2-container--humhub.select2-container--open .select2-selection .select2-selection__arrow b{border-color:transparent transparent #999 transparent;border-width:0 4px 4px 4px}.select2-container--humhub .select2-selection__clear{color:#999;cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--humhub .select2-selection__clear:hover{color:#333}.select2-container--humhub.select2-container--disabled .select2-selection{border-color:#ccc;-webkit-box-shadow:none;box-shadow:none}.select2-container--humhub.select2-container--disabled .select2-selection,.select2-container--humhub.select2-container--disabled .select2-search__field{cursor:not-allowed}.select2-container--humhub.select2-container--disabled .select2-selection,.select2-container--humhub.select2-container--disabled .select2-selection--multiple .select2-selection__choice{background-color:#eee}.select2-container--humhub.select2-container--disabled .select2-selection__clear,.select2-container--humhub.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove{display:none}.select2-container--humhub .select2-dropdown{-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);border-color:#d7d7d7;overflow-x:hidden;margin-top:-1px}.select2-container--humhub .select2-dropdown--above{margin-top:1px}.select2-container--humhub .select2-results>.select2-results__options{max-height:400px;overflow-y:auto}.select2-container--humhub .select2-selection--single{height:34px;line-height:1.42857143;padding:6px 24px 6px 12px}.select2-container--humhub .select2-selection--single .select2-selection__arrow{position:absolute;bottom:0;right:12px;top:0;width:4px}.select2-container--humhub .select2-selection--single .select2-selection__arrow b{border-color:#999 transparent transparent transparent;border-style:solid;border-width:4px 4px 0 4px;height:0;left:0;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--humhub .select2-selection--single .select2-selection__rendered{color:#555;padding:0}.select2-container--humhub .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--humhub .select2-selection--multiple{min-height:34px;padding:2px}.select2-container--humhub .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;display:block;line-height:1.42857143;list-style:none;margin:0;overflow:hidden;padding:0;width:100%;text-overflow:ellipsis;white-space:nowrap}.select2-container--humhub .select2-selection--multiple .select2-selection__placeholder{color:#999;float:left;margin-top:5px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice{color:#555;border-radius:4px;cursor:default;padding:0 6px;background-color:#21A1B3;color:#fff;border-radius:3px;font-size:12px !important;padding:0 5px 2px 2px;float:left;margin:2px;height:28px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice img,.select2-container--humhub .select2-selection--multiple .select2-selection__choice div{margin-right:5px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice span.no-image{line-height:27px;padding-left:5px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice i{margin:0px 2px;line-height:27px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice .picker-close{cursor:pointer}.select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field{background:transparent;padding:0 5px;width:auto !important;height:32px;line-height:1.42857143;margin-top:0;min-width:5em}.select2-container--humhub .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:none;font-weight:bold;margin-right:3px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--humhub .select2-selection--multiple .select2-selection__clear{margin-top:6px}.select2-container--humhub.input-sm,.select2-container--humhub.input-lg{border-radius:0;font-size:12px;height:auto;line-height:1;padding:0}.select2-container--humhub.input-sm .select2-selection--single,.input-group-sm .select2-container--humhub .select2-selection--single,.form-group-sm .select2-container--humhub .select2-selection--single{border-radius:3px;font-size:12px;height:30px;line-height:1.5;padding:5px 22px 5px 10px}.select2-container--humhub.input-sm .select2-selection--single .select2-selection__arrow b,.input-group-sm .select2-container--humhub .select2-selection--single .select2-selection__arrow b,.form-group-sm .select2-container--humhub .select2-selection--single .select2-selection__arrow b{margin-left:-5px}.select2-container--humhub.input-sm .select2-selection--multiple,.input-group-sm .select2-container--humhub .select2-selection--multiple,.form-group-sm .select2-container--humhub .select2-selection--multiple{min-height:30px}.select2-container--humhub.input-sm .select2-selection--multiple .select2-selection__choice,.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__choice,.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__choice{font-size:12px;line-height:1.5;margin:4px 0 0 5px;padding:0 5px}.select2-container--humhub.input-sm .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field,.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field{padding:0 10px;font-size:12px;height:28px;line-height:1.5}.select2-container--humhub.input-sm .select2-selection--multiple .select2-selection__clear,.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__clear,.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__clear{margin-top:5px}.select2-container--humhub.input-lg .select2-selection--single,.input-group-lg .select2-container--humhub .select2-selection--single,.form-group-lg .select2-container--humhub .select2-selection--single{border-radius:6px;font-size:18px;height:46px;line-height:1.3333333;padding:10px 31px 10px 16px}.select2-container--humhub.input-lg .select2-selection--single .select2-selection__arrow,.input-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow,.form-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow{width:5px}.select2-container--humhub.input-lg .select2-selection--single .select2-selection__arrow b,.input-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow b,.form-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow b{border-width:5px 5px 0 5px;margin-left:-5px;margin-left:-10px;margin-top:-2.5px}.select2-container--humhub.input-lg .select2-selection--multiple,.input-group-lg .select2-container--humhub .select2-selection--multiple,.form-group-lg .select2-container--humhub .select2-selection--multiple{min-height:46px}.select2-container--humhub.input-lg .select2-selection--multiple .select2-selection__choice,.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__choice,.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__choice{font-size:18px;line-height:1.3333333;border-radius:4px;margin:9px 0 0 8px;padding:0 10px}.select2-container--humhub.input-lg .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field,.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field{padding:0 16px;font-size:18px;height:44px;line-height:1.3333333}.select2-container--humhub.input-lg .select2-selection--multiple .select2-selection__clear,.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__clear,.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__clear{margin-top:10px}.select2-container--humhub.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #999 transparent;border-width:0 5px 5px 5px}.input-group-lg .select2-container--humhub.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #999 transparent;border-width:0 5px 5px 5px}.select2-container--humhub[dir="rtl"] .select2-selection--single{padding-left:24px;padding-right:12px}.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:0;padding-left:0;text-align:right}.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:12px;right:auto}.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__arrow b{margin-left:0}.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:0;margin-right:6px}.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.has-warning .select2-dropdown,.has-warning .select2-selection{border-color:#FFC107}.has-warning .select2-container--focus .select2-selection,.has-warning .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ffdb6d;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ffdb6d;border-color:#d39e00}.has-warning.select2-drop-active{border-color:#d39e00}.has-warning.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#d39e00}.has-error .select2-dropdown,.has-error .select2-selection{border-color:#FC4A64}.has-error .select2-container--focus .select2-selection,.has-error .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #feaeba;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #feaeba;border-color:#fb1839}.has-error.select2-drop-active{border-color:#fb1839}.has-error.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#fb1839}.has-success .select2-dropdown,.has-success .select2-selection{border-color:#97d271}.has-success .select2-container--focus .select2-selection,.has-success .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d0ebbe;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d0ebbe;border-color:#7bc64a}.has-success.select2-drop-active{border-color:#7bc64a}.has-success.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#7bc64a}.input-group .select2-container--humhub{display:table;table-layout:fixed;position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group.select2-humhub-prepend .select2-container--humhub .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group.select2-humhub-append .select2-container--humhub .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.select2-humhub-append .select2-container--humhub,.select2-humhub-prepend .select2-container--humhub,.select2-humhub-append .input-group-btn,.select2-humhub-prepend .input-group-btn,.select2-humhub-append .input-group-btn .btn,.select2-humhub-prepend .input-group-btn .btn{vertical-align:top}.form-control.select2-hidden-accessible{position:absolute !important;width:1px !important}.form-inline .select2-container--humhub{display:inline-block}ul.tag_input{list-style:none;background-color:#fff;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;padding:0 0 9px 4px}ul.tag_input li img{margin:0 5px 0 0}.tag_input_field{outline:none;border:none !important;padding:5px 4px 0 !important;width:170px;margin:2px 0 0 !important}.userInput,.spaceInput{background-color:#21A1B3;font-weight:600;color:#fff;border-radius:3px;font-size:12px !important;padding:2px;float:left;margin:3px 4px 0 0}.userInput i,.spaceInput i{padding:0 6px;font-size:14px;cursor:pointer;line-height:8px} \ No newline at end of file +/* Default */ +.colorDefault { + color: #f3f3f3; +} +.backgroundDefault { + background: #f3f3f3; +} +.borderDefault { + border-color: #f3f3f3; +} +/* Primary */ +.colorPrimary { + color: #435f6f !important; +} +.backgroundPrimary { + background: #435f6f !important; +} +.borderPrimary { + border-color: #435f6f !important; +} +/* Info */ +.colorInfo { + color: #21A1B3 !important; +} +.backgroundInfo { + background: #21A1B3 !important; +} +.borderInfo { + border-color: #21A1B3 !important; +} +/* Info */ +.colorLink { + color: #21A1B3 !important; +} +/* Success */ +.colorSuccess { + color: #97d271 !important; +} +.backgroundSuccess { + background: #97d271 !important; +} +.borderSuccess { + border-color: #97d271 !important; +} +/* Warning */ +.colorWarning { + color: #FFC107 !important; +} +.backgroundWarning { + background: #FFC107 !important; +} +.borderWarning { + border-color: #FFC107 !important; +} +/* Danger */ +.colorDanger { + color: #FC4A64 !important; +} +.backgroundDanger { + background: #FC4A64 !important; +} +.borderDanger { + border-color: #FC4A64 !important; +} +/* Fonts */ +.colorFont1 { + color: #bac2c7 !important; +} +.colorFont2 { + color: #7a7a7a !important; +} +.colorFont3 { + color: #000 !important; +} +.colorFont4 { + color: #555555 !important; +} +.colorFont5 { + color: #aeaeae !important; +} +.heading { + font-size: 16px; + font-weight: 300; + color: #000; + background-color: white; + border: none; + padding: 10px; +} +.text-center { + text-align: center !important; +} +.text-break { + word-wrap: break-word; + overflow-wrap: break-word; + -ms-word-break: break-all; + word-break: break-word; + -ms-hyphens: auto; + -moz-hyphens: auto; + -webkit-hyphens: auto; + hyphens: auto; +} +.img-rounded { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} +body { + word-wrap: break-word; + overflow-wrap: break-word; + -ms-word-break: break-all; + word-break: break-word; + -ms-hyphens: auto; + -moz-hyphens: auto; + -webkit-hyphens: auto; + hyphens: auto; + padding-top: 130px; + background-color: #ededed; + color: #555; + font-family: 'Open Sans', sans-serif; +} +body a, +body a:hover, +body a:focus, +body a:active, +body a.active { + color: #000; + text-decoration: none; +} +a:hover { + text-decoration: none; +} +hr { + margin-top: 10px; + margin-bottom: 10px; +} +.col-md-1, +.col-md-2, +.col-md-3, +.col-md-4, +.col-md-5, +.col-md-6, +.col-md-7, +.col-md-8, +.col-md-9, +.col-md-10, +.col-md-11, +.col-md-12 { + position: inherit; +} +.layout-nav-container { + padding: 0 0 0 15px; +} +.layout-sidebar-container { + padding: 0 15px 0 0; +} +@media (max-width: 768px) { + .layout-nav-container { + padding: 0 15px; + } + .layout-nav-container .left-navigation { + margin-bottom: 0; + } +} +h4 { + font-weight: 300; + font-size: 150%; +} +input[type=text], +input[type=password], +input[type=select] { + /* Remove First */ + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} +.powered, +.powered a { + color: #b8c7d3 !important; +} +.langSwitcher { + display: inline-block; +} +[data-ui-show-more] { + overflow: hidden; +} +@media (min-width: 768px) and (max-width: 991px) { + .layout-nav-container { + padding: 0 15px; + } + body { + padding-top: 120px; + } +} +@media print { + #topbar-first, + #topbar-second { + display: none; + } +} +span.likeLinkContainer .like.disabled, +span.likeLinkContainer .unlike.disabled { + pointer-events: none; + cursor: default; + text-decoration: none; + color: lightgrey; +} +.panel-body a[data-toggle], +.modal-body a[data-toggle] { + color: #21A1B3; +} +.showMore { + font-size: 13px; +} +.table-responsive { + word-wrap: normal; + overflow-wrap: normal; + word-break: normal; + -moz-hyphens: none; + hyphens: none; +} +.topbar { + position: fixed; + display: block; + height: 50px; + width: 100%; + padding-left: 15px; + padding-right: 15px; +} +.topbar ul.nav { + float: left; +} +.topbar ul.nav > li { + float: left; +} +.topbar ul.nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + line-height: 20px; +} +.topbar .dropdown-footer { + margin: 10px; +} +.topbar .dropdown-header { + font-size: 16px; + padding: 3px 10px; + margin-bottom: 10px; + font-weight: 300; + color: #555555; +} +.topbar .dropdown-header .dropdown-header-link { + position: absolute; + top: 2px; + right: 10px; +} +.topbar .dropdown-header .dropdown-header-link a { + color: #21A1B3 !important; + font-size: 12px; + font-weight: normal; +} +.topbar .dropdown-header:hover { + color: #555555; +} +#topbar-first { + background-color: #435f6f; + top: 0; + z-index: 1030; + color: white; +} +#topbar-first a.navbar-brand { + height: 50px; + padding: 5px; +} +#topbar-first a.navbar-brand img#img-logo { + max-height: 40px; +} +#topbar-first a.navbar-brand-text { + padding-top: 15px; +} +#topbar-first .nav > li > a:hover, +#topbar-first .nav > .open > a { + background-color: #567a8f; +} +#topbar-first .nav > .account { + height: 50px; + margin-left: 20px; +} +#topbar-first .nav > .account img { + margin-left: 10px; +} +#topbar-first .nav > .account .dropdown-toggle { + padding: 10px 5px 8px; + line-height: 1.1em; + text-align: left; +} +#topbar-first .nav > .account .dropdown-toggle span { + font-size: 12px; +} +#topbar-first .topbar-brand { + position: relative; + z-index: 2; +} +#topbar-first .topbar-actions { + position: relative; + z-index: 3; +} +#topbar-first .notifications { + position: absolute; + left: 0; + right: 0; + text-align: center; + z-index: 1; +} +#topbar-first .notifications .btn-group { + position: relative; + text-align: left; +} +#topbar-first .notifications .btn-group > a { + padding: 5px 10px; + margin: 10px 2px; + display: inline-block; + border-radius: 2px; + text-decoration: none; + text-align: left; +} +#topbar-first .notifications .btn-group > .label { + position: absolute; + top: 4px; + right: -2px; +} +#topbar-first .notifications .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; + border-width: 10px; + content: " "; + top: 1px; + margin-left: -10px; + border-top-width: 0; + border-bottom-color: #fff; + z-index: 1035; +} +#topbar-first .notifications .arrow { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; + z-index: 1001; + border-width: 11px; + left: 50%; + margin-left: -18px; + border-top-width: 0; + border-bottom-color: rgba(0, 0, 0, 0.15); + top: -19px; + z-index: 1035; +} +#topbar-first .notifications .dropdown-menu { + width: 350px; + margin-left: -148px; +} +#topbar-first .notifications .dropdown-menu ul.media-list { + max-height: 400px; + overflow: auto; +} +#topbar-first .notifications .dropdown-menu li { + position: relative; +} +#topbar-first .notifications .dropdown-menu li i.approval { + position: absolute; + left: 2px; + top: 36px; + font-size: 14px; +} +#topbar-first .notifications .dropdown-menu li i.accepted { + color: #5cb85c; +} +#topbar-first .notifications .dropdown-menu li i.declined { + color: #d9534f; +} +#topbar-first .notifications .dropdown-menu li .media { + position: relative; +} +#topbar-first .notifications .dropdown-menu li .media .img-space { + position: absolute; + top: 14px; + left: 14px; +} +#topbar-first .dropdown-footer { + margin: 10px 10px 5px; +} +#topbar-first a { + color: white; +} +#topbar-first .caret { + border-top-color: #fff; +} +#topbar-first .btn-group > a { + background-color: #4d6d7f; +} +#topbar-first .btn-enter { + background-color: #4d6d7f; + margin: 6px 0; +} +#topbar-first .btn-enter:hover { + background-color: #527588; +} +#topbar-first .media-list a { + color: #000; + padding: 0; +} +#topbar-first .media-list li { + color: #000; +} +#topbar-first .media-list li i.accepted { + color: #21A1B3 !important; +} +#topbar-first .media-list li i.declined { + color: #FC4A64 !important; +} +#topbar-first .media-list li.placeholder { + border-bottom: none; +} +#topbar-first .media-list .media .media-body .label { + padding: 0.1em 0.5em; +} +#topbar-first .account .user-title { + text-align: right; +} +#topbar-first .account .user-title span { + color: #d7d7d7; +} +#topbar-first .dropdown.account > a, +#topbar-first .dropdown.account.open > a, +#topbar-first .dropdown.account > a:hover, +#topbar-first .dropdown.account.open > a:hover { + background-color: #435f6f; +} +#topbar-second { + top: 50px; + background-color: #fff; + z-index: 1029; + background-image: none; + -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); + box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); + border-bottom: 1px solid #d4d4d4; +} +#topbar-second .dropdown-menu { + padding-top: 0; + padding-bottom: 0; +} +#topbar-second .dropdown-menu .divider { + margin: 0; +} +#topbar-second #space-menu-dropdown, +#topbar-second #search-menu-dropdown { + width: 400px; +} +#topbar-second #space-menu-dropdown .media-list, +#topbar-second #search-menu-dropdown .media-list { + max-height: 400px; + overflow: auto; +} +@media screen and (max-width: 768px) { + #topbar-second #space-menu-dropdown .media-list, + #topbar-second #search-menu-dropdown .media-list { + max-height: 200px; + } +} +#topbar-second #space-menu-dropdown form, +#topbar-second #search-menu-dropdown form { + margin: 10px; +} +#topbar-second #space-menu-dropdown .search-reset, +#topbar-second #search-menu-dropdown .search-reset { + position: absolute; + color: #BFBFBF; + margin: 7px; + top: 0px; + right: 40px; + z-index: 10; + display: none; + cursor: pointer; +} +#topbar-second .nav > li > a { + padding: 7px 13px 0; + text-decoration: none; + text-shadow: none; + font-weight: 600; + font-size: 10px; + min-height: 50px; + text-transform: uppercase; + text-align: center; +} +#topbar-second .nav > li > a:hover, +#topbar-second .nav > li > a:active, +#topbar-second .nav > li > a:focus { + border-bottom: 3px solid #21A1B3; + background-color: #f7f7f7; + color: #000; + text-decoration: none; +} +#topbar-second .nav > li > a i { + font-size: 14px; +} +#topbar-second .nav > li > a .caret { + border-top-color: #7a7a7a; +} +#topbar-second .nav > li.active > a { + min-height: 47px; +} +#topbar-second .nav > li > ul > li > a { + border-left: 3px solid #fff; + background-color: #fff; + color: #000; +} +#topbar-second .nav > li > ul > li > a:hover, +#topbar-second .nav > li > ul > li > a.active { + border-left: 3px solid #21A1B3; + background-color: #f7f7f7; + color: #000; +} +#topbar-second .nav > li > a#space-menu { + padding-right: 13px; + border-right: 1px solid #ededed; +} +#topbar-second .nav > li > a#search-menu { + padding-top: 15px; +} +#topbar-second .nav > li > a:hover, +#topbar-second .nav > li.active { + border-bottom: 3px solid #21A1B3; + background-color: #f7f7f7; + color: #000; +} +#topbar-second .nav > li.active > a:hover, +#topbar-second .nav > li.active > a:focus { + border-bottom: none; +} +#topbar-second #space-menu-dropdown li > ul > li > a > .media .media-body p { + color: #555555; + font-size: 11px; + margin: 0; + font-weight: 400; +} +@media (max-width: 767px) { + .topbar { + padding-left: 0; + padding-right: 0; + } +} +.login-container { + background-color: #435f6f; + background-image: linear-gradient(to right, #435f6f 0%, #567a8f 50%, #567a8f 100%), linear-gradient(to right, #4d6d7f 0%, #7fa0b2 51%, #7094a8 100%); + background-size: 100% 100%; + position: relative; + padding-top: 40px; +} +.login-container #img-logo { + max-width: 100%; +} +.login-container .text { + color: #fff; + font-size: 12px; + margin-bottom: 15px; +} +.login-container .text a { + color: #fff; + text-decoration: underline; +} +.login-container .panel a { + color: #21A1B3; +} +.login-container h1, +.login-container h2 { + color: #fff !important; +} +.login-container .panel { + box-shadow: 0 0 15px #627d92; + -moz-box-shadow: 0 0 15px #627d92; + -webkit-box-shadow: 0 0 15px #627d92; +} +.login-container .panel .panel-heading, +.login-container .panel .panel-body { + padding: 15px; +} +.login-container .panel h1, +.login-container .panel h2 { + color: #555 !important; +} +.login-container select { + color: #000; +} +#account-login-form .form-group { + margin-bottom: 10px; +} +.dropdown-menu li a i { + margin-right: 5px; + font-size: 14px; + display: inline-block; + width: 14px; +} +.dropdown-menu li a:hover, +.dropdown-menu li a:visited, +.dropdown-menu li a:hover, +.dropdown-menu li a:focus { + background: none; + cursor: pointer; +} +.dropdown-menu li:hover, +.dropdown-menu li.selected { + color: #000; +} +.dropdown-menu li:first-child { + margin-top: 3px; +} +.dropdown-menu li:last-child { + margin-bottom: 3px; +} +.modal .dropdown-menu, +.panel .dropdown-menu, +.nav-tabs .dropdown-menu { + border: 1px solid #d7d7d7; +} +.modal .dropdown-menu li.divider, +.panel .dropdown-menu li.divider, +.nav-tabs .dropdown-menu li.divider { + background-color: #f7f7f7; + border-bottom: none; + margin: 9px 1px !important; +} +.modal .dropdown-menu li, +.panel .dropdown-menu li, +.nav-tabs .dropdown-menu li { + border-left: 3px solid white; +} +.modal .dropdown-menu li a, +.panel .dropdown-menu li a, +.nav-tabs .dropdown-menu li a { + color: #000; + font-size: 13px; + font-weight: 600; + padding: 4px 15px; +} +.modal .dropdown-menu li a i, +.panel .dropdown-menu li a i, +.nav-tabs .dropdown-menu li a i { + margin-right: 5px; +} +.modal .dropdown-menu li a:hover, +.panel .dropdown-menu li a:hover, +.nav-tabs .dropdown-menu li a:hover { + background: none; +} +.modal .dropdown-menu li:hover, +.panel .dropdown-menu li:hover, +.nav-tabs .dropdown-menu li:hover, +.modal .dropdown-menu li.selected, +.panel .dropdown-menu li.selected, +.nav-tabs .dropdown-menu li.selected { + border-left: 3px solid #21A1B3; + background-color: #f7f7f7 !important; +} +ul.contextMenu { + border: 1px solid #d7d7d7; +} +ul.contextMenu li.divider { + background-color: #f7f7f7; + border-bottom: none; + margin: 9px 1px !important; +} +ul.contextMenu li { + border-left: 3px solid white; +} +ul.contextMenu li a { + color: #000; + font-size: 14px; + font-weight: 400; + padding: 4px 15px; +} +ul.contextMenu li a i { + margin-right: 5px; +} +ul.contextMenu li a:hover { + background: none; +} +ul.contextMenu li:hover, +ul.contextMenu li.selected { + border-left: 3px solid #21A1B3; + background-color: #f7f7f7 !important; +} +.media-list li { + padding: 10px; + border-bottom: 1px solid #eee; + position: relative; + border-left: 3px solid white; + font-size: 12px; +} +.media-list li a { + color: #555; +} +.media-list .badge-space-type { + background-color: #f7f7f7; + border: 1px solid #d7d7d7; + color: #b2b2b2; + padding: 3px 3px 2px 3px; +} +.media-list li.new { + border-left: 3px solid #21A1B3; + background-color: #c5eff4; +} +.media-list li:hover, +.media-list li.selected { + background-color: #f7f7f7; + border-left: 3px solid #21A1B3; +} +.media-list li.placeholder { + font-size: 14px !important; + border-bottom: none; +} +.media-list li.placeholder:hover { + background: none !important; + border-left: 3px solid white; +} +.media-left, +.media > .pull-left { + padding-right: 0; + margin-right: 10px; +} +.media:after { + content: ''; + clear: both; + display: block; +} +.media .time { + font-size: 11px; + color: #555555; +} +.media .img-space { + position: absolute; + top: 35px; + left: 35px; +} +.media .media-body { + overflow: hidden !important; + font-size: 13px; + white-space: normal; + word-wrap: break-word; + overflow-wrap: break-word; + -ms-word-break: break-all; + word-break: break-word; + -ms-hyphens: auto; + -moz-hyphens: auto; + -webkit-hyphens: auto; + hyphens: auto; +} +.media .media-body h4.media-heading { + font-size: 14px; + font-weight: 500; + color: #000; +} +.media .media-body h4.media-heading a { + color: #000; +} +.media .media-body h4.media-heading small, +.media .media-body h4.media-heading small a { + font-size: 11px; + color: #555555; +} +.media .media-body h4.media-heading .content { + margin-right: 35px; +} +.media .media-body .content a { + word-break: break-all; +} +.media .media-body strong { + color: #000; +} +.media .media-body h5 { + color: #aeaeae; + font-weight: 300; + margin-top: 5px; + margin-bottom: 5px; + min-height: 15px; +} +.media .media-body .module-controls { + font-size: 85%; +} +.media .media-body .module-controls a { + color: #21A1B3; +} +.media .content a { + color: #21A1B3; +} +.media .content .files a { + color: #000; +} +.content span { + word-wrap: break-word; + overflow-wrap: break-word; + -ms-word-break: break-all; + word-break: break-word; + -ms-hyphens: auto; + -moz-hyphens: auto; + -webkit-hyphens: auto; + hyphens: auto; +} +#blueimp-gallery .slide img { + max-height: 80%; +} +audio, +canvas, +progress, +video { + display: inline-block; + vertical-align: baseline; + max-width: 100%; + height: auto; +} +img { + image-orientation: from-image; +} +.panel { + word-wrap: break-word; + overflow-wrap: break-word; + -ms-word-break: break-all; + word-break: break-word; + -ms-hyphens: auto; + -moz-hyphens: auto; + -webkit-hyphens: auto; + hyphens: auto; + border: none; + background-color: #fff; + box-shadow: 0 0 3px #dadada; + -webkit-box-shadow: 0 0 3px #dadada; + -moz-box-shadow: 0 0 3px #dadada; + border-radius: 4px; + position: relative; + margin-bottom: 15px; +} +.panel h1 { + font-size: 16px; + font-weight: 300; + margin-top: 0; + color: #000; +} +.panel .panel-heading { + font-size: 16px; + font-weight: 300; + color: #000; + background-color: white; + border: none; + padding: 10px; + border-radius: 4px; +} +.panel .panel-heading .heading-link { + color: #6fdbe8 !important; + font-size: 0.8em; +} +.panel .panel-body { + padding: 10px; + font-size: 13px; +} +.panel .panel-body p { + color: #555; +} +.panel .panel-body p a { + color: #21A1B3; +} +.panel .panel-body .usersearch-statuses, +.panel .panel-body .spacesearch-visibilities { + padding-top: 5px; + padding-bottom: 5px; +} +@media (min-width: 992px) { + .panel .panel-body .usersearch-statuses, + .panel .panel-body .spacesearch-visibilities { + padding-top: 0; + padding-bottom: 0; + padding-left: 0; + } +} +.panel .statistics .entry { + margin-left: 20px; + font-size: 12px; + color: #000; +} +.panel .statistics .entry .count { + color: #21A1B3; + font-weight: 600; + font-size: 20px; + line-height: 0.8em; +} +.panel h3.media-heading small { + font-size: 75%; +} +.panel h3.media-heading small a { + color: #21A1B3; +} +.panel-danger { + border: 2px solid #FC4A64; +} +.panel-danger .panel-heading { + color: #FC4A64; +} +.panel-success { + border: 2px solid #97d271; +} +.panel-success .panel-heading { + color: #97d271; +} +.panel-warning { + border: 2px solid #FFC107; +} +.panel-warning .panel-heading { + color: #FFC107; +} +.panel.profile { + position: relative; +} +.panel.profile .controls { + position: absolute; + top: 10px; + right: 10px; +} +.panel.members .panel-body a img, +.panel.groups .panel-body a img, +.panel.follower .panel-body a img, +.panel.spaces .panel-body a img { + margin-bottom: 5px; +} +.panel-profile .panel-profile-header { + position: relative; + border: 3px solid #fff; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.panel-profile .panel-profile-header .img-profile-header-background { + border-radius: 3px; + min-height: 110px; +} +.panel-profile .panel-profile-header .img-profile-data { + position: absolute; + height: 100px; + width: 100%; + bottom: 0; + left: 0; + padding-left: 180px; + padding-top: 30px; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; + color: #fff; + pointer-events: none; + background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.38) 100%); + /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(1%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.38))); + /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.38) 100%); + /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.38) 100%); + /* Opera 11.10+ */ + background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.38) 100%); + /* IE10+ */ + background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.38) 100%); + /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#94000000', GradientType=0); + /* IE6-9 */ +} +.panel-profile .panel-profile-header .img-profile-data h1 { + font-size: 30px; + font-weight: 100; + margin-bottom: 7px; + color: #fff; + max-width: 600px; + white-space: nowrap; + text-overflow: ellipsis; +} +.panel-profile .panel-profile-header .img-profile-data h2 { + font-size: 16px; + font-weight: 400; + margin-top: 0; +} +.panel-profile .panel-profile-header .img-profile-data h1.space { + font-size: 30px; + font-weight: 700; +} +.panel-profile .panel-profile-header .img-profile-data h2.space { + font-size: 13px; + font-weight: 300; + max-width: 600px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} +.panel-profile .panel-profile-header .profile-user-photo-container { + position: absolute; + bottom: -50px; + left: 15px; +} +.panel-profile .panel-profile-header .profile-user-photo-container .profile-user-photo { + border: 3px solid #fff; + border-radius: 5px; +} +.panel-profile .panel-profile-controls { + padding-left: 160px; +} +.panel.pulse, +.panel.fadeIn { + -webkit-animation-duration: 200ms; + -moz-animation-duration: 200ms; + animation-duration: 200ms; +} +@media (max-width: 767px) { + .panel-profile-controls { + padding-left: 0 !important; + padding-top: 50px; + } + .panel-profile .panel-profile-header .img-profile-data h1 { + font-size: 20px !important; + margin-bottom: 2px; + } +} +.panel-body > .tab-menu { + margin-left: -10px; + margin-right: -10px; +} +.installer .logo { + text-align: center; +} +.installer h2 { + font-weight: 100; +} +.installer .panel { + margin-top: 50px; +} +.installer .panel h3 { + margin-top: 0; +} +.installer .powered, +.installer .powered a { + color: #bac2c7 !important; + margin-top: 10px; + font-size: 12px; +} +.installer .fa { + width: 18px; +} +.installer .check-ok { + color: #97d271; +} +.installer .check-warning { + color: #FFC107; +} +.installer .check-error { + color: #FC4A64; +} +.installer .prerequisites-list ul { + list-style: none; + padding-left: 15px; +} +.installer .prerequisites-list ul li { + padding-bottom: 5px; +} +.pagination-container { + text-align: center; +} +.pagination > .active > a, +.pagination > .active > span, +.pagination > .active > a:hover, +.pagination > .active > span:hover, +.pagination > .active > a:focus, +.pagination > .active > span:focus { + background-color: #435f6f; + border-color: #435f6f; +} +.pagination > li > a, +.pagination > li > span, +.pagination > li > a:hover, +.pagination > li > a:active, +.pagination > li > a:focus { + color: #000; + cursor: pointer; +} +.well-small { + padding: 10px; + border-radius: 3px; +} +.well { + border: none; + box-shadow: none; + background-color: #f5f5f5; + margin-bottom: 1px; +} +.well hr { + margin: 10px 0; + border-top: 1px solid #d9d9d9; +} +.well table > thead { + font-size: 11px; +} +.tab-sub-menu { + padding-left: 10px; +} +.tab-sub-menu li > a:hover, +.tab-sub-menu li > a:focus { + background-color: #f7f7f7; + border-bottom-color: #ddd; +} +.tab-sub-menu li.active > a { + background-color: #fff; + border-bottom-color: transparent; +} +.nav-tabs > li > a, +.nav-tabs > li > a[data-toggle] { + color: #555; +} +.nav-tabs > li.active > a, +.nav-tabs > li.active > a:hover, +.nav-tabs > li.active > a:focus, +.nav-tabs > li > a:hover, +.nav-tabs > li > a:focus { + color: #000; +} +.tab-menu { + padding-top: 10px; + background-color: #fff; +} +.tab-menu .nav-tabs { + padding-left: 10px; +} +.tab-menu .nav-tabs li > a { + padding-top: 12px; + border-color: #ddd; + border-bottom: 1px solid #ddd; + background-color: #f7f7f7; + max-height: 41px; + outline: none; +} +.tab-menu .nav-tabs li > a:hover, +.tab-menu .nav-tabs li > a:focus { + padding-top: 10px; + border-top: 3px solid #ddd; +} +.tab-menu .nav-tabs li > a:hover { + background-color: #f7f7f7; +} +.tab-menu .nav-tabs li.active > a, +.tab-menu .nav-tabs li.active > a:hover { + padding-top: 10px; + border-top: 3px solid #21A1B3; +} +.tab-menu .nav-tabs li.active > a { + background-color: #fff; + border-bottom-color: transparent; +} +ul.tab-menu { + padding-top: 10px; + background-color: #fff; + padding-left: 10px; +} +ul.tab-menu-settings li > a { + padding-top: 12px; + border-color: #ddd; + border-bottom: 1px solid #ddd; + background-color: #f7f7f7; + max-height: 41px; + outline: none; +} +ul.tab-menu-settings li > a:hover, +ul.tab-menu-settings li > a:focus { + padding-top: 10px; + border-top: 3px solid #ddd !important; +} +ul.tab-menu-settings li > a:hover { + background-color: #f7f7f7; +} +ul.tab-menu-settings li.active > a, +ul.tab-menu-settings li.active > a:hover, +ul.tab-menu-settings li.active > a:focus { + padding-top: 10px; + border-top: 3px solid #21A1B3 !important; +} +ul.tab-menu-settings li.active > a { + background-color: #fff; + border-bottom-color: transparent !important; +} +.nav-pills .dropdown-menu, +.nav-tabs .dropdown-menu, +.account .dropdown-menu { + background-color: #435f6f; + border: none; +} +.nav-pills .dropdown-menu li.divider, +.nav-tabs .dropdown-menu li.divider, +.account .dropdown-menu li.divider { + background-color: #39515f; + border-bottom: none; + margin: 9px 1px !important; +} +.nav-pills .dropdown-menu li, +.nav-tabs .dropdown-menu li, +.account .dropdown-menu li { + border-left: 3px solid #435f6f; +} +.nav-pills .dropdown-menu li a, +.nav-tabs .dropdown-menu li a, +.account .dropdown-menu li a { + color: white; + font-weight: 400; + font-size: 13px; + padding: 4px 15px; +} +.nav-pills .dropdown-menu li a i, +.nav-tabs .dropdown-menu li a i, +.account .dropdown-menu li a i { + margin-right: 5px; + font-size: 14px; + display: inline-block; + width: 14px; +} +.nav-pills .dropdown-menu li a:hover, +.nav-tabs .dropdown-menu li a:hover, +.account .dropdown-menu li a:hover, +.nav-pills .dropdown-menu li a:visited, +.nav-tabs .dropdown-menu li a:visited, +.account .dropdown-menu li a:visited, +.nav-pills .dropdown-menu li a:hover, +.nav-tabs .dropdown-menu li a:hover, +.account .dropdown-menu li a:hover, +.nav-pills .dropdown-menu li a:focus, +.nav-tabs .dropdown-menu li a:focus, +.account .dropdown-menu li a:focus { + background: none; +} +.nav-pills .dropdown-menu li:hover, +.nav-tabs .dropdown-menu li:hover, +.account .dropdown-menu li:hover, +.nav-pills .dropdown-menu li.selected, +.nav-tabs .dropdown-menu li.selected, +.account .dropdown-menu li.selected { + border-left: 3px solid #21A1B3; + color: #fff !important; + background-color: #39515f !important; +} +.nav-pills.preferences .dropdown .dropdown-toggle i { + color: #21A1B3; + font-size: 15px; + font-weight: 600; +} +.nav-pills.preferences .dropdown.open .dropdown-toggle, +.nav-pills.preferences .dropdown.open .dropdown-toggle:hover { + background-color: #435f6f; +} +.nav-pills.preferences .dropdown.open .dropdown-toggle i, +.nav-pills.preferences .dropdown.open .dropdown-toggle:hover i { + color: #fff; +} +.nav-pills.preferences li.divider:last-of-type { + display: none; +} +.nav-pills > li.active > a, +.nav-pills > li.active > a:hover, +.nav-pills > li.active > a:focus { + background-color: #435f6f; +} +.nav-tabs { + margin-bottom: 10px; +} +.list-group a [class^="fa-"], +.list-group a [class*=" fa-"] { + display: inline-block; + width: 18px; +} +.nav-pills.preferences { + position: absolute; + right: 10px; + top: 10px; +} +.nav-pills.preferences .dropdown .dropdown-toggle { + padding: 2px 5px; +} +.nav-pills.preferences .dropdown.open .dropdown-toggle, +.nav-pills.preferences .dropdown.open .dropdown-toggle:hover { + color: white; +} +.nav-tabs li { + font-weight: 600; + font-size: 12px; +} +.tab-content .tab-pane a { + color: #21A1B3; +} +.tab-content .tab-pane .form-group { + margin-bottom: 5px; +} +.nav-tabs.tabs-center li { + float: none; + display: inline-block; +} +.nav-tabs.tabs-small li > a { + padding: 5px 7px; +} +.nav .caret, +.nav .caret:hover, +.nav .caret:active { + border-top-color: #000; + border-bottom-color: #000; + height: 6.928px; +} +.nav li.dropdown > a:hover .caret, +.nav li.dropdown > a:active .caret { + border-top-color: #000; + border-bottom-color: #000; +} +.nav .open > a .caret, +.nav .open > a:hover .caret, +.nav .open > a:focus .caret { + border-top-color: #000; + border-bottom-color: #000; +} +.nav .open > a, +.nav .open > a:hover, +.nav .open > a:focus { + border-color: #ededed; + color: #000; +} +.nav .open > a .caret, +.nav .open > a:hover .caret, +.nav .open > a:focus .caret { + color: #000; +} +.footer-nav { + filter: opacity(0.6); + font-size: 12px; + text-align: center; +} +@media (max-width: 991px) { + .controls-header { + text-align: left !important; + } +} +.btn { + float: none; + border: none; + -webkit-box-shadow: none; + box-shadow: none; + -moz-box-shadow: none; + background-image: none; + text-shadow: none; + border-radius: 3px; + outline: none !important; + margin-bottom: 0; + font-size: 14px; + font-weight: 600; + padding: 8px 16px; +} +.input.btn { + outline: none; +} +.btn-lg { + padding: 16px 28px; +} +.btn-sm { + padding: 4px 8px; + font-size: 12px; +} +.btn-sm i { + font-size: 14px; +} +.btn-xs { + padding: 1px 5px; + font-size: 12px; +} +.btn-default { + background: #f3f3f3; + color: #7a7a7a !important; +} +.btn-default:hover, +.btn-default:focus { + background: #eeeeee; + text-decoration: none; + color: #7a7a7a; +} +.btn-default:active, +.btn-default.active { + outline: 0; + background: #e6e6e6; +} +.btn-default[disabled], +.btn-default.disabled { + background: #f8f8f8; +} +.btn-default[disabled]:hover, +.btn-default.disabled:hover, +.btn-default[disabled]:focus, +.btn-default.disabled:focus { + background: #f8f8f8; +} +.btn-default[disabled]:active, +.btn-default.disabled:active, +.btn-default[disabled].active, +.btn-default.disabled.active { + background: #f8f8f8; +} +.btn-primary { + background: #435f6f; + color: #fff !important; +} +.btn-primary:hover, +.btn-primary:focus { + background: #39515f; + text-decoration: none; +} +.btn-primary:active, +.btn-primary.active { + outline: 0; + border: 1px solid #435f6f; + padding: 7px 15px; + color: #435f6f !important; + background: #fff !important; + box-shadow: none; +} +.btn-primary:active.btn-sm, +.btn-primary.active.btn-sm { + padding: 3px 7px; +} +.btn-primary.active:hover, +.btn-primary.active:focus { + border: 1px solid #39515f; + color: #39515f !important; +} +.btn-primary[disabled], +.btn-primary.disabled { + background: #4d6d7f; +} +.btn-primary[disabled]:hover, +.btn-primary.disabled:hover, +.btn-primary[disabled]:focus, +.btn-primary.disabled:focus { + background: #4d6d7f; +} +.btn-primary[disabled]:active, +.btn-primary.disabled:active, +.btn-primary[disabled].active, +.btn-primary.disabled.active { + background: #4d6d7f !important; +} +.btn-info { + background: #21A1B3; + color: #fff !important; +} +.btn-info:hover, +.btn-info:focus { + background: #1d8e9d !important; + text-decoration: none; +} +.btn-info:active, +.btn-info.active { + outline: 0; + border: 1px solid #21A1B3; + padding: 7px 15px; + color: #21A1B3 !important; + background: #fff !important; + box-shadow: none; +} +.btn-info:active.btn-sm, +.btn-info.active.btn-sm { + padding: 3px 7px; +} +.btn-info.active:hover, +.btn-info.active:focus { + border: 1px solid #1d8e9d; + color: #1d8e9d !important; +} +.btn-info[disabled], +.btn-info.disabled { + background: #25b4c9; +} +.btn-info[disabled]:hover, +.btn-info.disabled:hover, +.btn-info[disabled]:focus, +.btn-info.disabled:focus { + background: #25b4c9; +} +.btn-info[disabled]:active, +.btn-info.disabled:active, +.btn-info[disabled].active, +.btn-info.disabled.active { + background: #25b4c9 !important; +} +.btn-danger { + background: #FC4A64; + color: #fff !important; +} +.btn-danger:hover, +.btn-danger:focus { + background: #fc314f; + text-decoration: none; +} +.btn-danger:active, +.btn-danger.active { + outline: 0; + background: #fc314f !important; +} +.btn-danger[disabled], +.btn-danger.disabled { + background: #fc6379; +} +.btn-danger[disabled]:hover, +.btn-danger.disabled:hover, +.btn-danger[disabled]:focus, +.btn-danger.disabled:focus { + background: #fc6379; +} +.btn-danger[disabled]:active, +.btn-danger.disabled:active, +.btn-danger[disabled].active, +.btn-danger.disabled.active { + background: #fc6379 !important; +} +.btn-success { + background: #97d271; + color: #fff !important; +} +.btn-success:hover, +.btn-success:focus { + background: #89cc5e; + text-decoration: none; +} +.btn-success:active, +.btn-success.active { + outline: 0; + background: #89cc5e !important; +} +.btn-success[disabled], +.btn-success.disabled { + background: #a5d884; +} +.btn-success[disabled]:hover, +.btn-success.disabled:hover, +.btn-success[disabled]:focus, +.btn-success.disabled:focus { + background: #a5d884; +} +.btn-success[disabled]:active, +.btn-success.disabled:active, +.btn-success[disabled].active, +.btn-success.disabled.active { + background: #a5d884 !important; +} +.btn-warning { + background: #FFC107; + color: #fff !important; +} +.btn-warning:hover, +.btn-warning:focus { + background: #fcbd00; + text-decoration: none; +} +.btn-warning:active, +.btn-warning.active { + outline: 0; + background: #fcbd00 !important; +} +.btn-warning[disabled], +.btn-warning.disabled { + background: #ffc721; +} +.btn-warning[disabled]:hover, +.btn-warning.disabled:hover, +.btn-warning[disabled]:focus, +.btn-warning.disabled:focus { + background: #ffc721; +} +.btn-warning[disabled]:active, +.btn-warning.disabled:active, +.btn-warning[disabled].active, +.btn-warning.disabled.active { + background: #ffc721 !important; +} +.btn-link { + color: #21A1B3 !important; +} +.btn-link:hover, +.btn-link:focus { + color: #1f99aa; + text-decoration: none; +} +.btn-link:active, +.btn-link.active { + outline: 0; + color: #1f99aa !important; +} +.btn-link[disabled], +.btn-link.disabled { + color: #25b4c9; +} +.btn-link[disabled]:hover, +.btn-link.disabled:hover, +.btn-link[disabled]:focus, +.btn-link.disabled:focus { + color: #25b4c9; +} +.btn-link[disabled]:active, +.btn-link.disabled:active, +.btn-link[disabled].active, +.btn-link.disabled.active { + color: #25b4c9 !important; +} +.radio, +.checkbox { + margin-top: 5px !important; + margin-bottom: 0; +} +div.required > label:after { + content: " *"; + color: #21A1B3; +} +div.required.has-error > label:after { + content: " *"; + color: #FC4A64; +} +.radio label, +.checkbox label { + padding-left: 10px; +} +.form-control { + border: 2px solid #ededed; + box-shadow: none; + min-height: 35px; +} +.form-control:focus { + border: 2px solid #21A1B3; + outline: 0; + box-shadow: none; +} +.form-control.form-search { + border-radius: 30px; + background-image: url("../img/icon_search16x16.png"); + background-repeat: no-repeat; + background-position: 10px 8px; + padding-left: 34px; +} +.form-group-search { + position: relative; +} +.form-group-search .form-button-search { + position: absolute; + top: 4px; + right: 4px; + border-radius: 30px; +} +textarea { + resize: none; + height: 1.5em; +} +select.form-control:not([multiple]) { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-image: url("../img/select_arrow.png") !important; + background-repeat: no-repeat; + background-position: right 16px; + overflow: hidden; +} +label { + font-weight: normal; +} +div.PendingRegistrations thead > tr > th > label, +div.PendingRegistrations tbody > tr > td > label { + margin-bottom: 0; + height: 17px; +} +label.control-label { + font-weight: bold; +} +::placeholder { + color: #bac2c7 !important; +} +::-webkit-input-placeholder { + color: #bac2c7 !important; +} +::-moz-placeholder { + color: #bac2c7 !important; +} +/* firefox 19+ */ +:-ms-input-placeholder { + color: #bac2c7 !important; +} +/* hide native password reveal icons */ +input::-ms-clear, +input::-ms-reveal { + display: none; +} +/* ie */ +input:-moz-placeholder { + color: #555555 !important; +} +.placeholder { + padding: 10px; +} +input.placeholder, +textarea.placeholder { + padding: 0 0 0 10px; + color: #999; +} +.help-block-error { + font-size: 12px; +} +.hint-block, +.help-block:not(.help-block-error) { + color: #aeaeae !important; + font-size: 12px; +} +.hint-block:hover, +.help-block:not(.help-block-error):hover { + color: #7a7a7a !important; + font-size: 12px; +} +.input-group-addon { + border: none; +} +a.input-field-addon { + font-size: 12px; + float: right; + margin-top: -10px; +} +a.input-field-addon-sm { + font-size: 11px; + float: right; + margin-top: -10px; +} +.timeZoneInputContainer { + padding-top: 10px; +} +.timeZoneInputContainer ~ .help-block { + margin: 0px; +} +.regular-checkbox:focus + .regular-checkbox-box { + border: 2px solid #000 !important; +} +.regular-checkbox:checked + .regular-checkbox-box { + border: 2px solid #21A1B3; + background: #21A1B3; + color: white; +} +.regular-checkbox-box.disabled { + background: #d7d7d7 !important; + border: 2px solid #d7d7d7 !important; + cursor: not-allowed; +} +.regular-radio:checked + .regular-radio-button:after { + background: #21A1B3; +} +.regular-radio:checked + .regular-radio-button { + background-color: transparent; + color: #99a1a7; + border: 2px solid #d7d7d7; + margin-right: 5px; +} +.regular-radio.disabled { + background: #d7d7d7 !important; + border: 2px solid #d7d7d7 !important; + cursor: not-allowed; +} +div.form-group div.checkbox .help-block { + margin-left: 33px; +} +div.form-group div.checkbox .help-block.help-block-error:empty { + display: none; +} +.errorMessage { + color: #FC4A64; + padding: 10px 0; +} +.error { + border-color: #FC4A64 !important; +} +.has-error .help-block, +.has-error .control-label, +.has-error .radio, +.has-error .checkbox, +.has-error .radio-inline, +.has-error .checkbox-inline { + color: #FC4A64 !important; +} +.has-error .form-control, +.has-error .form-control:focus { + border-color: #FC4A64; + -webkit-box-shadow: none; + box-shadow: none; +} +.has-success .help-block, +.has-success .control-label, +.has-success .radio, +.has-success .checkbox, +.has-success .radio-inline, +.has-success .checkbox-inline { + color: #97d271; +} +.has-success .form-control, +.has-success .form-control:focus { + border-color: #97d271; + -webkit-box-shadow: none; + box-shadow: none; +} +.has-warning .help-block, +.has-warning .control-label, +.has-warning .radio, +.has-warning .checkbox, +.has-warning .radio-inline, +.has-warning .checkbox-inline { + color: #FFC107; +} +.has-warning .form-control, +.has-warning .form-control:focus { + border-color: #FFC107; + -webkit-box-shadow: none; + box-shadow: none; +} +.bootstrap-timepicker-widget .form-control { + padding: 0; +} +.form-collapsible-fields { + margin-bottom: 12px; + border-left: 3px solid #435f6f; + background-color: #F4F4F4; +} +.form-collapsible-fields-label { + margin-bottom: 0px; + padding: 12px; +} +.form-collapsible-fields fieldset { + padding-top: 15px; + padding-left: 12px; + padding-right: 12px; +} +.form-collapsible-fields.opened fieldset { + display: block; +} +.form-collapsible-fields.opened .iconClose { + display: inline; +} +.form-collapsible-fields.opened .iconOpen { + display: none; +} +.form-collapsible-fields.closed fieldset, +.form-collapsible-fields.closed .iconClose { + display: none; +} +.form-collapsible-fields.closed .iconOpen { + display: inline; +} +#notification_overview_filter label { + display: block; +} +#notification_overview_list .img-space { + position: absolute; + top: 25px; + left: 25px; +} +@media (max-width: 767px) { + .notifications { + position: inherit !important; + float: left !important; + } + .notifications .dropdown-menu { + width: 300px !important; + margin-left: 0 !important; + } + .notifications .dropdown-menu .arrow { + margin-left: -142px !important; + } +} +.badge-space { + margin-top: 6px; +} +.badge-space-chooser { + padding: 3px 5px; + margin-left: 1px; +} +.badge { + padding: 3px 5px; + border-radius: 2px; + font-weight: normal; + font-family: Arial, sans-serif; + font-size: 10px !important; + text-transform: uppercase; + color: #fff; + vertical-align: baseline; + white-space: nowrap; + text-shadow: none; + background-color: #d7d7d7; + line-height: 1; +} +.popover { + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 4px; + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); +} +.popover .popover-title { + background: none; + border-bottom: none; + color: #000; + font-weight: 300; + font-size: 16px; + padding: 15px; +} +.popover .popover-content { + font-size: 13px; + padding: 5px 15px; + color: #000; +} +.popover .popover-content a { + color: #21A1B3; +} +.popover .popover-content img { + max-width: 100%; +} +.popover .popover-navigation { + padding: 15px; +} +.panel-profile .panel-profile-header .image-upload-container { + width: 100%; + height: 100%; + overflow: hidden; +} +.panel-profile .panel-profile-header .image-upload-container #bannerfileupload { + position: absolute; + top: 0; + left: 0; + opacity: 0; + width: 100%; + height: 100%; +} +.panel-profile .panel-profile-header .img-profile-header-background { + width: 100%; + max-height: 192px; +} +@media print { + .panel-profile { + display: none; + } +} +.list-group-item { + padding: 6px 15px; + border: none; + border-width: 0 !important; + border-left: 3px solid #fff !important; + font-size: 12px; + font-weight: 600; +} +.list-group-item i { + font-size: 14px; +} +a.list-group-item:hover, +a.list-group-item.active, +a.list-group-item.active:hover, +a.list-group-item.active:focus { + z-index: 2; + color: #000; + background-color: #f7f7f7; + border-left: 3px solid #21A1B3 !important; +} +@media (max-width: 991px) { + .list-group { + margin-left: 4px; + } + .list-group-item { + display: inline-block !important; + border-radius: 3px !important; + margin: 4px 0; + margin-bottom: 4px !important; + } + .list-group-item { + border: none !important; + } + a.list-group-item:hover, + a.list-group-item.active, + a.list-group-item.active:hover, + a.list-group-item.active:focus { + border: none !important; + background: #435f6f !important; + color: #fff !important; + } +} +.modal-backdrop { + background-color: rgba(0, 0, 0, 0.5); +} +.modal-dialog.fadeIn, +.modal-dialog.pulse { + -webkit-animation-duration: 200ms; + -moz-animation-duration: 200ms; + animation-duration: 200ms; +} +body.modal-open { + height: 100vh; + overflow-y: hidden; +} +@media screen and (max-width: 768px) { + .modal-dialog { + width: calc(100vw - 4px) !important; + } +} +.modal-top { + z-index: 999999 !important; +} +.modal { + overflow-y: visible; +} +.modal.in { + padding-right: 0 !important; +} +.modal-dialog-extra-small { + width: 400px; +} +.modal-dialog-small { + width: 500px; +} +.modal-dialog-normal { + width: 600px; +} +.modal-dialog-medium { + width: 768px; +} +.modal-dialog-large { + width: 900px; +} +@media screen and (max-width: 991px) { + .modal-dialog-large { + width: auto !important; + padding-top: 30px; + padding-bottom: 30px; + } +} +.modal { + border: none; +} +.modal h1, +.modal h2, +.modal h3, +.modal h4, +.modal h5 { + margin-top: 20px; + color: #000; + font-weight: 300; +} +.modal h4.media-heading { + margin-top: 0; +} +.modal-title { + font-size: 20px; + font-weight: 200; + color: #000; +} +.modal-dialog, +.modal-content { + min-width: 150px; +} +.modal-content { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + box-shadow: 0 2px 26px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.1); + -webkit-box-shadow: 0 2px 26px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0 2px 26px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.1); + border: none; +} +.modal-content .modal-header { + padding: 20px 20px 0; + border-bottom: none; + text-align: center; +} +.modal-content .modal-header .close { + margin-top: 2px; + margin-right: 5px; +} +.modal-content .modal-body { + padding: 20px; + font-size: 13px; +} +.modal-content .modal-footer { + margin-top: 0; + text-align: left; + padding: 10px 20px 30px; + border-top: none; + text-align: center; +} +.modal-content .modal-footer hr { + margin-top: 0; +} +.module-installed { + opacity: 0.5; +} +.module-installed .label-success { + background-color: #d7d7d7; +} +.tooltip-inner { + background-color: #435f6f; + max-width: 400px; + text-align: left; + padding: 2px 8px 4px; + font-weight: bold; + white-space: pre-wrap; +} +.tooltip.top .tooltip-arrow { + border-top-color: #435f6f; +} +.tooltip.top-left .tooltip-arrow { + border-top-color: #435f6f; +} +.tooltip.top-right .tooltip-arrow { + border-top-color: #435f6f; +} +.tooltip.right .tooltip-arrow { + border-right-color: #435f6f; +} +.tooltip.left .tooltip-arrow { + border-left-color: #435f6f; +} +.tooltip.bottom .tooltip-arrow { + border-bottom-color: #435f6f; +} +.tooltip.bottom-left .tooltip-arrow { + border-bottom-color: #435f6f; +} +.tooltip.bottom-right .tooltip-arrow { + border-bottom-color: #435f6f; +} +.tooltip.in { + opacity: 1; + filter: alpha(opacity=100); +} +.progress { + height: 10px; + margin-bottom: 15px; + box-shadow: none; + background: #ededed; + border-radius: 10px; +} +.progress-bar-info { + background-color: #21A1B3; + -webkit-box-shadow: none; + box-shadow: none; +} +#nprogress .bar { + height: 2px; + background: #27c0d5; +} +table { + margin-bottom: 0 !important; +} +table th { + font-size: 11px; + color: #555555; + font-weight: normal; +} +table thead tr th { + border: none !important; +} +table .time { + font-size: 12px; +} +table td a:hover { + color: #21A1B3; +} +.table > thead > tr > th, +.table > tbody > tr > th, +.table > tfoot > tr > th, +.table > thead > tr > td, +.table > tbody > tr > td, +.table > tfoot > tr > td { + padding: 10px 10px 10px 0; +} +.table > thead > tr > th select, +.table > tbody > tr > th select, +.table > tfoot > tr > th select, +.table > thead > tr > td select, +.table > tbody > tr > td select, +.table > tfoot > tr > td select { + font-size: 12px; + padding: 4px 8px; + height: 30px; + margin: 0; +} +.table-middle > thead > tr > th, +.table-middle > tbody > tr > th, +.table-middle > tfoot > tr > th, +.table-middle > thead > tr > td, +.table-middle > tbody > tr > td, +.table-middle > tfoot > tr > td { + vertical-align: middle !important; +} +@media (max-width: 767px) { + .table-responsive > .table > tbody > tr > td.notification-type { + white-space: normal; + } +} +.comment-container { + margin-top: 10px; +} +.comment-container .wall-entry-controls { + margin-left: 35px; +} +@media (max-width: 767px) { + .comment .post-files img { + height: 100px; + } +} +.comment { + /*-- Since v1.2 overflow: visible */ +} +.comment .media { + position: relative !important; + margin-top: 0; +} +.comment .media .nav-pills.preferences { + display: none; + right: -3px; +} +.comment .media.comment-current { + background: rgba(255, 193, 7, 0.25); + padding: 0 5px 5px 5px; + margin: 0 -5px -5px -5px; + border-radius: 3px; +} +.comment .media.comment-current hr { + position: relative; + top: -6px; +} +.comment .media.comment-current:first-of-type { + padding-top: 5px; + margin-top: -5px; +} +.comment .media.comment-current:first-of-type > .nav.preferences { + margin-top: 10px; +} +.comment .media.comment-current > .nav.preferences { + margin-right: 10px; +} +.comment .comment-blocked-user img[data-contentcontainer-id] { + -webkit-filter: grayscale(100%); + filter: grayscale(100%); +} +.comment .media-body { + overflow: visible; +} +.comment .jp-progress { + background-color: #dbdcdd !important; +} +.comment .jp-play-bar { + background: #cacaca; +} +.comment .post-file-list { + background-color: #ededed; +} +.comment.guest-mode .media:last-child .wall-entry-controls { + margin-bottom: 0; + margin-left: 35px; +} +.comment.guest-mode .media:last-child hr { + display: none; +} +.comment_create, +.content_edit { + position: relative; +} +.comment_create .comment-buttons, +.content_edit .comment-buttons { + position: absolute; + bottom: 2px; + right: 5px; + z-index: 300; +} +.comment_create .comment-buttons button, +.content_edit .comment-buttons button { + background-color: #21A1B3 !important; + color: #fff !important; +} +.comment_create .has-error + .comment-buttons, +.content_edit .has-error + .comment-buttons { + bottom: 19px !important; +} +.comment_create .btn-comment-submit, +.content_edit .btn-comment-submit { + margin-top: 3px; +} +.comment_create .fileinput-button, +.content_edit .fileinput-button { + float: left; + padding: 6px 10px; + background: transparent !important; +} +.comment_create .fileinput-button i, +.content_edit .fileinput-button i { + color: #aeaeae; +} +.comment_create .fileinput-button i:hover, +.content_edit .fileinput-button i:hover { + color: #21A1B3; +} +.comment_create .fileinput-button:hover i, +.content_edit .fileinput-button:hover i { + color: #21A1B3; +} +.comment_create .fileinput-button:active, +.content_edit .fileinput-button:active { + box-shadow: none !important; +} +.post-richtext-input-group { + position: relative; +} +.post-richtext-input-group .comment-buttons { + bottom: 7px !important; +} +.comment-container .content_edit { + margin-left: 35px; +} +.comment-container .media { + overflow: visible; +} +.comment-container [data-ui-richtext] pre, +.comment-container [data-ui-richtext] pre code.hljs { + background-color: #eaeaea; +} +.comment_edit_content { + margin-left: 35px; + margin-top: 0; +} +.comment-message { + overflow: hidden; + word-wrap: break-word; + overflow-wrap: break-word; + -ms-word-break: break-all; + word-break: break-word; + -ms-hyphens: auto; + -moz-hyphens: auto; + -webkit-hyphens: auto; + hyphens: auto; +} +.comment-create-input-group, +.post-richtext-input-group { + position: relative; +} +.comment-create-input-group .ProsemirrorEditor .ProseMirror, +.post-richtext-input-group .ProsemirrorEditor .ProseMirror { + padding-right: 72px; +} +.comment-create-input-group .form-group, +.post-richtext-input-group .form-group, +.comment-create-input-group .help-block, +.post-richtext-input-group .help-block { + margin: 0; +} +.comment-create-input-group.scrollActive .comment-buttons { + right: 22px; +} +.comment .media .media-body h4.media-heading a { + font-size: 13px; + color: #000; + margin-bottom: 3px; + font-weight: 500; +} +div.comment > div.media:first-of-type hr.comment-separator { + display: none; +} +div.comment > div.media:first-of-type .nav-pills.preferences { + display: none; + top: -3px; +} +hr.comments-start-separator { + margin-top: 10px; +} +div.nested-comments-root { + margin-left: 28px; +} +div.nested-comments-root .ProseMirror-menubar-wrapper { + z-index: 210; +} +div.nested-comments-root hr.comment-separator { + display: inherit !important; +} +div.nested-comments-root hr.comments-start-separator { + display: none; +} +div.nested-comments-root a.show-all-link { + margin-top: 10px; +} +div.nested-comments-root div.comment .media { + position: relative !important; + margin-top: 0; +} +div.nested-comments-root div.comment .media .nav-pills.preferences { + display: none; + top: 8px; + right: 0; +} +div.nested-comments-root div.comment-container { + margin-top: 0; + padding-bottom: 0; + padding-top: 0; +} +.grid-view img { + width: 24px; + height: 24px; +} +.grid-view .filters input, +.grid-view .filters select { + border: 2px solid #ededed; + box-shadow: none; + min-height: 35px; + border-radius: 4px; + font-size: 12px; + padding: 4px; +} +.grid-view .filters input:focus, +.grid-view .filters select:focus { + border: 2px solid #21A1B3; + outline: 0; + box-shadow: none; +} +.grid-view { + padding: 15px 0 0; +} +.grid-view img { + border-radius: 3px; +} +.grid-view table th { + font-size: 13px !important; + font-weight: bold !important; +} +.grid-view table td { + vertical-align: middle !important; +} +.grid-view table tr { + font-size: 13px !important; +} +.grid-view table thead tr th:first-of-type { + padding-left: 5px; +} +.grid-view table tbody tr { + height: 50px; +} +.grid-view table tbody tr td:first-of-type { + padding-left: 5px; +} +.grid-view .summary { + font-size: 12px; + color: #bac2c7; +} +.permission-grid-editor > .table > tbody > tr:first-child > td { + border: none; +} +.permission-grid-editor { + padding-top: 0px; +} +.detail-view td, +.detail-view th { + padding: 8px !important; +} +.detail-view th { + font-size: 13px; +} +.oembed_snippet[data-oembed-provider="youtube.com"], +.oembed_snippet { + margin-top: 10px; + position: relative; + padding-bottom: 55%; + padding-top: 15px; + overflow: hidden; +} +.oembed_snippet[data-oembed-provider="twitter.com"] { + padding-bottom: 0 !important; + padding-top: 0; + margin-top: 0; +} +.oembed_snippet iframe { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} +.oembed_confirmation { + background: #feebb4; + border-radius: 4px; + padding: 15px; + line-height: 30px; +} +.oembed_confirmation i.fa { + float: left; + color: #02a0b0; + background: #FFF; + border-radius: 50%; + font-size: 30px; + line-height: 25px; + margin-right: 15px; +} +.oembed_confirmation > div:not(.clearfix) { + float: left; +} +.oembed_confirmation .regular-checkbox-box { + top: 6px; +} +.oembed_confirmation .regular-checkbox:not(:checked) + .regular-checkbox-box { + background: #FFF; +} +.oembed_confirmation .regular-checkbox:checked + .regular-checkbox-box:after { + top: -8px; +} +#oembed-providers { + width: 100%; + display: flex; + flex-direction: row; + justify-content: left; + align-items: center; + flex-wrap: wrap; + margin: 0 -0.5rem; +} +#oembed-providers .oembed-provider-container { + padding: 0; +} +#oembed-providers .oembed-provider-container .oembed-provider { + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: center; + border: 1px solid #ddd; + border-radius: 2px; + padding: 0.75rem; + margin: 0 0.5rem 0.5rem 0.5rem; +} +#oembed-providers .oembed-provider-container .oembed-provider .oembed-provider-name { + display: flex; + justify-content: center; + align-items: center; +} +#oembed-providers .oembed-provider-container .oembed-provider .oembed-provider-name .label.label-error { + margin-left: 2px; +} +#endpoint-parameters { + display: flex; + flex-direction: row; + justify-content: left; + align-items: center; + flex-wrap: wrap; + margin: 0 -15px; +} +.activities { + max-height: 400px; + overflow: auto; +} +.activities li.activity-entry { + padding: 0; +} +.activities li .media { + position: relative; + padding: 10px; +} +.activities li .media .img-space { + position: absolute; + top: 24px; + left: 24px; +} +.activities li .media .media-body { + max-width: 295px; +} +.contentForm_options { + margin-top: 10px; + min-height: 29px; +} +.contentForm_options .btn_container { + position: relative; +} +.contentForm_options .btn_container .label-public { + position: absolute; + right: 40px; + top: 11px; +} +#content-topic-bar { + margin-top: 5px; + text-align: right; +} +#content-topic-bar .label { + margin-left: 4px; +} +#contentFormError { + color: #FC4A64; + padding-left: 0; + list-style: none; +} +.placeholder-empty-stream { + background-image: url("../img/placeholder-postform-arrow.png"); + background-repeat: no-repeat; + padding: 37px 0 0 70px; + margin-left: 90px; +} +#streamUpdateBadge { + text-align: center; + z-index: 9999; + margin-bottom: 15px; + margin-top: 15px; +} +#streamUpdateBadge .label { + border-radius: 10px; + font-size: 0.8em !important; + padding: 5px 10px; +} +#wallStream .back_button_holder { + padding-bottom: 15px; +} +.wall-entry { + position: relative; +} +.wall-entry .panel .panel-body { + padding: 10px; +} +.wall-entry .wall-entry-header { + color: #000; + position: relative; + padding-bottom: 10px; + margin-bottom: 10px; + border-bottom: 1px solid #eeeeee; +} +.wall-entry .wall-entry-header .img-space { + top: 25px; + left: 25px; +} +.wall-entry .wall-entry-header .wall-entry-container-link { + color: #21A1B3; +} +.wall-entry .wall-entry-header .stream-entry-icon-list { + position: absolute; + top: 0; + right: 25px; + display: inline-block; + padding-top: 2px; +} +.wall-entry .wall-entry-header .stream-entry-icon-list i { + padding-right: 5px; +} +.wall-entry .wall-entry-header .stream-entry-icon-list .icon-pin { + color: #FC4A64; +} +.wall-entry .wall-entry-header .stream-entry-icon-list .fa-archive { + color: #FFC107; +} +.wall-entry .wall-entry-header .wall-entry-header-image { + display: table-cell; + width: 40px; + padding-right: 10px; +} +.wall-entry .wall-entry-header .wall-entry-header-image .fa { + font-size: 2.39em; + color: #21A1B3; + margin-top: 5px; +} +.wall-entry .wall-entry-header .wall-entry-header-info { + display: table-cell; + padding-right: 30px; + width: 100%; +} +.wall-entry .wall-entry-header .wall-entry-header-info .media-heading { + font-size: 15px; + padding-top: 1px; + margin-bottom: 3px; +} +.wall-entry .wall-entry-header .wall-entry-header-info i.archived { + color: #FFC107; +} +.wall-entry .wall-entry-header .preferences { + position: absolute; + right: 0; + top: 0; +} +.wall-entry .wall-entry-header .media-subheading i.fa-caret-right { + margin: 0 2px; +} +.wall-entry .wall-entry-header .media-subheading .wall-entry-icons { + display: inline-block; +} +.wall-entry .wall-entry-header .media-subheading .wall-entry-icons i { + margin-right: 2px; +} +.wall-entry .wall-entry-header .media-subheading .time, +.wall-entry .wall-entry-header .media-subheading i, +.wall-entry .wall-entry-header .media-subheading span { + font-size: 11px; + white-space: nowrap; +} +.wall-entry .wall-entry-body { + padding-left: 50px; +} +.wall-entry .wall-entry-body .wall-entry-content { + margin-bottom: 5px; +} +.wall-entry .wall-entry-body .wall-entry-content .post-short-text { + font-size: 1.6em; +} +.wall-entry .wall-entry-body .wall-entry-content .post-short-text .emoji { + width: 20px; +} +.wall-entry .wall-entry-body audio, +.wall-entry .wall-entry-body video { + width: 100%; +} +.wall-entry .wall-stream-footer .wall-stream-addons .files { + margin-bottom: 5px; +} +.wall-entry .content a { + color: #21A1B3; +} +.wall-entry .content img { + max-width: 100%; +} +.wall-entry .media { + overflow: visible; +} +.wall-entry .well { + margin-bottom: 0; +} +.wall-entry .well .comment .show-all-link { + font-size: 12px; + cursor: pointer; +} +.wall-entry .media-heading { + font-size: 14px; + padding-top: 1px; + margin-bottom: 3px; +} +.wall-entry .media-heading .labels { + padding-right: 32px; +} +.wall-entry .media-heading .viaLink { + font-size: 13px; +} +.wall-entry .media-heading .viaLink i { + color: #555555; + padding-left: 4px; + padding-right: 4px; +} +.wall-entry .media-subheading { + color: #555555; + font-size: 12px; +} +.wall-entry .media-subheading .time { + font-size: 12px; + white-space: nowrap; +} +.wall-entry [data-ui-richtext] h1 { + font-size: 1.45em; + font-weight: normal; +} +.wall-entry [data-ui-richtext] h2 { + font-size: 1.3em; + font-weight: normal; +} +.wall-entry [data-ui-richtext] h3 { + font-size: 1.2em; + font-weight: normal; +} +.wall-entry [data-ui-richtext] h4 { + font-size: 1.1em; + font-weight: normal; +} +.wall-entry [data-ui-richtext] h5 { + font-size: 1em; + font-weight: normal; +} +.wall-entry [data-ui-richtext] h6 { + font-size: 0.85em; + font-weight: normal; +} +@media (max-width: 767px) { + .wall-entry .wall-entry-body { + padding-left: 0; + } + #wallStream .back_button_holder { + padding-bottom: 5px; + text-align: center; + } +} +.wall-entry-controls a { + font-size: 11px; + color: #21A1B3 !important; + margin-top: 10px; + margin-bottom: 0; +} +#wall-stream-filter-nav { + font-size: 12px; + margin-bottom: 10px; + padding-top: 2px; + border-radius: 0 0 4px 4px; +} +#wall-stream-filter-nav .wall-stream-filter-root { + margin: 0; + border: 0 !important; +} +#wall-stream-filter-nav .filter-panel { + padding: 0 10px; +} +#wall-stream-filter-nav .wall-stream-filter-head { + padding: 5px 5px 10px 5px; + border-bottom: 1px solid #ddd; +} +#wall-stream-filter-nav .wall-stream-filter-body { + overflow: hidden; + background-color: #f7f7f7; + border: 1px solid #ddd; + border-top: 0; + border-radius: 0 0 4px 4px; +} +#wall-stream-filter-nav hr { + margin: 5px 0 0 0; +} +#wall-stream-filter-nav .topic-remove-label { + float: left; +} +#wall-stream-filter-nav .topic-remove-label, +#wall-stream-filter-nav .content-type-remove-label { + margin-right: 6px; +} +#wall-stream-filter-nav .select2 { + width: 260px !important; + margin-bottom: 5px; + margin-top: 2px; +} +#wall-stream-filter-nav .select2 .select2-search__field { + height: 25px !important; +} +#wall-stream-filter-nav .select2 .select2-selection__choice { + height: 23px !important; +} +#wall-stream-filter-nav .select2 .select2-selection__choice span, +#wall-stream-filter-nav .select2 .select2-selection__choice i { + line-height: 19px !important; +} +#wall-stream-filter-nav .select2 .select2-selection__choice .img-rounded { + width: 18px !important; + height: 18px !important; +} +#wall-stream-filter-nav .wall-stream-filter-bar { + display: inline; + float: right; + white-space: normal; +} +#wall-stream-filter-nav .wall-stream-filter-bar .label { + height: 18px; + padding-top: 4px; + background-color: #fff; +} +#wall-stream-filter-nav .wall-stream-filter-bar .btn, +#wall-stream-filter-nav .wall-stream-filter-bar .label { + box-shadow: 0 0 2px #7a7a7a; + -webkit-box-shadow: 0 0 2px #7a7a7a; + -moz-box-shadow: 0 0 2px #7a7a7a; +} +@media (max-width: 767px) { + #wall-stream-filter-nav { + margin-bottom: 5px; + } + #wall-stream-filter-nav .wall-stream-filter-root { + white-space: nowrap; + } + #wall-stream-filter-nav .wall-stream-filter-body { + overflow: auto; + } +} +.filter-root { + margin: 15px; +} +.filter-root .row { + display: table !important; +} +.filter-root .filter-panel { + padding: 0 5px; + display: table-cell !important; + float: none; +} +.filter-root .filter-panel .filter-block strong { + margin-bottom: 5px; +} +.filter-root .filter-panel .filter-block ul.filter-list { + list-style: none; + padding: 0; + margin: 0 0 5px; +} +.filter-root .filter-panel .filter-block ul.filter-list li { + font-size: 12px; + padding: 2px; +} +.filter-root .filter-panel .filter-block ul.filter-list li a { + color: #000; +} +.filter-root .filter-panel div.filter-block:last-of-type ul.filter-list { + margin: 0; +} +.filter-root .filter-panel + .filter-panel { + border-left: 2px solid #ededed; +} +.stream-entry-loader { + float: right; + margin-top: 5px; +} +.load-suppressed { + margin-top: -17px; + margin-bottom: 15px; + text-align: center; +} +.load-suppressed a { + display: inline-block; + background-color: white; + padding: 5px; + border-radius: 0 0 4px 4px; + border: 1px solid #ddd; + font-size: 11px; +} +@media print { + .wall-entry { + page-break-inside: avoid; + } + #wall-stream-filter-nav, + #contentFormBody { + display: none; + } +} +.space-owner { + text-align: center; + margin: 14px 0; + font-size: 13px; + color: #999; +} +.space-member-sign { + color: #97d271; + position: absolute; + top: 42px; + left: 42px; + font-size: 16px; + background: #fff; + width: 24px; + height: 24px; + padding: 2px 3px 1px 4px; + border-radius: 50px; + border: 2px solid #97d271; +} +#space-menu-dropdown i.type { + font-size: 16px; + color: #BFBFBF; +} +#space-menu-spaces [data-space-chooser-item] { + cursor: pointer; +} +#space-menu-dropdown .input-group-addon { + border-radius: 0 4px 4px 0; +} +#space-menu-dropdown .input-group-addon.focus { + border-radius: 0 4px 4px 0; + border: 2px solid #21A1B3; + border-left: 0; +} +.input-group #space-menu-search { + border-right: 0; +} +#space-menu-dropdown div:not(.input-group) > .search-reset { + top: 10px !important; + right: 15px !important; +} +#space-directory-link i { + margin-right: 0; +} +.space-acronym { + color: #fff; + text-align: center; + display: inline-block; +} +.current-space-image { + margin-right: 3px; + margin-top: 3px; +} +@media (max-width: 767px) { + #space-menu > .title { + display: none; + } + #space-menu-dropdown { + width: 300px !important; + } +} +.files, +#postFormFiles_list { + padding-left: 0; +} +ul.files { + list-style: none; + margin: 0 0 5px; + padding: 0; +} +ul.files li.file-preview-item { + padding-left: 24px; + display: none; +} +ul.files li.file-preview-item .file-fileInfo { + padding-right: 20px; +} +.contentForm-upload-list { + padding-left: 0; +} +.contentForm-upload-list li:first-child { + margin-top: 10px; +} +.file_upload_remove_link, +.file_upload_remove_link:hover { + color: #FC4A64; + cursor: pointer; +} +.file-preview-item { + text-overflow: ellipsis; + overflow: hidden; +} +.post-files { + margin-top: 10px; + margin-bottom: 10px; +} +.post-files video { + border-radius: 4px; +} +.post-files .jp-audio { + margin-bottom: 10px; +} +.post-files .col-media { + padding-left: 0 !important; + padding-right: 0 !important; +} +.post-files img { + vertical-align: top; + padding: 2px; + height: 150px; + width: 100%; + object-fit: cover; + border-radius: 4px; +} +@media (max-width: 650px) { + .post-files img { + height: 100px; + } +} +.post-file-list { + padding: 10px; + padding-bottom: 1px; + margin-bottom: 10px !important; +} +.post-file-list a, +.post-file-list a:active, +.post-file-list a:focus, +.post-file-list a:hover { + color: #21A1B3; +} +#wallStream.mobile .post-files { + margin-top: 10px; + display: flex; + overflow-x: auto; +} +#wallStream.mobile .post-files img { + max-width: 190px; + height: 100px; + width: auto; +} +.file-preview-content { + cursor: pointer; +} +.image-upload-container { + position: relative; +} +.image-upload-container .image-upload-buttons { + display: none; + position: absolute; + right: 5px; + bottom: 5px; +} +.image-upload-container input[type="file"] { + position: absolute; + opacity: 0; +} +.image-upload-container .image-upload-loader { + display: none; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + padding: 20px; + background: #f8f8f8; +} +.mime { + background-repeat: no-repeat; + background-position: 0 0; + padding: 1px 0 4px 26px; +} +.mime-word { + background-image: url("../img/mime/word.png"); +} +.mime-excel { + background-image: url("../img/mime/excel.png"); +} +.mime-powerpoint { + background-image: url("../img/mime/powerpoint.png"); +} +.mime-pdf { + background-image: url("../img/mime/pdf.png"); +} +.mime-zip { + background-image: url("../img/mime/zip.png"); +} +.mime-image { + background-image: url("../img/mime/image.png"); +} +.mime-file { + background-image: url("../img/mime/file.png"); +} +.mime-photoshop { + background-image: url("../img/mime/photoshop.png"); +} +.mime-illustrator { + background-image: url("../img/mime/illustrator.png"); +} +.mime-video { + background-image: url("../img/mime/video.png"); +} +.mime-audio { + background-image: url("../img/mime/audio.png"); +} +@media (max-width: 480px) { + .jp-current-time { + margin-left: 0 !important; + } + .jp-audio { + width: auto !important; + margin-left: 0 !important; + } + .jp-audio .jp-controls { + padding: 2px 12px 0 !important; + } + .jp-audio .jp-progress { + left: 3px !important; + top: 45px !important; + width: 200px !important; + } + .jp-audio .jp-volume-controls { + position: absolute !important; + top: 15px !important; + left: 170px !important; + } + .jp-audio .jp-time-holder { + left: 3px !important; + top: 60px !important; + width: 200px !important; + } + .jp-audio .jp-toggles { + left: 210px !important; + top: 45px !important; + width: auto !important; + } + .jp-playlist ul { + padding: 0 0 0 0 !important; + } +} +div.jp-type-playlist div.jp-playlist a.jp-playlist-current, +div.jp-type-playlist div.jp-playlist a:hover { + color: #21A1B3 !important; +} +.jp-details, +.jp-playlist { + border-top: 1px solid #21A1B3; +} +.jp-audio, +.jp-audio-stream, +.jp-video { + border: 1px solid #21A1B3; +} +ul.tour-list { + list-style: none; + margin-bottom: 0; + padding-left: 10px; +} +ul.tour-list li { + padding-top: 5px; +} +ul.tour-list li a { + color: #21A1B3; +} +ul.tour-list li a .fa { + width: 16px; +} +ul.tour-list li.completed a { + text-decoration: line-through; + color: #555555; +} +.atwho-view { + position: absolute; + top: 0; + left: 0; + display: none; + margin-top: 18px; + background: white; + color: #555555; + font-size: 14px; + font-weight: 400; + border: 1px solid #d7d7d7; + border-radius: 4px; + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + min-width: 120px; + max-width: 265px; + z-index: 11110 !important; + padding: 5px 0; +} +.atwho-view strong, +.atwho-view b { + font-weight: normal; +} +.atwho-view ul li.hint { + background: #fff !important; + border-left: 3px solid transparent !important; + font-size: 12px; + color: #999; +} +.atwho-view .cur small { + color: red; +} +.atwho-view strong { + background-color: #f9f0d2; +} +.atwho-view .cur strong { + background-color: #f9f0d2; +} +.atwho-view ul { + /* width: 100px; */ + list-style: none; + padding: 0; + margin: auto; +} +.atwho-view ul li { + display: block; + padding: 5px 10px; + border-left: 3px solid transparent; + padding: 4px 15px 4px 8px; + cursor: pointer; + /* border-top: 1px solid #C8C8C8; */ +} +.atwho-view small { + font-size: smaller; + color: #777; + font-weight: normal; +} +.atwho-input.form-control { + min-height: 36px; + height: auto; + padding-right: 95px; + word-wrap: break-word; +} +.atwho-input p { + padding: 0; + margin: 0; +} +.atwho-placeholder { + color: #bebebe !important; +} +.atwho-emoji-entry { + float: left; + padding: 4px !important; + margin: 0px !important; + border: none !important; +} +.atwho-emoji-entry:hover, +.atwho-emoji-entry:active, +.atwho-emoji-entry:focus { + padding: 4px !important; + margin: 0px !important; + border: none !important; + background-color: #f7f7f7 !important; + border-radius: 3px; +} +.atwho-view .cur { + border-left: 3px solid #21A1B3; + background-color: #f7f7f7 !important; +} +.atwho-user, +.atwho-space, +.atwho-input a { + color: #21A1B3; +} +.atwho-input a:hover { + color: #21A1B3; +} +.atwho-view strong { + background-color: #f9f0d2; +} +.atwho-view .cur strong { + background-color: #f9f0d2; +} +.atwho-view span { + padding: 5px; +} +.sk-spinner-three-bounce.sk-spinner { + margin: 0 auto; + width: 70px; + text-align: center; +} +.loader { + padding: 30px 0; +} +.loader .sk-spinner-three-bounce div, +.loader .sk-spinner-three-bounce span { + width: 12px; + height: 12px; + background-color: #21A1B3; + border-radius: 100%; + display: inline-block; + -webkit-animation: sk-threeBounceDelay 1.4s infinite ease-in-out; + animation: sk-threeBounceDelay 1.4s infinite ease-in-out; + /* Prevent first frame from flickering when animation starts */ + -webkit-animation-fill-mode: both; + animation-fill-mode: both; +} +.loader .sk-spinner-three-bounce .sk-bounce1 { + -webkit-animation-delay: -0.32s; + animation-delay: -0.32s; +} +.loader .sk-spinner-three-bounce .sk-bounce2 { + -webkit-animation-delay: -0.16s; + animation-delay: -0.16s; +} +@-webkit-keyframes sk-threeBounceDelay { + 0%, + 80%, + 100% { + -webkit-transform: scale(0); + transform: scale(0); + } + 40% { + -webkit-transform: scale(1); + transform: scale(1); + } +} +@keyframes sk-threeBounceDelay { + 0%, + 80%, + 100% { + -webkit-transform: scale(0); + transform: scale(0); + } + 40% { + -webkit-transform: scale(1); + transform: scale(1); + } +} +.loader-modal { + padding: 8px 0; +} +.loader-postform { + padding: 9px 0; +} +.loader-postform .sk-spinner-three-bounce.sk-spinner { + text-align: left; + margin: 0; +} +.md-editor.active { + border: 2px solid #21A1B3 !important; +} +.md-editor textarea { + padding: 10px !important; +} +.markdown-render, +[data-ui-markdown], +[data-ui-richtext] { + overflow: hidden; + overflow-wrap: break-word; + line-height: 1.57; +} +.markdown-render h1, +[data-ui-markdown] h1, +[data-ui-richtext] h1, +.markdown-render h2, +[data-ui-markdown] h2, +[data-ui-richtext] h2, +.markdown-render h3, +[data-ui-markdown] h3, +[data-ui-richtext] h3, +.markdown-render h4, +[data-ui-markdown] h4, +[data-ui-richtext] h4, +.markdown-render h5, +[data-ui-markdown] h5, +[data-ui-richtext] h5, +.markdown-render h6, +[data-ui-markdown] h6, +[data-ui-richtext] h6 { + text-align: start; + font-weight: normal; + margin: 1.2em 0 0.8em; + color: #555; +} +.markdown-render h1:first-child, +[data-ui-markdown] h1:first-child, +[data-ui-richtext] h1:first-child, +.markdown-render h2:first-child, +[data-ui-markdown] h2:first-child, +[data-ui-richtext] h2:first-child, +.markdown-render h3:first-child, +[data-ui-markdown] h3:first-child, +[data-ui-richtext] h3:first-child, +.markdown-render h4:first-child, +[data-ui-markdown] h4:first-child, +[data-ui-richtext] h4:first-child, +.markdown-render h5:first-child, +[data-ui-markdown] h5:first-child, +[data-ui-richtext] h5:first-child, +.markdown-render h6:first-child, +[data-ui-markdown] h6:first-child, +[data-ui-richtext] h6:first-child { + margin: 0 0 0.8em; +} +.markdown-render h1, +[data-ui-markdown] h1, +[data-ui-richtext] h1 { + font-size: 1.7em; +} +.markdown-render h2, +[data-ui-markdown] h2, +[data-ui-richtext] h2 { + font-size: 1.5em; +} +.markdown-render h3, +[data-ui-markdown] h3, +[data-ui-richtext] h3 { + font-size: 1.2em; +} +.markdown-render h4, +[data-ui-markdown] h4, +[data-ui-richtext] h4 { + font-size: 1.1em; +} +.markdown-render h5, +[data-ui-markdown] h5, +[data-ui-richtext] h5 { + font-size: 1em; +} +.markdown-render h6, +[data-ui-markdown] h6, +[data-ui-richtext] h6 { + font-size: 0.85em; +} +.markdown-render p, +[data-ui-markdown] p, +[data-ui-richtext] p, +.markdown-render pre, +[data-ui-markdown] pre, +[data-ui-richtext] pre, +.markdown-render blockquote, +[data-ui-markdown] blockquote, +[data-ui-richtext] blockquote, +.markdown-render ul, +[data-ui-markdown] ul, +[data-ui-richtext] ul, +.markdown-render ol, +[data-ui-markdown] ol, +[data-ui-richtext] ol { + margin: 0 0 1.2em; +} +.markdown-render li ul, +[data-ui-markdown] li ul, +[data-ui-richtext] li ul, +.markdown-render li ol, +[data-ui-markdown] li ol, +[data-ui-richtext] li ol { + margin: 0; +} +.markdown-render p:last-child, +[data-ui-markdown] p:last-child, +[data-ui-richtext] p:last-child { + margin: 0; +} +.markdown-render pre, +[data-ui-markdown] pre, +[data-ui-richtext] pre { + padding: 0; + border: none; + background-color: #f7f7f7; +} +.markdown-render pre code, +[data-ui-markdown] pre code, +[data-ui-richtext] pre code { + background-color: #f7f7f7; + color: #555; +} +.markdown-render code, +[data-ui-markdown] code, +[data-ui-richtext] code { + background-color: #dbf5f8; + color: #197a88; +} +.markdown-render blockquote, +[data-ui-markdown] blockquote, +[data-ui-richtext] blockquote { + background-color: rgba(128, 128, 128, 0.05); + border-top-right-radius: 5px; + border-bottom-right-radius: 5px; + padding: 15px 20px; + font-size: 1em; + border-left: 5px solid #435f6f; +} +.markdown-render dt, +[data-ui-markdown] dt, +[data-ui-richtext] dt, +.markdown-render dd, +[data-ui-markdown] dd, +[data-ui-richtext] dd { + margin-top: 5px; + margin-bottom: 5px; + line-height: 1.45; +} +.markdown-render dt, +[data-ui-markdown] dt, +[data-ui-richtext] dt { + font-weight: bold; +} +.markdown-render dd, +[data-ui-markdown] dd, +[data-ui-richtext] dd { + margin-left: 40px; +} +.markdown-render pre, +[data-ui-markdown] pre, +[data-ui-richtext] pre { + text-align: start; + border: 0; + padding: 10px 20px; + border-radius: 0; + border-left: 2px solid #435f6f; +} +.markdown-render pre code, +[data-ui-markdown] pre code, +[data-ui-richtext] pre code { + white-space: pre !important; +} +.markdown-render blockquote ul:last-child, +[data-ui-markdown] blockquote ul:last-child, +[data-ui-richtext] blockquote ul:last-child, +.markdown-render blockquote ol:last-child, +[data-ui-markdown] blockquote ol:last-child, +[data-ui-richtext] blockquote ol:last-child { + margin-bottom: 0; +} +.markdown-render ul, +[data-ui-markdown] ul, +[data-ui-richtext] ul, +.markdown-render ol, +[data-ui-markdown] ol, +[data-ui-richtext] ol { + margin-top: 0; + padding-left: 30px; +} +.markdown-render ul li p, +[data-ui-markdown] ul li p, +[data-ui-richtext] ul li p, +.markdown-render ol li p, +[data-ui-markdown] ol li p, +[data-ui-richtext] ol li p { + overflow: visible !important; +} +.markdown-render .footnote, +[data-ui-markdown] .footnote, +[data-ui-richtext] .footnote { + vertical-align: top; + position: relative; + top: -0.5em; + font-size: 0.8em; +} +.markdown-render .emoji, +[data-ui-markdown] .emoji, +[data-ui-richtext] .emoji { + width: 16px; +} +.markdown-render a, +[data-ui-markdown] a, +[data-ui-richtext] a, +.markdown-render a:visited, +[data-ui-markdown] a:visited, +[data-ui-richtext] a:visited { + background-color: inherit; + text-decoration: none; + color: #21A1B3 !important; +} +.markdown-render a.header-anchor, +[data-ui-markdown] a.header-anchor, +[data-ui-richtext] a.header-anchor { + color: #555 !important; +} +.markdown-render a.not-found, +[data-ui-markdown] a.not-found, +[data-ui-richtext] a.not-found { + color: #FFC107; +} +.markdown-render li, +[data-ui-markdown] li, +[data-ui-richtext] li { + border: 0 !important; + background-color: transparent !important; + padding: 0; + margin: 5px 0; +} +.markdown-render img:not(.center-block), +[data-ui-markdown] img:not(.center-block), +[data-ui-richtext] img:not(.center-block) { + max-width: 100%; +} +.markdown-render img.pull-right, +[data-ui-markdown] img.pull-right, +[data-ui-richtext] img.pull-right { + margin: 5px 0 0 10px; +} +.markdown-render img.pull-left, +[data-ui-markdown] img.pull-left, +[data-ui-richtext] img.pull-left { + margin: 5px 10px 0 0; +} +.markdown-render img.center-block, +[data-ui-markdown] img.center-block, +[data-ui-richtext] img.center-block { + margin-top: 5px; + margin-bottom: 5px; +} +.markdown-render img[width='100%'], +[data-ui-markdown] img[width='100%'], +[data-ui-richtext] img[width='100%'] { + border-radius: 4px; +} +.markdown-render table, +[data-ui-markdown] table, +[data-ui-richtext] table { + width: 100%; + font-size: 1em; + border: 1px solid #d7d7d7; + margin-bottom: 1.2em !important; +} +.markdown-render table th, +[data-ui-markdown] table th, +[data-ui-richtext] table th { + font-size: 1em; + color: #fff !important; + background-color: #435f6f; +} +.markdown-render table th p, +[data-ui-markdown] table th p, +[data-ui-richtext] table th p { + color: #fff !important; +} +.markdown-render table td, +[data-ui-markdown] table td, +[data-ui-richtext] table td { + padding: 15px; + border: 1px solid #d7d7d7 !important; +} +.markdown-render table th, +[data-ui-markdown] table th, +[data-ui-richtext] table th { + padding: 10px 15px; + border: 1px solid #d7d7d7 !important; +} +@media (max-width: 991px) { + .layout-sidebar-container { + display: none; + } +} +.ui-widget-header { + border: none !important; + background: #fff !important; + color: #7a7a7a !important; + font-weight: 300 !important; +} +.ui-widget-content { + border: 1px solid #dddcda !important; + border-radius: 0 !important; + background: #fff; + color: #000 !important; + -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1); + box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1); +} +.ui-datepicker .ui-datepicker-prev span, +.ui-datepicker .ui-datepicker-next span { + opacity: 0.2; +} +.ui-datepicker .ui-datepicker-prev:hover, +.ui-datepicker .ui-datepicker-next:hover { + background: #fff !important; + border: none; + margin: 1px; +} +.ui-state-default, +.ui-widget-content .ui-state-default, +.ui-widget-header .ui-state-default { + border: none !important; + background: #f7f7f7 !important; + color: #7a7a7a !important; +} +.ui-state-highlight, +.ui-widget-content .ui-state-highlight, +.ui-widget-header .ui-state-highlight { + border: none !important; + border: 1px solid #b2b2b2 !important; +} +.ui-state-active, +.ui-widget-content .ui-state-active, +.ui-widget-header .ui-state-active { + border: 1px solid #21A1B3 !important; + background: #6fd6e4 !important; +} +.status-bar-body { + color: white; + position: fixed; + width: 100%; + background-color: rgba(0, 0, 0, 0.7); + text-align: center; + padding: 20px; + z-index: 9999999; + bottom: 0px; + display: block; + line-height: 20px; +} +.status-bar-close { + color: white; + font-weight: bold; + font-size: 21px; + cursor: pointer; +} +.status-bar-close:hover { + color: white; +} +.status-bar-close i { + vertical-align: top !important; + padding-top: 3px; +} +.status-bar-content i { + margin-right: 10px; + font-size: 21px; + vertical-align: middle; +} +.status-bar-content .showMore { + color: #21A1B3; + float: right; + margin-left: 10px; + font-size: 0.7em; + cursor: pointer; + vertical-align: middle; + white-space: nowrap; +} +.status-bar-content .status-bar-details { + text-align: left; + font-size: 0.7em; + margin-top: 20px; + max-height: 200px; + overflow: auto; +} +.status-bar-content span { + vertical-align: middle; +} +.status-bar-content i.error, +.status-bar-content i.fatal { + color: #FC4A64; +} +.status-bar-content i.warning { + color: #FFC107; +} +.status-bar-content i.info, +.status-bar-content i.debug { + color: #21A1B3; +} +.status-bar-content i.success { + color: #85CA2B; +} +.highlight { + background-color: #fff8e0; +} +.alert-default { + color: #000; + background-color: #f7f7f7; + border-color: #ededed; + font-size: 13px; +} +.alert-default .info { + margin: 10px 0; +} +.alert-success { + color: #84be5e; + background-color: #f7fbf4; + border-color: #97d271; +} +.alert-warning { + color: #e9b168; + background-color: #fffbf7; + border-color: #fdd198; +} +.alert-danger { + color: #ff8989; + background-color: #fff6f6; + border-color: #ff8989; +} +.data-saved { + padding-left: 10px; + color: #21A1B3; +} +img.bounceIn { + -webkit-animation-duration: 800ms; + -moz-animation-duration: 800ms; + animation-duration: 800ms; +} +.tags .tag { + margin-top: 5px; + border-radius: 2px; + padding: 4px 8px; + text-transform: uppercase; + max-width: 150px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} +#user-tags-panel .tags .tag { + max-width: 250px; +} +.label { + text-transform: uppercase; +} +.label { + text-transform: uppercase; + display: inline-block; + padding: 3px 5px 4px; + font-weight: 600; + font-size: 10px; + color: white; + vertical-align: baseline; + white-space: nowrap; + text-shadow: none; +} +.label-default { + background: #ededed; + color: #7a7a7a !important; +} +a.label-default:hover { + background: #e0e0e0 !important; +} +.label-info { + background-color: #21A1B3; +} +a.label-info:hover { + background: #1d8e9d !important; +} +.label-danger { + background-color: #FC4A64; +} +a.label-danger:hover { + background: #fc314f !important; +} +.label-success { + background-color: #97d271; +} +a.label-success:hover { + background: #89cc5e !important; +} +.label-warning { + background-color: #FFC107; +} +a.label-warning:hover { + background: #ecb100 !important; +} +.label-light { + background-color: transparent; + color: #7a7a7a; + border: 1px solid #bababa; +} +.topic-label-list, +.wall-entry-topics { + margin-bottom: 10px; +} +.topic-label-list a, +.wall-entry-topics a { + margin-right: 4px; +} +.topic-label-list .label, +.wall-entry-topics .label { + padding: 5px; + border-radius: 4px; +} +.ProsemirrorEditor.fullscreen { + position: fixed; + top: 0; + left: 0; + width: 100vw; + height: calc(100vh - 3px); + z-index: 9998; +} +.ProsemirrorEditor.fullscreen .ProseMirror-menubar-wrapper { + height: 100%; +} +.ProsemirrorEditor.fullscreen .humhub-ui-richtext { + max-height: none !important; +} +.ProsemirrorEditor.fullscreen .ProseMirror { + position: static; + overflow: auto; + height: calc(100% - 26px); +} +.ProsemirrorEditor.fullscreen .ProseMirror-menubar { + position: static !important; + top: 0 !important; + left: 0 !important; + margin: 0 !important; + width: 100% !important; +} +.login-container .ProsemirrorEditor.fullscreen, +.modal-dialog .ProsemirrorEditor.fullscreen { + width: 100%; + height: 100%; +} +/** + * Menu defaults + */ +.ProsemirrorEditor .ProseMirror { + padding-right: 12px; +} +.ProsemirrorEditor .ProseMirror-menu { + margin: 0 -4px; + line-height: 1; +} +.ProsemirrorEditor .ProseMirror-tooltip .ProseMirror-menu { + width: -webkit-fit-content; + width: fit-content; + white-space: pre; +} +.ProsemirrorEditor .ProseMirror-menuitem { + margin-right: 0; + display: inline-block; +} +.ProsemirrorEditor .ProseMirror-menuseparator { + border-right: 1px solid #ddd; + margin-right: 3px; +} +.ProsemirrorEditor .ProseMirror-menubar-wrapper { + z-index: 200; +} +.ProsemirrorEditor .ProseMirror-menuitem .ProseMirror-menu-group { + border-right: 1px solid #ddd; +} +.ProsemirrorEditor .ProseMirror-menuitem .ProseMirror-menu-group.last { + border-right: none; +} +.ProsemirrorEditor .ProseMirror-menuitem .seperator { + border-right: 1px solid #ddd; + margin-right: 2px; + padding-right: 2px; +} +.ProsemirrorEditor .ProseMirror-menu-dropdown, +.ProsemirrorEditor .ProseMirror-menu-dropdown-menu { + font-size: 90%; + white-space: nowrap; +} +.ProsemirrorEditor .ProseMirror-menu-dropdown { + cursor: pointer; + position: relative; + padding-right: 15px !important; +} +.ProsemirrorEditor .ProseMirror-menu-dropdown-wrap { + padding: 1px 0 1px 0; + display: inline-block; + position: relative; +} +.ProsemirrorEditor .ProseMirror-menu-dropdown-right { + right: 0; +} +.ProsemirrorEditor .ProseMirror-menu-dropdown:after { + content: ""; + border-left: 4px solid transparent; + border-right: 4px solid transparent; + border-top: 4px solid currentColor; + opacity: 0.6; + position: absolute; + right: 4px; + top: calc(50% - 2px); +} +.ProsemirrorEditor .ProseMirror-menu-submenu { + border-top-right-radius: 4px; +} +.ProsemirrorEditor .ProseMirror-menu-dropdown-menu, +.ProsemirrorEditor .ProseMirror-menu-submenu { + position: absolute; + background: white; + color: #666; + border: 1px solid #aaa; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} +.ProsemirrorEditor .ProseMirror-menu-dropdown-menu { + z-index: 15; + min-width: 6em; + margin-top: 2px; +} +.ProsemirrorEditor .ProseMirror-menu-dropdown-item { + cursor: pointer; +} +.ProsemirrorEditor .ProseMirror-menu-dropdown-item div[title], +.ProsemirrorEditor .ProseMirror-menu-submenu-wrap { + padding: 4px; +} +.ProsemirrorEditor .ProseMirror-menu-dropdown-item:hover { + background: #f2f2f2; +} +.ProsemirrorEditor .ProseMirror-menu-submenu-wrap { + position: relative; +} +.ProsemirrorEditor .ProseMirror-menu-submenu-label:after { + content: ""; + border-top: 4px solid transparent; + border-bottom: 4px solid transparent; + border-left: 4px solid currentColor; + opacity: 0.6; + position: absolute; + right: 4px; + top: calc(50% - 4px); +} +.ProsemirrorEditor .ProseMirror-menu-submenu { + display: none; + min-width: 4em; + left: 100%; + top: 0; +} +.ProsemirrorEditor .ProseMirror-menu-active { + background: #eee; + border-radius: 4px; + border: 1px solid #ededed !important; +} +.ProsemirrorEditor .ProseMirror-menu-disabled { + opacity: 0.3; +} +.ProsemirrorEditor .ProseMirror-menu-submenu-wrap:hover .ProseMirror-menu-submenu, +.ProsemirrorEditor .ProseMirror-menu-submenu-wrap-active .ProseMirror-menu-submenu { + display: block; +} +.ProsemirrorEditor .ProseMirror-icon { + display: inline-block; + line-height: 0.8; + vertical-align: -2px; + /* Compensate for padding */ + padding: 1px 7px; + cursor: pointer; + border: 1px solid transparent; +} +.ProsemirrorEditor .ProseMirror-menu-disabled.ProseMirror-icon { + cursor: default; +} +.ProsemirrorEditor .ProseMirror-icon svg { + fill: currentColor; + height: 1em; +} +.ProsemirrorEditor .ProseMirror-icon span { + vertical-align: text-top; +} +/** + * Static plain editor style + */ +.ProsemirrorEditor.plainMenu .ProseMirror { + border-top-left-radius: 0 !important; + border-top-right-radius: 0 !important; + border-top-width: 1px !important; + min-height: 100px; +} +.ProsemirrorEditor.plainMenu .ProseMirror-menu-group { + padding: 5px; +} +.ProsemirrorEditor.plainMenu .ProseMirror-menuitem .ProseMirror-menu-group { + padding: 2px; +} +.ProsemirrorEditor.plainMenu .ProseMirror-menubar ~ .ProseMirror-focused { + border-color: #21A1B3 !important; +} +.ProsemirrorEditor.plainMenu .ProseMirror-textblock-dropdown { + min-width: 3em; +} +.ProsemirrorEditor.plainMenu .ProseMirror-menubar-wrapper { + z-index: 8; +} +.ProsemirrorEditor.plainMenu .ProseMirror-menubar { + background-color: #f7f7f7; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border: 1px solid #ddd; + position: relative; + min-height: 1em; + color: #666; + padding: 1px 6px 1px 0; + top: 0; + left: 0; + right: 0; + z-index: 10; + -moz-box-sizing: border-box; + box-sizing: border-box; + overflow: visible; +} +/** + * Editor style attached at the top of input only visible on focus + */ +.ProsemirrorEditor.focusMenu .form-control:focus { + border-top-left-radius: 0 !important; +} +.ProsemirrorEditor.focusMenu .ProseMirror-menubar { + display: table; + min-height: 1em; + color: #666; + padding: 2px 6px; + top: 0; + left: 0; + right: 0; + z-index: 10; + -moz-box-sizing: border-box; + box-sizing: border-box; + overflow: visible; + margin-top: -25px; + background: white; + border: 1px solid #aeaeae; + border-bottom: 0; + border-top: 1px solid #aeaeae; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + float: left; +} +@-moz-document url-prefix() { + .ProsemirrorEditor.focusMenu .ProseMirror-menubar { + margin-top: -26px; + } +} +.ProsemirrorEditor { + /* Make sure li selections wrap around markers */ + /* Add space around the hr to make clicking it easier */ + /* Give selected cells a blue overlay */ +} +.ProsemirrorEditor .ProseMirror { + position: relative; + word-wrap: break-word; + white-space: pre-wrap; + -webkit-font-variant-ligatures: none; + font-variant-ligatures: none; +} +.ProsemirrorEditor .ProseMirror ul, +.ProsemirrorEditor .ProseMirror ol { + cursor: default; +} +.ProsemirrorEditor .ProseMirror pre { + white-space: pre-wrap; +} +.ProsemirrorEditor .ProseMirror li { + position: relative; +} +.ProsemirrorEditor .ProseMirror img { + max-width: 100%; +} +.ProsemirrorEditor .ProseMirror-hideselection *::selection { + background: transparent; +} +.ProsemirrorEditor .ProseMirror-hideselection *::-moz-selection { + background: transparent; +} +.ProsemirrorEditor .ProseMirror-selectednode { + outline: 2px dashed #8cf; +} +.ProsemirrorEditor li.ProseMirror-selectednode { + outline: none; +} +.ProsemirrorEditor li.ProseMirror-selectednode:after { + content: ""; + position: absolute; + left: -32px; + right: -2px; + top: -2px; + bottom: -2px; + border: 2px solid #8cf; + pointer-events: none; +} +.ProsemirrorEditor .ProseMirror-textblock-dropdown { + min-width: 3em; +} +.ProsemirrorEditor .ProseMirror-menu { + margin: 0 -4px; + line-height: 1; +} +.ProsemirrorEditor .ProseMirror-tooltip .ProseMirror-menu { + width: -webkit-fit-content; + width: fit-content; + white-space: pre; +} +.ProsemirrorEditor .ProseMirror-gapcursor { + display: none; + pointer-events: none; + position: absolute; +} +.ProsemirrorEditor .ProseMirror-gapcursor:after { + content: ""; + display: block; + position: absolute; + top: -2px; + width: 20px; + border-top: 1px solid black; + animation: ProseMirror-cursor-blink 1.1s steps(2, start) infinite; +} +@keyframes ProseMirror-cursor-blink { + to { + visibility: hidden; + } +} +.ProsemirrorEditor .ProseMirror-focused .ProseMirror-gapcursor { + display: block; +} +.ProsemirrorEditor .ProseMirror-example-setup-style hr { + padding: 2px 10px; + border: none; + margin: 1em 0; +} +.ProsemirrorEditor .ProseMirror-example-setup-style hr:after { + content: ""; + display: block; + height: 1px; + background-color: silver; + line-height: 2px; +} +.ProsemirrorEditor .ProseMirror-example-setup-style img { + cursor: default; +} +.ProsemirrorEditor .ProseMirror p { + margin-top: 1.2em; +} +.ProsemirrorEditor .ProseMirror p:first-child { + margin: 0; +} +.ProsemirrorEditor .ProseMirror > p:first-child + * { + margin-top: 1.2em; +} +.ProsemirrorEditor .ProsemirrorEditor { + position: relative; +} +.ProsemirrorEditor .ProsemirrorEditor .ProseMirror { + padding-right: 12px !important; +} +.ProsemirrorEditor .ProsemirrorEditor img { + max-width: 100%; +} +.ProsemirrorEditor .ProseMirror h1:first-child, +.ProsemirrorEditor .ProseMirror h2:first-child, +.ProsemirrorEditor .ProseMirror h3:first-child, +.ProsemirrorEditor .ProseMirror h4:first-child, +.ProsemirrorEditor .ProseMirror h5:first-child, +.ProsemirrorEditor .ProseMirror h6:first-child { + margin-top: 10px; +} +.ProsemirrorEditor .ProseMirror [data-mention] { + color: #21A1B3; +} +.ProsemirrorEditor .ProseMirror { + outline: none; +} +.ProsemirrorEditor .ProseMirror [data-oembed] { + font-size: 0; +} +.ProsemirrorEditor .ProseMirror iframe { + pointer-events: none; + display: block; +} +.ProsemirrorEditor .ProseMirror p { + margin-bottom: 1em; +} +.ProsemirrorEditor .ProseMirror-textblock-dropdown { + min-width: 3em; +} +.ProsemirrorEditor .ProseMirror .placeholder { + padding: 0 !important; + pointer-events: none; + height: 0; +} +.ProsemirrorEditor .ProseMirror:focus .placeholder { + display: none; +} +.ProsemirrorEditor .ProseMirror .tableWrapper { + overflow-x: auto; +} +.ProsemirrorEditor .ProseMirror .column-resize-handle { + position: absolute; + right: -2px; + top: 0; + bottom: 0; + width: 4px; + z-index: 20; + background-color: #adf; + pointer-events: none; +} +.ProsemirrorEditor .ProseMirror.resize-cursor { + cursor: ew-resize; + cursor: col-resize; +} +.ProsemirrorEditor .ProseMirror .selectedCell:after { + z-index: 2; + position: absolute; + content: ""; + left: 0; + right: 0; + top: 0; + bottom: 0; + background: rgba(200, 200, 255, 0.4); + pointer-events: none; +} +.ProsemirrorEditor .ProseMirror-menubar-wrapper { + position: relative; + outline: none; +} +.ProsemirrorEditor .ProseMirror table { + margin: 0; +} +.ProsemirrorEditor .ProseMirror .tableWrapper { + margin: 1em 0; +} +.ProseMirror-prompt { + background: white; + padding: 5px 10px 5px 15px; + border: 1px solid silver; + position: fixed; + border-radius: 3px; + min-width: 300px; + z-index: 999999; + box-shadow: -0.5px 2px 5px rgba(0, 0, 0, 0.2); +} +.ProseMirror-prompt h5 { + font-weight: bold; + font-size: 100%; + margin: 15px 0; +} +.ProseMirror-prompt input { + margin-bottom: 5px; +} +.ProseMirror-prompt-close { + position: absolute; + left: 2px; + top: 1px; + color: #666; + border: none; + background: transparent; + padding: 0; +} +.ProseMirror-prompt-close:after { + content: "✕"; + font-size: 12px; +} +.ProseMirror-invalid { + background: #ffc; + border: 1px solid #cc7; + border-radius: 4px; + padding: 5px 10px; + position: absolute; + min-width: 10em; +} +.ProseMirror-prompt-buttons { + margin: 15px 0; + text-align: center; +} +.atwho-view .cur { + border-left: 3px solid #59d6e4; + background-color: #f7f7f7 !important; +} +.atwho-user, +.atwho-space, +.atwho-input a { + color: #59d6e4; +} +.atwho-input a:hover { + color: #59d6e4; +} +.atwho-view strong { + background-color: #f9f0d2; +} +.atwho-view .cur strong { + background-color: #f9f0d2; +} +[data-emoji-category] { + max-height: 200px; + display: block; + position: relative; + overflow: auto; +} +[data-emoji-category] .atwho-emoji-entry { + width: 24px; + height: 28px; + overflow: hidden; +} +[data-emoji-category] .atwho-emoji-entry.cur { + background-color: #ededed !important; +} +.emoji-nav { + padding-top: 10px; +} +.emoji-nav .emoji-nav-item { + border-top: 2px solid #fff8e0; +} +.emoji-nav .emoji-nav-item.cur { + border-left: 0; + border-top: 2px solid #21A1B3; +} +[data-ui-markdown], +[data-ui-richtext] { + overflow-x: auto; + overflow-wrap: break-word; +} +[data-ui-markdown] a, +[data-ui-richtext] a { + color: #21A1B3; +} +#wallStream [data-ui-markdown], +#wallStream [data-ui-richtext] { + overflow-wrap: initial; + word-break: initial; + hyphens: initial; +} +@media screen and (max-width: 768px) { + .ProsemirrorEditor.focusMenu .form-control:focus { + border-top-right-radius: 0 !important; + } + .ProsemirrorEditor.focusMenu .ProseMirror-menubar { + min-height: 1em; + margin-top: 0; + } + .ProsemirrorEditor.focusMenu .humhub-ui-richtext { + margin-top: 0; + } +} +@media only screen and (max-width : 768px) { + body { + padding-top: 105px; + } + .modal-open #layout-content > .container { + overflow-x: unset; + } + #layout-content .left-navigation .list-group { + -webkit-overflow-scrolling: auto; + white-space: nowrap; + overflow-x: auto; + } + #layout-content .left-navigation .list-group::-webkit-scrollbar { + -webkit-appearance: none; + } + #layout-content .left-navigation .list-group::-webkit-scrollbar:vertical { + width: 8px; + } + #layout-content .left-navigation .list-group::-webkit-scrollbar:horizontal { + height: 8px; + } + #layout-content .left-navigation .list-group::-webkit-scrollbar-thumb { + background-color: rgba(0, 0, 0, 0.5); + border-radius: 10px; + border: 2px solid #ffffff; + } + #layout-content .left-navigation .list-group::-webkit-scrollbar-track { + border-radius: 10px; + background-color: #ffffff; + } + #layout-content .table-responsive::-webkit-scrollbar { + -webkit-appearance: none; + } + #layout-content .table-responsive::-webkit-scrollbar:vertical { + width: 8px; + } + #layout-content .table-responsive::-webkit-scrollbar:horizontal { + height: 8px; + } + #layout-content .table-responsive::-webkit-scrollbar-thumb { + background-color: rgba(0, 0, 0, 0.5); + border-radius: 10px; + border: 2px solid #ffffff; + } + #layout-content .table-responsive::-webkit-scrollbar-track { + border-radius: 10px; + background-color: #ffffff; + } + #layout-content .panel { + margin-bottom: 5px; + } + #layout-content .panel .statistics .entry { + margin-left: 10px; + } + #layout-content > .container { + padding-right: 2px !important; + padding-left: 2px !important; + overflow-x: hidden; + } + #layout-content .layout-nav-container .panel-heading { + display: none; + } + #layout-content .panel-profile-header #profilefileupload, + #layout-content .panel-profile-header .profile-user-photo-container, + #layout-content .panel-profile-header .space-acronym, + #layout-content .panel-profile-header .profile-user-photo { + height: 100px !important; + width: 100px !important; + } + #layout-content .image-upload-container .image-upload-buttons { + right: 2px !important; + } + #layout-content .space-acronym { + padding: 6px 0 !important; + } + #layout-content .panel-profile .panel-profile-header .img-profile-header-background { + min-height: 80px !important; + } + #layout-content .panel-profile .panel-profile-header .img-profile-data { + padding-top: 50px !important; + padding-left: 130px; + } + .modal-dialog { + width: calc(100vw - 4px) !important; + padding: 0 !important; + margin: 2px !important; + } + .dropdown-menu > li a, + .nav-pills .dropdown-menu li a, + .nav-tabs .dropdown-menu li a, + .account .dropdown-menu li a, + .modal .dropdown-menu li a, + .panel .dropdown-menu li a, + .nav-tabs .dropdown-menu li a { + padding-top: 10px; + padding-bottom: 10px; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; + } + .dropdown-menu { + max-width: 320px; + } + select.form-control:not([multiple]) { + padding-right: 23px; + width: auto; + } + .modal.in { + padding-right: 0 !important; + } + .load-suppressed { + margin-top: -8px; + margin-bottom: 5px; + } + .ProsemirrorEditor .ProseMirror-menuitem { + font-size: 1.2em !important; + } +} +.icon-sm, +.fa-sm { + font-size: 0.875em; +} +.icon-lg, +.fa-lg { + font-size: 1.33333em; + line-height: 0.75em; + vertical-align: -0.0667em; +} +.icon-2x, +.fa-2x { + font-size: 2em; +} +.icon-3x, +.fa-3x { + font-size: 3em; +} +.icon-4x, +.fa-4x { + font-size: 4em; +} +.icon-5x, +.fa-5x { + font-size: 5em; +} +.icon-6x, +.fa-6x { + font-size: 6em; +} +.icon-7x, +.fa-7x { + font-size: 7em; +} +.icon-9x, +.fa-9x { + font-size: 9em; +} +.icon-10x, +.fa-10x { + font-size: 10em; +} +@media print { + a[href]:after { + content: none; + } + body { + padding-top: 0; + } + pre, + blockquote { + page-break-inside: avoid; + } + .preferences, + .layout-sidebar-container, + .layout-nav-container, + button { + display: none !important; + } +} +@media (min-width: 500px) { + .container-directory.container-fluid .card { + width: 50%; + } +} +@media (min-width: 1000px) { + .container-directory.container-fluid .card { + width: 33.33333333%; + } +} +@media (min-width: 1300px) { + .container-directory.container-fluid .card { + width: 25%; + } +} +@media (min-width: 1600px) { + .container-directory.container-fluid .card { + width: 20%; + } +} +@media (min-width: 1900px) { + .container-directory.container-fluid .card { + width: 16.66666667%; + } +} +.container-directory .form-search .row > div { + padding-bottom: 3px; +} +.container-directory .form-search .form-search-filter-keyword { + position: relative; +} +.container-directory .form-search .form-search-filter-keyword .form-button-search { + position: absolute; + right: 18px; + margin-bottom: 3px; +} +.container-directory .form-search .form-control.form-search-filter { + width: 100%; + height: 40px; + margin: 3px 0 0; + padding: 8px 30px 10px 8px; + border-radius: 4px; + border: solid 1px #c5c5c5; +} +.container-directory .form-search .form-button-search { + background: none; + border: 0; + font-size: 16px; + color: #000; + top: initial; + bottom: 9px; +} +.container-directory .form-search .form-search-field-info { + font-size: 80%; +} +.container-directory .form-search-reset { + text-decoration: underline; + display: block; + margin-top: 26px; +} +.container-directory .form-search-reset:hover { + text-decoration: none; +} +.container-directory .cards { + display: flex; + flex-direction: row; + flex-wrap: wrap; +} +.container-directory .card { + display: flex; + flex-direction: row; +} +.container-directory .card .card-panel { + position: relative; + width: 100%; + display: flex; + flex-direction: column; + margin: 15px 0; + border-radius: 4px; + background-color: #ffffff; +} +.container-directory .card .card-panel.card-archived { + filter: opacity(60%); +} +.container-directory .card .card-icons .fa { + color: #21a1b3; +} +.container-directory .card .card-icons .fa span { + font: 12px 'Open Sans', sans-serif; + font-weight: 600; +} +.container-directory .card .card-bg-image { + width: 100%; + height: 86px; + background-color: #cfcfcf; + background-size: cover; + background-position: center; + border-radius: 4px 4px 0 0; +} +.container-directory .card .card-header { + position: absolute; + padding: 16px; + display: table; + width: 100%; +} +.container-directory .card .card-header .card-image-wrapper { + display: table-cell; + width: 98px; +} +.container-directory .card .card-header .card-image-link { + display: inline-block; + border: 2px solid #fff; + border-radius: 6px; +} +.container-directory .card .card-header .card-status { + position: absolute; + right: 16px; + background: #435f6f; +} +.container-directory .card .card-header .card-icons { + display: table-cell; + padding: 0 0 2px 5px; + text-align: right; + vertical-align: bottom; + font-size: 16px; +} +.container-directory .card .card-header .card-icons .fa { + color: #21a1b3; +} +.container-directory .card .card-header .card-icons .fa.fa-mobile-phone { + font-size: 22px; + line-height: 15px; + position: relative; + top: 2px; +} +.container-directory .card .card-body { + flex-grow: 1; + padding: 44px 16px 24px 16px; + overflow: auto; +} +.container-directory .card .card-body .card-title { + font-size: 16px; + font-weight: bold; + line-height: 24px; +} +.container-directory .card .card-body .card-details { + margin-top: 8px; + color: #57646c; +} +.container-directory .card .card-body .card-details a { + color: #21a1b3; + text-decoration: underline; +} +.container-directory .card .card-body .card-details a:hover { + text-decoration: none; +} +.container-directory .card .card-body .card-tags { + margin-top: 20px; +} +.container-directory .card .card-footer { + padding: 0 16px 20px; +} +.container-directory .card .card-footer a.btn { + float: left; + margin: 0 8px 4px 0; + white-space: normal; + hyphens: none; +} +.container-directory .card .card-footer a.btn:last-child { + margin-right: 0; +} +.container-directory .card .card-footer .btn-group a.btn { + margin-right: 0; +} +/*! Select2 humhub Theme v0.1.0-beta.4 | MIT License | github.com/select2/select2-humhub-theme */ +.select2-container--humhub { + display: block; + /*------------------------------------*\ + #COMMON STYLES + \*------------------------------------*/ + /** + * Search field in the Select2 dropdown. + */ + /** + * No outline for all search fields - in the dropdown + * and inline in multi Select2s. + */ + /** + * Adjust Select2's choices hover and selected styles to match + * humhub 3's default dropdown styles. + * + * @see http://gethumhub.com/components/#dropdowns + */ + /** + * Clear the selection. + */ + /** + * Address disabled Select2 styles. + * + * @see https://select2.github.io/examples.html#disabled + * @see http://gethumhub.com/css/#forms-control-disabled + */ + /*------------------------------------*\ + #DROPDOWN + \*------------------------------------*/ + /** + * Dropdown border color and box-shadow. + */ + /** + * Limit the dropdown height. + */ + /*------------------------------------*\ + #SINGLE SELECT2 + \*------------------------------------*/ + /*------------------------------------*\ + #MULTIPLE SELECT2 + \*------------------------------------*/ + /** + * Address humhub control sizing classes + * + * 1. Reset humhub defaults. + * 2. Adjust the dropdown arrow button icon position. + * + * @see http://gethumhub.com/css/#forms-control-sizes + */ + /* 1 */ + /*------------------------------------*\ + #RTL SUPPORT + \*------------------------------------*/ +} +.select2-container--humhub .select2-selection { + background-color: #fff; + border: 2px solid #ededed; + border-radius: 4px; + color: #555555; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + outline: 0; +} +.select2-container--humhub .select2-search--dropdown .select2-search__field { + background-color: #fff; + border: 2px solid #ededed; + border-radius: 4px; + color: #555555; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; +} +.select2-container--humhub .select2-search__field { + outline: 0; + /* Firefox 18- */ + /** + * Firefox 19+ + * + * @see http://stackoverflow.com/questions/24236240/color-for-styled-placeholder-text-is-muted-in-firefox + */ +} +.select2-container--humhub .select2-search__field::placeholder { + color: #999; + font-weight: normal; +} +.select2-container--humhub .select2-search__field::-webkit-input-placeholder { + color: #999; + font-weight: normal; +} +.select2-container--humhub .select2-search__field:-moz-placeholder { + color: #999; + font-weight: normal; +} +.select2-container--humhub .select2-search__field::-moz-placeholder { + color: #999; + font-weight: normal; + opacity: 1; +} +.select2-container--humhub .select2-search__field:-ms-input-placeholder { + color: #999; + font-weight: normal; +} +.select2-container--humhub .select2-results__option { + /** + * Disabled results. + * + * @see https://select2.github.io/examples.html#disabled-results + */ + /** + * Hover state. + */ + /** + * Selected state. + */ +} +.select2-container--humhub .select2-results__option[role=group] { + padding: 0; +} +.select2-container--humhub .select2-results__option[aria-disabled=true] { + color: #777777; + cursor: not-allowed; +} +.select2-container--humhub .select2-results__option[aria-selected=true] { + background-color: #f5f5f5; + color: #262626; + border-left: 3px solid transparent; +} +.select2-container--humhub .select2-results__option[aria-selected=false] { + border-left: 3px solid transparent; +} +.select2-container--humhub .select2-results__option--highlighted[aria-selected] { + background-color: #f7f7f7; + border-left: 3px solid #21A1B3; + color: #000; +} +.select2-container--humhub .select2-results__option .select2-results__option { + padding: 6px 12px; +} +.select2-container--humhub .select2-results__option .select2-results__option .select2-results__group { + padding-left: 0; +} +.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option { + margin-left: -12px; + padding-left: 24px; +} +.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -24px; + padding-left: 36px; +} +.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -36px; + padding-left: 48px; +} +.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -48px; + padding-left: 60px; +} +.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -60px; + padding-left: 72px; +} +.select2-container--humhub .select2-results__group { + color: #777777; + display: block; + padding: 6px 12px; + font-size: 12px; + line-height: 1.42857143; + white-space: nowrap; +} +.select2-container--humhub.select2-container--focus .select2-selection, +.select2-container--humhub.select2-container--open .select2-selection { + border: 2px solid #21A1B3; + outline: 0; + box-shadow: none; +} +.select2-container--humhub.select2-container--open { + /** + * Make the dropdown arrow point up while the dropdown is visible. + */ + /** + * Handle border radii of the container when the dropdown is showing. + */ +} +.select2-container--humhub.select2-container--open .select2-selection .select2-selection__arrow b { + border-color: transparent transparent #999 transparent; + border-width: 0 4px 4px 4px; +} +.select2-container--humhub .select2-selection__clear { + color: #999; + cursor: pointer; + float: right; + font-weight: bold; + margin-right: 10px; +} +.select2-container--humhub .select2-selection__clear:hover { + color: #333; +} +.select2-container--humhub.select2-container--disabled .select2-selection { + border-color: #ccc; + -webkit-box-shadow: none; + box-shadow: none; +} +.select2-container--humhub.select2-container--disabled .select2-selection, +.select2-container--humhub.select2-container--disabled .select2-search__field { + cursor: not-allowed; +} +.select2-container--humhub.select2-container--disabled .select2-selection, +.select2-container--humhub.select2-container--disabled .select2-selection--multiple .select2-selection__choice { + background-color: #eeeeee; +} +.select2-container--humhub.select2-container--disabled .select2-selection__clear, +.select2-container--humhub.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove { + display: none; +} +.select2-container--humhub .select2-dropdown { + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + border-color: #d7d7d7; + overflow-x: hidden; + margin-top: -1px; +} +.select2-container--humhub .select2-dropdown--above { + margin-top: 1px; +} +.select2-container--humhub .select2-results > .select2-results__options { + max-height: 400px; + overflow-y: auto; +} +.select2-container--humhub .select2-selection--single { + height: 34px; + line-height: 1.42857143; + padding: 6px 24px 6px 12px; + /** + * Adjust the single Select2's dropdown arrow button appearance. + */ +} +.select2-container--humhub .select2-selection--single .select2-selection__arrow { + position: absolute; + bottom: 0; + right: 12px; + top: 0; + width: 4px; +} +.select2-container--humhub .select2-selection--single .select2-selection__arrow b { + border-color: #999 transparent transparent transparent; + border-style: solid; + border-width: 4px 4px 0 4px; + height: 0; + left: 0; + margin-left: -4px; + margin-top: -4px/2; + position: absolute; + top: 50%; + width: 0; +} +.select2-container--humhub .select2-selection--single .select2-selection__rendered { + color: #555555; + padding: 0; +} +.select2-container--humhub .select2-selection--single .select2-selection__placeholder { + color: #999; +} +.select2-container--humhub .select2-selection--multiple { + min-height: 34px; + padding: 2px; + /** + * Make Multi Select2's choices match humhub 3's default button styles. + */ + /** + * Minus 2px borders. + */ + /** + * Clear the selection. + */ +} +.select2-container--humhub .select2-selection--multiple .select2-selection__rendered { + box-sizing: border-box; + display: block; + line-height: 1.42857143; + list-style: none; + margin: 0; + overflow: hidden; + padding: 0; + width: 100%; + text-overflow: ellipsis; + white-space: nowrap; +} +.select2-container--humhub .select2-selection--multiple .select2-selection__placeholder { + color: #999; + float: left; + margin-top: 5px; +} +.select2-container--humhub .select2-selection--multiple .select2-selection__choice { + color: #555555; + border-radius: 4px; + cursor: default; + padding: 0 6px; + background-color: #21A1B3; + color: #fff; + border-radius: 3px; + font-size: 12px !important; + padding: 0 5px 2px 2px; + float: left; + margin: 2px; + height: 28px; +} +.select2-container--humhub .select2-selection--multiple .select2-selection__choice img, +.select2-container--humhub .select2-selection--multiple .select2-selection__choice div { + margin-right: 5px; +} +.select2-container--humhub .select2-selection--multiple .select2-selection__choice span.no-image { + line-height: 27px; + padding-left: 5px; +} +.select2-container--humhub .select2-selection--multiple .select2-selection__choice i { + margin: 0px 2px; + line-height: 27px; +} +.select2-container--humhub .select2-selection--multiple .select2-selection__choice .picker-close { + cursor: pointer; +} +.select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field { + background: transparent; + padding: 0 5px; + width: auto !important; + height: 32px; + line-height: 1.42857143; + margin-top: 0; + min-width: 5em; +} +.select2-container--humhub .select2-selection--multiple .select2-selection__choice__remove { + color: #999; + cursor: pointer; + display: none; + font-weight: bold; + margin-right: 6px / 2; +} +.select2-container--humhub .select2-selection--multiple .select2-selection__choice__remove:hover { + color: #333; +} +.select2-container--humhub .select2-selection--multiple .select2-selection__clear { + margin-top: 6px; +} +.select2-container--humhub.input-sm, +.select2-container--humhub.input-lg { + border-radius: 0; + font-size: 12px; + height: auto; + line-height: 1; + padding: 0; +} +.select2-container--humhub.input-sm .select2-selection--single, +.input-group-sm .select2-container--humhub .select2-selection--single, +.form-group-sm .select2-container--humhub .select2-selection--single { + border-radius: 3px; + font-size: 12px; + height: 30px; + line-height: 1.5; + padding: 5px 22px 5px 10px; + /* 2 */ +} +.select2-container--humhub.input-sm .select2-selection--single .select2-selection__arrow b, +.input-group-sm .select2-container--humhub .select2-selection--single .select2-selection__arrow b, +.form-group-sm .select2-container--humhub .select2-selection--single .select2-selection__arrow b { + margin-left: -5px; +} +.select2-container--humhub.input-sm .select2-selection--multiple, +.input-group-sm .select2-container--humhub .select2-selection--multiple, +.form-group-sm .select2-container--humhub .select2-selection--multiple { + min-height: 30px; +} +.select2-container--humhub.input-sm .select2-selection--multiple .select2-selection__choice, +.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__choice, +.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__choice { + font-size: 12px; + line-height: 1.5; + margin: 4px 0 0 10px/2; + padding: 0 5px; +} +.select2-container--humhub.input-sm .select2-selection--multiple .select2-search--inline .select2-search__field, +.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field, +.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field { + padding: 0 10px; + font-size: 12px; + height: 28px; + line-height: 1.5; +} +.select2-container--humhub.input-sm .select2-selection--multiple .select2-selection__clear, +.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__clear, +.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__clear { + margin-top: 5px; +} +.select2-container--humhub.input-lg .select2-selection--single, +.input-group-lg .select2-container--humhub .select2-selection--single, +.form-group-lg .select2-container--humhub .select2-selection--single { + border-radius: 6px; + font-size: 18px; + height: 46px; + line-height: 1.3333333; + padding: 10px 31px 10px 16px; + /* 1 */ +} +.select2-container--humhub.input-lg .select2-selection--single .select2-selection__arrow, +.input-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow, +.form-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow { + width: 5px; +} +.select2-container--humhub.input-lg .select2-selection--single .select2-selection__arrow b, +.input-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow b, +.form-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow b { + border-width: 5px 5px 0 5px; + margin-left: -5px; + margin-left: -10px; + margin-top: -5px/2; +} +.select2-container--humhub.input-lg .select2-selection--multiple, +.input-group-lg .select2-container--humhub .select2-selection--multiple, +.form-group-lg .select2-container--humhub .select2-selection--multiple { + min-height: 46px; +} +.select2-container--humhub.input-lg .select2-selection--multiple .select2-selection__choice, +.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__choice, +.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__choice { + font-size: 18px; + line-height: 1.3333333; + border-radius: 4px; + margin: 9px 0 0 16px/2; + padding: 0 10px; +} +.select2-container--humhub.input-lg .select2-selection--multiple .select2-search--inline .select2-search__field, +.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field, +.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field { + padding: 0 16px; + font-size: 18px; + height: 44px; + line-height: 1.3333333; +} +.select2-container--humhub.input-lg .select2-selection--multiple .select2-selection__clear, +.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__clear, +.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__clear { + margin-top: 10px; +} +.select2-container--humhub.input-lg.select2-container--open .select2-selection--single { + /** + * Make the dropdown arrow point up while the dropdown is visible. + */ +} +.select2-container--humhub.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b { + border-color: transparent transparent #999 transparent; + border-width: 0 5px 5px 5px; +} +.input-group-lg .select2-container--humhub.select2-container--open .select2-selection--single { + /** + * Make the dropdown arrow point up while the dropdown is visible. + */ +} +.input-group-lg .select2-container--humhub.select2-container--open .select2-selection--single .select2-selection__arrow b { + border-color: transparent transparent #999 transparent; + border-width: 0 5px 5px 5px; +} +.select2-container--humhub[dir="rtl"] { + /** + * Single Select2 + * + * 1. Makes sure that .select2-selection__placeholder is positioned + * correctly. + */ + /** + * Multiple Select2 + */ +} +.select2-container--humhub[dir="rtl"] .select2-selection--single { + padding-left: 24px; + padding-right: 12px; +} +.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__rendered { + padding-right: 0; + padding-left: 0; + text-align: right; + /* 1 */ +} +.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__clear { + float: left; +} +.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__arrow { + left: 12px; + right: auto; +} +.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__arrow b { + margin-left: 0; +} +.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__choice, +.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder { + float: right; +} +.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__choice { + margin-left: 0; + margin-right: 12px/2; +} +.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { + margin-left: 2px; + margin-right: auto; +} +/*------------------------------------*\ + #ADDITIONAL GOODIES +\*------------------------------------*/ +/** + * Address humhub's validation states + * + * If a Select2 widget parent has one of humhub's validation state modifier + * classes, adjust Select2's border colors and focus states accordingly. + * You may apply said classes to the Select2 dropdown (body > .select2-container) + * via JavaScript match humhubs' to make its styles match. + * + * @see http://gethumhub.com/css/#forms-control-validation + */ +.has-warning .select2-dropdown, +.has-warning .select2-selection { + border-color: #FFC107; +} +.has-warning .select2-container--focus .select2-selection, +.has-warning .select2-container--open .select2-selection { + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffdb6d; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffdb6d; + border-color: #d39e00; +} +.has-warning.select2-drop-active { + border-color: #d39e00; +} +.has-warning.select2-drop-active.select2-drop.select2-drop-above { + border-top-color: #d39e00; +} +.has-error .select2-dropdown, +.has-error .select2-selection { + border-color: #FC4A64; +} +.has-error .select2-container--focus .select2-selection, +.has-error .select2-container--open .select2-selection { + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #feaeba; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #feaeba; + border-color: #fb1839; +} +.has-error.select2-drop-active { + border-color: #fb1839; +} +.has-error.select2-drop-active.select2-drop.select2-drop-above { + border-top-color: #fb1839; +} +.has-success .select2-dropdown, +.has-success .select2-selection { + border-color: #97d271; +} +.has-success .select2-container--focus .select2-selection, +.has-success .select2-container--open .select2-selection { + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d0ebbe; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d0ebbe; + border-color: #7bc64a; +} +.has-success.select2-drop-active { + border-color: #7bc64a; +} +.has-success.select2-drop-active.select2-drop.select2-drop-above { + border-top-color: #7bc64a; +} +/** + * Select2 widgets in humhub Input Groups + * + * When Select2 widgets are combined with other elements using humhubs + * "Input Group" component, we don't want specific edges of the Select2 + * container to have a border-radius. + * + * Use .select2-humhub-prepend and .select2-humhub-append on + * a humhub 3 .input-group to let the contained Select2 widget know which + * edges should not be rounded as they are directly followed by another element. + * + * @see http://gethumhub.com/components/#input-groups + */ +/** + * Mimick humhubs .input-group .form-control styles. + * + * @see https://github.com/twbs/humhub/blob/master/less/input-groups.less + */ +.input-group .select2-container--humhub { + display: table; + table-layout: fixed; + position: relative; + z-index: 2; + float: left; + width: 100%; + margin-bottom: 0; +} +.input-group.select2-humhub-prepend .select2-container--humhub .select2-selection { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.input-group.select2-humhub-append .select2-container--humhub .select2-selection { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +/** + * Adjust alignment of humhub buttons in humhub Input Groups to address + * Multi Select2's height which - depending on how many elements have been selected - + * may grow taller than its initial size. + * + * @see http://gethumhub.com/components/#input-groups + */ +.select2-humhub-append .select2-container--humhub, +.select2-humhub-prepend .select2-container--humhub, +.select2-humhub-append .input-group-btn, +.select2-humhub-prepend .input-group-btn, +.select2-humhub-append .input-group-btn .btn, +.select2-humhub-prepend .input-group-btn .btn { + vertical-align: top; +} +/** + * Temporary fix for https://github.com/select2/select2-humhub-theme/issues/9 + * + * Provides `!important` for certain properties of the class applied to the + * original ` - - -
- -
-

- - -
-
- -
- : name); ?> -
- - diff --git a/protected/humhub/modules/directory/widgets/views/groupUsers.php b/protected/humhub/modules/directory/widgets/views/groupUsers.php deleted file mode 100644 index 194d0490b0..0000000000 --- a/protected/humhub/modules/directory/widgets/views/groupUsers.php +++ /dev/null @@ -1,17 +0,0 @@ - - - $user, 'width' => 40, 'showTooltip' => true]); ?> - - - - 'btn btn-sm btn-default']); ?> - \ No newline at end of file diff --git a/protected/humhub/modules/directory/widgets/views/memberActionsButton.php b/protected/humhub/modules/directory/widgets/views/memberActionsButton.php deleted file mode 100644 index 16579b96ad..0000000000 --- a/protected/humhub/modules/directory/widgets/views/memberActionsButton.php +++ /dev/null @@ -1,30 +0,0 @@ - - $user, - 'followOptions' => ['class' => 'btn btn-primary btn-sm'], - 'unfollowOptions' => ['class' => 'btn btn-info btn-sm'] -]); -?> - -user->isGuest && !$user->isCurrentUser() && Yii::$app->getModule('friendship')->getIsEnabled()) { - $friendShipState = Friendship::getStateForUser(Yii::$app->user->getIdentity(), $user); - if ($friendShipState === Friendship::STATE_NONE) { - echo Html::a('  ' . Yii::t("FriendshipModule.base", "Add Friend"), Url::to(['/friendship/request/add', 'userId' => $user->id]), ['class' => 'btn btn-primary btn-sm','data-ui-loader' => '', 'data-method' => 'POST']); - } elseif ($friendShipState === Friendship::STATE_FRIENDS) { - echo Html::a('  ' . Yii::t("FriendshipModule.base", "Friends"), $user->getUrl(), ['class' => 'btn btn-info btn-sm', 'data-ui-loader' => '']); - } -} -?> \ No newline at end of file diff --git a/protected/humhub/modules/directory/widgets/views/memberStats.php b/protected/humhub/modules/directory/widgets/views/memberStats.php deleted file mode 100644 index 37fe6321ca..0000000000 --- a/protected/humhub/modules/directory/widgets/views/memberStats.php +++ /dev/null @@ -1,49 +0,0 @@ - - -
- - - 'user-statistics-panel']); ?> - -
- Member stats'); ?> -
- -
-
-

- - -
- -
- -
-

- - -
- -
- -
- : -
- -
-
diff --git a/protected/humhub/modules/directory/widgets/views/spaceStats.php b/protected/humhub/modules/directory/widgets/views/spaceStats.php deleted file mode 100644 index 8d6d43a6da..0000000000 --- a/protected/humhub/modules/directory/widgets/views/spaceStats.php +++ /dev/null @@ -1,49 +0,0 @@ - - -
- - - 'spaces-statistics-panel']); ?> - -
- Space stats'); ?> -
- -
-
-

- - -
- -
- -
-

- - -
-
- - name)) { ?> -
- : name); ?> -
- -
-
diff --git a/protected/humhub/modules/user/widgets/UserWall.php b/protected/humhub/modules/user/widgets/UserWall.php index 50622034dc..d44a3f1d9d 100644 --- a/protected/humhub/modules/user/widgets/UserWall.php +++ b/protected/humhub/modules/user/widgets/UserWall.php @@ -2,9 +2,14 @@ namespace humhub\modules\user\widgets; +use humhub\modules\user\models\User; + class UserWall extends \yii\base\Widget { + /** + * @var User $user + */ public $user; public function run() @@ -13,5 +18,3 @@ class UserWall extends \yii\base\Widget } } - -?> \ No newline at end of file diff --git a/protected/humhub/modules/user/widgets/views/userWall.php b/protected/humhub/modules/user/widgets/views/userWall.php index 39ad4e49bc..f6c8d889ea 100644 --- a/protected/humhub/modules/user/widgets/views/userWall.php +++ b/protected/humhub/modules/user/widgets/views/userWall.php @@ -1,8 +1,10 @@
@@ -12,7 +14,7 @@ use humhub\modules\directory\widgets\UserTagList;

displayNameSub); ?>
- $user]); ?> + $user]); ?>
From fa552b101e11e91110f7ffbc6ea90a8b4edc47df Mon Sep 17 00:00:00 2001 From: Yuriy Bakhtin Date: Thu, 24 Feb 2022 18:30:56 +0300 Subject: [PATCH 49/67] Remove deprecated "Setting" classes (#5369) Co-authored-by: Lucas Bartholemy --- CHANGELOG_DEV.md | 1 + .../humhub/modules/space/models/Setting.php | 76 ------------------- .../humhub/modules/user/models/Setting.php | 75 ------------------ 3 files changed, 1 insertion(+), 151 deletions(-) delete mode 100644 protected/humhub/modules/space/models/Setting.php delete mode 100644 protected/humhub/modules/user/models/Setting.php diff --git a/CHANGELOG_DEV.md b/CHANGELOG_DEV.md index 3d24e39ad9..1f6796389b 100644 --- a/CHANGELOG_DEV.md +++ b/CHANGELOG_DEV.md @@ -31,3 +31,4 @@ - Fix #5529: Tooltip: improving readability - Enh #5298: Added Followers to Space About Page - Enh #4558: Deprecate CompatModuleManager +- Enh #5323: Remove deprecated "Setting" classes \ No newline at end of file diff --git a/protected/humhub/modules/space/models/Setting.php b/protected/humhub/modules/space/models/Setting.php deleted file mode 100644 index 8b2253015e..0000000000 --- a/protected/humhub/modules/space/models/Setting.php +++ /dev/null @@ -1,76 +0,0 @@ - $spaceId]); - self::getModule($moduleId)->settings->contentContainer($user)->set($name, $value); - } - - /** - * Gets a space setting - * - * @see \humhub\modules\content\components\ContentContainerSettingsManager::get - * @param int $spaceId - * @param string $name - * @param string $moduleId - * @param string $defaultValue - * @return string - */ - public static function Get($space, $name, $moduleId = '', $defaultValue = '') - { - $user = Space::findOne(['id' => $space]); - $value = self::getModule($moduleId)->settings->contentContainer($user)->get($name); - if ($value === null) { - return $defaultValue; - } - - return $value; - } - - /** - * Gets correct SettingsManager by module id - * - * @param string $moduleId - * @return \yii\base\Module - */ - private static function getModule($moduleId) - { - $app = null; - if ($moduleId === '' || $moduleId === 'base' || $moduleId === 'core') { - $app = Yii::$app; - } else { - $app = Yii::$app->getModule($moduleId); - } - - return $app; - } - -} diff --git a/protected/humhub/modules/user/models/Setting.php b/protected/humhub/modules/user/models/Setting.php deleted file mode 100644 index 0bf0d5ddee..0000000000 --- a/protected/humhub/modules/user/models/Setting.php +++ /dev/null @@ -1,75 +0,0 @@ - $userId]); - self::getModule($moduleId)->settings->contentContainer($user)->set($name, $value); - } - - /** - * Gets a user setting - * - * @see \humhub\modules\content\components\ContentContainerSettingsManager::get - * @param int $userId - * @param string $name - * @param string $moduleId - * @param string $defaultValue - * @return string the value - */ - public static function Get($userId, $name, $moduleId = "", $defaultValue = "") - { - $user = User::findOne(['id' => $userId]); - $value = self::getModule($moduleId)->settings->contentContainer($user)->get($name); - if ($value === null) { - return $defaultValue; - } - return $value; - } - - /** - * Gets correct SettingsManager by module id - * - * @param string $moduleId - * @return \yii\base\Module - */ - private static function getModule($moduleId) - { - $app = null; - if ($moduleId === '' || $moduleId === 'base' || $moduleId === 'core') { - $app = Yii::$app; - } else { - $app = Yii::$app->getModule($moduleId); - } - return $app; - } - -} From 64a0d0feb1b365febcf49c91f5382a4983a177b7 Mon Sep 17 00:00:00 2001 From: Yuriy Bakhtin Date: Thu, 24 Feb 2022 18:31:58 +0300 Subject: [PATCH 50/67] Optimize module states query (#5400) * Optimize module states query * Fix module states query Co-authored-by: Lucas Bartholemy --- CHANGELOG_DEV.md | 3 ++- .../components/ContentContainerModuleManager.php | 16 +++++++++++----- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG_DEV.md b/CHANGELOG_DEV.md index 1f6796389b..6f21d3c24b 100644 --- a/CHANGELOG_DEV.md +++ b/CHANGELOG_DEV.md @@ -31,4 +31,5 @@ - Fix #5529: Tooltip: improving readability - Enh #5298: Added Followers to Space About Page - Enh #4558: Deprecate CompatModuleManager -- Enh #5323: Remove deprecated "Setting" classes \ No newline at end of file +- Enh #5323: Remove deprecated "Setting" classes +- Enh #5381: Optimize module states query diff --git a/protected/humhub/modules/content/components/ContentContainerModuleManager.php b/protected/humhub/modules/content/components/ContentContainerModuleManager.php index cfabd00a9d..acf3fa08a9 100644 --- a/protected/humhub/modules/content/components/ContentContainerModuleManager.php +++ b/protected/humhub/modules/content/components/ContentContainerModuleManager.php @@ -205,21 +205,27 @@ class ContentContainerModuleManager extends \yii\base\Component */ protected function getStates() { - $states = []; + static $states = []; + + if (isset($states[$this->contentContainer->contentcontainer_id])) { + return $states[$this->contentContainer->contentcontainer_id]; + } + + $states[$this->contentContainer->contentcontainer_id] = []; // Get states for this contentcontainer from database foreach (ContentContainerModuleState::findAll(['contentcontainer_id' => $this->contentContainer->contentcontainer_id]) as $module) { - $states[$module->module_id] = $module->module_state; + $states[$this->contentContainer->contentcontainer_id][$module->module_id] = $module->module_state; } // Get default states, when no state is stored foreach ($this->getAvailable() as $module) { - if (!isset($states[$module->id])) { - $states[$module->id] = self::getDefaultState($this->contentContainer->className(), $module->id); + if (!isset($states[$this->contentContainer->contentcontainer_id][$module->id])) { + $states[$this->contentContainer->contentcontainer_id][$module->id] = self::getDefaultState($this->contentContainer->className(), $module->id); } } - return $states; + return $states[$this->contentContainer->contentcontainer_id]; } /** From cdd71eb7a76537ab7cb4df9ef818e302143f9c6c Mon Sep 17 00:00:00 2001 From: Soundwave2142 <39148595+Soundwave2142@users.noreply.github.com> Date: Thu, 24 Feb 2022 17:49:08 +0200 Subject: [PATCH 51/67] #4823 Removed CHTML and CActiveForm classes and usages (plus refactoring) (#5405) * #4823 Removed CHTML and CActiveForm Usages (plus refactoring) * #4823 missing id returned (Removed CHTML and CActiveForm Usages) Co-authored-by: Lucas Bartholemy --- CHANGELOG_DEV.md | 1 + protected/humhub/compat/CActiveForm.php | 95 ---------- protected/humhub/compat/CHtml.php | 175 ------------------ .../admin/controllers/ModuleController.php | 12 +- .../models/forms/ModuleSetAsDefaultForm.php | 66 ++++++- .../admin/views/module/setAsDefault.php | 133 +++---------- .../models/ContentContainerModuleState.php | 21 ++- .../modules/installer/views/config/basic.php | 32 ++-- .../installer/views/setup/database.php | 26 +-- .../views/membership/requestMembership.php | 50 ++--- .../space/widgets/views/requestMembership.php | 51 ----- .../widgets/views/requestMembershipSave.php | 33 ---- .../views/account/changeEmailValidate.php | 10 +- .../views/password-recovery/index_modal.php | 45 +++-- protected/humhub/widgets/LanguageChooser.php | 7 +- .../humhub/widgets/views/languageChooser.php | 15 +- 16 files changed, 218 insertions(+), 554 deletions(-) delete mode 100644 protected/humhub/compat/CActiveForm.php delete mode 100644 protected/humhub/compat/CHtml.php delete mode 100644 protected/humhub/modules/space/widgets/views/requestMembership.php delete mode 100644 protected/humhub/modules/space/widgets/views/requestMembershipSave.php diff --git a/CHANGELOG_DEV.md b/CHANGELOG_DEV.md index 6f21d3c24b..fe774b189a 100644 --- a/CHANGELOG_DEV.md +++ b/CHANGELOG_DEV.md @@ -33,3 +33,4 @@ - Enh #4558: Deprecate CompatModuleManager - Enh #5323: Remove deprecated "Setting" classes - Enh #5381: Optimize module states query +- Enh #4823: Removed CHTML and CActiveForm classes as well as usages (plus refactoring) diff --git a/protected/humhub/compat/CActiveForm.php b/protected/humhub/compat/CActiveForm.php deleted file mode 100644 index 0fb28372e8..0000000000 --- a/protected/humhub/compat/CActiveForm.php +++ /dev/null @@ -1,95 +0,0 @@ -$attribute = $value; - } - - return CHtml::activeHiddenInput($model, $attribute, $htmlOptions); - } -} diff --git a/protected/humhub/compat/CHtml.php b/protected/humhub/compat/CHtml.php deleted file mode 100644 index a85550613b..0000000000 --- a/protected/humhub/compat/CHtml.php +++ /dev/null @@ -1,175 +0,0 @@ -isAttributeRequired($attribute); - return self::activeLabel($model, $realAttribute, $htmlOptions); - } - - /** - * Generates a text field input for a model attribute. - * If the attribute has input error, the input field's CSS class will - * be appended with {@link errorCss}. - * @param CModel $model the data model - * @param string $attribute the attribute - * @param array $htmlOptions additional HTML attributes. Besides normal HTML attributes, a few special - * attributes are also recognized (see {@link clientChange} and {@link tag} for more details.) - * @return string the generated input field - * @see clientChange - * @see activeInputField - */ - public static function activeTextField($model, $attribute, $htmlOptions = []) - { - self::resolveNameID($model, $attribute, $htmlOptions); - #self::clientChange('change', $htmlOptions); - return self::activeInput('text', $model, $attribute, $htmlOptions); - } - - /** - * Generates input name for a model attribute. - * Note, the attribute name may be modified after calling this method if the name - * contains square brackets (mainly used in tabular input) before the real attribute name. - * @param CModel $model the data model - * @param string $attribute the attribute - * @return string the input name - */ - public static function resolveName($model, &$attribute) - { - $modelName = self::modelName($model); - - if (($pos = strpos($attribute, '[')) !== false) { - if ($pos !== 0) // e.g. name[a][b] - return $modelName . '[' . substr($attribute, 0, $pos) . ']' . substr($attribute, $pos); - if (($pos = strrpos($attribute, ']')) !== false && $pos !== strlen($attribute) - 1) { // e.g. [a][b]name - $sub = substr($attribute, 0, $pos + 1); - $attribute = substr($attribute, $pos + 1); - return $modelName . $sub . '[' . $attribute . ']'; - } - if (preg_match('/\](\w+\[.*)$/', $attribute, $matches)) { - $name = $modelName . '[' . str_replace(']', '][', trim(strtr($attribute, ['][' => ']', '[' => ']']), ']')) . ']'; - $attribute = $matches[1]; - return $name; - } - } - return $modelName . '[' . $attribute . ']'; - } - - /** - * Generates input name and ID for a model attribute. - * This method will update the HTML options by setting appropriate 'name' and 'id' attributes. - * This method may also modify the attribute name if the name - * contains square brackets (mainly used in tabular input). - * @param CModel $model the data model - * @param string $attribute the attribute - * @param array $htmlOptions the HTML options - */ - public static function resolveNameID($model, &$attribute, &$htmlOptions) - { - if (!isset($htmlOptions['name'])) - $htmlOptions['name'] = self::resolveName($model, $attribute); - if (!isset($htmlOptions['id'])) - $htmlOptions['id'] = self::getIdByName($htmlOptions['name']); - elseif ($htmlOptions['id'] === false) - unset($htmlOptions['id']); - } - - /** - * Generates a valid HTML ID based on name. - * @param string $name name from which to generate HTML ID - * @return string the ID generated based on name. - */ - public static function getIdByName($name) - { - return str_replace(['[]', '][', '[', ']', ' '], ['', '_', '_', '', '_'], $name); - } - - /** - * Generates HTML name for given model. - * @see CHtml::setModelNameConverter() - * @param CModel|string $model the data model or the model class name - * @return string the generated HTML name value - * @since 1.1.14 - */ - public static function modelName($model) - { - return $model->formName(); - } - - /** - * Active Checkbox without Label - * - * @param type $model - * @param type $attribute - * @param type $options - * @return type - */ - public static function activeCheckboxNoLabel($model, $attribute, $options = []) - { - $name = isset($options['name']) ? $options['name'] : static::getInputName($model, $attribute); - $value = static::getAttributeValue($model, $attribute); - - if (!array_key_exists('value', $options)) { - $options['value'] = '1'; - } - if (!array_key_exists('uncheck', $options)) { - $options['uncheck'] = '0'; - } - - $checked = "$value" === "{$options['value']}"; - - if (!array_key_exists('id', $options)) { - $options['id'] = static::getInputId($model, $attribute); - } - - return static::checkbox($name, $checked, $options); - } - -} diff --git a/protected/humhub/modules/admin/controllers/ModuleController.php b/protected/humhub/modules/admin/controllers/ModuleController.php index 4474f876d8..13c70a50cd 100644 --- a/protected/humhub/modules/admin/controllers/ModuleController.php +++ b/protected/humhub/modules/admin/controllers/ModuleController.php @@ -13,9 +13,6 @@ use humhub\modules\admin\components\Controller; use humhub\modules\admin\models\forms\ModuleSetAsDefaultForm; use humhub\modules\admin\permissions\ManageModules; use humhub\modules\content\components\ContentContainerModule; -use humhub\modules\content\components\ContentContainerModuleManager; -use humhub\modules\space\models\Space; -use humhub\modules\user\models\User; use Yii; use yii\base\Exception; use yii\web\HttpException; @@ -205,13 +202,8 @@ class ModuleController extends Controller throw new HttpException(500, 'Invalid module type!'); } - $model = new ModuleSetAsDefaultForm(); - $model->spaceDefaultState = ContentContainerModuleManager::getDefaultState(Space::class, $moduleId); - $model->userDefaultState = ContentContainerModuleManager::getDefaultState(User::class, $moduleId); - - if ($model->load(Yii::$app->request->post()) && $model->validate()) { - ContentContainerModuleManager::setDefaultState(User::class, $moduleId, $model->userDefaultState); - ContentContainerModuleManager::setDefaultState(Space::class, $moduleId, $model->spaceDefaultState); + $model = (new ModuleSetAsDefaultForm())->setModule($moduleId); + if ($model->load(Yii::$app->request->post()) && $model->save()) { return $this->renderModalClose(); } diff --git a/protected/humhub/modules/admin/models/forms/ModuleSetAsDefaultForm.php b/protected/humhub/modules/admin/models/forms/ModuleSetAsDefaultForm.php index 5ccb0a13b7..dfcf2f8531 100644 --- a/protected/humhub/modules/admin/models/forms/ModuleSetAsDefaultForm.php +++ b/protected/humhub/modules/admin/models/forms/ModuleSetAsDefaultForm.php @@ -2,16 +2,28 @@ namespace humhub\modules\admin\models\forms; +use humhub\modules\content\components\ContentContainerModuleManager; +use humhub\modules\content\models\ContentContainerModuleState; +use humhub\modules\space\models\Space; +use humhub\modules\user\models\User; +use Yii; +use yii\base\Model; + /** * GroupForm is used to modify group settings * * @package humhub.modules_core.admin.forms * @since 0.5 */ -class ModuleSetAsDefaultForm extends \yii\base\Model +class ModuleSetAsDefaultForm extends Model { + /** @var string */ + protected $moduleId; + /** @var int | string */ public $spaceDefaultState; + + /** @var int | string */ public $userDefaultState; /** @@ -22,8 +34,58 @@ class ModuleSetAsDefaultForm extends \yii\base\Model public function rules() { return [ - [['userDefaultState', 'spaceDefaultState'], 'integer'], + [['userDefaultState', 'spaceDefaultState'], 'in', 'range' => ContentContainerModuleState::getStates()], ]; } + /** + * @inheritDoc + */ + public function attributeLabels() + { + return [ + 'spaceDefaultState' => Yii::t('AdminModule.modules', 'Space default state'), + 'userDefaultState' => Yii::t('AdminModule.modules', 'User default state') + ]; + } + + /** + * @return array + */ + public function getStatesList() + { + return ContentContainerModuleState::getStates(true); + } + + /** + * @param $id + * @return $this + */ + public function setModule($id): self + { + if ($this->moduleId == $id) { + return $this; + } + + $this->moduleId = $id; + $this->spaceDefaultState = ContentContainerModuleManager::getDefaultState(Space::class, $id) ?? ContentContainerModuleState::STATE_DISABLED; + $this->userDefaultState = ContentContainerModuleManager::getDefaultState(User::class, $id) ?? ContentContainerModuleState::STATE_DISABLED; + + return $this; + } + + /** + * @return bool + */ + public function save($validate = true) + { + if ($validate && !$this->validate()) { + return false; + } + + ContentContainerModuleManager::setDefaultState(User::class, $this->moduleId, $this->userDefaultState); + ContentContainerModuleManager::setDefaultState(Space::class, $this->moduleId, $this->spaceDefaultState); + + return true; + } } diff --git a/protected/humhub/modules/admin/views/module/setAsDefault.php b/protected/humhub/modules/admin/views/module/setAsDefault.php index c66e3da35d..be5d6f4c2f 100644 --- a/protected/humhub/modules/admin/views/module/setAsDefault.php +++ b/protected/humhub/modules/admin/views/module/setAsDefault.php @@ -1,125 +1,53 @@ - diff --git a/protected/humhub/modules/content/models/ContentContainerModuleState.php b/protected/humhub/modules/content/models/ContentContainerModuleState.php index 1a6be7268b..8a7c3ca8bf 100644 --- a/protected/humhub/modules/content/models/ContentContainerModuleState.php +++ b/protected/humhub/modules/content/models/ContentContainerModuleState.php @@ -8,6 +8,7 @@ namespace humhub\modules\content\models; +use Yii; use yii\db\ActiveRecord; /** @@ -19,9 +20,13 @@ use yii\db\ActiveRecord; */ class ContentContainerModuleState extends ActiveRecord { - + /** @var int */ const STATE_DISABLED = 0; + + /** @var int */ const STATE_ENABLED = 1; + + /** @var int */ const STATE_FORCE_ENABLED = 2; /** @@ -32,4 +37,18 @@ class ContentContainerModuleState extends ActiveRecord return 'contentcontainer_module'; } + /** + * @param false $labels + * @return array|int[]|string[] + */ + public static function getStates($labels = false) + { + $states = [ + self::STATE_DISABLED => Yii::t('AdminModule.modules', 'Deactivated'), + self::STATE_ENABLED => Yii::t('AdminModule.modules', 'Activated'), + self::STATE_FORCE_ENABLED => Yii::t('AdminModule.modules', 'Always activated') + ]; + + return $labels ? $states : array_keys($states); + } } diff --git a/protected/humhub/modules/installer/views/config/basic.php b/protected/humhub/modules/installer/views/config/basic.php index 8483d27c9e..b06e7d73c1 100644 --- a/protected/humhub/modules/installer/views/config/basic.php +++ b/protected/humhub/modules/installer/views/config/basic.php @@ -1,32 +1,32 @@
- Name'); ?> + Name'); ?>
+

-

- - - +
- labelEx($model, 'name'); ?> - textField($model, 'name', ['class' => 'form-control']); ?> - error($model, 'name'); ?> + field($model, 'name')->textInput(); ?>
-
- 'btn btn-primary', 'data-ui-loader' => '']); ?> + 'btn btn-primary', 'data-ui-loader' => '']); ?> - +
@@ -38,10 +38,10 @@ use humhub\libs\Html; }); // Shake panel after wrong validation -hasErrors()) { ?> - $('#name-form').removeClass('fadeIn'); - $('#name-form').addClass('shake'); - + hasErrors()): ?> + $('#name-form').removeClass('fadeIn'); + $('#name-form').addClass('shake'); + diff --git a/protected/humhub/modules/installer/views/setup/database.php b/protected/humhub/modules/installer/views/setup/database.php index 38a0323086..9c713ddc2b 100644 --- a/protected/humhub/modules/installer/views/setup/database.php +++ b/protected/humhub/modules/installer/views/setup/database.php @@ -10,17 +10,18 @@ use humhub\modules\ui\form\widgets\ActiveForm;
- Database Configuration'); ?> + Database Configuration'); ?>
-

- -

+

+ field($model, 'hostname')->textInput(); ?> +


+ field($model, 'hostname') ?>
field($model, 'port') ?> @@ -34,14 +35,13 @@ use humhub\modules\ui\form\widgets\ActiveForm;
-
- +
+
- + +
-
- - 'btn btn-primary', 'data-loader' => "modal", 'data-message' => Yii::t('InstallerModule.base', 'Initializing database...')]); ?> + 'btn btn-primary', 'data-loader' => "modal", 'data-message' => Yii::t('InstallerModule.base', 'Initializing database...')]); ?>
@@ -55,9 +55,9 @@ use humhub\modules\ui\form\widgets\ActiveForm; }) // Shake panel after wrong validation - hasErrors()) { ?> + hasErrors()): ?> $('#database-form').removeClass('fadeIn'); $('#database-form').addClass('shake'); - + - \ No newline at end of file + diff --git a/protected/humhub/modules/space/views/membership/requestMembership.php b/protected/humhub/modules/space/views/membership/requestMembership.php index c3dbf67793..cf2a5fa104 100644 --- a/protected/humhub/modules/space/views/membership/requestMembership.php +++ b/protected/humhub/modules/space/views/membership/requestMembership.php @@ -1,38 +1,41 @@ @@ -64,9 +66,9 @@ use humhub\modules\space\models\Space; $('#request-message').focus() // Shake modal after wrong validation -hasErrors()) { ?> - $('.modal-dialog').removeClass('fadeIn'); - $('.modal-dialog').addClass('shake'); - + hasErrors()): ?> + $('.modal-dialog').removeClass('fadeIn'); + $('.modal-dialog').addClass('shake'); + diff --git a/protected/humhub/modules/space/widgets/views/requestMembership.php b/protected/humhub/modules/space/widgets/views/requestMembership.php deleted file mode 100644 index baf2fa2180..0000000000 --- a/protected/humhub/modules/space/widgets/views/requestMembership.php +++ /dev/null @@ -1,51 +0,0 @@ - diff --git a/protected/humhub/modules/space/widgets/views/requestMembershipSave.php b/protected/humhub/modules/space/widgets/views/requestMembershipSave.php deleted file mode 100644 index 2c2790d17e..0000000000 --- a/protected/humhub/modules/space/widgets/views/requestMembershipSave.php +++ /dev/null @@ -1,33 +0,0 @@ - - - - diff --git a/protected/humhub/modules/user/views/account/changeEmailValidate.php b/protected/humhub/modules/user/views/account/changeEmailValidate.php index e3aacec594..318f2b1a30 100644 --- a/protected/humhub/modules/user/views/account/changeEmailValidate.php +++ b/protected/humhub/modules/user/views/account/changeEmailValidate.php @@ -1,8 +1,12 @@ beginContent('@user/views/account/_userProfileLayout.php') ?> - CHtml::encode($newEmail)]); ?> + Html::encode($newEmail)]); ?> endContent(); ?> - diff --git a/protected/humhub/modules/user/views/password-recovery/index_modal.php b/protected/humhub/modules/user/views/password-recovery/index_modal.php index 03ebbcaa01..d2208d2fa6 100644 --- a/protected/humhub/modules/user/views/password-recovery/index_modal.php +++ b/protected/humhub/modules/user/views/password-recovery/index_modal.php @@ -1,55 +1,64 @@ - diff --git a/protected/humhub/widgets/LanguageChooser.php b/protected/humhub/widgets/LanguageChooser.php index 2152d2436e..8d2d06aaf9 100644 --- a/protected/humhub/widgets/LanguageChooser.php +++ b/protected/humhub/widgets/LanguageChooser.php @@ -20,7 +20,9 @@ namespace humhub\widgets; +use humhub\models\forms\ChooseLanguage; use Yii; +use yii\base\Widget; /** * LanguageChooser @@ -28,7 +30,7 @@ use Yii; * @author luke * @since 0.11 */ -class LanguageChooser extends \yii\base\Widget +class LanguageChooser extends Widget { /** @@ -36,8 +38,9 @@ class LanguageChooser extends \yii\base\Widget */ public function run() { - $model = new \humhub\models\forms\ChooseLanguage(); + $model = new ChooseLanguage(); $model->language = Yii::$app->language; + return $this->render('languageChooser', ['model' => $model, 'languages' => Yii::$app->i18n->getAllowedLanguages()]); } diff --git a/protected/humhub/widgets/views/languageChooser.php b/protected/humhub/widgets/views/languageChooser.php index bacdcbfa28..dade424658 100644 --- a/protected/humhub/widgets/views/languageChooser.php +++ b/protected/humhub/widgets/views/languageChooser.php @@ -1,14 +1,21 @@ +
1) : ?>  
- 'choose-language-form']); ?> - dropDownList($model, 'language', $languages, ['data-action-change' => 'ui.form.submit', 'aria-label' => Yii::t('base', "Choose language:")]); ?> - + 'choose-language-form']); ?> + field($model, 'language')->dropDownList($languages, ['data-action-change' => 'ui.form.submit'])->label(false); ?> +
From 89a149bd4fba86850f91b5e1a4c77f93bed31a7a Mon Sep 17 00:00:00 2001 From: Lucas Bartholemy Date: Thu, 24 Feb 2022 16:50:29 +0100 Subject: [PATCH 52/67] Removed directory from ModuleAutoLoaderTest --- .../unit/components/bootstrap/ModuleAutoLoaderTest.php | 1 - 1 file changed, 1 deletion(-) diff --git a/protected/humhub/tests/codeception/unit/components/bootstrap/ModuleAutoLoaderTest.php b/protected/humhub/tests/codeception/unit/components/bootstrap/ModuleAutoLoaderTest.php index cf939ec26b..ff88bb7aa6 100644 --- a/protected/humhub/tests/codeception/unit/components/bootstrap/ModuleAutoLoaderTest.php +++ b/protected/humhub/tests/codeception/unit/components/bootstrap/ModuleAutoLoaderTest.php @@ -23,7 +23,6 @@ class ModuleAutoLoaderTest extends Unit 'comment', 'content', 'dashboard', - 'directory', 'file', 'friendship', 'installer', From 5bbfb61736738db67bc19a55f1f23feec014434c Mon Sep 17 00:00:00 2001 From: Igor Morozov Date: Thu, 24 Feb 2022 19:05:09 +0200 Subject: [PATCH 53/67] Enh/5503 (#5520) * prefix in text field * Added LinkPreview * Update CHANGELOG_DEV.md Co-authored-by: Lucas Bartholemy Co-authored-by: Lucas Bartholemy --- CHANGELOG_DEV.md | 1 + .../modules/user/models/ProfileField.php | 1 + .../modules/user/models/fieldtype/Text.php | 108 ++++++++++-------- 3 files changed, 63 insertions(+), 47 deletions(-) diff --git a/CHANGELOG_DEV.md b/CHANGELOG_DEV.md index fe774b189a..9d06a17e0d 100644 --- a/CHANGELOG_DEV.md +++ b/CHANGELOG_DEV.md @@ -11,6 +11,7 @@ - Enh #5258: Display who invited the user on the Approval page - Enh #5475: Option for forbidden usernames - Enh #4890: Allow to define actions in a controller which should not be intercepted by other actions +- Enh #5503: Allow profile fields link prefixes like "tel://" - Enh #5510: oEmbed support for other social networks, redesign of oEmbed settings pages - Fix #5534: Statistic input loading problem - Enh #5523: Option to include E-Mail address to search diff --git a/protected/humhub/modules/user/models/ProfileField.php b/protected/humhub/modules/user/models/ProfileField.php index 5b1c8f1772..3d16771601 100644 --- a/protected/humhub/modules/user/models/ProfileField.php +++ b/protected/humhub/modules/user/models/ProfileField.php @@ -13,6 +13,7 @@ use humhub\libs\Helpers; use humhub\modules\user\models\fieldtype\BaseType; use Yii; use yii\db\ActiveQuery; +use yii\helpers\Html; /** * This is the model class for table "profile_field". diff --git a/protected/humhub/modules/user/models/fieldtype/Text.php b/protected/humhub/modules/user/models/fieldtype/Text.php index f91b097c57..90858e528f 100644 --- a/protected/humhub/modules/user/models/fieldtype/Text.php +++ b/protected/humhub/modules/user/models/fieldtype/Text.php @@ -10,6 +10,7 @@ namespace humhub\modules\user\models\fieldtype; use humhub\modules\user\models\User; use Yii; +use yii\helpers\Html; /** * ProfileFieldTypeText handles text profile fields. @@ -70,6 +71,14 @@ class Text extends BaseType */ public $canBeDirectoryFilter = true; + /** + * LinkPrefix - tel://, sip://, xmpp:// etc + * + * @since 1.11 + * @var string + */ + public $linkPrefix; + /** * Rules for validating the Field Type Settings Form * @@ -81,6 +90,7 @@ class Text extends BaseType [['default', 'minLength', 'maxLength', 'validator', 'regexp', 'regexpErrorMessage'], 'safe'], [['maxLength', 'minLength'], 'integer', 'min' => 1, 'max' => 255], [['default'], 'string', 'max' => 255], + [['linkPrefix'], 'string', 'max' => 10], ]; } @@ -93,47 +103,52 @@ class Text extends BaseType public function getFormDefinition($definition = []) { return parent::getFormDefinition([ - get_class($this) => [ - 'type' => 'form', - 'title' => Yii::t('UserModule.profile', 'Text Field Options'), - 'elements' => [ - 'validator' => [ - 'label' => Yii::t('UserModule.profile', 'Validator'), - 'type' => 'dropdownlist', - 'class' => 'form-control', - 'items' => [ - '' => 'None', - self::VALIDATOR_EMAIL => 'E-Mail Address', - self::VALIDATOR_URL => 'URL', - ], - ], - 'minLength' => [ - 'label' => Yii::t('UserModule.profile', 'Minimum length'), - 'type' => 'text', - 'class' => 'form-control', - ], - 'maxLength' => [ - 'label' => Yii::t('UserModule.profile', 'Maximum length'), - 'class' => 'form-control', - 'type' => 'text', - ], - 'default' => [ - 'label' => Yii::t('UserModule.profile', 'Default value'), - 'class' => 'form-control', - 'type' => 'text', - ], - 'regexp' => [ - 'label' => Yii::t('UserModule.profile', 'Regular Expression: Validator'), - 'class' => 'form-control', - 'type' => 'text', - ], - 'regexpErrorMessage' => [ - 'label' => Yii::t('UserModule.profile', 'Regular Expression: Error message'), - 'class' => 'form-control', - 'type' => 'text', - ], - ] - ]]); + get_class($this) => [ + 'type' => 'form', + 'title' => Yii::t('UserModule.profile', 'Text Field Options'), + 'elements' => [ + 'validator' => [ + 'label' => Yii::t('UserModule.profile', 'Validator'), + 'type' => 'dropdownlist', + 'class' => 'form-control', + 'items' => [ + '' => 'None', + self::VALIDATOR_EMAIL => 'E-Mail Address', + self::VALIDATOR_URL => 'URL', + ], + ], + 'linkPrefix' => [ + 'label' => Yii::t('UserModule.profile', 'Link Prefix (e.g. https://, mailto:, tel://)'), + 'type' => 'text', + 'class' => 'form-control', + ], + 'minLength' => [ + 'label' => Yii::t('UserModule.profile', 'Minimum length'), + 'type' => 'text', + 'class' => 'form-control', + ], + 'maxLength' => [ + 'label' => Yii::t('UserModule.profile', 'Maximum length'), + 'class' => 'form-control', + 'type' => 'text', + ], + 'default' => [ + 'label' => Yii::t('UserModule.profile', 'Default value'), + 'class' => 'form-control', + 'type' => 'text', + ], + 'regexp' => [ + 'label' => Yii::t('UserModule.profile', 'Regular Expression: Validator'), + 'class' => 'form-control', + 'type' => 'text', + ], + 'regexpErrorMessage' => [ + 'label' => Yii::t('UserModule.profile', 'Regular Expression: Error message'), + 'class' => 'form-control', + 'type' => 'text', + ], + ] + ]]); } /** @@ -178,7 +193,7 @@ class Text extends BaseType if ($this->regexp != "") { $errorMsg = $this->regexpErrorMessage; if (empty($errorMsg)) { - $errorMsg = Yii::t('UserModule.profile',"Invalid!"); + $errorMsg = Yii::t('UserModule.profile', "Invalid!"); } else { $errorMsg = Yii::t($this->profileField->getTranslationCategory(), $errorMsg); } @@ -197,13 +212,12 @@ class Text extends BaseType $internalName = $this->profileField->internal_name; $value = $user->profile->$internalName; - if (!$raw && $this->validator == self::VALIDATOR_EMAIL) { - return \yii\helpers\Html::a(\yii\helpers\Html::encode($value), 'mailto:' . $value); - } elseif (!$raw && $this->validator == self::VALIDATOR_URL) { - return \yii\helpers\Html::a(\yii\helpers\Html::encode($value), $value, ['target' => '_blank']); + if (!$raw && (in_array($this->validator, [self::VALIDATOR_EMAIL, self::VALIDATOR_URL]) || !empty($this->linkPrefix))) { + $linkPrefix = ($this->validator === self::VALIDATOR_EMAIL) ? 'mailto:' : $this->linkPrefix; + return Html::a(Html::encode($value), $linkPrefix . $value); } - return \yii\helpers\Html::encode($value); + return Html::encode($value); } } From 453421e1e76aad075201eca9726fc7bd958dc9e2 Mon Sep 17 00:00:00 2001 From: Lucas Bartholemy Date: Thu, 24 Feb 2022 18:25:17 +0100 Subject: [PATCH 54/67] Update php-test.yml --- .github/workflows/php-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php-test.yml b/.github/workflows/php-test.yml index 07a19211e1..bfd2d30edd 100644 --- a/.github/workflows/php-test.yml +++ b/.github/workflows/php-test.yml @@ -25,7 +25,7 @@ jobs: - ubuntu-latest php-version: - - "7.2" +# - "7.2" - "7.3" - "7.4" - "8.0" From 18ec9a3351a43b9498e9a9fadf9a6bc9428ba08f Mon Sep 17 00:00:00 2001 From: Lucas Bartholemy Date: Thu, 24 Feb 2022 18:33:26 +0100 Subject: [PATCH 55/67] Fix #5449: File - Update info --- CHANGELOG_DEV.md | 1 + protected/humhub/modules/file/models/File.php | 8 +++----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/CHANGELOG_DEV.md b/CHANGELOG_DEV.md index 9d06a17e0d..352bcaef99 100644 --- a/CHANGELOG_DEV.md +++ b/CHANGELOG_DEV.md @@ -35,3 +35,4 @@ - Enh #5323: Remove deprecated "Setting" classes - Enh #5381: Optimize module states query - Enh #4823: Removed CHTML and CActiveForm classes as well as usages (plus refactoring) +- Fix #5449: File - Update info after `setStoredFileContent` and `setStoredFile` diff --git a/protected/humhub/modules/file/models/File.php b/protected/humhub/modules/file/models/File.php index ebbaf80ab0..fe45377318 100644 --- a/protected/humhub/modules/file/models/File.php +++ b/protected/humhub/modules/file/models/File.php @@ -358,12 +358,10 @@ class File extends FileCompat private function afterNewStoredFile() { if ($this->store->has()) { - $this->updateAttributes([ - 'hash_sha1' => sha1_file($this->store->get()), - 'size' => filesize($this->store->get()), - ]); - + $this->hash_sha1 = sha1_file($this->store->get()); + $this->size = filesize($this->store->get()); $this->trigger(self::EVENT_AFTER_NEW_STORED_FILE); + $this->save(); } } } From f09da625490066f3ba5db56d65a045f2ca45bbef Mon Sep 17 00:00:00 2001 From: Lucas Bartholemy Date: Thu, 24 Feb 2022 18:56:12 +0100 Subject: [PATCH 56/67] LDAP mapping clear for single user --- CHANGELOG_DEV.md | 2 ++ .../modules/ldap/commands/LdapController.php | 15 ++++++++++----- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG_DEV.md b/CHANGELOG_DEV.md index 352bcaef99..df10fe175a 100644 --- a/CHANGELOG_DEV.md +++ b/CHANGELOG_DEV.md @@ -36,3 +36,5 @@ - Enh #5381: Optimize module states query - Enh #4823: Removed CHTML and CActiveForm classes as well as usages (plus refactoring) - Fix #5449: File - Update info after `setStoredFileContent` and `setStoredFile` +- Enh #5127: LDAP: Reset mapping for single user only + diff --git a/protected/humhub/modules/ldap/commands/LdapController.php b/protected/humhub/modules/ldap/commands/LdapController.php index 0973aba09f..11ad12481d 100644 --- a/protected/humhub/modules/ldap/commands/LdapController.php +++ b/protected/humhub/modules/ldap/commands/LdapController.php @@ -159,18 +159,23 @@ class LdapController extends \yii\console\Controller /** - * Clears the 'authclient_id' entries in the user table. - * Useful if the ldap ids changed. + * Resets the LDAP mapping of all or a certain account. * * @param string $id the auth client id (default: ldap) + * @param string $userName UserName, if set, the assignment will be deleted for this user only. * @return int status code */ - public function actionMappingClear($id = 'ldap') + public function actionMappingClear($id = 'ldap', $userName = null) { $this->stdout("*** LDAP Flush user id mappings for AuthClient ID: " . $id . "\n\n"); - User::updateAll(['authclient_id' => new Expression('NULL')], ['auth_mode' => $id]); - $this->stdout("Mappings cleared!\n"); + if ($userName === null) { + User::updateAll(['authclient_id' => new Expression('NULL')], ['auth_mode' => $id]); + } else { + User::updateAll(['authclient_id' => new Expression('NULL')], ['auth_mode' => $id, 'username' => $userName]); + } + + $this->stdout("Mapping(s) cleared!\n"); return ExitCode::OK; } From 138e29ee642cd4fc212c8313efdba7a024dc9154 Mon Sep 17 00:00:00 2001 From: s-tyshchenko Date: Wed, 2 Mar 2022 18:42:41 +0200 Subject: [PATCH 57/67] Number of activities reported in the mail summary is limited to 20 (#5568) * Fixed * Fix Query Limit * Fixed Tests * Remove query limit for console requests Co-authored-by: Lucas Bartholemy --- CHANGELOG_DEV.md | 2 +- protected/humhub/modules/stream/models/StreamQuery.php | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG_DEV.md b/CHANGELOG_DEV.md index df10fe175a..99bbea2322 100644 --- a/CHANGELOG_DEV.md +++ b/CHANGELOG_DEV.md @@ -27,6 +27,7 @@ - Fix #5533: Users can't live in UTC - Fix #5460: Untranslatable string New Updates in Stream - Fix #5573: Allow replying for sub comments +- Fix #5518: Number of activities reported in the mail summary is always limited to 20 - Enh #5358: Remove deprecated "Directory" module - Fix #5524: Mentioning Permission - Fix #5529: Tooltip: improving readability @@ -37,4 +38,3 @@ - Enh #4823: Removed CHTML and CActiveForm classes as well as usages (plus refactoring) - Fix #5449: File - Update info after `setStoredFileContent` and `setStoredFile` - Enh #5127: LDAP: Reset mapping for single user only - diff --git a/protected/humhub/modules/stream/models/StreamQuery.php b/protected/humhub/modules/stream/models/StreamQuery.php index 8aa5799b2e..138ffd07ae 100644 --- a/protected/humhub/modules/stream/models/StreamQuery.php +++ b/protected/humhub/modules/stream/models/StreamQuery.php @@ -156,7 +156,7 @@ class StreamQuery extends Model { return [ [['limit', 'from', 'to', 'contentId'], 'number'], - [['sort'], 'safe'] + [['sort'], 'safe'], ]; } @@ -456,10 +456,12 @@ class StreamQuery extends Model */ protected function checkLimit() { - if (empty($this->limit) || $this->limit > self::MAX_LIMIT) { + if (empty($this->limit)) { $this->limit = self::MAX_LIMIT; - } else { + } else if (Yii::$app->request->isConsoleRequest) { $this->limit = (int)$this->limit; + } else { + $this->limit = ($this->limit > self::MAX_LIMIT) ? self::MAX_LIMIT : (int)$this->limit; } } From 0fcb165b294563e7443049e63793241595fbdada Mon Sep 17 00:00:00 2001 From: s-tyshchenko Date: Wed, 2 Mar 2022 19:33:09 +0200 Subject: [PATCH 58/67] Microsoft Auth Remember me checkbox fix (#5578) * Update humhub.user.login.js * Update CHANGELOG_DEV.md * Update CHANGELOG_DEV.md Co-authored-by: Lucas Bartholemy --- CHANGELOG_DEV.md | 1 + .../humhub/modules/user/resources/js/humhub.user.login.js | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG_DEV.md b/CHANGELOG_DEV.md index 99bbea2322..62392b524a 100644 --- a/CHANGELOG_DEV.md +++ b/CHANGELOG_DEV.md @@ -38,3 +38,4 @@ - Enh #4823: Removed CHTML and CActiveForm classes as well as usages (plus refactoring) - Fix #5449: File - Update info after `setStoredFileContent` and `setStoredFile` - Enh #5127: LDAP: Reset mapping for single user only +- Fix #5578: Improved `rememberMe` parameter handling for thirdparty auth provider diff --git a/protected/humhub/modules/user/resources/js/humhub.user.login.js b/protected/humhub/modules/user/resources/js/humhub.user.login.js index fa18a6ee8c..5a61d65dde 100644 --- a/protected/humhub/modules/user/resources/js/humhub.user.login.js +++ b/protected/humhub/modules/user/resources/js/humhub.user.login.js @@ -11,7 +11,12 @@ humhub.module('user.login', function (module, require, $) { $this.data('originalUrl', original); } - $this.attr('href', checked ? original + '&rememberMe=1' : original); + var url = new URL(original, window.location.origin); + if(checked) { + url.searchParams.set('rememberMe', 1); + } + + $this.attr('href', url.toString()); }); }; From c47d9f219d9c09c578b11cb9d49f45c09bb979d9 Mon Sep 17 00:00:00 2001 From: Yuriy Bakhtin Date: Wed, 2 Mar 2022 20:59:07 +0300 Subject: [PATCH 59/67] Fix long words in comment form (#5581) * Fix long words in comment form * Update CHANGELOG_DEV.md Co-authored-by: Lucas Bartholemy --- CHANGELOG_DEV.md | 1 + static/less/comment.less | 3 +++ themes/HumHub/css/theme.css | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG_DEV.md b/CHANGELOG_DEV.md index 62392b524a..b81b374511 100644 --- a/CHANGELOG_DEV.md +++ b/CHANGELOG_DEV.md @@ -38,4 +38,5 @@ - Enh #4823: Removed CHTML and CActiveForm classes as well as usages (plus refactoring) - Fix #5449: File - Update info after `setStoredFileContent` and `setStoredFile` - Enh #5127: LDAP: Reset mapping for single user only +- Fix #5581: Fix long words in comment form - Fix #5578: Improved `rememberMe` parameter handling for thirdparty auth provider diff --git a/static/less/comment.less b/static/less/comment.less index abbc4497fe..fbe1e1db2f 100644 --- a/static/less/comment.less +++ b/static/less/comment.less @@ -101,6 +101,9 @@ .field-comment-message, .field-post-message { flex-grow: 1; flex-basis: min-content; + [data-ui-markdown] { + word-break: break-word !important; + } } .form-group, .help-block { margin:0; diff --git a/themes/HumHub/css/theme.css b/themes/HumHub/css/theme.css index f9c7edeba5..9d4f22c9dd 100644 --- a/themes/HumHub/css/theme.css +++ b/themes/HumHub/css/theme.css @@ -1 +1 @@ -.colorDefault{color:#f3f3f3}.backgroundDefault{background:#f3f3f3}.borderDefault{border-color:#f3f3f3}.colorPrimary{color:#435f6f!important}.backgroundPrimary{background:#435f6f!important}.borderPrimary{border-color:#435f6f!important}.colorInfo{color:#21a1b3!important}.backgroundInfo{background:#21a1b3!important}.borderInfo{border-color:#21a1b3!important}.colorLink{color:#21a1b3!important}.colorSuccess{color:#97d271!important}.backgroundSuccess{background:#97d271!important}.borderSuccess{border-color:#97d271!important}.colorWarning{color:#ffc107!important}.backgroundWarning{background:#ffc107!important}.borderWarning{border-color:#ffc107!important}.colorDanger{color:#fc4a64!important}.backgroundDanger{background:#fc4a64!important}.borderDanger{border-color:#fc4a64!important}.colorFont1{color:#bac2c7!important}.colorFont2{color:#7a7a7a!important}.colorFont3{color:#000!important}.colorFont4{color:#555!important}.colorFont5{color:#aeaeae!important}.heading{font-size:16px;font-weight:300;color:#000;background-color:#fff;border:none;padding:10px}.text-center{text-align:center!important}.text-break{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.img-rounded{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}body{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;padding-top:130px;background-color:#ededed;color:#555;font-family:'Open Sans',sans-serif}body a,body a.active,body a:active,body a:focus,body a:hover{color:#000;text-decoration:none}a:hover{text-decoration:none}hr{margin-top:10px;margin-bottom:10px}.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{position:inherit}.layout-nav-container{padding:0 0 0 15px}.layout-sidebar-container{padding:0 15px 0 0}@media (max-width:768px){.layout-nav-container{padding:0 15px}.layout-nav-container .left-navigation{margin-bottom:0}}h4{font-weight:300;font-size:150%}input[type=password],input[type=select],input[type=text]{-webkit-appearance:none;-moz-appearance:none;appearance:none}.powered,.powered a{color:#b8c7d3!important}.langSwitcher{display:inline-block}[data-ui-show-more]{overflow:hidden}@media (min-width:768px) and (max-width:991px){.layout-nav-container{padding:0 15px}body{padding-top:120px}}@media print{#topbar-first,#topbar-second{display:none}}span.likeLinkContainer .like.disabled,span.likeLinkContainer .unlike.disabled{pointer-events:none;cursor:default;text-decoration:none;color:#d3d3d3}.modal-body a[data-toggle],.panel-body a[data-toggle]{color:#21a1b3}.showMore{font-size:13px}.table-responsive{word-wrap:normal;overflow-wrap:normal;word-break:normal;-moz-hyphens:none;hyphens:none}.topbar{position:fixed;display:block;height:50px;width:100%;padding-left:15px;padding-right:15px}.topbar ul.nav{float:left}.topbar ul.nav>li{float:left}.topbar ul.nav>li>a{padding-top:15px;padding-bottom:15px;line-height:20px}.topbar .dropdown-footer{margin:10px}.topbar .dropdown-header{font-size:16px;padding:3px 10px;margin-bottom:10px;font-weight:300;color:#555}.topbar .dropdown-header .dropdown-header-link{position:absolute;top:2px;right:10px}.topbar .dropdown-header .dropdown-header-link a{color:#21a1b3!important;font-size:12px;font-weight:400}.topbar .dropdown-header:hover{color:#555}#topbar-first{background-color:#435f6f;top:0;z-index:1030;color:#fff}#topbar-first a.navbar-brand{height:50px;padding:5px}#topbar-first a.navbar-brand img#img-logo{max-height:40px}#topbar-first a.navbar-brand-text{padding-top:15px}#topbar-first .nav>.open>a,#topbar-first .nav>li>a:hover{background-color:#567a8f}#topbar-first .nav>.account{height:50px;margin-left:20px}#topbar-first .nav>.account img{margin-left:10px}#topbar-first .nav>.account .dropdown-toggle{padding:10px 5px 8px;line-height:1.1em;text-align:left}#topbar-first .nav>.account .dropdown-toggle span{font-size:12px}#topbar-first .topbar-brand{position:relative;z-index:2}#topbar-first .topbar-actions{position:relative;z-index:3}#topbar-first .notifications{position:absolute;left:0;right:0;text-align:center;z-index:1}#topbar-first .notifications .btn-group{position:relative;text-align:left}#topbar-first .notifications .btn-group>a{padding:5px 10px;margin:10px 2px;display:inline-block;border-radius:2px;text-decoration:none;text-align:left}#topbar-first .notifications .btn-group>.label{position:absolute;top:4px;right:-2px}#topbar-first .notifications .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;border-width:10px;content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff;z-index:1035}#topbar-first .notifications .arrow{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;z-index:1001;border-width:11px;left:50%;margin-left:-18px;border-top-width:0;border-bottom-color:rgba(0,0,0,.15);top:-19px;z-index:1035}#topbar-first .notifications .dropdown-menu{width:350px;margin-left:-148px}#topbar-first .notifications .dropdown-menu ul.media-list{max-height:400px;overflow:auto}#topbar-first .notifications .dropdown-menu li{position:relative}#topbar-first .notifications .dropdown-menu li i.approval{position:absolute;left:2px;top:36px;font-size:14px}#topbar-first .notifications .dropdown-menu li i.accepted{color:#5cb85c}#topbar-first .notifications .dropdown-menu li i.declined{color:#d9534f}#topbar-first .notifications .dropdown-menu li .media{position:relative}#topbar-first .notifications .dropdown-menu li .media .img-space{position:absolute;top:14px;left:14px}#topbar-first .dropdown-footer{margin:10px 10px 5px}#topbar-first a{color:#fff}#topbar-first .caret{border-top-color:#fff}#topbar-first .btn-group>a{background-color:#4d6d7f}#topbar-first .btn-enter{background-color:#4d6d7f;margin:6px 0}#topbar-first .btn-enter:hover{background-color:#527588}#topbar-first .media-list a{color:#000;padding:0}#topbar-first .media-list li{color:#000}#topbar-first .media-list li i.accepted{color:#21a1b3!important}#topbar-first .media-list li i.declined{color:#fc4a64!important}#topbar-first .media-list li.placeholder{border-bottom:none}#topbar-first .media-list .media .media-body .label{padding:.1em .5em}#topbar-first .account .user-title{text-align:right}#topbar-first .account .user-title span{color:#d7d7d7}#topbar-first .dropdown.account.open>a,#topbar-first .dropdown.account.open>a:hover,#topbar-first .dropdown.account>a,#topbar-first .dropdown.account>a:hover{background-color:#435f6f}#topbar-second{top:50px;background-color:#fff;z-index:1029;background-image:none;-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1);border-bottom:1px solid #d4d4d4}#topbar-second .dropdown-menu{padding-top:0;padding-bottom:0}#topbar-second .dropdown-menu .divider{margin:0}#topbar-second #search-menu-dropdown,#topbar-second #space-menu-dropdown{width:400px}#topbar-second #search-menu-dropdown .media-list,#topbar-second #space-menu-dropdown .media-list{max-height:400px;overflow:auto}@media screen and (max-width:768px){#topbar-second #search-menu-dropdown .media-list,#topbar-second #space-menu-dropdown .media-list{max-height:200px}}#topbar-second #search-menu-dropdown form,#topbar-second #space-menu-dropdown form{margin:10px}#topbar-second #search-menu-dropdown .search-reset,#topbar-second #space-menu-dropdown .search-reset{position:absolute;color:#bfbfbf;margin:7px;top:0;right:40px;z-index:10;display:none;cursor:pointer}#topbar-second .nav>li>a{padding:7px 13px 0;text-decoration:none;text-shadow:none;font-weight:600;font-size:10px;min-height:50px;text-transform:uppercase;text-align:center}#topbar-second .nav>li>a:active,#topbar-second .nav>li>a:focus,#topbar-second .nav>li>a:hover{border-bottom:3px solid #21a1b3;background-color:#f7f7f7;color:#000;text-decoration:none}#topbar-second .nav>li>a i{font-size:14px}#topbar-second .nav>li>a .caret{border-top-color:#7a7a7a}#topbar-second .nav>li.active>a{min-height:47px}#topbar-second .nav>li>ul>li>a{border-left:3px solid #fff;background-color:#fff;color:#000}#topbar-second .nav>li>ul>li>a.active,#topbar-second .nav>li>ul>li>a:hover{border-left:3px solid #21a1b3;background-color:#f7f7f7;color:#000}#topbar-second .nav>li>a#space-menu{padding-right:13px;border-right:1px solid #ededed}#topbar-second .nav>li>a#search-menu{padding-top:15px}#topbar-second .nav>li.active,#topbar-second .nav>li>a:hover{border-bottom:3px solid #21a1b3;background-color:#f7f7f7;color:#000}#topbar-second .nav>li.active>a:focus,#topbar-second .nav>li.active>a:hover{border-bottom:none}#topbar-second #space-menu-dropdown li>ul>li>a>.media .media-body p{color:#555;font-size:11px;margin:0;font-weight:400}@media (max-width:767px){.topbar{padding-left:0;padding-right:0}}.login-container{background-color:#435f6f;background-image:linear-gradient(to right,#435f6f 0,#567a8f 50%,#567a8f 100%),linear-gradient(to right,#4d6d7f 0,#7fa0b2 51%,#7094a8 100%);background-size:100% 100%;position:relative;padding-top:40px}.login-container #img-logo{max-width:100%}.login-container .text{color:#fff;font-size:12px;margin-bottom:15px}.login-container .text a{color:#fff;text-decoration:underline}.login-container .panel a{color:#21a1b3}.login-container h1,.login-container h2{color:#fff!important}.login-container .panel{box-shadow:0 0 15px #627d92;-moz-box-shadow:0 0 15px #627d92;-webkit-box-shadow:0 0 15px #627d92}.login-container .panel .panel-body,.login-container .panel .panel-heading{padding:15px}.login-container .panel h1,.login-container .panel h2{color:#555!important}.login-container select{color:#000}#account-login-form .form-group{margin-bottom:10px}.dropdown-menu li a i{margin-right:5px;font-size:14px;display:inline-block;width:14px}.dropdown-menu li a:focus,.dropdown-menu li a:hover,.dropdown-menu li a:visited{background:0 0;cursor:pointer}.dropdown-menu li.selected,.dropdown-menu li:hover{color:#000}.dropdown-menu li:first-child{margin-top:3px}.dropdown-menu li:last-child{margin-bottom:3px}.modal .dropdown-menu,.nav-tabs .dropdown-menu,.panel .dropdown-menu{border:1px solid #d7d7d7}.modal .dropdown-menu li.divider,.nav-tabs .dropdown-menu li.divider,.panel .dropdown-menu li.divider{background-color:#f7f7f7;border-bottom:none;margin:9px 1px!important}.modal .dropdown-menu li,.nav-tabs .dropdown-menu li,.panel .dropdown-menu li{border-left:3px solid #fff}.modal .dropdown-menu li a,.nav-tabs .dropdown-menu li a,.panel .dropdown-menu li a{color:#000;font-size:13px;font-weight:600;padding:4px 15px}.modal .dropdown-menu li a i,.nav-tabs .dropdown-menu li a i,.panel .dropdown-menu li a i{margin-right:5px}.modal .dropdown-menu li a:hover,.nav-tabs .dropdown-menu li a:hover,.panel .dropdown-menu li a:hover{background:0 0}.modal .dropdown-menu li.selected,.modal .dropdown-menu li:hover,.nav-tabs .dropdown-menu li.selected,.nav-tabs .dropdown-menu li:hover,.panel .dropdown-menu li.selected,.panel .dropdown-menu li:hover{border-left:3px solid #21a1b3;background-color:#f7f7f7!important}ul.contextMenu{border:1px solid #d7d7d7}ul.contextMenu li.divider{background-color:#f7f7f7;border-bottom:none;margin:9px 1px!important}ul.contextMenu li{border-left:3px solid #fff}ul.contextMenu li a{color:#000;font-size:14px;font-weight:400;padding:4px 15px}ul.contextMenu li a i{margin-right:5px}ul.contextMenu li a:hover{background:0 0}ul.contextMenu li.selected,ul.contextMenu li:hover{border-left:3px solid #21a1b3;background-color:#f7f7f7!important}.media-list li{padding:10px;border-bottom:1px solid #eee;position:relative;border-left:3px solid #fff;font-size:12px}.media-list li a{color:#555}.media-list .badge-space-type{background-color:#f7f7f7;border:1px solid #d7d7d7;color:#b2b2b2;padding:3px 3px 2px 3px}.media-list li.new{border-left:3px solid #21a1b3;background-color:#c5eff4}.media-list li.selected,.media-list li:hover{background-color:#f7f7f7;border-left:3px solid #21a1b3}.media-list li.placeholder{font-size:14px!important;border-bottom:none}.media-list li.placeholder:hover{background:0 0!important;border-left:3px solid #fff}.media-left,.media>.pull-left{padding-right:0;margin-right:10px}.media:after{content:'';clear:both;display:block}.media .time{font-size:11px;color:#555}.media .img-space{position:absolute;top:35px;left:35px}.media .media-body{overflow:hidden!important;font-size:13px;white-space:normal;word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.media .media-body h4.media-heading{font-size:14px;font-weight:500;color:#000}.media .media-body h4.media-heading a{color:#000}.media .media-body h4.media-heading small,.media .media-body h4.media-heading small a{font-size:11px;color:#555}.media .media-body h4.media-heading .content{margin-right:35px}.media .media-body .content a{word-break:break-all}.media .media-body strong{color:#000}.media .media-body h5{color:#aeaeae;font-weight:300;margin-top:5px;margin-bottom:5px;min-height:15px}.media .media-body .module-controls{font-size:85%}.media .media-body .module-controls a{color:#21a1b3}.media .content a{color:#21a1b3}.media .content .files a{color:#000}.content span{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}#blueimp-gallery .slide img{max-height:80%}audio,canvas,progress,video{display:inline-block;vertical-align:baseline;max-width:100%;height:auto}img{image-orientation:from-image}.panel{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;border:none;background-color:#fff;box-shadow:0 0 3px #dadada;-webkit-box-shadow:0 0 3px #dadada;-moz-box-shadow:0 0 3px #dadada;border-radius:4px;position:relative;margin-bottom:15px}.panel h1{font-size:16px;font-weight:300;margin-top:0;color:#000}.panel .panel-heading{font-size:16px;font-weight:300;color:#000;background-color:#fff;border:none;padding:10px;border-radius:4px}.panel .panel-heading .heading-link{color:#6fdbe8!important;font-size:.8em}.panel .panel-body{padding:10px;font-size:13px}.panel .panel-body p{color:#555}.panel .panel-body p a{color:#21a1b3}.panel .panel-body .spacesearch-visibilities,.panel .panel-body .usersearch-statuses{padding-top:5px;padding-bottom:5px}@media (min-width:992px){.panel .panel-body .spacesearch-visibilities,.panel .panel-body .usersearch-statuses{padding-top:0;padding-bottom:0;padding-left:0}}.panel .statistics .entry{margin-left:20px;font-size:12px;color:#000}.panel .statistics .entry .count{color:#21a1b3;font-weight:600;font-size:20px;line-height:.8em}.panel h3.media-heading small{font-size:75%}.panel h3.media-heading small a{color:#21a1b3}.panel-danger{border:2px solid #fc4a64}.panel-danger .panel-heading{color:#fc4a64}.panel-success{border:2px solid #97d271}.panel-success .panel-heading{color:#97d271}.panel-warning{border:2px solid #ffc107}.panel-warning .panel-heading{color:#ffc107}.panel.profile{position:relative}.panel.profile .controls{position:absolute;top:10px;right:10px}.panel.follower .panel-body a img,.panel.groups .panel-body a img,.panel.members .panel-body a img,.panel.spaces .panel-body a img{margin-bottom:5px}.panel-profile .panel-profile-header{position:relative;border:3px solid #fff;border-top-right-radius:3px;border-top-left-radius:3px}.panel-profile .panel-profile-header .img-profile-header-background{border-radius:3px;min-height:110px}.panel-profile .panel-profile-header .img-profile-data{position:absolute;height:100px;width:100%;bottom:0;left:0;padding-left:180px;padding-top:30px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;color:#fff;pointer-events:none;background:-moz-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0) 1%,rgba(0,0,0,.38) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,0)),color-stop(1%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,.38)));background:-webkit-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0) 1%,rgba(0,0,0,.38) 100%);background:-o-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0) 1%,rgba(0,0,0,.38) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0) 1%,rgba(0,0,0,.38) 100%);background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,0) 1%,rgba(0,0,0,.38) 100%)}.panel-profile .panel-profile-header .img-profile-data h1{font-size:30px;font-weight:100;margin-bottom:7px;color:#fff;max-width:600px;white-space:nowrap;text-overflow:ellipsis}.panel-profile .panel-profile-header .img-profile-data h2{font-size:16px;font-weight:400;margin-top:0}.panel-profile .panel-profile-header .img-profile-data h1.space{font-size:30px;font-weight:700}.panel-profile .panel-profile-header .img-profile-data h2.space{font-size:13px;font-weight:300;max-width:600px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.panel-profile .panel-profile-header .profile-user-photo-container{position:absolute;bottom:-50px;left:15px}.panel-profile .panel-profile-header .profile-user-photo-container .profile-user-photo{border:3px solid #fff;border-radius:5px}.panel-profile .panel-profile-controls{padding-left:160px}.panel.fadeIn,.panel.pulse{-webkit-animation-duration:.2s;-moz-animation-duration:.2s;animation-duration:.2s}@media (max-width:767px){.panel-profile-controls{padding-left:0!important;padding-top:50px}.panel-profile .panel-profile-header .img-profile-data h1{font-size:20px!important;margin-bottom:2px}}.panel-body>.tab-menu{margin-left:-10px;margin-right:-10px}.installer .logo{text-align:center}.installer h2{font-weight:100}.installer .panel{margin-top:50px}.installer .panel h3{margin-top:0}.installer .powered,.installer .powered a{color:#bac2c7!important;margin-top:10px;font-size:12px}.installer .fa{width:18px}.installer .check-ok{color:#97d271}.installer .check-warning{color:#ffc107}.installer .check-error{color:#fc4a64}.installer .prerequisites-list ul{list-style:none;padding-left:15px}.installer .prerequisites-list ul li{padding-bottom:5px}.pagination-container{text-align:center}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{background-color:#435f6f;border-color:#435f6f}.pagination>li>a,.pagination>li>a:active,.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span{color:#000;cursor:pointer}.well-small{padding:10px;border-radius:3px}.well{border:none;box-shadow:none;background-color:#f5f5f5;margin-bottom:1px}.well hr{margin:10px 0;border-top:1px solid #d9d9d9}.well table>thead{font-size:11px}.tab-sub-menu{padding-left:10px}.tab-sub-menu li>a:focus,.tab-sub-menu li>a:hover{background-color:#f7f7f7;border-bottom-color:#ddd}.tab-sub-menu li.active>a{background-color:#fff;border-bottom-color:transparent}.nav-tabs>li>a,.nav-tabs>li>a[data-toggle]{color:#555}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover,.nav-tabs>li>a:focus,.nav-tabs>li>a:hover{color:#000}.tab-menu{padding-top:10px;background-color:#fff}.tab-menu .nav-tabs{padding-left:10px}.tab-menu .nav-tabs li>a{padding-top:12px;border-color:#ddd;border-bottom:1px solid #ddd;background-color:#f7f7f7;max-height:41px;outline:0}.tab-menu .nav-tabs li>a:focus,.tab-menu .nav-tabs li>a:hover{padding-top:10px;border-top:3px solid #ddd}.tab-menu .nav-tabs li>a:hover{background-color:#f7f7f7}.tab-menu .nav-tabs li.active>a,.tab-menu .nav-tabs li.active>a:hover{padding-top:10px;border-top:3px solid #21a1b3}.tab-menu .nav-tabs li.active>a{background-color:#fff;border-bottom-color:transparent}ul.tab-menu{padding-top:10px;background-color:#fff;padding-left:10px}ul.tab-menu-settings li>a{padding-top:12px;border-color:#ddd;border-bottom:1px solid #ddd;background-color:#f7f7f7;max-height:41px;outline:0}ul.tab-menu-settings li>a:focus,ul.tab-menu-settings li>a:hover{padding-top:10px;border-top:3px solid #ddd!important}ul.tab-menu-settings li>a:hover{background-color:#f7f7f7}ul.tab-menu-settings li.active>a,ul.tab-menu-settings li.active>a:focus,ul.tab-menu-settings li.active>a:hover{padding-top:10px;border-top:3px solid #21a1b3!important}ul.tab-menu-settings li.active>a{background-color:#fff;border-bottom-color:transparent!important}.account .dropdown-menu,.nav-pills .dropdown-menu,.nav-tabs .dropdown-menu{background-color:#435f6f;border:none}.account .dropdown-menu li.divider,.nav-pills .dropdown-menu li.divider,.nav-tabs .dropdown-menu li.divider{background-color:#39515f;border-bottom:none;margin:9px 1px!important}.account .dropdown-menu li,.nav-pills .dropdown-menu li,.nav-tabs .dropdown-menu li{border-left:3px solid #435f6f}.account .dropdown-menu li a,.nav-pills .dropdown-menu li a,.nav-tabs .dropdown-menu li a{color:#fff;font-weight:400;font-size:13px;padding:4px 15px}.account .dropdown-menu li a i,.nav-pills .dropdown-menu li a i,.nav-tabs .dropdown-menu li a i{margin-right:5px;font-size:14px;display:inline-block;width:14px}.account .dropdown-menu li a:focus,.account .dropdown-menu li a:hover,.account .dropdown-menu li a:visited,.nav-pills .dropdown-menu li a:focus,.nav-pills .dropdown-menu li a:hover,.nav-pills .dropdown-menu li a:visited,.nav-tabs .dropdown-menu li a:focus,.nav-tabs .dropdown-menu li a:hover,.nav-tabs .dropdown-menu li a:visited{background:0 0}.account .dropdown-menu li.selected,.account .dropdown-menu li:hover,.nav-pills .dropdown-menu li.selected,.nav-pills .dropdown-menu li:hover,.nav-tabs .dropdown-menu li.selected,.nav-tabs .dropdown-menu li:hover{border-left:3px solid #21a1b3;color:#fff!important;background-color:#39515f!important}.nav-pills.preferences .dropdown .dropdown-toggle i{color:#21a1b3;font-size:15px;font-weight:600}.nav-pills.preferences .dropdown.open .dropdown-toggle,.nav-pills.preferences .dropdown.open .dropdown-toggle:hover{background-color:#435f6f}.nav-pills.preferences .dropdown.open .dropdown-toggle i,.nav-pills.preferences .dropdown.open .dropdown-toggle:hover i{color:#fff}.nav-pills.preferences li.divider:last-of-type{display:none}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{background-color:#435f6f}.nav-tabs{margin-bottom:10px}.list-group a [class*=" fa-"],.list-group a [class^=fa-]{display:inline-block;width:18px}.nav-pills.preferences{position:absolute;right:10px;top:10px}.nav-pills.preferences .dropdown .dropdown-toggle{padding:2px 5px}.nav-pills.preferences .dropdown.open .dropdown-toggle,.nav-pills.preferences .dropdown.open .dropdown-toggle:hover{color:#fff}.nav-tabs li{font-weight:600;font-size:12px}.tab-content .tab-pane a{color:#21a1b3}.tab-content .tab-pane .form-group{margin-bottom:5px}.nav-tabs.tabs-center li{float:none;display:inline-block}.nav-tabs.tabs-small li>a{padding:5px 7px}.nav .caret,.nav .caret:active,.nav .caret:hover{border-top-color:#000;border-bottom-color:#000;height:6.928px}.nav li.dropdown>a:active .caret,.nav li.dropdown>a:hover .caret{border-top-color:#000;border-bottom-color:#000}.nav .open>a .caret,.nav .open>a:focus .caret,.nav .open>a:hover .caret{border-top-color:#000;border-bottom-color:#000}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{border-color:#ededed;color:#000}.nav .open>a .caret,.nav .open>a:focus .caret,.nav .open>a:hover .caret{color:#000}.footer-nav{filter:opacity(.6);font-size:12px;text-align:center}@media (max-width:991px){.controls-header{text-align:left!important}}.btn{float:none;border:none;-webkit-box-shadow:none;box-shadow:none;-moz-box-shadow:none;background-image:none;text-shadow:none;border-radius:3px;outline:0!important;margin-bottom:0;font-size:14px;font-weight:600;padding:8px 16px}.input.btn{outline:0}.btn-lg{padding:16px 28px}.btn-sm{padding:4px 8px;font-size:12px}.btn-sm i{font-size:14px}.btn-xs{padding:1px 5px;font-size:12px}.btn-default{background:#f3f3f3;color:#7a7a7a!important}.btn-default:focus,.btn-default:hover{background:#eee;text-decoration:none;color:#7a7a7a}.btn-default.active,.btn-default:active{outline:0;background:#e6e6e6}.btn-default.disabled,.btn-default[disabled]{background:#f8f8f8}.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled]:focus,.btn-default[disabled]:hover{background:#f8f8f8}.btn-default.disabled.active,.btn-default.disabled:active,.btn-default[disabled].active,.btn-default[disabled]:active{background:#f8f8f8}.btn-primary{background:#435f6f;color:#fff!important}.btn-primary:focus,.btn-primary:hover{background:#39515f;text-decoration:none}.btn-primary.active,.btn-primary:active{outline:0;border:1px solid #435f6f;padding:7px 15px;color:#435f6f!important;background:#fff!important;box-shadow:none}.btn-primary.active.btn-sm,.btn-primary:active.btn-sm{padding:3px 7px}.btn-primary.active.btn-xs,.btn-primary:active.btn-xs{padding:0 4px}.btn-primary.active:focus,.btn-primary.active:hover{border:1px solid #39515f;color:#39515f!important}.btn-primary.disabled,.btn-primary[disabled]{background:#4d6d7f}.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover{background:#4d6d7f}.btn-primary.disabled.active,.btn-primary.disabled:active,.btn-primary[disabled].active,.btn-primary[disabled]:active{background:#4d6d7f!important}.btn-info{background:#21a1b3;color:#fff!important}.btn-info:focus,.btn-info:hover{background:#1d8e9d!important;text-decoration:none}.btn-info.active,.btn-info:active{outline:0;border:1px solid #21a1b3;padding:7px 15px;color:#21a1b3!important;background:#fff!important;box-shadow:none}.btn-info.active.btn-sm,.btn-info:active.btn-sm{padding:3px 7px}.btn-info.active.btn-xs,.btn-info:active.btn-xs{padding:0 4px}.btn-info.active:focus,.btn-info.active:hover{border:1px solid #1d8e9d;color:#1d8e9d!important}.btn-info.disabled,.btn-info[disabled]{background:#25b4c9}.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled]:focus,.btn-info[disabled]:hover{background:#25b4c9}.btn-info.disabled.active,.btn-info.disabled:active,.btn-info[disabled].active,.btn-info[disabled]:active{background:#25b4c9!important}.btn-danger{background:#fc4a64;color:#fff!important}.btn-danger:focus,.btn-danger:hover{background:#fc314f;text-decoration:none}.btn-danger.active,.btn-danger:active{outline:0;background:#fc314f!important}.btn-danger.disabled,.btn-danger[disabled]{background:#fc6379}.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover{background:#fc6379}.btn-danger.disabled.active,.btn-danger.disabled:active,.btn-danger[disabled].active,.btn-danger[disabled]:active{background:#fc6379!important}.btn-success{background:#97d271;color:#fff!important}.btn-success:focus,.btn-success:hover{background:#89cc5e;text-decoration:none}.btn-success.active,.btn-success:active{outline:0;background:#89cc5e!important}.btn-success.disabled,.btn-success[disabled]{background:#a5d884}.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled]:focus,.btn-success[disabled]:hover{background:#a5d884}.btn-success.disabled.active,.btn-success.disabled:active,.btn-success[disabled].active,.btn-success[disabled]:active{background:#a5d884!important}.btn-warning{background:#ffc107;color:#fff!important}.btn-warning:focus,.btn-warning:hover{background:#fcbd00;text-decoration:none}.btn-warning.active,.btn-warning:active{outline:0;background:#fcbd00!important}.btn-warning.disabled,.btn-warning[disabled]{background:#ffc721}.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover{background:#ffc721}.btn-warning.disabled.active,.btn-warning.disabled:active,.btn-warning[disabled].active,.btn-warning[disabled]:active{background:#ffc721!important}.btn-link{color:#21a1b3!important}.btn-link:focus,.btn-link:hover{color:#1f99aa;text-decoration:none}.btn-link.active,.btn-link:active{outline:0;color:#1f99aa!important}.btn-link.disabled,.btn-link[disabled]{color:#25b4c9}.btn-link.disabled:focus,.btn-link.disabled:hover,.btn-link[disabled]:focus,.btn-link[disabled]:hover{color:#25b4c9}.btn-link.disabled.active,.btn-link.disabled:active,.btn-link[disabled].active,.btn-link[disabled]:active{color:#25b4c9!important}.checkbox,.radio{margin-top:5px!important;margin-bottom:0}div.required>label:after{content:" *";color:#21a1b3}div.required.has-error>label:after{content:" *";color:#fc4a64}.checkbox label,.radio label{padding-left:10px}.form-control{border:2px solid #ededed;box-shadow:none;min-height:35px}.form-control:focus{border:2px solid #21a1b3;outline:0;box-shadow:none}.form-control.form-search{border-radius:30px;background-image:url("../img/icon_search16x16.png");background-repeat:no-repeat;background-position:10px 8px;padding-left:34px}.form-group-search{position:relative}.form-group-search .form-button-search{position:absolute;top:4px;right:4px;border-radius:30px}textarea{resize:none;height:1.5em}select.form-control:not([multiple]){-webkit-appearance:none;-moz-appearance:none;appearance:none;background-image:url("../img/select_arrow.png")!important;background-repeat:no-repeat;background-position:right 16px;overflow:hidden}label{font-weight:400}div.PendingRegistrations tbody>tr>td>label,div.PendingRegistrations thead>tr>th>label{margin-bottom:0;height:17px}label.control-label{font-weight:700}::placeholder{color:#bac2c7!important}::-webkit-input-placeholder{color:#bac2c7!important}::-moz-placeholder{color:#bac2c7!important}:-ms-input-placeholder{color:#bac2c7!important}input::-ms-clear,input::-ms-reveal{display:none}input:-moz-placeholder{color:#555!important}.placeholder{padding:10px}input.placeholder,textarea.placeholder{padding:0 0 0 10px;color:#999}.help-block-error{font-size:12px}.help-block:not(.help-block-error),.hint-block{color:#aeaeae!important;font-size:12px}.help-block:not(.help-block-error):hover,.hint-block:hover{color:#7a7a7a!important;font-size:12px}.input-group-addon{border:none}a.input-field-addon{font-size:12px;float:right;margin-top:-10px}a.input-field-addon-sm{font-size:11px;float:right;margin-top:-10px}.timeZoneInputContainer{padding-top:10px}.timeZoneInputContainer~.help-block{margin:0}.regular-checkbox:focus+.regular-checkbox-box{border:2px solid #000!important}.regular-checkbox:checked+.regular-checkbox-box{border:2px solid #21a1b3;background:#21a1b3;color:#fff}.regular-checkbox-box.disabled{background:#d7d7d7!important;border:2px solid #d7d7d7!important;cursor:not-allowed}.regular-radio:checked+.regular-radio-button:after{background:#21a1b3}.regular-radio:checked+.regular-radio-button{background-color:transparent;color:#99a1a7;border:2px solid #d7d7d7;margin-right:5px}.regular-radio.disabled{background:#d7d7d7!important;border:2px solid #d7d7d7!important;cursor:not-allowed}div.form-group div.checkbox .help-block{margin-left:33px}div.form-group div.checkbox .help-block.help-block-error:empty{display:none}.errorMessage{color:#fc4a64;padding:10px 0}.error{border-color:#fc4a64!important}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline{color:#fc4a64!important}.has-error .form-control,.has-error .form-control:focus{border-color:#fc4a64;-webkit-box-shadow:none;box-shadow:none}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline{color:#97d271}.has-success .form-control,.has-success .form-control:focus{border-color:#97d271;-webkit-box-shadow:none;box-shadow:none}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline{color:#ffc107}.has-warning .form-control,.has-warning .form-control:focus{border-color:#ffc107;-webkit-box-shadow:none;box-shadow:none}.bootstrap-timepicker-widget .form-control{padding:0}.form-collapsible-fields{margin-bottom:12px;border-left:3px solid #435f6f;background-color:#f4f4f4}.form-collapsible-fields-label{margin-bottom:0;padding:12px}.form-collapsible-fields fieldset{padding-top:15px;padding-left:12px;padding-right:12px}.form-collapsible-fields.opened fieldset{display:block}.form-collapsible-fields.opened .iconClose{display:inline}.form-collapsible-fields.opened .iconOpen{display:none}.form-collapsible-fields.closed .iconClose,.form-collapsible-fields.closed fieldset{display:none}.form-collapsible-fields.closed .iconOpen{display:inline}#notification_overview_filter label{display:block}#notification_overview_list .img-space{position:absolute;top:25px;left:25px}@media (max-width:767px){.notifications{position:inherit!important;float:left!important}.notifications .dropdown-menu{width:300px!important;margin-left:0!important}.notifications .dropdown-menu .arrow{margin-left:-142px!important}}.badge-space{margin-top:6px}.badge-space-chooser{padding:3px 5px;margin-left:1px}.badge{padding:3px 5px;border-radius:2px;font-weight:400;font-family:Arial,sans-serif;font-size:10px!important;text-transform:uppercase;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:none;background-color:#d7d7d7;line-height:1}.popover{border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);-moz-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.popover .popover-title{background:0 0;border-bottom:none;color:#000;font-weight:300;font-size:16px;padding:15px}.popover .popover-content{font-size:13px;padding:5px 15px;color:#000}.popover .popover-content a{color:#21a1b3}.popover .popover-content img{max-width:100%}.popover .popover-navigation{padding:15px}.panel-profile .panel-profile-header .image-upload-container{width:100%;height:100%;overflow:hidden}.panel-profile .panel-profile-header .image-upload-container #bannerfileupload{position:absolute;top:0;left:0;opacity:0;width:100%;height:100%}.panel-profile .panel-profile-header .img-profile-header-background{width:100%;max-height:192px}@media print{.panel-profile{display:none}}.list-group-item{padding:6px 15px;border:none;border-width:0!important;border-left:3px solid #fff!important;font-size:12px;font-weight:600}.list-group-item i{font-size:14px}a.list-group-item.active,a.list-group-item.active:focus,a.list-group-item.active:hover,a.list-group-item:hover{z-index:2;color:#000;background-color:#f7f7f7;border-left:3px solid #21a1b3!important}@media (max-width:991px){.list-group{margin-left:4px}.list-group-item{display:inline-block!important;border-radius:3px!important;margin:4px 0;margin-bottom:4px!important}.list-group-item{border:none!important}a.list-group-item.active,a.list-group-item.active:focus,a.list-group-item.active:hover,a.list-group-item:hover{border:none!important;background:#435f6f!important;color:#fff!important}}.modal-backdrop{background-color:rgba(0,0,0,.5)}.modal-dialog.fadeIn,.modal-dialog.pulse{-webkit-animation-duration:.2s;-moz-animation-duration:.2s;animation-duration:.2s}body.modal-open{height:100vh;overflow-y:hidden}@media screen and (max-width:768px){.modal-dialog{width:calc(100vw - 4px)!important}}.modal-top{z-index:999999!important}.modal{overflow-y:visible}.modal.in{padding-right:0!important}.modal-dialog-extra-small{width:400px}.modal-dialog-small{width:500px}.modal-dialog-normal{width:600px}.modal-dialog-medium{width:768px}.modal-dialog-large{width:900px}@media screen and (max-width:991px){.modal-dialog-large{width:auto!important;padding-top:30px;padding-bottom:30px}}.modal{border:none}.modal h1,.modal h2,.modal h3,.modal h4,.modal h5{margin-top:20px;color:#000;font-weight:300}.modal h4.media-heading{margin-top:0}.modal-title{font-size:20px;font-weight:200;color:#000}.modal-content,.modal-dialog{min-width:150px}.modal-content{-webkit-border-radius:3px;-moz-border-radius:3px;box-shadow:0 2px 26px rgba(0,0,0,.3),0 0 0 1px rgba(0,0,0,.1);-webkit-box-shadow:0 2px 26px rgba(0,0,0,.3),0 0 0 1px rgba(0,0,0,.1);-moz-box-shadow:0 2px 26px rgba(0,0,0,.3),0 0 0 1px rgba(0,0,0,.1);border:none}.modal-content .modal-header{padding:20px 20px 0;border-bottom:none;text-align:center}.modal-content .modal-header .close{margin-top:2px;margin-right:5px}.modal-content .modal-body{padding:20px;font-size:13px}.modal-content .modal-footer{margin-top:0;text-align:left;padding:10px 20px 30px;border-top:none;text-align:center}.modal-content .modal-footer hr{margin-top:0}.tooltip-inner{background-color:#435f6f;max-width:400px;text-align:left;padding:2px 8px 4px;font-size:12px;font-weight:700;white-space:pre-wrap}.tooltip.top .tooltip-arrow{border-top-color:#435f6f}.tooltip.top-left .tooltip-arrow{border-top-color:#435f6f}.tooltip.top-right .tooltip-arrow{border-top-color:#435f6f}.tooltip.right .tooltip-arrow{border-right-color:#435f6f}.tooltip.left .tooltip-arrow{border-left-color:#435f6f}.tooltip.bottom .tooltip-arrow{border-bottom-color:#435f6f}.tooltip.bottom-left .tooltip-arrow{border-bottom-color:#435f6f}.tooltip.bottom-right .tooltip-arrow{border-bottom-color:#435f6f}.tooltip.in{opacity:1}.progress{height:10px;margin-bottom:15px;box-shadow:none;background:#ededed;border-radius:10px}.progress-bar-info{background-color:#21a1b3;-webkit-box-shadow:none;box-shadow:none}#nprogress .bar{height:2px;background:#27c0d5}table{margin-bottom:0!important}table th{font-size:11px;color:#555;font-weight:400}table thead tr th{border:none!important}table .time{font-size:12px}table td a:hover{color:#21a1b3}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:10px 10px 10px 0}.table>tbody>tr>td select,.table>tbody>tr>th select,.table>tfoot>tr>td select,.table>tfoot>tr>th select,.table>thead>tr>td select,.table>thead>tr>th select{font-size:12px;padding:4px 8px;height:30px;margin:0}.table-middle>tbody>tr>td,.table-middle>tbody>tr>th,.table-middle>tfoot>tr>td,.table-middle>tfoot>tr>th,.table-middle>thead>tr>td,.table-middle>thead>tr>th{vertical-align:middle!important}@media (max-width:767px){.table-responsive>.table>tbody>tr>td.notification-type{white-space:normal}}.comment-container{margin-top:10px}.comment-container .wall-entry-controls{margin-left:35px}@media (max-width:767px){.comment .post-files img{height:100px}}.comment .media{position:relative!important;margin-top:0}.comment .media .nav-pills.preferences{display:none;right:-3px}.comment .media.comment-current{background:rgba(255,193,7,.25);padding:0 5px 5px 5px;margin:0 -5px -5px -5px;border-radius:3px}.comment .media.comment-current hr{position:relative;top:-6px}.comment .media.comment-current:first-of-type{padding-top:5px;margin-top:-5px}.comment .media.comment-current:first-of-type>.nav.preferences{margin-top:10px}.comment .media.comment-current>.nav.preferences{margin-right:10px}.comment .comment-blocked-user img[data-contentcontainer-id]{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.comment .media-body{overflow:visible}.comment .jp-progress{background-color:#dbdcdd!important}.comment .jp-play-bar{background:#cacaca}.comment .post-file-list{background-color:#ededed}.comment.guest-mode .media:last-child .wall-entry-controls{margin-bottom:0;margin-left:35px}.comment.guest-mode .media:last-child hr{display:none}.comment_create .comment-create-input-group,.comment_create .post-richtext-input-group,.content_edit .comment-create-input-group,.content_edit .post-richtext-input-group{display:flex;align-items:flex-end}.comment_create .comment-create-input-group .field-comment-message,.comment_create .comment-create-input-group .field-post-message,.comment_create .post-richtext-input-group .field-comment-message,.comment_create .post-richtext-input-group .field-post-message,.content_edit .comment-create-input-group .field-comment-message,.content_edit .comment-create-input-group .field-post-message,.content_edit .post-richtext-input-group .field-comment-message,.content_edit .post-richtext-input-group .field-post-message{flex-grow:1;flex-basis:min-content}.comment_create .comment-create-input-group .form-group,.comment_create .comment-create-input-group .help-block,.comment_create .post-richtext-input-group .form-group,.comment_create .post-richtext-input-group .help-block,.content_edit .comment-create-input-group .form-group,.content_edit .comment-create-input-group .help-block,.content_edit .post-richtext-input-group .form-group,.content_edit .post-richtext-input-group .help-block{margin:0}.comment_create .comment-buttons,.content_edit .comment-buttons{white-space:nowrap;padding-bottom:6px}.comment_create .comment-buttons .btn:not(.dropdown-toggle),.content_edit .comment-buttons .btn:not(.dropdown-toggle){margin-left:6px}.comment_create .comment-buttons .btn.fileinput-button,.comment_create .comment-buttons .fileinput-button+.dropdown-toggle,.content_edit .comment-buttons .btn.fileinput-button,.content_edit .comment-buttons .fileinput-button+.dropdown-toggle{background-color:rgba(33,161,179,.6)}.comment_create .comment-buttons .btn.dropdown-toggle,.content_edit .comment-buttons .btn.dropdown-toggle{margin-left:0}.comment_create .has-error+.comment-buttons,.content_edit .has-error+.comment-buttons{padding-bottom:22px}.comment_create .fileinput-button:active,.content_edit .fileinput-button:active{box-shadow:none!important}@media (max-width:414px){.comment_create .comment-create-input-group,.comment_create .post-richtext-input-group,.content_edit .comment-create-input-group,.content_edit .post-richtext-input-group{flex-direction:column}.comment_create .comment-create-input-group .field-comment-message,.comment_create .comment-create-input-group .field-post-message,.comment_create .post-richtext-input-group .field-comment-message,.comment_create .post-richtext-input-group .field-post-message,.content_edit .comment-create-input-group .field-comment-message,.content_edit .comment-create-input-group .field-post-message,.content_edit .post-richtext-input-group .field-comment-message,.content_edit .post-richtext-input-group .field-post-message{width:100%}.comment_create .comment-buttons,.content_edit .comment-buttons{padding-bottom:0!important;padding-top:6px}}.comment-container .content_edit{margin-left:35px}.comment-container .media{overflow:visible}.comment-container [data-ui-richtext] pre,.comment-container [data-ui-richtext] pre code.hljs{background-color:#eaeaea}.comment_edit_content{margin-left:35px;margin-top:0}.comment-message{overflow:hidden;word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.comment-create-input-group.scrollActive .comment-buttons{right:22px}.comment .media .media-body h4.media-heading a{font-size:13px;color:#000;margin-bottom:3px;font-weight:500}div.comment>div.media:first-of-type hr.comment-separator{display:none}div.comment>div.media:first-of-type .nav-pills.preferences{display:none;top:-3px}hr.comments-start-separator{margin-top:10px}div.nested-comments-root{margin-left:28px}div.nested-comments-root .ProseMirror-menubar-wrapper{z-index:210}div.nested-comments-root hr.comment-separator{display:inherit!important}div.nested-comments-root hr.comments-start-separator{display:none}div.nested-comments-root a.show-all-link{margin-top:10px}div.nested-comments-root div.comment .media{position:relative!important;margin-top:0}div.nested-comments-root div.comment .media .nav-pills.preferences{display:none;top:8px;right:0}div.nested-comments-root div.comment-container{margin-top:0;padding-bottom:0;padding-top:0}.grid-view img{width:24px;height:24px}.grid-view .filters input,.grid-view .filters select{border:2px solid #ededed;box-shadow:none;min-height:35px;border-radius:4px;font-size:12px;padding:4px}.grid-view .filters input:focus,.grid-view .filters select:focus{border:2px solid #21a1b3;outline:0;box-shadow:none}.grid-view{padding:15px 0 0}.grid-view img{border-radius:3px}.grid-view table th{font-size:13px!important;font-weight:700!important}.grid-view table td{vertical-align:middle!important}.grid-view table tr{font-size:13px!important}.grid-view table thead tr th:first-of-type{padding-left:5px}.grid-view table tbody tr{height:50px}.grid-view table tbody tr td:first-of-type{padding-left:5px}.grid-view .summary{font-size:12px;color:#bac2c7}.permission-grid-editor>.table>tbody>tr:first-child>td{border:none}.permission-grid-editor{padding-top:0}.detail-view td,.detail-view th{padding:8px!important}.detail-view th{font-size:13px}.oembed_snippet,.oembed_snippet[data-oembed-provider="youtube.com"]{margin-top:10px;position:relative;padding-bottom:55%;padding-top:15px;overflow:hidden}.oembed_snippet[data-oembed-provider="twitter.com"]{padding-bottom:0!important;padding-top:0;margin-top:0}.oembed_snippet iframe{position:absolute;top:0;left:0;width:100%;height:100%}.oembed_confirmation{background:#feebb4;border-radius:4px;padding:15px;line-height:30px}.oembed_confirmation i.fa{float:left;color:#02a0b0;background:#fff;border-radius:50%;font-size:30px;line-height:25px;margin-right:15px}.oembed_confirmation>div:not(.clearfix){float:left}.oembed_confirmation .regular-checkbox-box{top:6px}.oembed_confirmation .regular-checkbox:not(:checked)+.regular-checkbox-box{background:#fff}.oembed_confirmation .regular-checkbox:checked+.regular-checkbox-box:after{top:-8px}#oembed-providers{width:100%;display:flex;flex-direction:row;justify-content:left;align-items:center;flex-wrap:wrap;margin:0 -.5rem}#oembed-providers .oembed-provider-container{padding:0}#oembed-providers .oembed-provider-container .oembed-provider{display:flex;flex-direction:row;justify-content:space-between;align-items:center;border:1px solid #ddd;border-radius:2px;padding:.75rem;margin:0 .5rem .5rem .5rem}#oembed-providers .oembed-provider-container .oembed-provider .oembed-provider-name{display:flex;justify-content:center;align-items:center}#oembed-providers .oembed-provider-container .oembed-provider .oembed-provider-name .label.label-error{margin-left:2px}#endpoint-parameters{display:flex;flex-direction:row;justify-content:left;align-items:center;flex-wrap:wrap;margin:0 -15px}.activities{max-height:400px;overflow:auto}.activities li.activity-entry{padding:0}.activities li .media{position:relative;padding:10px}.activities li .media .img-space{position:absolute;top:24px;left:24px}.activities li .media .media-body{max-width:295px}.contentForm_options{margin-top:10px;min-height:29px}.contentForm_options .btn_container{position:relative}.contentForm_options .btn_container .label-public{position:absolute;right:40px;top:11px}#content-topic-bar{margin-top:5px;text-align:right}#content-topic-bar .label{margin-left:4px}#contentFormError{color:#fc4a64;padding-left:0;list-style:none}.placeholder-empty-stream{background-image:url("../img/placeholder-postform-arrow.png");background-repeat:no-repeat;padding:37px 0 0 70px;margin-left:90px}#streamUpdateBadge{text-align:center;z-index:9999;margin-bottom:15px;margin-top:15px}#streamUpdateBadge .label{border-radius:10px;font-size:.8em!important;padding:5px 10px}#wallStream .back_button_holder{padding-bottom:15px}.wall-entry{position:relative}.wall-entry .panel .panel-body{padding:10px}.wall-entry .wall-entry-header{color:#000;position:relative;padding-bottom:10px;margin-bottom:10px;border-bottom:1px solid #eee}.wall-entry .wall-entry-header .img-space{top:25px;left:25px}.wall-entry .wall-entry-header .wall-entry-container-link{color:#21a1b3}.wall-entry .wall-entry-header .stream-entry-icon-list{position:absolute;top:0;right:25px;display:inline-block;padding-top:2px}.wall-entry .wall-entry-header .stream-entry-icon-list i{padding-right:5px}.wall-entry .wall-entry-header .stream-entry-icon-list .icon-pin{color:#fc4a64}.wall-entry .wall-entry-header .stream-entry-icon-list .fa-archive{color:#ffc107}.wall-entry .wall-entry-header .wall-entry-header-image{display:table-cell;width:40px;padding-right:10px}.wall-entry .wall-entry-header .wall-entry-header-image .fa{font-size:2.39em;color:#21a1b3;margin-top:5px}.wall-entry .wall-entry-header .wall-entry-header-info{display:table-cell;padding-right:30px;width:100%}.wall-entry .wall-entry-header .wall-entry-header-info .media-heading{font-size:15px;padding-top:1px;margin-bottom:3px}.wall-entry .wall-entry-header .wall-entry-header-info i.archived{color:#ffc107}.wall-entry .wall-entry-header .preferences{position:absolute;right:0;top:0}.wall-entry .wall-entry-header .media-subheading i.fa-caret-right{margin:0 2px}.wall-entry .wall-entry-header .media-subheading .wall-entry-icons{display:inline-block}.wall-entry .wall-entry-header .media-subheading .wall-entry-icons i{margin-right:2px}.wall-entry .wall-entry-header .media-subheading .time,.wall-entry .wall-entry-header .media-subheading i,.wall-entry .wall-entry-header .media-subheading span{font-size:11px;white-space:nowrap}.wall-entry .wall-entry-body{padding-left:50px}.wall-entry .wall-entry-body .wall-entry-content{margin-bottom:5px}.wall-entry .wall-entry-body .wall-entry-content .post-short-text{font-size:1.6em}.wall-entry .wall-entry-body .wall-entry-content .post-short-text .emoji{width:20px}.wall-entry .wall-entry-body audio,.wall-entry .wall-entry-body video{width:100%}.wall-entry .wall-stream-footer .wall-stream-addons .files{margin-bottom:5px}.wall-entry .content a{color:#21a1b3}.wall-entry .content img{max-width:100%}.wall-entry .media{overflow:visible}.wall-entry .well{margin-bottom:0}.wall-entry .well .comment .show-all-link{font-size:12px;cursor:pointer}.wall-entry .media-heading{font-size:14px;padding-top:1px;margin-bottom:3px}.wall-entry .media-heading .labels{padding-right:32px}.wall-entry .media-heading .viaLink{font-size:13px}.wall-entry .media-heading .viaLink i{color:#555;padding-left:4px;padding-right:4px}.wall-entry .media-subheading{color:#555;font-size:12px}.wall-entry .media-subheading .time{font-size:12px;white-space:nowrap}.wall-entry [data-ui-richtext] h1{font-size:1.45em;font-weight:400}.wall-entry [data-ui-richtext] h2{font-size:1.3em;font-weight:400}.wall-entry [data-ui-richtext] h3{font-size:1.2em;font-weight:400}.wall-entry [data-ui-richtext] h4{font-size:1.1em;font-weight:400}.wall-entry [data-ui-richtext] h5{font-size:1em;font-weight:400}.wall-entry [data-ui-richtext] h6{font-size:.85em;font-weight:400}@media (max-width:767px){.wall-entry .wall-entry-body{padding-left:0}#wallStream .back_button_holder{padding-bottom:5px;text-align:center}}.wall-entry-controls a{font-size:11px;color:#21a1b3!important;margin-top:10px;margin-bottom:0}#wall-stream-filter-nav{font-size:12px;margin-bottom:10px;padding-top:2px;border-radius:0 0 4px 4px}#wall-stream-filter-nav .wall-stream-filter-root{margin:0;border:0!important}#wall-stream-filter-nav .filter-panel{padding:0 10px}#wall-stream-filter-nav .wall-stream-filter-head{padding:5px 5px 10px 5px;border-bottom:1px solid #ddd}#wall-stream-filter-nav .wall-stream-filter-body{overflow:hidden;background-color:#f7f7f7;border:1px solid #ddd;border-top:0;border-radius:0 0 4px 4px}#wall-stream-filter-nav hr{margin:5px 0 0 0}#wall-stream-filter-nav .topic-remove-label{float:left}#wall-stream-filter-nav .content-type-remove-label,#wall-stream-filter-nav .topic-remove-label{margin-right:6px}#wall-stream-filter-nav .select2{width:260px!important;margin-bottom:5px;margin-top:2px}#wall-stream-filter-nav .select2 .select2-search__field{height:25px!important}#wall-stream-filter-nav .select2 .select2-selection__choice{height:23px!important}#wall-stream-filter-nav .select2 .select2-selection__choice i,#wall-stream-filter-nav .select2 .select2-selection__choice span{line-height:19px!important}#wall-stream-filter-nav .select2 .select2-selection__choice .img-rounded{width:18px!important;height:18px!important}#wall-stream-filter-nav .wall-stream-filter-bar{display:inline;float:right;white-space:normal}#wall-stream-filter-nav .wall-stream-filter-bar .label{height:18px;padding-top:4px;background-color:#fff}#wall-stream-filter-nav .wall-stream-filter-bar .btn,#wall-stream-filter-nav .wall-stream-filter-bar .label{box-shadow:0 0 2px #7a7a7a;-webkit-box-shadow:0 0 2px #7a7a7a;-moz-box-shadow:0 0 2px #7a7a7a}@media (max-width:767px){#wall-stream-filter-nav{margin-bottom:5px}#wall-stream-filter-nav .wall-stream-filter-root{white-space:nowrap}#wall-stream-filter-nav .wall-stream-filter-body{overflow:auto}}.filter-root{margin:15px}.filter-root .row{display:table!important}.filter-root .filter-panel{padding:0 5px;display:table-cell!important;float:none}.filter-root .filter-panel .filter-block strong{margin-bottom:5px}.filter-root .filter-panel .filter-block ul.filter-list{list-style:none;padding:0;margin:0 0 5px}.filter-root .filter-panel .filter-block ul.filter-list li{font-size:12px;padding:2px}.filter-root .filter-panel .filter-block ul.filter-list li a{color:#000}.filter-root .filter-panel div.filter-block:last-of-type ul.filter-list{margin:0}.filter-root .filter-panel+.filter-panel{border-left:2px solid #ededed}.stream-entry-loader{float:right;margin-top:5px}.load-suppressed{margin-top:-17px;margin-bottom:15px;text-align:center}.load-suppressed a{display:inline-block;background-color:#fff;padding:5px;border-radius:0 0 4px 4px;border:1px solid #ddd;font-size:11px}@media print{.wall-entry{page-break-inside:avoid}#contentFormBody,#wall-stream-filter-nav{display:none}}.space-owner{text-align:center;margin:14px 0;font-size:13px;color:#999}.space-member-sign{color:#97d271;position:absolute;top:42px;left:42px;font-size:16px;background:#fff;width:24px;height:24px;padding:2px 3px 1px 4px;border-radius:50px;border:2px solid #97d271}#space-menu-dropdown i.type{font-size:16px;color:#bfbfbf}#space-menu-spaces [data-space-chooser-item]{cursor:pointer}#space-menu-dropdown .input-group-addon{border-radius:0 4px 4px 0}#space-menu-dropdown .input-group-addon.focus{border-radius:0 4px 4px 0;border:2px solid #21a1b3;border-left:0}.input-group #space-menu-search{border-right:0}#space-menu-dropdown div:not(.input-group)>.search-reset{top:10px!important;right:15px!important}#space-directory-link i{margin-right:0}.space-acronym{color:#fff;text-align:center;display:inline-block}.current-space-image{margin-right:3px;margin-top:3px}@media (max-width:767px){#space-menu>.title{display:none}#space-menu-dropdown{width:300px!important}}#postFormFiles_list,.files{padding-left:0}ul.files{list-style:none;margin:0 0 5px;padding:0}ul.files li.file-preview-item{padding-left:24px;display:none}ul.files li.file-preview-item .file-fileInfo{padding-right:20px}.contentForm-upload-list{padding-left:0}.contentForm-upload-list li:first-child{margin-top:10px}.file_upload_remove_link,.file_upload_remove_link:hover{color:#fc4a64;cursor:pointer}.file-preview-item{text-overflow:ellipsis;overflow:hidden}.post-files{margin-top:10px;margin-bottom:10px}.post-files video{border-radius:4px}.post-files .jp-audio{margin-bottom:10px}.post-files .col-media{padding-left:0!important;padding-right:0!important}.post-files img{vertical-align:top;padding:2px;height:150px;width:100%;object-fit:cover;border-radius:4px}@media (max-width:650px){.post-files img{height:100px}}.post-file-list{padding:10px;padding-bottom:1px;margin-bottom:10px!important}.post-file-list a,.post-file-list a:active,.post-file-list a:focus,.post-file-list a:hover{color:#21a1b3}#wallStream.mobile .post-files{margin-top:10px;display:flex;overflow-x:auto}#wallStream.mobile .post-files img{max-width:190px;height:100px;width:auto}.file-preview-content{cursor:pointer}.image-upload-container{position:relative}.image-upload-container .image-upload-buttons{display:none;position:absolute;right:5px;bottom:5px}.image-upload-container input[type=file]{position:absolute;opacity:0}.image-upload-container .image-upload-loader{display:none;position:absolute;top:0;left:0;width:100%;height:100%;padding:20px;background:#f8f8f8}.mime{background-repeat:no-repeat;background-position:0 0;padding:1px 0 4px 26px}.mime-word{background-image:url("../img/mime/word.png")}.mime-excel{background-image:url("../img/mime/excel.png")}.mime-powerpoint{background-image:url("../img/mime/powerpoint.png")}.mime-pdf{background-image:url("../img/mime/pdf.png")}.mime-zip{background-image:url("../img/mime/zip.png")}.mime-image{background-image:url("../img/mime/image.png")}.mime-file{background-image:url("../img/mime/file.png")}.mime-photoshop{background-image:url("../img/mime/photoshop.png")}.mime-illustrator{background-image:url("../img/mime/illustrator.png")}.mime-video{background-image:url("../img/mime/video.png")}.mime-audio{background-image:url("../img/mime/audio.png")}@media (max-width:480px){.jp-current-time{margin-left:0!important}.jp-audio{width:auto!important;margin-left:0!important}.jp-audio .jp-controls{padding:2px 12px 0!important}.jp-audio .jp-progress{left:3px!important;top:45px!important;width:200px!important}.jp-audio .jp-volume-controls{position:absolute!important;top:15px!important;left:170px!important}.jp-audio .jp-time-holder{left:3px!important;top:60px!important;width:200px!important}.jp-audio .jp-toggles{left:210px!important;top:45px!important;width:auto!important}.jp-playlist ul{padding:0!important}}div.jp-type-playlist div.jp-playlist a.jp-playlist-current,div.jp-type-playlist div.jp-playlist a:hover{color:#21a1b3!important}.jp-details,.jp-playlist{border-top:1px solid #21a1b3}.jp-audio,.jp-audio-stream,.jp-video{border:1px solid #21a1b3}ul.tour-list{list-style:none;margin-bottom:0;padding-left:10px}ul.tour-list li{padding-top:5px}ul.tour-list li a{color:#21a1b3}ul.tour-list li a .fa{width:16px}ul.tour-list li.completed a{text-decoration:line-through;color:#555}.atwho-view{position:absolute;top:0;left:0;display:none;margin-top:18px;background:#fff;color:#555;font-size:14px;font-weight:400;border:1px solid #d7d7d7;border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);min-width:120px;max-width:265px;z-index:11110!important;padding:5px 0}.atwho-view b,.atwho-view strong{font-weight:400}.atwho-view ul li.hint{background:#fff!important;border-left:3px solid transparent!important;font-size:12px;color:#999}.atwho-view .cur small{color:red}.atwho-view strong{background-color:#f9f0d2}.atwho-view .cur strong{background-color:#f9f0d2}.atwho-view ul{list-style:none;padding:0;margin:auto}.atwho-view ul li{display:block;padding:5px 10px;border-left:3px solid transparent;padding:4px 15px 4px 8px;cursor:pointer}.atwho-view small{font-size:smaller;color:#777;font-weight:400}.atwho-input.form-control{min-height:36px;height:auto;padding-right:95px;word-wrap:break-word}.atwho-input p{padding:0;margin:0}.atwho-placeholder{color:#bebebe!important}.atwho-emoji-entry{float:left;padding:4px!important;margin:0!important;border:none!important}.atwho-emoji-entry:active,.atwho-emoji-entry:focus,.atwho-emoji-entry:hover{padding:4px!important;margin:0!important;border:none!important;background-color:#f7f7f7!important;border-radius:3px}.atwho-view .cur{border-left:3px solid #21a1b3;background-color:#f7f7f7!important}.atwho-input a,.atwho-space,.atwho-user{color:#21a1b3}.atwho-input a:hover{color:#21a1b3}.atwho-view strong{background-color:#f9f0d2}.atwho-view .cur strong{background-color:#f9f0d2}.atwho-view span{padding:5px}.sk-spinner-three-bounce.sk-spinner{margin:0 auto;width:70px;text-align:center}.loader{padding:30px 0}.loader .sk-spinner-three-bounce div,.loader .sk-spinner-three-bounce span{width:12px;height:12px;background-color:#21a1b3;border-radius:100%;display:inline-block;-webkit-animation:sk-threeBounceDelay 1.4s infinite ease-in-out;animation:sk-threeBounceDelay 1.4s infinite ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both}.loader .sk-spinner-three-bounce .sk-bounce1{-webkit-animation-delay:-.32s;animation-delay:-.32s}.loader .sk-spinner-three-bounce .sk-bounce2{-webkit-animation-delay:-.16s;animation-delay:-.16s}@-webkit-keyframes sk-threeBounceDelay{0%,100%,80%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-threeBounceDelay{0%,100%,80%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}.loader-modal{padding:8px 0}.loader-postform{padding:9px 0}.loader-postform .sk-spinner-three-bounce.sk-spinner{text-align:left;margin:0}.md-editor.active{border:2px solid #21a1b3!important}.md-editor textarea{padding:10px!important}.markdown-render,[data-ui-markdown],[data-ui-richtext]{overflow:hidden;overflow-wrap:break-word;line-height:1.57}.markdown-render h1,.markdown-render h2,.markdown-render h3,.markdown-render h4,.markdown-render h5,.markdown-render h6,[data-ui-markdown] h1,[data-ui-markdown] h2,[data-ui-markdown] h3,[data-ui-markdown] h4,[data-ui-markdown] h5,[data-ui-markdown] h6,[data-ui-richtext] h1,[data-ui-richtext] h2,[data-ui-richtext] h3,[data-ui-richtext] h4,[data-ui-richtext] h5,[data-ui-richtext] h6{text-align:start;font-weight:400;margin:1.2em 0 .8em;color:#555}.markdown-render h1:first-child,.markdown-render h2:first-child,.markdown-render h3:first-child,.markdown-render h4:first-child,.markdown-render h5:first-child,.markdown-render h6:first-child,[data-ui-markdown] h1:first-child,[data-ui-markdown] h2:first-child,[data-ui-markdown] h3:first-child,[data-ui-markdown] h4:first-child,[data-ui-markdown] h5:first-child,[data-ui-markdown] h6:first-child,[data-ui-richtext] h1:first-child,[data-ui-richtext] h2:first-child,[data-ui-richtext] h3:first-child,[data-ui-richtext] h4:first-child,[data-ui-richtext] h5:first-child,[data-ui-richtext] h6:first-child{margin:0 0 .8em}.markdown-render h1,[data-ui-markdown] h1,[data-ui-richtext] h1{font-size:1.7em}.markdown-render h2,[data-ui-markdown] h2,[data-ui-richtext] h2{font-size:1.5em}.markdown-render h3,[data-ui-markdown] h3,[data-ui-richtext] h3{font-size:1.2em}.markdown-render h4,[data-ui-markdown] h4,[data-ui-richtext] h4{font-size:1.1em}.markdown-render h5,[data-ui-markdown] h5,[data-ui-richtext] h5{font-size:1em}.markdown-render h6,[data-ui-markdown] h6,[data-ui-richtext] h6{font-size:.85em}.markdown-render blockquote,.markdown-render ol,.markdown-render p,.markdown-render pre,.markdown-render ul,[data-ui-markdown] blockquote,[data-ui-markdown] ol,[data-ui-markdown] p,[data-ui-markdown] pre,[data-ui-markdown] ul,[data-ui-richtext] blockquote,[data-ui-richtext] ol,[data-ui-richtext] p,[data-ui-richtext] pre,[data-ui-richtext] ul{margin:0 0 1.2em}.markdown-render li ol,.markdown-render li ul,[data-ui-markdown] li ol,[data-ui-markdown] li ul,[data-ui-richtext] li ol,[data-ui-richtext] li ul{margin:0}.markdown-render p:last-child,[data-ui-markdown] p:last-child,[data-ui-richtext] p:last-child{margin:0}.markdown-render pre,[data-ui-markdown] pre,[data-ui-richtext] pre{padding:0;border:none;background-color:#f7f7f7}.markdown-render pre code,[data-ui-markdown] pre code,[data-ui-richtext] pre code{background-color:#f7f7f7;color:#555}.markdown-render code,[data-ui-markdown] code,[data-ui-richtext] code{background-color:#dbf5f8;color:#197a88}.markdown-render blockquote,[data-ui-markdown] blockquote,[data-ui-richtext] blockquote{background-color:rgba(128,128,128,.05);border-top-right-radius:5px;border-bottom-right-radius:5px;padding:15px 20px;font-size:1em;border-left:5px solid #435f6f}.markdown-render dd,.markdown-render dt,[data-ui-markdown] dd,[data-ui-markdown] dt,[data-ui-richtext] dd,[data-ui-richtext] dt{margin-top:5px;margin-bottom:5px;line-height:1.45}.markdown-render dt,[data-ui-markdown] dt,[data-ui-richtext] dt{font-weight:700}.markdown-render dd,[data-ui-markdown] dd,[data-ui-richtext] dd{margin-left:40px}.markdown-render pre,[data-ui-markdown] pre,[data-ui-richtext] pre{text-align:start;border:0;padding:10px 20px;border-radius:0;border-left:2px solid #435f6f}.markdown-render pre code,[data-ui-markdown] pre code,[data-ui-richtext] pre code{white-space:pre!important}.markdown-render blockquote ol:last-child,.markdown-render blockquote ul:last-child,[data-ui-markdown] blockquote ol:last-child,[data-ui-markdown] blockquote ul:last-child,[data-ui-richtext] blockquote ol:last-child,[data-ui-richtext] blockquote ul:last-child{margin-bottom:0}.markdown-render ol,.markdown-render ul,[data-ui-markdown] ol,[data-ui-markdown] ul,[data-ui-richtext] ol,[data-ui-richtext] ul{margin-top:0;padding-left:30px}.markdown-render ol li p,.markdown-render ul li p,[data-ui-markdown] ol li p,[data-ui-markdown] ul li p,[data-ui-richtext] ol li p,[data-ui-richtext] ul li p{overflow:visible!important}.markdown-render .footnote,[data-ui-markdown] .footnote,[data-ui-richtext] .footnote{vertical-align:top;position:relative;top:-.5em;font-size:.8em}.markdown-render .emoji,[data-ui-markdown] .emoji,[data-ui-richtext] .emoji{width:16px}.markdown-render a,.markdown-render a:visited,[data-ui-markdown] a,[data-ui-markdown] a:visited,[data-ui-richtext] a,[data-ui-richtext] a:visited{background-color:inherit;text-decoration:none;color:#21a1b3!important}.markdown-render a.header-anchor,[data-ui-markdown] a.header-anchor,[data-ui-richtext] a.header-anchor{color:#555!important}.markdown-render a.not-found,[data-ui-markdown] a.not-found,[data-ui-richtext] a.not-found{color:#ffc107}.markdown-render li,[data-ui-markdown] li,[data-ui-richtext] li{border:0!important;background-color:transparent!important;padding:0;margin:5px 0}.markdown-render img:not(.center-block),[data-ui-markdown] img:not(.center-block),[data-ui-richtext] img:not(.center-block){max-width:100%}.markdown-render img.pull-right,[data-ui-markdown] img.pull-right,[data-ui-richtext] img.pull-right{margin:5px 0 0 10px}.markdown-render img.pull-left,[data-ui-markdown] img.pull-left,[data-ui-richtext] img.pull-left{margin:5px 10px 0 0}.markdown-render img.center-block,[data-ui-markdown] img.center-block,[data-ui-richtext] img.center-block{margin-top:5px;margin-bottom:5px}.markdown-render img[width='100%'],[data-ui-markdown] img[width='100%'],[data-ui-richtext] img[width='100%']{border-radius:4px}.markdown-render table,[data-ui-markdown] table,[data-ui-richtext] table{width:100%;font-size:1em;border:1px solid #d7d7d7;margin-bottom:1.2em!important}.markdown-render table th,[data-ui-markdown] table th,[data-ui-richtext] table th{font-size:1em;color:#fff!important;background-color:#435f6f}.markdown-render table th p,[data-ui-markdown] table th p,[data-ui-richtext] table th p{color:#fff!important}.markdown-render table td,[data-ui-markdown] table td,[data-ui-richtext] table td{padding:15px;border:1px solid #d7d7d7!important}.markdown-render table th,[data-ui-markdown] table th,[data-ui-richtext] table th{padding:10px 15px;border:1px solid #d7d7d7!important}@media (max-width:991px){.layout-sidebar-container{display:none}}.ui-widget-header{border:none!important;background:#fff!important;color:#7a7a7a!important;font-weight:300!important}.ui-widget-content{border:1px solid #dddcda!important;border-radius:0!important;background:#fff;color:#000!important;-webkit-box-shadow:0 6px 6px rgba(0,0,0,.1);box-shadow:0 6px 6px rgba(0,0,0,.1)}.ui-datepicker .ui-datepicker-next span,.ui-datepicker .ui-datepicker-prev span{opacity:.2}.ui-datepicker .ui-datepicker-next:hover,.ui-datepicker .ui-datepicker-prev:hover{background:#fff!important;border:none;margin:1px}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:none!important;background:#f7f7f7!important;color:#7a7a7a!important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:none!important;border:1px solid #b2b2b2!important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #21a1b3!important;background:#6fd6e4!important}.status-bar-body{color:#fff;position:fixed;width:100%;background-color:rgba(0,0,0,.7);text-align:center;padding:20px;z-index:9999999;bottom:0;display:block;line-height:20px}.status-bar-close{color:#fff;font-weight:700;font-size:21px;cursor:pointer}.status-bar-close:hover{color:#fff}.status-bar-close i{vertical-align:top!important;padding-top:3px}.status-bar-content i{margin-right:10px;font-size:21px;vertical-align:middle}.status-bar-content .showMore{color:#21a1b3;float:right;margin-left:10px;font-size:.7em;cursor:pointer;vertical-align:middle;white-space:nowrap}.status-bar-content .status-bar-details{text-align:left;font-size:.7em;margin-top:20px;max-height:200px;overflow:auto}.status-bar-content span{vertical-align:middle}.status-bar-content i.error,.status-bar-content i.fatal{color:#fc4a64}.status-bar-content i.warning{color:#ffc107}.status-bar-content i.debug,.status-bar-content i.info{color:#21a1b3}.status-bar-content i.success{color:#85ca2b}.highlight{background-color:#fff8e0}.alert-default{color:#000;background-color:#f7f7f7;border-color:#ededed;font-size:13px}.alert-default .info{margin:10px 0}.alert-success{color:#84be5e;background-color:#f7fbf4;border-color:#97d271}.alert-warning{color:#e9b168;background-color:#fffbf7;border-color:#fdd198}.alert-danger{color:#ff8989;background-color:#fff6f6;border-color:#ff8989}.data-saved{padding-left:10px;color:#21a1b3}img.bounceIn{-webkit-animation-duration:.8s;-moz-animation-duration:.8s;animation-duration:.8s}.tags .tag{margin-top:5px;border-radius:2px;padding:4px 8px;text-transform:uppercase;max-width:150px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#user-tags-panel .tags .tag{max-width:250px}.label{text-transform:uppercase}.label{text-transform:uppercase;display:inline-block;padding:3px 5px 4px;font-weight:600;font-size:10px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:none}.label-default{background:#ededed;color:#7a7a7a!important}a.label-default:hover{background:#e0e0e0!important}.label-info{background-color:#21a1b3}a.label-info:hover{background:#1d8e9d!important}.label-danger{background-color:#fc4a64}a.label-danger:hover{background:#fc314f!important}.label-success{background-color:#97d271}a.label-success:hover{background:#89cc5e!important}.label-warning{background-color:#ffc107}a.label-warning:hover{background:#ecb100!important}.label-light{background-color:transparent;color:#7a7a7a;border:1px solid #bababa}.topic-label-list,.wall-entry-topics{margin-bottom:10px}.topic-label-list a,.wall-entry-topics a{margin-right:4px}.topic-label-list .label,.wall-entry-topics .label{padding:5px;border-radius:4px}.ProsemirrorEditor.fullscreen{position:fixed;top:0;left:0;width:100vw;height:calc(100vh - 3px);z-index:9998}.ProsemirrorEditor.fullscreen .ProseMirror-menubar-wrapper{height:100%}.ProsemirrorEditor.fullscreen .humhub-ui-richtext{max-height:none!important}.ProsemirrorEditor.fullscreen .ProseMirror{position:static;overflow:auto;height:calc(100% - 26px)}.ProsemirrorEditor.fullscreen .ProseMirror-menubar{position:static!important;top:0!important;left:0!important;margin:0!important;width:100%!important}.login-container .ProsemirrorEditor.fullscreen,.modal-dialog .ProsemirrorEditor.fullscreen{width:100%;height:100%}.ProsemirrorEditor .ProseMirror{padding-right:12px}.ProsemirrorEditor .ProseMirror-menu{margin:0 -4px;line-height:1}.ProsemirrorEditor .ProseMirror-tooltip .ProseMirror-menu{width:-webkit-fit-content;width:fit-content;white-space:pre}.ProsemirrorEditor .ProseMirror-menuitem{margin-right:0;display:inline-block}.ProsemirrorEditor .ProseMirror-menuseparator{border-right:1px solid #ddd;margin-right:3px}.ProsemirrorEditor .ProseMirror-menubar-wrapper{z-index:200}.ProsemirrorEditor .ProseMirror-menuitem .ProseMirror-menu-group{border-right:1px solid #ddd}.ProsemirrorEditor .ProseMirror-menuitem .ProseMirror-menu-group.last{border-right:none}.ProsemirrorEditor .ProseMirror-menuitem .seperator{border-right:1px solid #ddd;margin-right:2px;padding-right:2px}.ProsemirrorEditor .ProseMirror-menu-dropdown,.ProsemirrorEditor .ProseMirror-menu-dropdown-menu{font-size:90%;white-space:nowrap}.ProsemirrorEditor .ProseMirror-menu-dropdown{cursor:pointer;position:relative;padding-right:15px!important}.ProsemirrorEditor .ProseMirror-menu-dropdown-wrap{padding:1px 0 1px 0;display:inline-block;position:relative}.ProsemirrorEditor .ProseMirror-menu-dropdown-right{right:0}.ProsemirrorEditor .ProseMirror-menu-dropdown:after{content:"";border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid currentColor;opacity:.6;position:absolute;right:4px;top:calc(50% - 2px)}.ProsemirrorEditor .ProseMirror-menu-submenu{border-top-right-radius:4px}.ProsemirrorEditor .ProseMirror-menu-dropdown-menu,.ProsemirrorEditor .ProseMirror-menu-submenu{position:absolute;background:#fff;color:#666;border:1px solid #aaa;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.ProsemirrorEditor .ProseMirror-menu-dropdown-menu{z-index:15;min-width:6em;margin-top:2px}.ProsemirrorEditor .ProseMirror-menu-dropdown-item{cursor:pointer}.ProsemirrorEditor .ProseMirror-menu-dropdown-item div[title],.ProsemirrorEditor .ProseMirror-menu-submenu-wrap{padding:4px}.ProsemirrorEditor .ProseMirror-menu-dropdown-item:hover{background:#f2f2f2}.ProsemirrorEditor .ProseMirror-menu-submenu-wrap{position:relative}.ProsemirrorEditor .ProseMirror-menu-submenu-label:after{content:"";border-top:4px solid transparent;border-bottom:4px solid transparent;border-left:4px solid currentColor;opacity:.6;position:absolute;right:4px;top:calc(50% - 4px)}.ProsemirrorEditor .ProseMirror-menu-submenu{display:none;min-width:4em;left:100%;top:0}.ProsemirrorEditor .ProseMirror-menu-active{background:#eee;border-radius:4px;border:1px solid #ededed!important}.ProsemirrorEditor .ProseMirror-menu-disabled{opacity:.3}.ProsemirrorEditor .ProseMirror-menu-submenu-wrap-active .ProseMirror-menu-submenu,.ProsemirrorEditor .ProseMirror-menu-submenu-wrap:hover .ProseMirror-menu-submenu{display:block}.ProsemirrorEditor .ProseMirror-icon{display:inline-block;line-height:.8;vertical-align:-2px;padding:1px 7px;cursor:pointer;border:1px solid transparent}.ProsemirrorEditor .ProseMirror-menu-disabled.ProseMirror-icon{cursor:default}.ProsemirrorEditor .ProseMirror-icon svg{fill:currentColor;height:1em}.ProsemirrorEditor .ProseMirror-icon span{vertical-align:text-top}.ProsemirrorEditor.plainMenu .ProseMirror{border-top-left-radius:0!important;border-top-right-radius:0!important;border-top-width:1px!important;min-height:100px}.ProsemirrorEditor.plainMenu .ProseMirror-menu-group{padding:5px}.ProsemirrorEditor.plainMenu .ProseMirror-menuitem .ProseMirror-menu-group{padding:2px}.ProsemirrorEditor.plainMenu .ProseMirror-menubar~.ProseMirror-focused{border-color:#21a1b3!important}.ProsemirrorEditor.plainMenu .ProseMirror-textblock-dropdown{min-width:3em}.ProsemirrorEditor.plainMenu .ProseMirror-menubar-wrapper{z-index:8}.ProsemirrorEditor.plainMenu .ProseMirror-menubar{background-color:#f7f7f7;border-top-left-radius:4px;border-top-right-radius:4px;border:1px solid #ddd;position:relative;min-height:1em;color:#666;padding:1px 6px 1px 0;top:0;left:0;right:0;z-index:10;-moz-box-sizing:border-box;box-sizing:border-box;overflow:visible}.ProsemirrorEditor.focusMenu .form-control:focus{border-top-left-radius:0!important}.ProsemirrorEditor.focusMenu .ProseMirror-menubar{display:table;min-height:1em;color:#666;padding:2px 6px;top:0;left:0;right:0;z-index:10;-moz-box-sizing:border-box;box-sizing:border-box;overflow:visible;margin-top:-25px;background:#fff;border:1px solid #aeaeae;border-bottom:0;border-top:1px solid #aeaeae;border-top-left-radius:4px;border-top-right-radius:4px;float:left}@-moz-document url-prefix(){.ProsemirrorEditor.focusMenu .ProseMirror-menubar{margin-top:-26px}}.ProsemirrorEditor .ProseMirror{position:relative;word-wrap:break-word;white-space:pre-wrap;-webkit-font-variant-ligatures:none;font-variant-ligatures:none}.ProsemirrorEditor .ProseMirror ol,.ProsemirrorEditor .ProseMirror ul{cursor:default}.ProsemirrorEditor .ProseMirror pre{white-space:pre-wrap}.ProsemirrorEditor .ProseMirror li{position:relative}.ProsemirrorEditor .ProseMirror img{max-width:100%}.ProsemirrorEditor .ProseMirror-hideselection ::selection{background:0 0}.ProsemirrorEditor .ProseMirror-hideselection ::-moz-selection{background:0 0}.ProsemirrorEditor .ProseMirror-selectednode{outline:2px dashed #8cf}.ProsemirrorEditor li.ProseMirror-selectednode{outline:0}.ProsemirrorEditor li.ProseMirror-selectednode:after{content:"";position:absolute;left:-32px;right:-2px;top:-2px;bottom:-2px;border:2px solid #8cf;pointer-events:none}.ProsemirrorEditor .ProseMirror-textblock-dropdown{min-width:3em}.ProsemirrorEditor .ProseMirror-menu{margin:0 -4px;line-height:1}.ProsemirrorEditor .ProseMirror-tooltip .ProseMirror-menu{width:-webkit-fit-content;width:fit-content;white-space:pre}.ProsemirrorEditor .ProseMirror-gapcursor{display:none;pointer-events:none;position:absolute}.ProsemirrorEditor .ProseMirror-gapcursor:after{content:"";display:block;position:absolute;top:-2px;width:20px;border-top:1px solid #000;animation:ProseMirror-cursor-blink 1.1s steps(2,start) infinite}@keyframes ProseMirror-cursor-blink{to{visibility:hidden}}.ProsemirrorEditor .ProseMirror-focused .ProseMirror-gapcursor{display:block}.ProsemirrorEditor .ProseMirror-example-setup-style hr{padding:2px 10px;border:none;margin:1em 0}.ProsemirrorEditor .ProseMirror-example-setup-style hr:after{content:"";display:block;height:1px;background-color:silver;line-height:2px}.ProsemirrorEditor .ProseMirror-example-setup-style img{cursor:default}.ProsemirrorEditor .ProseMirror p{margin-top:1.2em}.ProsemirrorEditor .ProseMirror p:first-child{margin:0}.ProsemirrorEditor .ProseMirror>p:first-child+*{margin-top:1.2em}.ProsemirrorEditor .ProsemirrorEditor{position:relative}.ProsemirrorEditor .ProsemirrorEditor .ProseMirror{padding-right:12px!important}.ProsemirrorEditor .ProsemirrorEditor img{max-width:100%}.ProsemirrorEditor .ProseMirror h1:first-child,.ProsemirrorEditor .ProseMirror h2:first-child,.ProsemirrorEditor .ProseMirror h3:first-child,.ProsemirrorEditor .ProseMirror h4:first-child,.ProsemirrorEditor .ProseMirror h5:first-child,.ProsemirrorEditor .ProseMirror h6:first-child{margin-top:10px}.ProsemirrorEditor .ProseMirror [data-mention]{color:#21a1b3}.ProsemirrorEditor .ProseMirror{outline:0}.ProsemirrorEditor .ProseMirror [data-oembed]{font-size:0}.ProsemirrorEditor .ProseMirror iframe{pointer-events:none;display:block}.ProsemirrorEditor .ProseMirror p{margin-bottom:1em}.ProsemirrorEditor .ProseMirror-textblock-dropdown{min-width:3em}.ProsemirrorEditor .ProseMirror .placeholder{padding:0!important;pointer-events:none;height:0}.ProsemirrorEditor .ProseMirror:focus .placeholder{display:none}.ProsemirrorEditor .ProseMirror .tableWrapper{overflow-x:auto}.ProsemirrorEditor .ProseMirror .column-resize-handle{position:absolute;right:-2px;top:0;bottom:0;width:4px;z-index:20;background-color:#adf;pointer-events:none}.ProsemirrorEditor .ProseMirror.resize-cursor{cursor:ew-resize;cursor:col-resize}.ProsemirrorEditor .ProseMirror .selectedCell:after{z-index:2;position:absolute;content:"";left:0;right:0;top:0;bottom:0;background:rgba(200,200,255,.4);pointer-events:none}.ProsemirrorEditor .ProseMirror-menubar-wrapper{position:relative;outline:0}.ProsemirrorEditor .ProseMirror table{margin:0}.ProsemirrorEditor .ProseMirror .tableWrapper{margin:1em 0}.ProseMirror-prompt{background:#fff;padding:5px 10px 5px 15px;border:1px solid silver;position:fixed;border-radius:3px;min-width:300px;z-index:999999;box-shadow:-.5px 2px 5px rgba(0,0,0,.2)}.ProseMirror-prompt h5{font-weight:700;font-size:100%;margin:15px 0}.ProseMirror-prompt input{margin-bottom:5px}.ProseMirror-prompt-close{position:absolute;left:2px;top:1px;color:#666;border:none;background:0 0;padding:0}.ProseMirror-prompt-close:after{content:"✕";font-size:12px}.ProseMirror-invalid{background:#ffc;border:1px solid #cc7;border-radius:4px;padding:5px 10px;position:absolute;min-width:10em}.ProseMirror-prompt-buttons{margin:15px 0;text-align:center}.atwho-view .cur{border-left:3px solid #59d6e4;background-color:#f7f7f7!important}.atwho-input a,.atwho-space,.atwho-user{color:#59d6e4}.atwho-input a:hover{color:#59d6e4}.atwho-view strong{background-color:#f9f0d2}.atwho-view .cur strong{background-color:#f9f0d2}[data-emoji-category]{max-height:200px;display:block;position:relative;overflow:auto}[data-emoji-category] .atwho-emoji-entry{width:24px;height:28px;overflow:hidden}[data-emoji-category] .atwho-emoji-entry.cur{background-color:#ededed!important}.emoji-nav{padding-top:10px}.emoji-nav .emoji-nav-item{border-top:2px solid #fff8e0}.emoji-nav .emoji-nav-item.cur{border-left:0;border-top:2px solid #21a1b3}[data-ui-markdown],[data-ui-richtext]{overflow-x:auto;overflow-wrap:break-word}[data-ui-markdown] a,[data-ui-richtext] a{color:#21a1b3}#wallStream [data-ui-markdown],#wallStream [data-ui-richtext]{overflow-wrap:initial;word-break:initial;hyphens:initial}@media screen and (max-width:768px){.ProsemirrorEditor.focusMenu .form-control:focus{border-top-right-radius:0!important}.ProsemirrorEditor.focusMenu .ProseMirror-menubar{min-height:1em;margin-top:0}.ProsemirrorEditor.focusMenu .humhub-ui-richtext{margin-top:0}}@media only screen and (max-width :768px){body{padding-top:105px}.modal-open #layout-content>.container{overflow-x:unset}#layout-content .left-navigation .list-group{-webkit-overflow-scrolling:auto;white-space:nowrap;overflow-x:auto}#layout-content .left-navigation .list-group::-webkit-scrollbar{-webkit-appearance:none}#layout-content .left-navigation .list-group::-webkit-scrollbar:vertical{width:8px}#layout-content .left-navigation .list-group::-webkit-scrollbar:horizontal{height:8px}#layout-content .left-navigation .list-group::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.5);border-radius:10px;border:2px solid #fff}#layout-content .left-navigation .list-group::-webkit-scrollbar-track{border-radius:10px;background-color:#fff}#layout-content .table-responsive::-webkit-scrollbar{-webkit-appearance:none}#layout-content .table-responsive::-webkit-scrollbar:vertical{width:8px}#layout-content .table-responsive::-webkit-scrollbar:horizontal{height:8px}#layout-content .table-responsive::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.5);border-radius:10px;border:2px solid #fff}#layout-content .table-responsive::-webkit-scrollbar-track{border-radius:10px;background-color:#fff}#layout-content .panel{margin-bottom:5px}#layout-content .panel .statistics .entry{margin-left:10px}#layout-content>.container{padding-right:2px!important;padding-left:2px!important;overflow-x:hidden}#layout-content .layout-nav-container .panel-heading{display:none}#layout-content .panel-profile-header #profilefileupload,#layout-content .panel-profile-header .profile-user-photo,#layout-content .panel-profile-header .profile-user-photo-container,#layout-content .panel-profile-header .space-acronym{height:100px!important;width:100px!important}#layout-content .image-upload-container .image-upload-buttons{right:2px!important}#layout-content .space-acronym{padding:6px 0!important}#layout-content .panel-profile .panel-profile-header .img-profile-header-background{min-height:80px!important}#layout-content .panel-profile .panel-profile-header .img-profile-data{padding-top:50px!important;padding-left:130px}.modal-dialog{width:calc(100vw - 4px)!important;padding:0!important;margin:2px!important}.account .dropdown-menu li a,.dropdown-menu>li a,.modal .dropdown-menu li a,.nav-pills .dropdown-menu li a,.nav-tabs .dropdown-menu li a,.panel .dropdown-menu li a{padding-top:10px;padding-bottom:10px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.dropdown-menu{max-width:320px}select.form-control:not([multiple]){padding-right:23px;width:auto}.modal.in{padding-right:0!important}.load-suppressed{margin-top:-8px;margin-bottom:5px}.ProsemirrorEditor .ProseMirror-menuitem{font-size:1.2em!important}}.fa-sm,.icon-sm{font-size:.875em}.fa-lg,.icon-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-2x,.icon-2x{font-size:2em}.fa-3x,.icon-3x{font-size:3em}.fa-4x,.icon-4x{font-size:4em}.fa-5x,.icon-5x{font-size:5em}.fa-6x,.icon-6x{font-size:6em}.fa-7x,.icon-7x{font-size:7em}.fa-9x,.icon-9x{font-size:9em}.fa-10x,.icon-10x{font-size:10em}@media print{a[href]:after{content:none}body{padding-top:0}blockquote,pre{page-break-inside:avoid}.layout-nav-container,.layout-sidebar-container,.preferences,button{display:none!important}}@media (min-width:500px){.container-cards.container-fluid .card{width:50%}}@media (min-width:1000px){.container-cards.container-fluid .card{width:33.33333333%}}@media (min-width:1300px){.container-cards.container-fluid .card{width:25%}}@media (min-width:1600px){.container-cards.container-fluid .card{width:20%}}@media (min-width:1900px){.container-cards.container-fluid .card{width:16.66666667%}}.container-cards .form-search .row>div{padding-bottom:3px}.container-cards .form-search .form-search-filter-keyword{position:relative}.container-cards .form-search .form-search-filter-keyword .form-button-search{position:absolute;right:18px;margin-bottom:3px}.container-cards .form-search .form-control.form-search-filter{width:100%;height:40px;margin:3px 0 0;padding:8px 30px 10px 8px;border-radius:4px;border:solid 1px #c5c5c5}.container-cards .form-search .form-button-search{background:0 0;border:0;font-size:16px;color:#000;top:initial;bottom:9px}.container-cards .form-search .form-search-field-info{font-size:80%}.container-cards .form-search-reset{text-decoration:underline;display:block;margin-top:26px}.container-cards .form-search-reset:hover{text-decoration:none}.container-cards .form-search-filter-tags{padding-top:21px}.container-cards .form-search-filter-tags button{margin:10px 10px 0 0}.container-cards .form-search-filter-tags .btn.btn-info{padding-left:16px;padding-right:16px}.container-cards .form-search-filter-tags .btn.btn-info.active{background:#0397a8!important;color:#fff!important}.container-cards .form-search-filter-tags .btn.btn-info:not(.active){border:1px solid #435f6f;color:#435f6f!important;background:#fff;padding:3px 14px}.container-cards .form-search-filter-tags .btn.btn-info:not(.active):hover{background:#0397a8!important;border:1px solid #0397a8;color:#fff!important}.container-cards .directory-filters-footer{display:flex;align-items:center;flex-wrap:wrap;margin:30px -10px -10px;padding:20px 5px;color:#000;border-radius:0 0 4px 4px;font-size:14px}.container-cards .directory-filters-footer.directory-filters-footer-warning{background:#ffc107}.container-cards .directory-filters-footer.directory-filters-footer-info{background:#d9edf7;border:1px solid #bce8f1}.container-cards .directory-filters-footer .filter-footer-icon{font-size:35px;line-height:25px;text-align:center;color:#435f6f;background:#fff;height:25px;border-radius:50%;margin-right:32px;vertical-align:middle}.container-cards .cards{display:flex;flex-direction:row;flex-wrap:wrap}.container-cards .cards-no-results{color:#000;font-size:16px;line-height:34px}.container-cards .card{display:flex;flex-direction:row}.container-cards .card .card-panel{position:relative;width:100%;display:flex;flex-direction:column;margin:15px 0;border-radius:4px;overflow:hidden}.container-cards .card .card-panel.card-archived{filter:opacity(60%)}.container-cards .card .card-panel>div:not(.card-status){background-color:#fff}.container-cards .card .card-icons .fa{color:#21a1b3}.container-cards .card .card-icons .fa span{font:12px 'Open Sans',sans-serif;font-weight:600}.container-cards .card .card-bg-image{width:100%;height:86px;background-color:#cfcfcf;background-size:cover;background-position:center;border-radius:4px 4px 0 0}.container-cards .card .card-status{font-size:13px;font-weight:700;padding:5px 12px;color:#fff;min-height:30px;max-height:30px}.container-cards .card .card-status.card-status-professional{background:#415f6e}.container-cards .card .card-status.card-status-official,.container-cards .card .card-status.card-status-partner{background:#90a1aa}.container-cards .card .card-status.card-status-deprecated{background:#eb0000}.container-cards .card .card-status.card-status-featured,.container-cards .card .card-status.card-status-new{background:#21a1b3}.container-cards .card .card-header{position:absolute;padding:16px;display:table;width:100%}.container-cards .card .card-header .card-image-wrapper{display:table-cell;width:98px}.container-cards .card .card-header .card-image-link{display:inline-block;border:2px solid #fff;border-radius:6px}.container-cards .card .card-header .card-status{position:absolute;right:16px;background:#435f6f}.container-cards .card .card-header .card-icons{display:table-cell;padding:0 0 2px 5px;text-align:right;vertical-align:bottom;font-size:16px}.container-cards .card .card-header .card-icons .fa{color:#21a1b3}.container-cards .card .card-header .card-icons .fa.fa-mobile-phone{font-size:22px;line-height:15px;position:relative;top:2px}.container-cards .card .card-status-none+.card-header{border-radius:4px 4px 0 0}.container-cards .card .card-body{flex-grow:1;padding:44px 16px 24px 16px;overflow:auto}.container-cards .card .card-body .card-title{font-size:16px;font-weight:700;line-height:24px}.container-cards .card .card-body .card-details{margin-top:8px;color:#57646c}.container-cards .card .card-body .card-details a{color:#21a1b3;text-decoration:underline}.container-cards .card .card-body .card-details a:hover{text-decoration:none}.container-cards .card .card-body .card-tags{margin-top:20px}.container-cards .card .card-footer{padding:0 16px 20px}.container-cards .card .card-footer a.btn{float:left;margin:0 8px 4px 0;white-space:normal;hyphens:none}.container-cards .card .card-footer a.btn:last-child{margin-right:0}.container-cards .card .card-footer .btn-group a.btn{margin-right:0}/*! Select2 humhub Theme v0.1.0-beta.4 | MIT License | github.com/select2/select2-humhub-theme */.select2-container--humhub{display:block}.select2-container--humhub .select2-selection{background-color:#fff;border:2px solid #ededed;border-radius:4px;color:#555;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;outline:0}.select2-container--humhub .select2-search--dropdown .select2-search__field{background-color:#fff;border:2px solid #ededed;border-radius:4px;color:#555;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px}.select2-container--humhub .select2-search__field{outline:0}.select2-container--humhub .select2-search__field::placeholder{color:#999;font-weight:400}.select2-container--humhub .select2-search__field::-webkit-input-placeholder{color:#999;font-weight:400}.select2-container--humhub .select2-search__field:-moz-placeholder{color:#999;font-weight:400}.select2-container--humhub .select2-search__field::-moz-placeholder{color:#999;font-weight:400;opacity:1}.select2-container--humhub .select2-search__field:-ms-input-placeholder{color:#999;font-weight:400}/** * Disabled results. * * @see https://select2.github.io/examples.html#disabled-results */ /** * Hover state. */ /** * Selected state. */ .select2-container--humhub .select2-results__option[role=group]{padding:0}.select2-container--humhub .select2-results__option[aria-disabled=true]{color:#777;cursor:not-allowed}.select2-container--humhub .select2-results__option[aria-selected=true]{background-color:#f5f5f5;color:#262626;border-left:3px solid transparent}.select2-container--humhub .select2-results__option[aria-selected=false]{border-left:3px solid transparent}.select2-container--humhub .select2-results__option--highlighted[aria-selected]{background-color:#f7f7f7;border-left:3px solid #21a1b3;color:#000}.select2-container--humhub .select2-results__option .select2-results__option{padding:6px 12px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option{margin-left:-12px;padding-left:24px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-24px;padding-left:36px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-36px;padding-left:48px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-48px;padding-left:60px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-60px;padding-left:72px}.select2-container--humhub .select2-results__group{color:#777;display:block;padding:6px 12px;font-size:12px;line-height:1.42857143;white-space:nowrap}.select2-container--humhub.select2-container--focus .select2-selection,.select2-container--humhub.select2-container--open .select2-selection{border:2px solid #21a1b3;outline:0;box-shadow:none}/** * Make the dropdown arrow point up while the dropdown is visible. */ /** * Handle border radii of the container when the dropdown is showing. */ .select2-container--humhub.select2-container--open .select2-selection .select2-selection__arrow b{border-color:transparent transparent #999 transparent;border-width:0 4px 4px 4px}.select2-container--humhub .select2-selection__clear{color:#999;cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--humhub .select2-selection__clear:hover{color:#333}.select2-container--humhub.select2-container--disabled .select2-selection{border-color:#ccc;-webkit-box-shadow:none;box-shadow:none}.select2-container--humhub.select2-container--disabled .select2-search__field,.select2-container--humhub.select2-container--disabled .select2-selection{cursor:not-allowed}.select2-container--humhub.select2-container--disabled .select2-selection,.select2-container--humhub.select2-container--disabled .select2-selection--multiple .select2-selection__choice{background-color:#eee}.select2-container--humhub.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove,.select2-container--humhub.select2-container--disabled .select2-selection__clear{display:none}.select2-container--humhub .select2-dropdown{-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);border-color:#d7d7d7;overflow-x:hidden;margin-top:-1px}.select2-container--humhub .select2-dropdown--above{margin-top:1px}.select2-container--humhub .select2-results>.select2-results__options{max-height:400px;overflow-y:auto}.select2-container--humhub .select2-selection--single{height:34px;line-height:1.42857143;padding:6px 24px 6px 12px}.select2-container--humhub .select2-selection--single .select2-selection__arrow{position:absolute;bottom:0;right:12px;top:0;width:4px}.select2-container--humhub .select2-selection--single .select2-selection__arrow b{border-color:#999 transparent transparent transparent;border-style:solid;border-width:4px 4px 0 4px;height:0;left:0;margin-left:-4px;margin-top:-4px/2;position:absolute;top:50%;width:0}.select2-container--humhub .select2-selection--single .select2-selection__rendered{color:#555;padding:0}.select2-container--humhub .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--humhub .select2-selection--multiple{min-height:34px;padding:2px}.select2-container--humhub .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;display:block;line-height:1.42857143;list-style:none;margin:0;overflow:hidden;padding:0;width:100%;text-overflow:ellipsis;white-space:nowrap}.select2-container--humhub .select2-selection--multiple .select2-selection__placeholder{color:#999;float:left;margin-top:5px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice{color:#555;border-radius:4px;cursor:default;padding:0 6px;background-color:#21a1b3;color:#fff;border-radius:3px;font-size:12px!important;padding:0 5px 2px 2px;float:left;margin:2px;height:28px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice div,.select2-container--humhub .select2-selection--multiple .select2-selection__choice img{margin-right:5px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice span.no-image{line-height:27px;padding-left:5px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice i{margin:0 2px;line-height:27px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice .picker-close{cursor:pointer}.select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field{background:0 0;padding:0 5px;width:auto!important;height:32px;line-height:1.42857143;margin-top:0;min-width:5em}.select2-container--humhub .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:none;font-weight:700;margin-right:6px/2}.select2-container--humhub .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--humhub .select2-selection--multiple .select2-selection__clear{margin-top:6px}.select2-container--humhub.input-lg,.select2-container--humhub.input-sm{border-radius:0;font-size:12px;height:auto;line-height:1;padding:0}.form-group-sm .select2-container--humhub .select2-selection--single,.input-group-sm .select2-container--humhub .select2-selection--single,.select2-container--humhub.input-sm .select2-selection--single{border-radius:3px;font-size:12px;height:30px;line-height:1.5;padding:5px 22px 5px 10px}.form-group-sm .select2-container--humhub .select2-selection--single .select2-selection__arrow b,.input-group-sm .select2-container--humhub .select2-selection--single .select2-selection__arrow b,.select2-container--humhub.input-sm .select2-selection--single .select2-selection__arrow b{margin-left:-5px}.form-group-sm .select2-container--humhub .select2-selection--multiple,.input-group-sm .select2-container--humhub .select2-selection--multiple,.select2-container--humhub.input-sm .select2-selection--multiple{min-height:30px}.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__choice,.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__choice,.select2-container--humhub.input-sm .select2-selection--multiple .select2-selection__choice{font-size:12px;line-height:1.5;margin:4px 0 0 10px/2;padding:0 5px}.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field,.select2-container--humhub.input-sm .select2-selection--multiple .select2-search--inline .select2-search__field{padding:0 10px;font-size:12px;height:28px;line-height:1.5}.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__clear,.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__clear,.select2-container--humhub.input-sm .select2-selection--multiple .select2-selection__clear{margin-top:5px}.form-group-lg .select2-container--humhub .select2-selection--single,.input-group-lg .select2-container--humhub .select2-selection--single,.select2-container--humhub.input-lg .select2-selection--single{border-radius:6px;font-size:18px;height:46px;line-height:1.3333333;padding:10px 31px 10px 16px}.form-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow,.input-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow,.select2-container--humhub.input-lg .select2-selection--single .select2-selection__arrow{width:5px}.form-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow b,.input-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow b,.select2-container--humhub.input-lg .select2-selection--single .select2-selection__arrow b{border-width:5px 5px 0 5px;margin-left:-5px;margin-left:-10px;margin-top:-5px/2}.form-group-lg .select2-container--humhub .select2-selection--multiple,.input-group-lg .select2-container--humhub .select2-selection--multiple,.select2-container--humhub.input-lg .select2-selection--multiple{min-height:46px}.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__choice,.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__choice,.select2-container--humhub.input-lg .select2-selection--multiple .select2-selection__choice{font-size:18px;line-height:1.3333333;border-radius:4px;margin:9px 0 0 16px/2;padding:0 10px}.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field,.select2-container--humhub.input-lg .select2-selection--multiple .select2-search--inline .select2-search__field{padding:0 16px;font-size:18px;height:44px;line-height:1.3333333}.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__clear,.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__clear,.select2-container--humhub.input-lg .select2-selection--multiple .select2-selection__clear{margin-top:10px}/** * Make the dropdown arrow point up while the dropdown is visible. */ .select2-container--humhub.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #999 transparent;border-width:0 5px 5px 5px}/** * Make the dropdown arrow point up while the dropdown is visible. */ .input-group-lg .select2-container--humhub.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #999 transparent;border-width:0 5px 5px 5px}/** * Single Select2 * * 1. Makes sure that .select2-selection__placeholder is positioned * correctly. */ /** * Multiple Select2 */ .select2-container--humhub[dir=rtl] .select2-selection--single{padding-left:24px;padding-right:12px}.select2-container--humhub[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:0;padding-left:0;text-align:right}.select2-container--humhub[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--humhub[dir=rtl] .select2-selection--single .select2-selection__arrow{left:12px;right:auto}.select2-container--humhub[dir=rtl] .select2-selection--single .select2-selection__arrow b{margin-left:0}.select2-container--humhub[dir=rtl] .select2-selection--multiple .select2-selection__choice,.select2-container--humhub[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--humhub[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:0;margin-right:12px/2}.select2-container--humhub[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.has-warning .select2-dropdown,.has-warning .select2-selection{border-color:#ffc107}.has-warning .select2-container--focus .select2-selection,.has-warning .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ffdb6d;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ffdb6d;border-color:#d39e00}.has-warning.select2-drop-active{border-color:#d39e00}.has-warning.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#d39e00}.has-error .select2-dropdown,.has-error .select2-selection{border-color:#fc4a64}.has-error .select2-container--focus .select2-selection,.has-error .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #feaeba;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #feaeba;border-color:#fb1839}.has-error.select2-drop-active{border-color:#fb1839}.has-error.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#fb1839}.has-success .select2-dropdown,.has-success .select2-selection{border-color:#97d271}.has-success .select2-container--focus .select2-selection,.has-success .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #d0ebbe;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #d0ebbe;border-color:#7bc64a}.has-success.select2-drop-active{border-color:#7bc64a}.has-success.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#7bc64a}.input-group .select2-container--humhub{display:table;table-layout:fixed;position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group.select2-humhub-prepend .select2-container--humhub .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group.select2-humhub-append .select2-container--humhub .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.select2-humhub-append .input-group-btn,.select2-humhub-append .input-group-btn .btn,.select2-humhub-append .select2-container--humhub,.select2-humhub-prepend .input-group-btn,.select2-humhub-prepend .input-group-btn .btn,.select2-humhub-prepend .select2-container--humhub{vertical-align:top}.form-control.select2-hidden-accessible{position:absolute!important;width:1px!important}.form-inline .select2-container--humhub{display:inline-block}ul.tag_input{list-style:none;background-color:#fff;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;padding:0 0 9px 4px}ul.tag_input li img{margin:0 5px 0 0}.tag_input_field{outline:0;border:none!important;padding:5px 4px 0!important;width:170px;margin:2px 0 0!important}.spaceInput,.userInput{background-color:#21a1b3;font-weight:600;color:#fff;border-radius:3px;font-size:12px!important;padding:2px;float:left;margin:3px 4px 0 0}.spaceInput i,.userInput i{padding:0 6px;font-size:14px;cursor:pointer;line-height:8px} +.colorDefault{color:#f3f3f3}.backgroundDefault{background:#f3f3f3}.borderDefault{border-color:#f3f3f3}.colorPrimary{color:#435f6f !important}.backgroundPrimary{background:#435f6f !important}.borderPrimary{border-color:#435f6f !important}.colorInfo{color:#21A1B3 !important}.backgroundInfo{background:#21A1B3 !important}.borderInfo{border-color:#21A1B3 !important}.colorLink{color:#21A1B3 !important}.colorSuccess{color:#97d271 !important}.backgroundSuccess{background:#97d271 !important}.borderSuccess{border-color:#97d271 !important}.colorWarning{color:#FFC107 !important}.backgroundWarning{background:#FFC107 !important}.borderWarning{border-color:#FFC107 !important}.colorDanger{color:#FC4A64 !important}.backgroundDanger{background:#FC4A64 !important}.borderDanger{border-color:#FC4A64 !important}.colorFont1{color:#bac2c7 !important}.colorFont2{color:#7a7a7a !important}.colorFont3{color:#000 !important}.colorFont4{color:#555555 !important}.colorFont5{color:#aeaeae !important}.heading{font-size:16px;font-weight:300;color:#000;background-color:white;border:none;padding:10px}.text-center{text-align:center !important}.text-break{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.img-rounded{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}body{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;padding-top:130px;background-color:#ededed;color:#555;font-family:'Open Sans',sans-serif}body a,body a:hover,body a:focus,body a:active,body a.active{color:#000;text-decoration:none}a:hover{text-decoration:none}hr{margin-top:10px;margin-bottom:10px}.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{position:inherit}.layout-nav-container{padding:0 0 0 15px}.layout-sidebar-container{padding:0 15px 0 0}@media (max-width:768px){.layout-nav-container{padding:0 15px}.layout-nav-container .left-navigation{margin-bottom:0}}h4{font-weight:300;font-size:150%}input[type=text],input[type=password],input[type=select]{-webkit-appearance:none;-moz-appearance:none;appearance:none}.powered,.powered a{color:#b8c7d3 !important}.langSwitcher{display:inline-block}[data-ui-show-more]{overflow:hidden}@media (min-width:768px) and (max-width:991px){.layout-nav-container{padding:0 15px}body{padding-top:120px}}@media print{#topbar-first,#topbar-second{display:none}}span.likeLinkContainer .like.disabled,span.likeLinkContainer .unlike.disabled{pointer-events:none;cursor:default;text-decoration:none;color:lightgrey}.panel-body a[data-toggle],.modal-body a[data-toggle]{color:#21A1B3}.showMore{font-size:13px}.table-responsive{word-wrap:normal;overflow-wrap:normal;word-break:normal;-moz-hyphens:none;hyphens:none}.topbar{position:fixed;display:block;height:50px;width:100%;padding-left:15px;padding-right:15px}.topbar ul.nav{float:left}.topbar ul.nav>li{float:left}.topbar ul.nav>li>a{padding-top:15px;padding-bottom:15px;line-height:20px}.topbar .dropdown-footer{margin:10px}.topbar .dropdown-header{font-size:16px;padding:3px 10px;margin-bottom:10px;font-weight:300;color:#555555}.topbar .dropdown-header .dropdown-header-link{position:absolute;top:2px;right:10px}.topbar .dropdown-header .dropdown-header-link a{color:#21A1B3 !important;font-size:12px;font-weight:normal}.topbar .dropdown-header:hover{color:#555555}#topbar-first{background-color:#435f6f;top:0;z-index:1030;color:white}#topbar-first a.navbar-brand{height:50px;padding:5px}#topbar-first a.navbar-brand img#img-logo{max-height:40px}#topbar-first a.navbar-brand-text{padding-top:15px}#topbar-first .nav>li>a:hover,#topbar-first .nav>.open>a{background-color:#567a8f}#topbar-first .nav>.account{height:50px;margin-left:20px}#topbar-first .nav>.account img{margin-left:10px}#topbar-first .nav>.account .dropdown-toggle{padding:10px 5px 8px;line-height:1.1em;text-align:left}#topbar-first .nav>.account .dropdown-toggle span{font-size:12px}#topbar-first .topbar-brand{position:relative;z-index:2}#topbar-first .topbar-actions{position:relative;z-index:3}#topbar-first .notifications{position:absolute;left:0;right:0;text-align:center;z-index:1}#topbar-first .notifications .btn-group{position:relative;text-align:left}#topbar-first .notifications .btn-group>a{padding:5px 10px;margin:10px 2px;display:inline-block;border-radius:2px;text-decoration:none;text-align:left}#topbar-first .notifications .btn-group>.label{position:absolute;top:4px;right:-2px}#topbar-first .notifications .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;border-width:10px;content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff;z-index:1035}#topbar-first .notifications .arrow{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;z-index:1001;border-width:11px;left:50%;margin-left:-18px;border-top-width:0;border-bottom-color:rgba(0,0,0,0.15);top:-19px;z-index:1035}#topbar-first .notifications .dropdown-menu{width:350px;margin-left:-148px}#topbar-first .notifications .dropdown-menu ul.media-list{max-height:400px;overflow:auto}#topbar-first .notifications .dropdown-menu li{position:relative}#topbar-first .notifications .dropdown-menu li i.approval{position:absolute;left:2px;top:36px;font-size:14px}#topbar-first .notifications .dropdown-menu li i.accepted{color:#5cb85c}#topbar-first .notifications .dropdown-menu li i.declined{color:#d9534f}#topbar-first .notifications .dropdown-menu li .media{position:relative}#topbar-first .notifications .dropdown-menu li .media .img-space{position:absolute;top:14px;left:14px}#topbar-first .dropdown-footer{margin:10px 10px 5px}#topbar-first a{color:white}#topbar-first .caret{border-top-color:#fff}#topbar-first .btn-group>a{background-color:#4d6d7f}#topbar-first .btn-enter{background-color:#4d6d7f;margin:6px 0}#topbar-first .btn-enter:hover{background-color:#527588}#topbar-first .media-list a{color:#000;padding:0}#topbar-first .media-list li{color:#000}#topbar-first .media-list li i.accepted{color:#21A1B3 !important}#topbar-first .media-list li i.declined{color:#FC4A64 !important}#topbar-first .media-list li.placeholder{border-bottom:none}#topbar-first .media-list .media .media-body .label{padding:.1em .5em}#topbar-first .account .user-title{text-align:right}#topbar-first .account .user-title span{color:#d7d7d7}#topbar-first .dropdown.account>a,#topbar-first .dropdown.account.open>a,#topbar-first .dropdown.account>a:hover,#topbar-first .dropdown.account.open>a:hover{background-color:#435f6f}#topbar-second{top:50px;background-color:#fff;z-index:1029;background-image:none;-webkit-box-shadow:0 1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,0.1);box-shadow:0 1px 10px rgba(0,0,0,0.1);border-bottom:1px solid #d4d4d4}#topbar-second .dropdown-menu{padding-top:0;padding-bottom:0}#topbar-second .dropdown-menu .divider{margin:0}#topbar-second #space-menu-dropdown,#topbar-second #search-menu-dropdown{width:400px}#topbar-second #space-menu-dropdown .media-list,#topbar-second #search-menu-dropdown .media-list{max-height:400px;overflow:auto}@media screen and (max-width:768px){#topbar-second #space-menu-dropdown .media-list,#topbar-second #search-menu-dropdown .media-list{max-height:200px}}#topbar-second #space-menu-dropdown form,#topbar-second #search-menu-dropdown form{margin:10px}#topbar-second #space-menu-dropdown .search-reset,#topbar-second #search-menu-dropdown .search-reset{position:absolute;color:#BFBFBF;margin:7px;top:0px;right:40px;z-index:10;display:none;cursor:pointer}#topbar-second .nav>li>a{padding:7px 13px 0;text-decoration:none;text-shadow:none;font-weight:600;font-size:10px;min-height:50px;text-transform:uppercase;text-align:center}#topbar-second .nav>li>a:hover,#topbar-second .nav>li>a:active,#topbar-second .nav>li>a:focus{border-bottom:3px solid #21A1B3;background-color:#f7f7f7;color:#000;text-decoration:none}#topbar-second .nav>li>a i{font-size:14px}#topbar-second .nav>li>a .caret{border-top-color:#7a7a7a}#topbar-second .nav>li.active>a{min-height:47px}#topbar-second .nav>li>ul>li>a{border-left:3px solid #fff;background-color:#fff;color:#000}#topbar-second .nav>li>ul>li>a:hover,#topbar-second .nav>li>ul>li>a.active{border-left:3px solid #21A1B3;background-color:#f7f7f7;color:#000}#topbar-second .nav>li>a#space-menu{padding-right:13px;border-right:1px solid #ededed}#topbar-second .nav>li>a#search-menu{padding-top:15px}#topbar-second .nav>li>a:hover,#topbar-second .nav>li.active{border-bottom:3px solid #21A1B3;background-color:#f7f7f7;color:#000}#topbar-second .nav>li.active>a:hover,#topbar-second .nav>li.active>a:focus{border-bottom:none}#topbar-second #space-menu-dropdown li>ul>li>a>.media .media-body p{color:#555555;font-size:11px;margin:0;font-weight:400}@media (max-width:767px){.topbar{padding-left:0;padding-right:0}}.login-container{background-color:#435f6f;background-image:linear-gradient(to right, #435f6f 0%, #567a8f 50%, #567a8f 100%),linear-gradient(to right, #4d6d7f 0%, #7fa0b2 51%, #7094a8 100%);background-size:100% 100%;position:relative;padding-top:40px}.login-container #img-logo{max-width:100%}.login-container .text{color:#fff;font-size:12px;margin-bottom:15px}.login-container .text a{color:#fff;text-decoration:underline}.login-container .panel a{color:#21A1B3}.login-container h1,.login-container h2{color:#fff !important}.login-container .panel{box-shadow:0 0 15px #627d92;-moz-box-shadow:0 0 15px #627d92;-webkit-box-shadow:0 0 15px #627d92}.login-container .panel .panel-heading,.login-container .panel .panel-body{padding:15px}.login-container .panel h1,.login-container .panel h2{color:#555 !important}.login-container select{color:#000}#account-login-form .form-group{margin-bottom:10px}.dropdown-menu li a i{margin-right:5px;font-size:14px;display:inline-block;width:14px}.dropdown-menu li a:hover,.dropdown-menu li a:visited,.dropdown-menu li a:hover,.dropdown-menu li a:focus{background:none;cursor:pointer}.dropdown-menu li:hover,.dropdown-menu li.selected{color:#000}.dropdown-menu li:first-child{margin-top:3px}.dropdown-menu li:last-child{margin-bottom:3px}.modal .dropdown-menu,.panel .dropdown-menu,.nav-tabs .dropdown-menu{border:1px solid #d7d7d7}.modal .dropdown-menu li.divider,.panel .dropdown-menu li.divider,.nav-tabs .dropdown-menu li.divider{background-color:#f7f7f7;border-bottom:none;margin:9px 1px !important}.modal .dropdown-menu li,.panel .dropdown-menu li,.nav-tabs .dropdown-menu li{border-left:3px solid white}.modal .dropdown-menu li a,.panel .dropdown-menu li a,.nav-tabs .dropdown-menu li a{color:#000;font-size:13px;font-weight:600;padding:4px 15px}.modal .dropdown-menu li a i,.panel .dropdown-menu li a i,.nav-tabs .dropdown-menu li a i{margin-right:5px}.modal .dropdown-menu li a:hover,.panel .dropdown-menu li a:hover,.nav-tabs .dropdown-menu li a:hover{background:none}.modal .dropdown-menu li:hover,.panel .dropdown-menu li:hover,.nav-tabs .dropdown-menu li:hover,.modal .dropdown-menu li.selected,.panel .dropdown-menu li.selected,.nav-tabs .dropdown-menu li.selected{border-left:3px solid #21A1B3;background-color:#f7f7f7 !important}ul.contextMenu{border:1px solid #d7d7d7}ul.contextMenu li.divider{background-color:#f7f7f7;border-bottom:none;margin:9px 1px !important}ul.contextMenu li{border-left:3px solid white}ul.contextMenu li a{color:#000;font-size:14px;font-weight:400;padding:4px 15px}ul.contextMenu li a i{margin-right:5px}ul.contextMenu li a:hover{background:none}ul.contextMenu li:hover,ul.contextMenu li.selected{border-left:3px solid #21A1B3;background-color:#f7f7f7 !important}.media-list li{padding:10px;border-bottom:1px solid #eee;position:relative;border-left:3px solid white;font-size:12px}.media-list li a{color:#555}.media-list .badge-space-type{background-color:#f7f7f7;border:1px solid #d7d7d7;color:#b2b2b2;padding:3px 3px 2px 3px}.media-list li.new{border-left:3px solid #21A1B3;background-color:#c5eff4}.media-list li:hover,.media-list li.selected{background-color:#f7f7f7;border-left:3px solid #21A1B3}.media-list li.placeholder{font-size:14px !important;border-bottom:none}.media-list li.placeholder:hover{background:none !important;border-left:3px solid white}.media-left,.media>.pull-left{padding-right:0;margin-right:10px}.media:after{content:'';clear:both;display:block}.media .time{font-size:11px;color:#555555}.media .img-space{position:absolute;top:35px;left:35px}.media .media-body{overflow:hidden !important;font-size:13px;white-space:normal;word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.media .media-body h4.media-heading{font-size:14px;font-weight:500;color:#000}.media .media-body h4.media-heading a{color:#000}.media .media-body h4.media-heading small,.media .media-body h4.media-heading small a{font-size:11px;color:#555555}.media .media-body h4.media-heading .content{margin-right:35px}.media .media-body .content a{word-break:break-all}.media .media-body strong{color:#000}.media .media-body h5{color:#aeaeae;font-weight:300;margin-top:5px;margin-bottom:5px;min-height:15px}.media .media-body .module-controls{font-size:85%}.media .media-body .module-controls a{color:#21A1B3}.media .content a{color:#21A1B3}.media .content .files a{color:#000}.content span{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}#blueimp-gallery .slide img{max-height:80%}audio,canvas,progress,video{display:inline-block;vertical-align:baseline;max-width:100%;height:auto}img{image-orientation:from-image}.panel{word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;border:none;background-color:#fff;box-shadow:0 0 3px #dadada;-webkit-box-shadow:0 0 3px #dadada;-moz-box-shadow:0 0 3px #dadada;border-radius:4px;position:relative;margin-bottom:15px}.panel h1{font-size:16px;font-weight:300;margin-top:0;color:#000}.panel .panel-heading{font-size:16px;font-weight:300;color:#000;background-color:white;border:none;padding:10px;border-radius:4px}.panel .panel-heading .heading-link{color:#6fdbe8 !important;font-size:.8em}.panel .panel-body{padding:10px;font-size:13px}.panel .panel-body p{color:#555}.panel .panel-body p a{color:#21A1B3}.panel .panel-body .usersearch-statuses,.panel .panel-body .spacesearch-visibilities{padding-top:5px;padding-bottom:5px}@media (min-width:992px){.panel .panel-body .usersearch-statuses,.panel .panel-body .spacesearch-visibilities{padding-top:0;padding-bottom:0;padding-left:0}}.panel .statistics .entry{margin-left:20px;font-size:12px;color:#000}.panel .statistics .entry .count{color:#21A1B3;font-weight:600;font-size:20px;line-height:.8em}.panel h3.media-heading small{font-size:75%}.panel h3.media-heading small a{color:#21A1B3}.panel-danger{border:2px solid #FC4A64}.panel-danger .panel-heading{color:#FC4A64}.panel-success{border:2px solid #97d271}.panel-success .panel-heading{color:#97d271}.panel-warning{border:2px solid #FFC107}.panel-warning .panel-heading{color:#FFC107}.panel.profile{position:relative}.panel.profile .controls{position:absolute;top:10px;right:10px}.panel.members .panel-body a img,.panel.groups .panel-body a img,.panel.follower .panel-body a img,.panel.spaces .panel-body a img{margin-bottom:5px}.panel-profile .panel-profile-header{position:relative;border:3px solid #fff;border-top-right-radius:3px;border-top-left-radius:3px}.panel-profile .panel-profile-header .img-profile-header-background{border-radius:3px;min-height:110px}.panel-profile .panel-profile-header .img-profile-data{position:absolute;height:100px;width:100%;bottom:0;left:0;padding-left:180px;padding-top:30px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;color:#fff;pointer-events:none;background:-moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(1%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0.38)));background:-webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);background:-o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);background:-ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);background:linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,0.38) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#94000000', GradientType=0)}.panel-profile .panel-profile-header .img-profile-data h1{font-size:30px;font-weight:100;margin-bottom:7px;color:#fff;max-width:600px;white-space:nowrap;text-overflow:ellipsis}.panel-profile .panel-profile-header .img-profile-data h2{font-size:16px;font-weight:400;margin-top:0}.panel-profile .panel-profile-header .img-profile-data h1.space{font-size:30px;font-weight:700}.panel-profile .panel-profile-header .img-profile-data h2.space{font-size:13px;font-weight:300;max-width:600px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.panel-profile .panel-profile-header .profile-user-photo-container{position:absolute;bottom:-50px;left:15px}.panel-profile .panel-profile-header .profile-user-photo-container .profile-user-photo{border:3px solid #fff;border-radius:5px}.panel-profile .panel-profile-controls{padding-left:160px}.panel.pulse,.panel.fadeIn{-webkit-animation-duration:200ms;-moz-animation-duration:200ms;animation-duration:200ms}@media (max-width:767px){.panel-profile-controls{padding-left:0 !important;padding-top:50px}.panel-profile .panel-profile-header .img-profile-data h1{font-size:20px !important;margin-bottom:2px}}.panel-body>.tab-menu{margin-left:-10px;margin-right:-10px}.installer .logo{text-align:center}.installer h2{font-weight:100}.installer .panel{margin-top:50px}.installer .panel h3{margin-top:0}.installer .powered,.installer .powered a{color:#bac2c7 !important;margin-top:10px;font-size:12px}.installer .fa{width:18px}.installer .check-ok{color:#97d271}.installer .check-warning{color:#FFC107}.installer .check-error{color:#FC4A64}.installer .prerequisites-list ul{list-style:none;padding-left:15px}.installer .prerequisites-list ul li{padding-bottom:5px}.pagination-container{text-align:center}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{background-color:#435f6f;border-color:#435f6f}.pagination>li>a,.pagination>li>span,.pagination>li>a:hover,.pagination>li>a:active,.pagination>li>a:focus{color:#000;cursor:pointer}.well-small{padding:10px;border-radius:3px}.well{border:none;box-shadow:none;background-color:#f5f5f5;margin-bottom:1px}.well hr{margin:10px 0;border-top:1px solid #d9d9d9}.well table>thead{font-size:11px}.tab-sub-menu{padding-left:10px}.tab-sub-menu li>a:hover,.tab-sub-menu li>a:focus{background-color:#f7f7f7;border-bottom-color:#ddd}.tab-sub-menu li.active>a{background-color:#fff;border-bottom-color:transparent}.nav-tabs>li>a,.nav-tabs>li>a[data-toggle]{color:#555}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus,.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{color:#000}.tab-menu{padding-top:10px;background-color:#fff}.tab-menu .nav-tabs{padding-left:10px}.tab-menu .nav-tabs li>a{padding-top:12px;border-color:#ddd;border-bottom:1px solid #ddd;background-color:#f7f7f7;max-height:41px;outline:none}.tab-menu .nav-tabs li>a:hover,.tab-menu .nav-tabs li>a:focus{padding-top:10px;border-top:3px solid #ddd}.tab-menu .nav-tabs li>a:hover{background-color:#f7f7f7}.tab-menu .nav-tabs li.active>a,.tab-menu .nav-tabs li.active>a:hover{padding-top:10px;border-top:3px solid #21A1B3}.tab-menu .nav-tabs li.active>a{background-color:#fff;border-bottom-color:transparent}ul.tab-menu{padding-top:10px;background-color:#fff;padding-left:10px}ul.tab-menu-settings li>a{padding-top:12px;border-color:#ddd;border-bottom:1px solid #ddd;background-color:#f7f7f7;max-height:41px;outline:none}ul.tab-menu-settings li>a:hover,ul.tab-menu-settings li>a:focus{padding-top:10px;border-top:3px solid #ddd !important}ul.tab-menu-settings li>a:hover{background-color:#f7f7f7}ul.tab-menu-settings li.active>a,ul.tab-menu-settings li.active>a:hover,ul.tab-menu-settings li.active>a:focus{padding-top:10px;border-top:3px solid #21A1B3 !important}ul.tab-menu-settings li.active>a{background-color:#fff;border-bottom-color:transparent !important}.nav-pills .dropdown-menu,.nav-tabs .dropdown-menu,.account .dropdown-menu{background-color:#435f6f;border:none}.nav-pills .dropdown-menu li.divider,.nav-tabs .dropdown-menu li.divider,.account .dropdown-menu li.divider{background-color:#39515f;border-bottom:none;margin:9px 1px !important}.nav-pills .dropdown-menu li,.nav-tabs .dropdown-menu li,.account .dropdown-menu li{border-left:3px solid #435f6f}.nav-pills .dropdown-menu li a,.nav-tabs .dropdown-menu li a,.account .dropdown-menu li a{color:white;font-weight:400;font-size:13px;padding:4px 15px}.nav-pills .dropdown-menu li a i,.nav-tabs .dropdown-menu li a i,.account .dropdown-menu li a i{margin-right:5px;font-size:14px;display:inline-block;width:14px}.nav-pills .dropdown-menu li a:hover,.nav-tabs .dropdown-menu li a:hover,.account .dropdown-menu li a:hover,.nav-pills .dropdown-menu li a:visited,.nav-tabs .dropdown-menu li a:visited,.account .dropdown-menu li a:visited,.nav-pills .dropdown-menu li a:hover,.nav-tabs .dropdown-menu li a:hover,.account .dropdown-menu li a:hover,.nav-pills .dropdown-menu li a:focus,.nav-tabs .dropdown-menu li a:focus,.account .dropdown-menu li a:focus{background:none}.nav-pills .dropdown-menu li:hover,.nav-tabs .dropdown-menu li:hover,.account .dropdown-menu li:hover,.nav-pills .dropdown-menu li.selected,.nav-tabs .dropdown-menu li.selected,.account .dropdown-menu li.selected{border-left:3px solid #21A1B3;color:#fff !important;background-color:#39515f !important}.nav-pills.preferences .dropdown .dropdown-toggle i{color:#21A1B3;font-size:15px;font-weight:600}.nav-pills.preferences .dropdown.open .dropdown-toggle,.nav-pills.preferences .dropdown.open .dropdown-toggle:hover{background-color:#435f6f}.nav-pills.preferences .dropdown.open .dropdown-toggle i,.nav-pills.preferences .dropdown.open .dropdown-toggle:hover i{color:#fff}.nav-pills.preferences li.divider:last-of-type{display:none}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{background-color:#435f6f}.nav-tabs{margin-bottom:10px}.list-group a [class^="fa-"],.list-group a [class*=" fa-"]{display:inline-block;width:18px}.nav-pills.preferences{position:absolute;right:10px;top:10px}.nav-pills.preferences .dropdown .dropdown-toggle{padding:2px 5px}.nav-pills.preferences .dropdown.open .dropdown-toggle,.nav-pills.preferences .dropdown.open .dropdown-toggle:hover{color:white}.nav-tabs li{font-weight:600;font-size:12px}.tab-content .tab-pane a{color:#21A1B3}.tab-content .tab-pane .form-group{margin-bottom:5px}.nav-tabs.tabs-center li{float:none;display:inline-block}.nav-tabs.tabs-small li>a{padding:5px 7px}.nav .caret,.nav .caret:hover,.nav .caret:active{border-top-color:#000;border-bottom-color:#000;height:6.928px}.nav li.dropdown>a:hover .caret,.nav li.dropdown>a:active .caret{border-top-color:#000;border-bottom-color:#000}.nav .open>a .caret,.nav .open>a:hover .caret,.nav .open>a:focus .caret{border-top-color:#000;border-bottom-color:#000}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{border-color:#ededed;color:#000}.nav .open>a .caret,.nav .open>a:hover .caret,.nav .open>a:focus .caret{color:#000}.footer-nav{filter:opacity(.6);font-size:12px;text-align:center}@media (max-width:991px){.controls-header{text-align:left !important}}.btn{float:none;border:none;-webkit-box-shadow:none;box-shadow:none;-moz-box-shadow:none;background-image:none;text-shadow:none;border-radius:3px;outline:none !important;margin-bottom:0;font-size:14px;font-weight:600;padding:8px 16px}.input.btn{outline:none}.btn-lg{padding:16px 28px}.btn-sm{padding:4px 8px;font-size:12px}.btn-sm i{font-size:14px}.btn-xs{padding:1px 5px;font-size:12px}.btn-default{background:#f3f3f3;color:#7a7a7a !important}.btn-default:hover,.btn-default:focus{background:#eee;text-decoration:none;color:#7a7a7a}.btn-default:active,.btn-default.active{outline:0;background:#e6e6e6}.btn-default[disabled],.btn-default.disabled{background:#f8f8f8}.btn-default[disabled]:hover,.btn-default.disabled:hover,.btn-default[disabled]:focus,.btn-default.disabled:focus{background:#f8f8f8}.btn-default[disabled]:active,.btn-default.disabled:active,.btn-default[disabled].active,.btn-default.disabled.active{background:#f8f8f8}.btn-primary{background:#435f6f;color:#fff !important}.btn-primary:hover,.btn-primary:focus{background:#39515f;text-decoration:none}.btn-primary:active,.btn-primary.active{outline:0;border:1px solid #435f6f;padding:7px 15px;color:#435f6f !important;background:#fff !important;box-shadow:none}.btn-primary:active.btn-sm,.btn-primary.active.btn-sm{padding:3px 7px}.btn-primary:active.btn-xs,.btn-primary.active.btn-xs{padding:0 4px}.btn-primary.active:hover,.btn-primary.active:focus{border:1px solid #39515f;color:#39515f !important}.btn-primary[disabled],.btn-primary.disabled{background:#4d6d7f}.btn-primary[disabled]:hover,.btn-primary.disabled:hover,.btn-primary[disabled]:focus,.btn-primary.disabled:focus{background:#4d6d7f}.btn-primary[disabled]:active,.btn-primary.disabled:active,.btn-primary[disabled].active,.btn-primary.disabled.active{background:#4d6d7f !important}.btn-info{background:#21A1B3;color:#fff !important}.btn-info:hover,.btn-info:focus{background:#1d8e9d !important;text-decoration:none}.btn-info:active,.btn-info.active{outline:0;border:1px solid #21A1B3;padding:7px 15px;color:#21A1B3 !important;background:#fff !important;box-shadow:none}.btn-info:active.btn-sm,.btn-info.active.btn-sm{padding:3px 7px}.btn-info:active.btn-xs,.btn-info.active.btn-xs{padding:0 4px}.btn-info.active:hover,.btn-info.active:focus{border:1px solid #1d8e9d;color:#1d8e9d !important}.btn-info[disabled],.btn-info.disabled{background:#25b4c9}.btn-info[disabled]:hover,.btn-info.disabled:hover,.btn-info[disabled]:focus,.btn-info.disabled:focus{background:#25b4c9}.btn-info[disabled]:active,.btn-info.disabled:active,.btn-info[disabled].active,.btn-info.disabled.active{background:#25b4c9 !important}.btn-danger{background:#FC4A64;color:#fff !important}.btn-danger:hover,.btn-danger:focus{background:#fc314f;text-decoration:none}.btn-danger:active,.btn-danger.active{outline:0;background:#fc314f !important}.btn-danger[disabled],.btn-danger.disabled{background:#fc6379}.btn-danger[disabled]:hover,.btn-danger.disabled:hover,.btn-danger[disabled]:focus,.btn-danger.disabled:focus{background:#fc6379}.btn-danger[disabled]:active,.btn-danger.disabled:active,.btn-danger[disabled].active,.btn-danger.disabled.active{background:#fc6379 !important}.btn-success{background:#97d271;color:#fff !important}.btn-success:hover,.btn-success:focus{background:#89cc5e;text-decoration:none}.btn-success:active,.btn-success.active{outline:0;background:#89cc5e !important}.btn-success[disabled],.btn-success.disabled{background:#a5d884}.btn-success[disabled]:hover,.btn-success.disabled:hover,.btn-success[disabled]:focus,.btn-success.disabled:focus{background:#a5d884}.btn-success[disabled]:active,.btn-success.disabled:active,.btn-success[disabled].active,.btn-success.disabled.active{background:#a5d884 !important}.btn-warning{background:#FFC107;color:#fff !important}.btn-warning:hover,.btn-warning:focus{background:#fcbd00;text-decoration:none}.btn-warning:active,.btn-warning.active{outline:0;background:#fcbd00 !important}.btn-warning[disabled],.btn-warning.disabled{background:#ffc721}.btn-warning[disabled]:hover,.btn-warning.disabled:hover,.btn-warning[disabled]:focus,.btn-warning.disabled:focus{background:#ffc721}.btn-warning[disabled]:active,.btn-warning.disabled:active,.btn-warning[disabled].active,.btn-warning.disabled.active{background:#ffc721 !important}.btn-link{color:#21A1B3 !important}.btn-link:hover,.btn-link:focus{color:#1f99aa;text-decoration:none}.btn-link:active,.btn-link.active{outline:0;color:#1f99aa !important}.btn-link[disabled],.btn-link.disabled{color:#25b4c9}.btn-link[disabled]:hover,.btn-link.disabled:hover,.btn-link[disabled]:focus,.btn-link.disabled:focus{color:#25b4c9}.btn-link[disabled]:active,.btn-link.disabled:active,.btn-link[disabled].active,.btn-link.disabled.active{color:#25b4c9 !important}.radio,.checkbox{margin-top:5px !important;margin-bottom:0}div.required>label:after{content:" *";color:#21A1B3}div.required.has-error>label:after{content:" *";color:#FC4A64}.radio label,.checkbox label{padding-left:10px}.form-control{border:2px solid #ededed;box-shadow:none;min-height:35px}.form-control:focus{border:2px solid #21A1B3;outline:0;box-shadow:none}.form-control.form-search{border-radius:30px;background-image:url("../img/icon_search16x16.png");background-repeat:no-repeat;background-position:10px 8px;padding-left:34px}.form-group-search{position:relative}.form-group-search .form-button-search{position:absolute;top:4px;right:4px;border-radius:30px}textarea{resize:none;height:1.5em}select.form-control:not([multiple]){-webkit-appearance:none;-moz-appearance:none;appearance:none;background-image:url("../img/select_arrow.png") !important;background-repeat:no-repeat;background-position:right 16px;overflow:hidden}label{font-weight:normal}div.PendingRegistrations thead>tr>th>label,div.PendingRegistrations tbody>tr>td>label{margin-bottom:0;height:17px}label.control-label{font-weight:bold}::placeholder{color:#bac2c7 !important}::-webkit-input-placeholder{color:#bac2c7 !important}::-moz-placeholder{color:#bac2c7 !important}:-ms-input-placeholder{color:#bac2c7 !important}input::-ms-clear,input::-ms-reveal{display:none}input:-moz-placeholder{color:#555555 !important}.placeholder{padding:10px}input.placeholder,textarea.placeholder{padding:0 0 0 10px;color:#999}.help-block-error{font-size:12px}.hint-block,.help-block:not(.help-block-error){color:#aeaeae !important;font-size:12px}.hint-block:hover,.help-block:not(.help-block-error):hover{color:#7a7a7a !important;font-size:12px}.input-group-addon{border:none}a.input-field-addon{font-size:12px;float:right;margin-top:-10px}a.input-field-addon-sm{font-size:11px;float:right;margin-top:-10px}.timeZoneInputContainer{padding-top:10px}.timeZoneInputContainer~.help-block{margin:0px}.regular-checkbox:focus+.regular-checkbox-box{border:2px solid #000 !important}.regular-checkbox:checked+.regular-checkbox-box{border:2px solid #21A1B3;background:#21A1B3;color:white}.regular-checkbox-box.disabled{background:#d7d7d7 !important;border:2px solid #d7d7d7 !important;cursor:not-allowed}.regular-radio:checked+.regular-radio-button:after{background:#21A1B3}.regular-radio:checked+.regular-radio-button{background-color:transparent;color:#99a1a7;border:2px solid #d7d7d7;margin-right:5px}.regular-radio.disabled{background:#d7d7d7 !important;border:2px solid #d7d7d7 !important;cursor:not-allowed}div.form-group div.checkbox .help-block{margin-left:33px}div.form-group div.checkbox .help-block.help-block-error:empty{display:none}.errorMessage{color:#FC4A64;padding:10px 0}.error{border-color:#FC4A64 !important}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#FC4A64 !important}.has-error .form-control,.has-error .form-control:focus{border-color:#FC4A64;-webkit-box-shadow:none;box-shadow:none}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#97d271}.has-success .form-control,.has-success .form-control:focus{border-color:#97d271;-webkit-box-shadow:none;box-shadow:none}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#FFC107}.has-warning .form-control,.has-warning .form-control:focus{border-color:#FFC107;-webkit-box-shadow:none;box-shadow:none}.bootstrap-timepicker-widget .form-control{padding:0}.form-collapsible-fields{margin-bottom:12px;border-left:3px solid #435f6f;background-color:#F4F4F4}.form-collapsible-fields-label{margin-bottom:0px;padding:12px}.form-collapsible-fields fieldset{padding-top:15px;padding-left:12px;padding-right:12px}.form-collapsible-fields.opened fieldset{display:block}.form-collapsible-fields.opened .iconClose{display:inline}.form-collapsible-fields.opened .iconOpen{display:none}.form-collapsible-fields.closed fieldset,.form-collapsible-fields.closed .iconClose{display:none}.form-collapsible-fields.closed .iconOpen{display:inline}#notification_overview_filter label{display:block}#notification_overview_list .img-space{position:absolute;top:25px;left:25px}@media (max-width:767px){.notifications{position:inherit !important;float:left !important}.notifications .dropdown-menu{width:300px !important;margin-left:0 !important}.notifications .dropdown-menu .arrow{margin-left:-142px !important}}.badge-space{margin-top:6px}.badge-space-chooser{padding:3px 5px;margin-left:1px}.badge{padding:3px 5px;border-radius:2px;font-weight:normal;font-family:Arial,sans-serif;font-size:10px !important;text-transform:uppercase;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:none;background-color:#d7d7d7;line-height:1}.popover{border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);-moz-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175)}.popover .popover-title{background:none;border-bottom:none;color:#000;font-weight:300;font-size:16px;padding:15px}.popover .popover-content{font-size:13px;padding:5px 15px;color:#000}.popover .popover-content a{color:#21A1B3}.popover .popover-content img{max-width:100%}.popover .popover-navigation{padding:15px}.panel-profile .panel-profile-header .image-upload-container{width:100%;height:100%;overflow:hidden}.panel-profile .panel-profile-header .image-upload-container #bannerfileupload{position:absolute;top:0;left:0;opacity:0;width:100%;height:100%}.panel-profile .panel-profile-header .img-profile-header-background{width:100%;max-height:192px}@media print{.panel-profile{display:none}}.list-group-item{padding:6px 15px;border:none;border-width:0 !important;border-left:3px solid #fff !important;font-size:12px;font-weight:600}.list-group-item i{font-size:14px}a.list-group-item:hover,a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#000;background-color:#f7f7f7;border-left:3px solid #21A1B3 !important}@media (max-width:991px){.list-group{margin-left:4px}.list-group-item{display:inline-block !important;border-radius:3px !important;margin:4px 0;margin-bottom:4px !important}.list-group-item{border:none !important}a.list-group-item:hover,a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{border:none !important;background:#435f6f !important;color:#fff !important}}.modal-backdrop{background-color:rgba(0,0,0,0.5)}.modal-dialog.fadeIn,.modal-dialog.pulse{-webkit-animation-duration:200ms;-moz-animation-duration:200ms;animation-duration:200ms}body.modal-open{height:100vh;overflow-y:hidden}@media screen and (max-width:768px){.modal-dialog{width:calc(100vw - 4px) !important}}.modal-top{z-index:999999 !important}.modal{overflow-y:visible}.modal.in{padding-right:0 !important}.modal-dialog-extra-small{width:400px}.modal-dialog-small{width:500px}.modal-dialog-normal{width:600px}.modal-dialog-medium{width:768px}.modal-dialog-large{width:900px}@media screen and (max-width:991px){.modal-dialog-large{width:auto !important;padding-top:30px;padding-bottom:30px}}.modal{border:none}.modal h1,.modal h2,.modal h3,.modal h4,.modal h5{margin-top:20px;color:#000;font-weight:300}.modal h4.media-heading{margin-top:0}.modal-title{font-size:20px;font-weight:200;color:#000}.modal-dialog,.modal-content{min-width:150px}.modal-content{-webkit-border-radius:3px;-moz-border-radius:3px;box-shadow:0 2px 26px rgba(0,0,0,0.3),0 0 0 1px rgba(0,0,0,0.1);-webkit-box-shadow:0 2px 26px rgba(0,0,0,0.3),0 0 0 1px rgba(0,0,0,0.1);-moz-box-shadow:0 2px 26px rgba(0,0,0,0.3),0 0 0 1px rgba(0,0,0,0.1);border:none}.modal-content .modal-header{padding:20px 20px 0;border-bottom:none;text-align:center}.modal-content .modal-header .close{margin-top:2px;margin-right:5px;opacity:1;color:#435f6f;font-size:28px}.modal-content .modal-header .close:hover{opacity:.9}.modal-content .modal-body{padding:20px;font-size:13px}.modal-content .modal-footer{margin-top:0;text-align:left;padding:10px 20px 30px;border-top:none;text-align:center}.modal-content .modal-footer hr{margin-top:0}.tooltip-inner{background-color:#435f6f;max-width:400px;text-align:left;padding:2px 8px 4px;font-size:12px;font-weight:bold;white-space:pre-wrap}.tooltip.top .tooltip-arrow{border-top-color:#435f6f}.tooltip.top-left .tooltip-arrow{border-top-color:#435f6f}.tooltip.top-right .tooltip-arrow{border-top-color:#435f6f}.tooltip.right .tooltip-arrow{border-right-color:#435f6f}.tooltip.left .tooltip-arrow{border-left-color:#435f6f}.tooltip.bottom .tooltip-arrow{border-bottom-color:#435f6f}.tooltip.bottom-left .tooltip-arrow{border-bottom-color:#435f6f}.tooltip.bottom-right .tooltip-arrow{border-bottom-color:#435f6f}.tooltip.in{opacity:1;filter:alpha(opacity=100)}.progress{height:10px;margin-bottom:15px;box-shadow:none;background:#ededed;border-radius:10px}.progress-bar-info{background-color:#21A1B3;-webkit-box-shadow:none;box-shadow:none}#nprogress .bar{height:2px;background:#27c0d5}table{margin-bottom:0 !important}table th{font-size:11px;color:#555555;font-weight:normal}table thead tr th{border:none !important}table .time{font-size:12px}table td a:hover{color:#21A1B3}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:10px 10px 10px 0}.table>thead>tr>th select,.table>tbody>tr>th select,.table>tfoot>tr>th select,.table>thead>tr>td select,.table>tbody>tr>td select,.table>tfoot>tr>td select{font-size:12px;padding:4px 8px;height:30px;margin:0}.table-middle>thead>tr>th,.table-middle>tbody>tr>th,.table-middle>tfoot>tr>th,.table-middle>thead>tr>td,.table-middle>tbody>tr>td,.table-middle>tfoot>tr>td{vertical-align:middle !important}@media (max-width:767px){.table-responsive>.table>tbody>tr>td.notification-type{white-space:normal}}.comment-container{margin-top:10px}.comment-container .wall-entry-controls{margin-left:35px}@media (max-width:767px){.comment .post-files img{height:100px}}.comment .media{position:relative !important;margin-top:0}.comment .media .nav-pills.preferences{display:none;right:-3px}.comment .media.comment-current{background:rgba(255,193,7,0.25);padding:0 5px 5px 5px;margin:0 -5px -5px -5px;border-radius:3px}.comment .media.comment-current hr{position:relative;top:-6px}.comment .media.comment-current:first-of-type{padding-top:5px;margin-top:-5px}.comment .media.comment-current:first-of-type>.nav.preferences{margin-top:10px}.comment .media.comment-current>.nav.preferences{margin-right:10px}.comment .comment-blocked-user img[data-contentcontainer-id]{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.comment .media-body{overflow:visible}.comment .jp-progress{background-color:#dbdcdd !important}.comment .jp-play-bar{background:#cacaca}.comment .post-file-list{background-color:#ededed}.comment.guest-mode .media:last-child .wall-entry-controls{margin-bottom:0;margin-left:35px}.comment.guest-mode .media:last-child hr{display:none}.comment_create .comment-create-input-group,.content_edit .comment-create-input-group,.comment_create .post-richtext-input-group,.content_edit .post-richtext-input-group{display:flex;align-items:flex-end}.comment_create .comment-create-input-group .field-comment-message,.content_edit .comment-create-input-group .field-comment-message,.comment_create .post-richtext-input-group .field-comment-message,.content_edit .post-richtext-input-group .field-comment-message,.comment_create .comment-create-input-group .field-post-message,.content_edit .comment-create-input-group .field-post-message,.comment_create .post-richtext-input-group .field-post-message,.content_edit .post-richtext-input-group .field-post-message{flex-grow:1;flex-basis:min-content}.comment_create .comment-create-input-group .field-comment-message [data-ui-markdown],.content_edit .comment-create-input-group .field-comment-message [data-ui-markdown],.comment_create .post-richtext-input-group .field-comment-message [data-ui-markdown],.content_edit .post-richtext-input-group .field-comment-message [data-ui-markdown],.comment_create .comment-create-input-group .field-post-message [data-ui-markdown],.content_edit .comment-create-input-group .field-post-message [data-ui-markdown],.comment_create .post-richtext-input-group .field-post-message [data-ui-markdown],.content_edit .post-richtext-input-group .field-post-message [data-ui-markdown]{word-break:break-word !important}.comment_create .comment-create-input-group .form-group,.content_edit .comment-create-input-group .form-group,.comment_create .post-richtext-input-group .form-group,.content_edit .post-richtext-input-group .form-group,.comment_create .comment-create-input-group .help-block,.content_edit .comment-create-input-group .help-block,.comment_create .post-richtext-input-group .help-block,.content_edit .post-richtext-input-group .help-block{margin:0}.comment_create .comment-buttons,.content_edit .comment-buttons{white-space:nowrap;padding-bottom:6px}.comment_create .comment-buttons .btn:not(.dropdown-toggle),.content_edit .comment-buttons .btn:not(.dropdown-toggle){margin-left:6px}.comment_create .comment-buttons .btn.fileinput-button,.content_edit .comment-buttons .btn.fileinput-button,.comment_create .comment-buttons .fileinput-button+.dropdown-toggle,.content_edit .comment-buttons .fileinput-button+.dropdown-toggle{background-color:rgba(33,161,179,0.6)}.comment_create .comment-buttons .btn.dropdown-toggle,.content_edit .comment-buttons .btn.dropdown-toggle{margin-left:0}.comment_create .has-error+.comment-buttons,.content_edit .has-error+.comment-buttons{padding-bottom:22px}.comment_create .fileinput-button:active,.content_edit .fileinput-button:active{box-shadow:none !important}@media (max-width:414px){.comment_create .comment-create-input-group,.content_edit .comment-create-input-group,.comment_create .post-richtext-input-group,.content_edit .post-richtext-input-group{flex-direction:column}.comment_create .comment-create-input-group .field-comment-message,.content_edit .comment-create-input-group .field-comment-message,.comment_create .post-richtext-input-group .field-comment-message,.content_edit .post-richtext-input-group .field-comment-message,.comment_create .comment-create-input-group .field-post-message,.content_edit .comment-create-input-group .field-post-message,.comment_create .post-richtext-input-group .field-post-message,.content_edit .post-richtext-input-group .field-post-message{width:100%}.comment_create .comment-buttons,.content_edit .comment-buttons{padding-bottom:0 !important;padding-top:6px}}.comment-container .content_edit{margin-left:35px}.comment-container .media{overflow:visible}.comment-container [data-ui-richtext] pre,.comment-container [data-ui-richtext] pre code.hljs{background-color:#eaeaea}.comment_edit_content{margin-left:35px;margin-top:0}.comment-message{overflow:hidden;word-wrap:break-word;overflow-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.comment-create-input-group.scrollActive .comment-buttons{right:22px}.comment .media .media-body h4.media-heading a{font-size:13px;color:#000;margin-bottom:3px;font-weight:500}div.comment>div.media:first-of-type hr.comment-separator{display:none}div.comment>div.media:first-of-type .nav-pills.preferences{display:none;top:-3px}hr.comments-start-separator{margin-top:10px}div.nested-comments-root{margin-left:28px}div.nested-comments-root .ProseMirror-menubar-wrapper{z-index:210}div.nested-comments-root hr.comment-separator{display:inherit !important}div.nested-comments-root hr.comments-start-separator{display:none}div.nested-comments-root a.show-all-link{margin-top:10px}div.nested-comments-root div.comment .media{position:relative !important;margin-top:0}div.nested-comments-root div.comment .media .nav-pills.preferences{display:none;top:8px;right:0}div.nested-comments-root div.comment-container{margin-top:0;padding-bottom:0;padding-top:0}.grid-view img{width:24px;height:24px}.grid-view .filters input,.grid-view .filters select{border:2px solid #ededed;box-shadow:none;min-height:35px;border-radius:4px;font-size:12px;padding:4px}.grid-view .filters input:focus,.grid-view .filters select:focus{border:2px solid #21A1B3;outline:0;box-shadow:none}.grid-view{padding:15px 0 0}.grid-view img{border-radius:3px}.grid-view table th{font-size:13px !important;font-weight:bold !important}.grid-view table td{vertical-align:middle !important}.grid-view table tr{font-size:13px !important}.grid-view table thead tr th:first-of-type{padding-left:5px}.grid-view table tbody tr{height:50px}.grid-view table tbody tr td:first-of-type{padding-left:5px}.grid-view .summary{font-size:12px;color:#bac2c7}.permission-grid-editor>.table>tbody>tr:first-child>td{border:none}.permission-grid-editor{padding-top:0px}.detail-view td,.detail-view th{padding:8px !important}.detail-view th{font-size:13px}.oembed_snippet[data-oembed-provider="youtube.com"],.oembed_snippet{margin-top:10px;position:relative;padding-bottom:55%;padding-top:15px;overflow:hidden}.oembed_snippet[data-oembed-provider="twitter.com"]{padding-bottom:0 !important;padding-top:0;margin-top:0}.oembed_snippet iframe{position:absolute;top:0;left:0;width:100%;height:100%}.oembed_confirmation{background:#feebb4;border-radius:4px;padding:15px;line-height:30px}.oembed_confirmation i.fa{float:left;color:#02a0b0;background:#FFF;border-radius:50%;font-size:30px;line-height:25px;margin-right:15px}.oembed_confirmation>div:not(.clearfix){float:left}.oembed_confirmation .regular-checkbox-box{top:6px}.oembed_confirmation .regular-checkbox:not(:checked)+.regular-checkbox-box{background:#FFF}.oembed_confirmation .regular-checkbox:checked+.regular-checkbox-box:after{top:-8px}#oembed-providers{width:100%;display:flex;flex-direction:row;justify-content:left;align-items:center;flex-wrap:wrap;margin:0 -0.5rem}#oembed-providers .oembed-provider-container{padding:0}#oembed-providers .oembed-provider-container .oembed-provider{display:flex;flex-direction:row;justify-content:space-between;align-items:center;border:1px solid #ddd;border-radius:2px;padding:.75rem;margin:0 .5rem .5rem .5rem}#oembed-providers .oembed-provider-container .oembed-provider .oembed-provider-name{display:flex;justify-content:center;align-items:center}#oembed-providers .oembed-provider-container .oembed-provider .oembed-provider-name .label.label-error{margin-left:2px}#endpoint-parameters{display:flex;flex-direction:row;justify-content:left;align-items:center;flex-wrap:wrap;margin:0 -15px}.activities{max-height:400px;overflow:auto}.activities li.activity-entry{padding:0}.activities li .media{position:relative;padding:10px}.activities li .media .img-space{position:absolute;top:24px;left:24px}.activities li .media .media-body{max-width:295px}.contentForm_options{margin-top:10px;min-height:29px}.contentForm_options .btn_container{position:relative}.contentForm_options .btn_container .label-public{position:absolute;right:40px;top:11px}#content-topic-bar{margin-top:5px;text-align:right}#content-topic-bar .label{margin-left:4px}#contentFormError{color:#FC4A64;padding-left:0;list-style:none}.placeholder-empty-stream{background-image:url("../img/placeholder-postform-arrow.png");background-repeat:no-repeat;padding:37px 0 0 70px;margin-left:90px}#streamUpdateBadge{text-align:center;z-index:9999;margin-bottom:15px;margin-top:15px}#streamUpdateBadge .label{border-radius:10px;font-size:.8em !important;padding:5px 10px}#wallStream .back_button_holder{padding-bottom:15px}.wall-entry{position:relative}.wall-entry .panel .panel-body{padding:10px}.wall-entry .wall-entry-header{color:#000;position:relative;padding-bottom:10px;margin-bottom:10px;border-bottom:1px solid #eeeeee}.wall-entry .wall-entry-header .img-space{top:25px;left:25px}.wall-entry .wall-entry-header .wall-entry-container-link{color:#21A1B3}.wall-entry .wall-entry-header .stream-entry-icon-list{position:absolute;top:0;right:25px;display:inline-block;padding-top:2px}.wall-entry .wall-entry-header .stream-entry-icon-list i{padding-right:5px}.wall-entry .wall-entry-header .stream-entry-icon-list .icon-pin{color:#FC4A64}.wall-entry .wall-entry-header .stream-entry-icon-list .fa-archive{color:#FFC107}.wall-entry .wall-entry-header .wall-entry-header-image{display:table-cell;width:40px;padding-right:10px}.wall-entry .wall-entry-header .wall-entry-header-image .fa{font-size:2.39em;color:#21A1B3;margin-top:5px}.wall-entry .wall-entry-header .wall-entry-header-info{display:table-cell;padding-right:30px;width:100%}.wall-entry .wall-entry-header .wall-entry-header-info .media-heading{font-size:15px;padding-top:1px;margin-bottom:3px}.wall-entry .wall-entry-header .wall-entry-header-info i.archived{color:#FFC107}.wall-entry .wall-entry-header .preferences{position:absolute;right:0;top:0}.wall-entry .wall-entry-header .media-subheading i.fa-caret-right{margin:0 2px}.wall-entry .wall-entry-header .media-subheading .wall-entry-icons{display:inline-block}.wall-entry .wall-entry-header .media-subheading .wall-entry-icons i{margin-right:2px}.wall-entry .wall-entry-header .media-subheading .time,.wall-entry .wall-entry-header .media-subheading i,.wall-entry .wall-entry-header .media-subheading span{font-size:11px;white-space:nowrap}.wall-entry .wall-entry-body{padding-left:50px}.wall-entry .wall-entry-body .wall-entry-content{margin-bottom:5px}.wall-entry .wall-entry-body .wall-entry-content .post-short-text{font-size:1.6em}.wall-entry .wall-entry-body .wall-entry-content .post-short-text .emoji{width:20px}.wall-entry .wall-entry-body audio,.wall-entry .wall-entry-body video{width:100%}.wall-entry .wall-stream-footer .wall-stream-addons .files{margin-bottom:5px}.wall-entry .content a{color:#21A1B3}.wall-entry .content img{max-width:100%}.wall-entry .media{overflow:visible}.wall-entry .well{margin-bottom:0}.wall-entry .well .comment .show-all-link{font-size:12px;cursor:pointer}.wall-entry .media-heading{font-size:14px;padding-top:1px;margin-bottom:3px}.wall-entry .media-heading .labels{padding-right:32px}.wall-entry .media-heading .viaLink{font-size:13px}.wall-entry .media-heading .viaLink i{color:#555555;padding-left:4px;padding-right:4px}.wall-entry .media-subheading{color:#555555;font-size:12px}.wall-entry .media-subheading .time{font-size:12px;white-space:nowrap}.wall-entry [data-ui-richtext] h1{font-size:1.45em;font-weight:normal}.wall-entry [data-ui-richtext] h2{font-size:1.3em;font-weight:normal}.wall-entry [data-ui-richtext] h3{font-size:1.2em;font-weight:normal}.wall-entry [data-ui-richtext] h4{font-size:1.1em;font-weight:normal}.wall-entry [data-ui-richtext] h5{font-size:1em;font-weight:normal}.wall-entry [data-ui-richtext] h6{font-size:.85em;font-weight:normal}@media (max-width:767px){.wall-entry .wall-entry-body{padding-left:0}#wallStream .back_button_holder{padding-bottom:5px;text-align:center}}.wall-entry-controls a{font-size:11px;color:#21A1B3 !important;margin-top:10px;margin-bottom:0}#wall-stream-filter-nav{font-size:12px;margin-bottom:10px;padding-top:2px;border-radius:0 0 4px 4px}#wall-stream-filter-nav .wall-stream-filter-root{margin:0;border:0 !important}#wall-stream-filter-nav .filter-panel{padding:0 10px}#wall-stream-filter-nav .wall-stream-filter-head{padding:5px 5px 10px 5px;border-bottom:1px solid #ddd}#wall-stream-filter-nav .wall-stream-filter-body{overflow:hidden;background-color:#f7f7f7;border:1px solid #ddd;border-top:0;border-radius:0 0 4px 4px}#wall-stream-filter-nav hr{margin:5px 0 0 0}#wall-stream-filter-nav .topic-remove-label{float:left}#wall-stream-filter-nav .topic-remove-label,#wall-stream-filter-nav .content-type-remove-label{margin-right:6px}#wall-stream-filter-nav .select2{width:260px !important;margin-bottom:5px;margin-top:2px}#wall-stream-filter-nav .select2 .select2-search__field{height:25px !important}#wall-stream-filter-nav .select2 .select2-selection__choice{height:23px !important}#wall-stream-filter-nav .select2 .select2-selection__choice span,#wall-stream-filter-nav .select2 .select2-selection__choice i{line-height:19px !important}#wall-stream-filter-nav .select2 .select2-selection__choice .img-rounded{width:18px !important;height:18px !important}#wall-stream-filter-nav .wall-stream-filter-bar{display:inline;float:right;white-space:normal}#wall-stream-filter-nav .wall-stream-filter-bar .label{height:18px;padding-top:4px;background-color:#fff}#wall-stream-filter-nav .wall-stream-filter-bar .btn,#wall-stream-filter-nav .wall-stream-filter-bar .label{box-shadow:0 0 2px #7a7a7a;-webkit-box-shadow:0 0 2px #7a7a7a;-moz-box-shadow:0 0 2px #7a7a7a}@media (max-width:767px){#wall-stream-filter-nav{margin-bottom:5px}#wall-stream-filter-nav .wall-stream-filter-root{white-space:nowrap}#wall-stream-filter-nav .wall-stream-filter-body{overflow:auto}}.filter-root{margin:15px}.filter-root .row{display:table !important}.filter-root .filter-panel{padding:0 5px;display:table-cell !important;float:none}.filter-root .filter-panel .filter-block strong{margin-bottom:5px}.filter-root .filter-panel .filter-block ul.filter-list{list-style:none;padding:0;margin:0 0 5px}.filter-root .filter-panel .filter-block ul.filter-list li{font-size:12px;padding:2px}.filter-root .filter-panel .filter-block ul.filter-list li a{color:#000}.filter-root .filter-panel div.filter-block:last-of-type ul.filter-list{margin:0}.filter-root .filter-panel+.filter-panel{border-left:2px solid #ededed}.stream-entry-loader{float:right;margin-top:5px}.load-suppressed{margin-top:-17px;margin-bottom:15px;text-align:center}.load-suppressed a{display:inline-block;background-color:white;padding:5px;border-radius:0 0 4px 4px;border:1px solid #ddd;font-size:11px}@media print{.wall-entry{page-break-inside:avoid}#wall-stream-filter-nav,#contentFormBody{display:none}}.space-owner{text-align:center;margin:14px 0;font-size:13px;color:#999}.space-member-sign{color:#97d271;position:absolute;top:42px;left:42px;font-size:16px;background:#fff;width:24px;height:24px;padding:2px 3px 1px 4px;border-radius:50px;border:2px solid #97d271}#space-menu-dropdown i.type{font-size:16px;color:#BFBFBF}#space-menu-spaces [data-space-chooser-item]{cursor:pointer}#space-menu-dropdown .input-group-addon{border-radius:0 4px 4px 0}#space-menu-dropdown .input-group-addon.focus{border-radius:0 4px 4px 0;border:2px solid #21A1B3;border-left:0}.input-group #space-menu-search{border-right:0}#space-menu-dropdown div:not(.input-group)>.search-reset{top:10px !important;right:15px !important}#space-directory-link i{margin-right:0}.space-acronym{color:#fff;text-align:center;display:inline-block}.current-space-image{margin-right:3px;margin-top:3px}@media (max-width:767px){#space-menu>.title{display:none}#space-menu-dropdown{width:300px !important}}.files,#postFormFiles_list{padding-left:0}ul.files{list-style:none;margin:0 0 5px;padding:0}ul.files li.file-preview-item{padding-left:24px;display:none}ul.files li.file-preview-item .file-fileInfo{padding-right:20px}.contentForm-upload-list{padding-left:0}.contentForm-upload-list li:first-child{margin-top:10px}.file_upload_remove_link,.file_upload_remove_link:hover{color:#FC4A64;cursor:pointer}.file-preview-item{text-overflow:ellipsis;overflow:hidden}.post-files{margin-top:10px;margin-bottom:10px}.post-files video{border-radius:4px}.post-files .jp-audio{margin-bottom:10px}.post-files .col-media{padding-left:0 !important;padding-right:0 !important}.post-files img{vertical-align:top;padding:2px;height:150px;width:100%;object-fit:cover;border-radius:4px}@media (max-width:650px){.post-files img{height:100px}}.post-file-list{padding:10px;padding-bottom:1px;margin-bottom:10px !important}.post-file-list a,.post-file-list a:active,.post-file-list a:focus,.post-file-list a:hover{color:#21A1B3}#wallStream.mobile .post-files{margin-top:10px;display:flex;overflow-x:auto}#wallStream.mobile .post-files img{max-width:190px;height:100px;width:auto}.file-preview-content{cursor:pointer}.image-upload-container{position:relative}.image-upload-container .image-upload-buttons{display:none;position:absolute;right:5px;bottom:5px}.image-upload-container input[type="file"]{position:absolute;opacity:0}.image-upload-container .image-upload-loader{display:none;position:absolute;top:0;left:0;width:100%;height:100%;padding:20px;background:#f8f8f8}.mime{background-repeat:no-repeat;background-position:0 0;padding:1px 0 4px 26px}.mime-word{background-image:url("../img/mime/word.png")}.mime-excel{background-image:url("../img/mime/excel.png")}.mime-powerpoint{background-image:url("../img/mime/powerpoint.png")}.mime-pdf{background-image:url("../img/mime/pdf.png")}.mime-zip{background-image:url("../img/mime/zip.png")}.mime-image{background-image:url("../img/mime/image.png")}.mime-file{background-image:url("../img/mime/file.png")}.mime-photoshop{background-image:url("../img/mime/photoshop.png")}.mime-illustrator{background-image:url("../img/mime/illustrator.png")}.mime-video{background-image:url("../img/mime/video.png")}.mime-audio{background-image:url("../img/mime/audio.png")}@media (max-width:480px){.jp-current-time{margin-left:0 !important}.jp-audio{width:auto !important;margin-left:0 !important}.jp-audio .jp-controls{padding:2px 12px 0 !important}.jp-audio .jp-progress{left:3px !important;top:45px !important;width:200px !important}.jp-audio .jp-volume-controls{position:absolute !important;top:15px !important;left:170px !important}.jp-audio .jp-time-holder{left:3px !important;top:60px !important;width:200px !important}.jp-audio .jp-toggles{left:210px !important;top:45px !important;width:auto !important}.jp-playlist ul{padding:0 0 0 0 !important}}div.jp-type-playlist div.jp-playlist a.jp-playlist-current,div.jp-type-playlist div.jp-playlist a:hover{color:#21A1B3 !important}.jp-details,.jp-playlist{border-top:1px solid #21A1B3}.jp-audio,.jp-audio-stream,.jp-video{border:1px solid #21A1B3}ul.tour-list{list-style:none;margin-bottom:0;padding-left:10px}ul.tour-list li{padding-top:5px}ul.tour-list li a{color:#21A1B3}ul.tour-list li a .fa{width:16px}ul.tour-list li.completed a{text-decoration:line-through;color:#555555}.atwho-view{position:absolute;top:0;left:0;display:none;margin-top:18px;background:white;color:#555555;font-size:14px;font-weight:400;border:1px solid #d7d7d7;border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);min-width:120px;max-width:265px;z-index:11110 !important;padding:5px 0}.atwho-view strong,.atwho-view b{font-weight:normal}.atwho-view ul li.hint{background:#fff !important;border-left:3px solid transparent !important;font-size:12px;color:#999}.atwho-view .cur small{color:red}.atwho-view strong{background-color:#f9f0d2}.atwho-view .cur strong{background-color:#f9f0d2}.atwho-view ul{list-style:none;padding:0;margin:auto}.atwho-view ul li{display:block;padding:5px 10px;border-left:3px solid transparent;padding:4px 15px 4px 8px;cursor:pointer}.atwho-view small{font-size:smaller;color:#777;font-weight:normal}.atwho-input.form-control{min-height:36px;height:auto;padding-right:95px;word-wrap:break-word}.atwho-input p{padding:0;margin:0}.atwho-placeholder{color:#bebebe !important}.atwho-emoji-entry{float:left;padding:4px !important;margin:0px !important;border:none !important}.atwho-emoji-entry:hover,.atwho-emoji-entry:active,.atwho-emoji-entry:focus{padding:4px !important;margin:0px !important;border:none !important;background-color:#f7f7f7 !important;border-radius:3px}.atwho-view .cur{border-left:3px solid #21A1B3;background-color:#f7f7f7 !important}.atwho-user,.atwho-space,.atwho-input a{color:#21A1B3}.atwho-input a:hover{color:#21A1B3}.atwho-view strong{background-color:#f9f0d2}.atwho-view .cur strong{background-color:#f9f0d2}.atwho-view span{padding:5px}.sk-spinner-three-bounce.sk-spinner{margin:0 auto;width:70px;text-align:center}.loader{padding:30px 0}.loader .sk-spinner-three-bounce div,.loader .sk-spinner-three-bounce span{width:12px;height:12px;background-color:#21A1B3;border-radius:100%;display:inline-block;-webkit-animation:sk-threeBounceDelay 1.4s infinite ease-in-out;animation:sk-threeBounceDelay 1.4s infinite ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both}.loader .sk-spinner-three-bounce .sk-bounce1{-webkit-animation-delay:-0.32s;animation-delay:-0.32s}.loader .sk-spinner-three-bounce .sk-bounce2{-webkit-animation-delay:-0.16s;animation-delay:-0.16s}@-webkit-keyframes sk-threeBounceDelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-threeBounceDelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}.loader-modal{padding:8px 0}.loader-postform{padding:9px 0}.loader-postform .sk-spinner-three-bounce.sk-spinner{text-align:left;margin:0}.md-editor.active{border:2px solid #21A1B3 !important}.md-editor textarea{padding:10px !important}.markdown-render,[data-ui-markdown],[data-ui-richtext]{overflow:hidden;overflow-wrap:break-word;line-height:1.57}.markdown-render h1,[data-ui-markdown] h1,[data-ui-richtext] h1,.markdown-render h2,[data-ui-markdown] h2,[data-ui-richtext] h2,.markdown-render h3,[data-ui-markdown] h3,[data-ui-richtext] h3,.markdown-render h4,[data-ui-markdown] h4,[data-ui-richtext] h4,.markdown-render h5,[data-ui-markdown] h5,[data-ui-richtext] h5,.markdown-render h6,[data-ui-markdown] h6,[data-ui-richtext] h6{text-align:start;font-weight:normal;margin:1.2em 0 .8em;color:#555}.markdown-render h1:first-child,[data-ui-markdown] h1:first-child,[data-ui-richtext] h1:first-child,.markdown-render h2:first-child,[data-ui-markdown] h2:first-child,[data-ui-richtext] h2:first-child,.markdown-render h3:first-child,[data-ui-markdown] h3:first-child,[data-ui-richtext] h3:first-child,.markdown-render h4:first-child,[data-ui-markdown] h4:first-child,[data-ui-richtext] h4:first-child,.markdown-render h5:first-child,[data-ui-markdown] h5:first-child,[data-ui-richtext] h5:first-child,.markdown-render h6:first-child,[data-ui-markdown] h6:first-child,[data-ui-richtext] h6:first-child{margin:0 0 .8em}.markdown-render h1,[data-ui-markdown] h1,[data-ui-richtext] h1{font-size:1.7em}.markdown-render h2,[data-ui-markdown] h2,[data-ui-richtext] h2{font-size:1.5em}.markdown-render h3,[data-ui-markdown] h3,[data-ui-richtext] h3{font-size:1.2em}.markdown-render h4,[data-ui-markdown] h4,[data-ui-richtext] h4{font-size:1.1em}.markdown-render h5,[data-ui-markdown] h5,[data-ui-richtext] h5{font-size:1em}.markdown-render h6,[data-ui-markdown] h6,[data-ui-richtext] h6{font-size:.85em}.markdown-render p,[data-ui-markdown] p,[data-ui-richtext] p,.markdown-render pre,[data-ui-markdown] pre,[data-ui-richtext] pre,.markdown-render blockquote,[data-ui-markdown] blockquote,[data-ui-richtext] blockquote,.markdown-render ul,[data-ui-markdown] ul,[data-ui-richtext] ul,.markdown-render ol,[data-ui-markdown] ol,[data-ui-richtext] ol{margin:0 0 1.2em}.markdown-render li ul,[data-ui-markdown] li ul,[data-ui-richtext] li ul,.markdown-render li ol,[data-ui-markdown] li ol,[data-ui-richtext] li ol{margin:0}.markdown-render p:last-child,[data-ui-markdown] p:last-child,[data-ui-richtext] p:last-child{margin:0}.markdown-render pre,[data-ui-markdown] pre,[data-ui-richtext] pre{padding:0;border:none;background-color:#f7f7f7}.markdown-render pre code,[data-ui-markdown] pre code,[data-ui-richtext] pre code{background-color:#f7f7f7;color:#555}.markdown-render code,[data-ui-markdown] code,[data-ui-richtext] code{background-color:#dbf5f8;color:#197a88}.markdown-render blockquote,[data-ui-markdown] blockquote,[data-ui-richtext] blockquote{background-color:rgba(128,128,128,0.05);border-top-right-radius:5px;border-bottom-right-radius:5px;padding:15px 20px;font-size:1em;border-left:5px solid #435f6f}.markdown-render dt,[data-ui-markdown] dt,[data-ui-richtext] dt,.markdown-render dd,[data-ui-markdown] dd,[data-ui-richtext] dd{margin-top:5px;margin-bottom:5px;line-height:1.45}.markdown-render dt,[data-ui-markdown] dt,[data-ui-richtext] dt{font-weight:bold}.markdown-render dd,[data-ui-markdown] dd,[data-ui-richtext] dd{margin-left:40px}.markdown-render pre,[data-ui-markdown] pre,[data-ui-richtext] pre{text-align:start;border:0;padding:10px 20px;border-radius:0;border-left:2px solid #435f6f}.markdown-render pre code,[data-ui-markdown] pre code,[data-ui-richtext] pre code{white-space:pre !important}.markdown-render blockquote ul:last-child,[data-ui-markdown] blockquote ul:last-child,[data-ui-richtext] blockquote ul:last-child,.markdown-render blockquote ol:last-child,[data-ui-markdown] blockquote ol:last-child,[data-ui-richtext] blockquote ol:last-child{margin-bottom:0}.markdown-render ul,[data-ui-markdown] ul,[data-ui-richtext] ul,.markdown-render ol,[data-ui-markdown] ol,[data-ui-richtext] ol{margin-top:0;padding-left:30px}.markdown-render ul li p,[data-ui-markdown] ul li p,[data-ui-richtext] ul li p,.markdown-render ol li p,[data-ui-markdown] ol li p,[data-ui-richtext] ol li p{overflow:visible !important}.markdown-render .footnote,[data-ui-markdown] .footnote,[data-ui-richtext] .footnote{vertical-align:top;position:relative;top:-0.5em;font-size:.8em}.markdown-render .emoji,[data-ui-markdown] .emoji,[data-ui-richtext] .emoji{width:16px}.markdown-render a,[data-ui-markdown] a,[data-ui-richtext] a,.markdown-render a:visited,[data-ui-markdown] a:visited,[data-ui-richtext] a:visited{background-color:inherit;text-decoration:none;color:#21A1B3 !important}.markdown-render a.header-anchor,[data-ui-markdown] a.header-anchor,[data-ui-richtext] a.header-anchor{color:#555 !important}.markdown-render a.not-found,[data-ui-markdown] a.not-found,[data-ui-richtext] a.not-found{color:#FFC107}.markdown-render li,[data-ui-markdown] li,[data-ui-richtext] li{border:0 !important;background-color:transparent !important;padding:0;margin:5px 0}.markdown-render img:not(.center-block),[data-ui-markdown] img:not(.center-block),[data-ui-richtext] img:not(.center-block){max-width:100%}.markdown-render img.pull-right,[data-ui-markdown] img.pull-right,[data-ui-richtext] img.pull-right{margin:5px 0 0 10px}.markdown-render img.pull-left,[data-ui-markdown] img.pull-left,[data-ui-richtext] img.pull-left{margin:5px 10px 0 0}.markdown-render img.center-block,[data-ui-markdown] img.center-block,[data-ui-richtext] img.center-block{margin-top:5px;margin-bottom:5px}.markdown-render img[width='100%'],[data-ui-markdown] img[width='100%'],[data-ui-richtext] img[width='100%']{border-radius:4px}.markdown-render table,[data-ui-markdown] table,[data-ui-richtext] table{width:100%;font-size:1em;border:1px solid #d7d7d7;margin-bottom:1.2em !important}.markdown-render table th,[data-ui-markdown] table th,[data-ui-richtext] table th{font-size:1em;color:#fff !important;background-color:#435f6f}.markdown-render table th p,[data-ui-markdown] table th p,[data-ui-richtext] table th p{color:#fff !important}.markdown-render table td,[data-ui-markdown] table td,[data-ui-richtext] table td{padding:15px;border:1px solid #d7d7d7 !important}.markdown-render table th,[data-ui-markdown] table th,[data-ui-richtext] table th{padding:10px 15px;border:1px solid #d7d7d7 !important}@media (max-width:991px){.layout-sidebar-container{display:none}}.ui-widget-header{border:none !important;background:#fff !important;color:#7a7a7a !important;font-weight:300 !important}.ui-widget-content{border:1px solid #dddcda !important;border-radius:0 !important;background:#fff;color:#000 !important;-webkit-box-shadow:0 6px 6px rgba(0,0,0,0.1);box-shadow:0 6px 6px rgba(0,0,0,0.1)}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{opacity:.2}.ui-datepicker .ui-datepicker-prev:hover,.ui-datepicker .ui-datepicker-next:hover{background:#fff !important;border:none;margin:1px}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:none !important;background:#f7f7f7 !important;color:#7a7a7a !important}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:none !important;border:1px solid #b2b2b2 !important}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #21A1B3 !important;background:#6fd6e4 !important}.status-bar-body{color:white;position:fixed;width:100%;background-color:rgba(0,0,0,0.7);text-align:center;padding:20px;z-index:9999999;bottom:0px;display:block;line-height:20px}.status-bar-close{color:white;font-weight:bold;font-size:21px;cursor:pointer}.status-bar-close:hover{color:white}.status-bar-close i{vertical-align:top !important;padding-top:3px}.status-bar-content i{margin-right:10px;font-size:21px;vertical-align:middle}.status-bar-content .showMore{color:#21A1B3;float:right;margin-left:10px;font-size:.7em;cursor:pointer;vertical-align:middle;white-space:nowrap}.status-bar-content .status-bar-details{text-align:left;font-size:.7em;margin-top:20px;max-height:200px;overflow:auto}.status-bar-content span{vertical-align:middle}.status-bar-content i.error,.status-bar-content i.fatal{color:#FC4A64}.status-bar-content i.warning{color:#FFC107}.status-bar-content i.info,.status-bar-content i.debug{color:#21A1B3}.status-bar-content i.success{color:#85CA2B}.highlight{background-color:#fff8e0}.alert-default{color:#000;background-color:#f7f7f7;border-color:#ededed;font-size:13px}.alert-default .info{margin:10px 0}.alert-success{color:#84be5e;background-color:#f7fbf4;border-color:#97d271}.alert-warning{color:#e9b168;background-color:#fffbf7;border-color:#fdd198}.alert-danger{color:#ff8989;background-color:#fff6f6;border-color:#ff8989}.data-saved{padding-left:10px;color:#21A1B3}img.bounceIn{-webkit-animation-duration:800ms;-moz-animation-duration:800ms;animation-duration:800ms}.tags .tag{margin-top:5px;border-radius:2px;padding:4px 8px;text-transform:uppercase;max-width:150px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#user-tags-panel .tags .tag{max-width:250px}.label{text-transform:uppercase}.label{text-transform:uppercase;display:inline-block;padding:3px 5px 4px;font-weight:600;font-size:10px;color:white;vertical-align:baseline;white-space:nowrap;text-shadow:none}.label-default{background:#ededed;color:#7a7a7a !important}a.label-default:hover{background:#e0e0e0 !important}.label-info{background-color:#21A1B3}a.label-info:hover{background:#1d8e9d !important}.label-danger{background-color:#FC4A64}a.label-danger:hover{background:#fc314f !important}.label-success{background-color:#97d271}a.label-success:hover{background:#89cc5e !important}.label-warning{background-color:#FFC107}a.label-warning:hover{background:#ecb100 !important}.label-light{background-color:transparent;color:#7a7a7a;border:1px solid #bababa}.topic-label-list,.wall-entry-topics{margin-bottom:10px}.topic-label-list a,.wall-entry-topics a{margin-right:4px}.topic-label-list .label,.wall-entry-topics .label{padding:5px;border-radius:4px}.ProsemirrorEditor.fullscreen{position:fixed;top:0;left:0;width:100vw;height:calc(100vh - 3px);z-index:9998}.ProsemirrorEditor.fullscreen .ProseMirror-menubar-wrapper{height:100%}.ProsemirrorEditor.fullscreen .humhub-ui-richtext{max-height:none !important}.ProsemirrorEditor.fullscreen .ProseMirror{position:static;overflow:auto;height:calc(100% - 26px)}.ProsemirrorEditor.fullscreen .ProseMirror-menubar{position:static !important;top:0 !important;left:0 !important;margin:0 !important;width:100% !important}.login-container .ProsemirrorEditor.fullscreen,.modal-dialog .ProsemirrorEditor.fullscreen{width:100%;height:100%}.ProsemirrorEditor .ProseMirror{padding-right:12px}.ProsemirrorEditor .ProseMirror-menu{margin:0 -4px;line-height:1}.ProsemirrorEditor .ProseMirror-tooltip .ProseMirror-menu{width:-webkit-fit-content;width:fit-content;white-space:pre}.ProsemirrorEditor .ProseMirror-menuitem{margin-right:0;display:inline-block}.ProsemirrorEditor .ProseMirror-menuseparator{border-right:1px solid #ddd;margin-right:3px}.ProsemirrorEditor .ProseMirror-menubar-wrapper{z-index:200}.ProsemirrorEditor .ProseMirror-menuitem .ProseMirror-menu-group{border-right:1px solid #ddd}.ProsemirrorEditor .ProseMirror-menuitem .ProseMirror-menu-group.last{border-right:none}.ProsemirrorEditor .ProseMirror-menuitem .seperator{border-right:1px solid #ddd;margin-right:2px;padding-right:2px}.ProsemirrorEditor .ProseMirror-menu-dropdown,.ProsemirrorEditor .ProseMirror-menu-dropdown-menu{font-size:90%;white-space:nowrap}.ProsemirrorEditor .ProseMirror-menu-dropdown{cursor:pointer;position:relative;padding-right:15px !important}.ProsemirrorEditor .ProseMirror-menu-dropdown-wrap{padding:1px 0 1px 0;display:inline-block;position:relative}.ProsemirrorEditor .ProseMirror-menu-dropdown-right{right:0}.ProsemirrorEditor .ProseMirror-menu-dropdown:after{content:"";border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid currentColor;opacity:.6;position:absolute;right:4px;top:calc(50% - 2px)}.ProsemirrorEditor .ProseMirror-menu-submenu{border-top-right-radius:4px}.ProsemirrorEditor .ProseMirror-menu-dropdown-menu,.ProsemirrorEditor .ProseMirror-menu-submenu{position:absolute;background:white;color:#666;border:1px solid #aaa;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.ProsemirrorEditor .ProseMirror-menu-dropdown-menu{z-index:15;min-width:6em;margin-top:2px}.ProsemirrorEditor .ProseMirror-menu-dropdown-item{cursor:pointer}.ProsemirrorEditor .ProseMirror-menu-dropdown-item div[title],.ProsemirrorEditor .ProseMirror-menu-submenu-wrap{padding:4px}.ProsemirrorEditor .ProseMirror-menu-dropdown-item:hover{background:#f2f2f2}.ProsemirrorEditor .ProseMirror-menu-submenu-wrap{position:relative}.ProsemirrorEditor .ProseMirror-menu-submenu-label:after{content:"";border-top:4px solid transparent;border-bottom:4px solid transparent;border-left:4px solid currentColor;opacity:.6;position:absolute;right:4px;top:calc(50% - 4px)}.ProsemirrorEditor .ProseMirror-menu-submenu{display:none;min-width:4em;left:100%;top:0}.ProsemirrorEditor .ProseMirror-menu-active{background:#eee;border-radius:4px;border:1px solid #ededed !important}.ProsemirrorEditor .ProseMirror-menu-disabled{opacity:.3}.ProsemirrorEditor .ProseMirror-menu-submenu-wrap:hover .ProseMirror-menu-submenu,.ProsemirrorEditor .ProseMirror-menu-submenu-wrap-active .ProseMirror-menu-submenu{display:block}.ProsemirrorEditor .ProseMirror-icon{display:inline-block;line-height:.8;vertical-align:-2px;padding:1px 7px;cursor:pointer;border:1px solid transparent}.ProsemirrorEditor .ProseMirror-menu-disabled.ProseMirror-icon{cursor:default}.ProsemirrorEditor .ProseMirror-icon svg{fill:currentColor;height:1em}.ProsemirrorEditor .ProseMirror-icon span{vertical-align:text-top}.ProsemirrorEditor.plainMenu .ProseMirror{border-top-left-radius:0 !important;border-top-right-radius:0 !important;border-top-width:1px !important;min-height:100px}.ProsemirrorEditor.plainMenu .ProseMirror-menu-group{padding:5px}.ProsemirrorEditor.plainMenu .ProseMirror-menuitem .ProseMirror-menu-group{padding:2px}.ProsemirrorEditor.plainMenu .ProseMirror-menubar~.ProseMirror-focused{border-color:#21A1B3 !important}.ProsemirrorEditor.plainMenu .ProseMirror-textblock-dropdown{min-width:3em}.ProsemirrorEditor.plainMenu .ProseMirror-menubar-wrapper{z-index:8}.ProsemirrorEditor.plainMenu .ProseMirror-menubar{background-color:#f7f7f7;border-top-left-radius:4px;border-top-right-radius:4px;border:1px solid #ddd;position:relative;min-height:1em;color:#666;padding:1px 6px 1px 0;top:0;left:0;right:0;z-index:10;-moz-box-sizing:border-box;box-sizing:border-box;overflow:visible}.ProsemirrorEditor.focusMenu .form-control:focus{border-top-left-radius:0 !important}.ProsemirrorEditor.focusMenu .ProseMirror-menubar{display:table;min-height:1em;color:#666;padding:2px 6px;top:0;left:0;right:0;z-index:10;-moz-box-sizing:border-box;box-sizing:border-box;overflow:visible;margin-top:-25px;background:white;border:1px solid #aeaeae;border-bottom:0;border-top:1px solid #aeaeae;border-top-left-radius:4px;border-top-right-radius:4px;float:left}@-moz-document url-prefix(){.ProsemirrorEditor.focusMenu .ProseMirror-menubar{margin-top:-26px}}.ProsemirrorEditor .ProseMirror{position:relative;word-wrap:break-word;white-space:pre-wrap;-webkit-font-variant-ligatures:none;font-variant-ligatures:none}.ProsemirrorEditor .ProseMirror ul,.ProsemirrorEditor .ProseMirror ol{cursor:default}.ProsemirrorEditor .ProseMirror pre{white-space:pre-wrap}.ProsemirrorEditor .ProseMirror li{position:relative}.ProsemirrorEditor .ProseMirror img{max-width:100%}.ProsemirrorEditor .ProseMirror-hideselection *::selection{background:transparent}.ProsemirrorEditor .ProseMirror-hideselection *::-moz-selection{background:transparent}.ProsemirrorEditor .ProseMirror-selectednode{outline:2px dashed #8cf}.ProsemirrorEditor li.ProseMirror-selectednode{outline:none}.ProsemirrorEditor li.ProseMirror-selectednode:after{content:"";position:absolute;left:-32px;right:-2px;top:-2px;bottom:-2px;border:2px solid #8cf;pointer-events:none}.ProsemirrorEditor .ProseMirror-textblock-dropdown{min-width:3em}.ProsemirrorEditor .ProseMirror-menu{margin:0 -4px;line-height:1}.ProsemirrorEditor .ProseMirror-tooltip .ProseMirror-menu{width:-webkit-fit-content;width:fit-content;white-space:pre}.ProsemirrorEditor .ProseMirror-gapcursor{display:none;pointer-events:none;position:absolute}.ProsemirrorEditor .ProseMirror-gapcursor:after{content:"";display:block;position:absolute;top:-2px;width:20px;border-top:1px solid black;animation:ProseMirror-cursor-blink 1.1s steps(2, start) infinite}@keyframes ProseMirror-cursor-blink{to{visibility:hidden}}.ProsemirrorEditor .ProseMirror-focused .ProseMirror-gapcursor{display:block}.ProsemirrorEditor .ProseMirror-example-setup-style hr{padding:2px 10px;border:none;margin:1em 0}.ProsemirrorEditor .ProseMirror-example-setup-style hr:after{content:"";display:block;height:1px;background-color:silver;line-height:2px}.ProsemirrorEditor .ProseMirror-example-setup-style img{cursor:default}.ProsemirrorEditor .ProseMirror p{margin-top:1.2em}.ProsemirrorEditor .ProseMirror p:first-child{margin:0}.ProsemirrorEditor .ProseMirror>p:first-child+*{margin-top:1.2em}.ProsemirrorEditor .ProsemirrorEditor{position:relative}.ProsemirrorEditor .ProsemirrorEditor .ProseMirror{padding-right:12px !important}.ProsemirrorEditor .ProsemirrorEditor img{max-width:100%}.ProsemirrorEditor .ProseMirror h1:first-child,.ProsemirrorEditor .ProseMirror h2:first-child,.ProsemirrorEditor .ProseMirror h3:first-child,.ProsemirrorEditor .ProseMirror h4:first-child,.ProsemirrorEditor .ProseMirror h5:first-child,.ProsemirrorEditor .ProseMirror h6:first-child{margin-top:10px}.ProsemirrorEditor .ProseMirror [data-mention]{color:#21A1B3}.ProsemirrorEditor .ProseMirror{outline:none}.ProsemirrorEditor .ProseMirror [data-oembed]{font-size:0}.ProsemirrorEditor .ProseMirror iframe{pointer-events:none;display:block}.ProsemirrorEditor .ProseMirror p{margin-bottom:1em}.ProsemirrorEditor .ProseMirror-textblock-dropdown{min-width:3em}.ProsemirrorEditor .ProseMirror .placeholder{padding:0 !important;pointer-events:none;height:0}.ProsemirrorEditor .ProseMirror:focus .placeholder{display:none}.ProsemirrorEditor .ProseMirror .tableWrapper{overflow-x:auto}.ProsemirrorEditor .ProseMirror .column-resize-handle{position:absolute;right:-2px;top:0;bottom:0;width:4px;z-index:20;background-color:#adf;pointer-events:none}.ProsemirrorEditor .ProseMirror.resize-cursor{cursor:ew-resize;cursor:col-resize}.ProsemirrorEditor .ProseMirror .selectedCell:after{z-index:2;position:absolute;content:"";left:0;right:0;top:0;bottom:0;background:rgba(200,200,255,0.4);pointer-events:none}.ProsemirrorEditor .ProseMirror-menubar-wrapper{position:relative;outline:none}.ProsemirrorEditor .ProseMirror table{margin:0}.ProsemirrorEditor .ProseMirror .tableWrapper{margin:1em 0}.ProseMirror-prompt{background:white;padding:5px 10px 5px 15px;border:1px solid silver;position:fixed;border-radius:3px;min-width:300px;z-index:999999;box-shadow:-0.5px 2px 5px rgba(0,0,0,0.2)}.ProseMirror-prompt h5{font-weight:bold;font-size:100%;margin:15px 0}.ProseMirror-prompt input{margin-bottom:5px}.ProseMirror-prompt-close{position:absolute;left:2px;top:1px;color:#666;border:none;background:transparent;padding:0}.ProseMirror-prompt-close:after{content:"✕";font-size:12px}.ProseMirror-invalid{background:#ffc;border:1px solid #cc7;border-radius:4px;padding:5px 10px;position:absolute;min-width:10em}.ProseMirror-prompt-buttons{margin:15px 0;text-align:center}.atwho-view .cur{border-left:3px solid #59d6e4;background-color:#f7f7f7 !important}.atwho-user,.atwho-space,.atwho-input a{color:#59d6e4}.atwho-input a:hover{color:#59d6e4}.atwho-view strong{background-color:#f9f0d2}.atwho-view .cur strong{background-color:#f9f0d2}[data-emoji-category]{max-height:200px;display:block;position:relative;overflow:auto}[data-emoji-category] .atwho-emoji-entry{width:24px;height:28px;overflow:hidden}[data-emoji-category] .atwho-emoji-entry.cur{background-color:#ededed !important}.emoji-nav{padding-top:10px}.emoji-nav .emoji-nav-item{border-top:2px solid #fff8e0}.emoji-nav .emoji-nav-item.cur{border-left:0;border-top:2px solid #21A1B3}[data-ui-markdown],[data-ui-richtext]{overflow-x:auto;overflow-wrap:break-word}[data-ui-markdown] a,[data-ui-richtext] a{color:#21A1B3}#wallStream [data-ui-markdown],#wallStream [data-ui-richtext]{overflow-wrap:initial;word-break:initial;hyphens:initial}@media screen and (max-width:768px){.ProsemirrorEditor.focusMenu .form-control:focus{border-top-right-radius:0 !important}.ProsemirrorEditor.focusMenu .ProseMirror-menubar{min-height:1em;margin-top:0}.ProsemirrorEditor.focusMenu .humhub-ui-richtext{margin-top:0}}@media only screen and (max-width : 768px){body{padding-top:105px}.modal-open #layout-content>.container{overflow-x:unset}#layout-content .left-navigation .list-group{-webkit-overflow-scrolling:auto;white-space:nowrap;overflow-x:auto}#layout-content .left-navigation .list-group::-webkit-scrollbar{-webkit-appearance:none}#layout-content .left-navigation .list-group::-webkit-scrollbar:vertical{width:8px}#layout-content .left-navigation .list-group::-webkit-scrollbar:horizontal{height:8px}#layout-content .left-navigation .list-group::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,0.5);border-radius:10px;border:2px solid #ffffff}#layout-content .left-navigation .list-group::-webkit-scrollbar-track{border-radius:10px;background-color:#ffffff}#layout-content .table-responsive::-webkit-scrollbar{-webkit-appearance:none}#layout-content .table-responsive::-webkit-scrollbar:vertical{width:8px}#layout-content .table-responsive::-webkit-scrollbar:horizontal{height:8px}#layout-content .table-responsive::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,0.5);border-radius:10px;border:2px solid #ffffff}#layout-content .table-responsive::-webkit-scrollbar-track{border-radius:10px;background-color:#ffffff}#layout-content .panel{margin-bottom:5px}#layout-content .panel .statistics .entry{margin-left:10px}#layout-content>.container{padding-right:2px !important;padding-left:2px !important;overflow-x:hidden}#layout-content .layout-nav-container .panel-heading{display:none}#layout-content .panel-profile-header #profilefileupload,#layout-content .panel-profile-header .profile-user-photo-container,#layout-content .panel-profile-header .space-acronym,#layout-content .panel-profile-header .profile-user-photo{height:100px !important;width:100px !important}#layout-content .image-upload-container .image-upload-buttons{right:2px !important}#layout-content .space-acronym{padding:6px 0 !important}#layout-content .panel-profile .panel-profile-header .img-profile-header-background{min-height:80px !important}#layout-content .panel-profile .panel-profile-header .img-profile-data{padding-top:50px !important;padding-left:130px}.modal-dialog{width:calc(100vw - 4px) !important;padding:0 !important;margin:2px !important}.dropdown-menu>li a,.nav-pills .dropdown-menu li a,.nav-tabs .dropdown-menu li a,.account .dropdown-menu li a,.modal .dropdown-menu li a,.panel .dropdown-menu li a,.nav-tabs .dropdown-menu li a{padding-top:10px;padding-bottom:10px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.dropdown-menu{max-width:320px}select.form-control:not([multiple]){padding-right:23px;width:auto}.modal.in{padding-right:0 !important}.load-suppressed{margin-top:-8px;margin-bottom:5px}.ProsemirrorEditor .ProseMirror-menuitem{font-size:1.2em !important}}.icon-sm,.fa-sm{font-size:.875em}.icon-lg,.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-0.0667em}.icon-2x,.fa-2x{font-size:2em}.icon-3x,.fa-3x{font-size:3em}.icon-4x,.fa-4x{font-size:4em}.icon-5x,.fa-5x{font-size:5em}.icon-6x,.fa-6x{font-size:6em}.icon-7x,.fa-7x{font-size:7em}.icon-9x,.fa-9x{font-size:9em}.icon-10x,.fa-10x{font-size:10em}@media print{a[href]:after{content:none}body{padding-top:0}pre,blockquote{page-break-inside:avoid}.preferences,.layout-sidebar-container,.layout-nav-container,button{display:none !important}}@media (min-width:500px){.container-cards.container-fluid .card{width:50%}}@media (min-width:1000px){.container-cards.container-fluid .card{width:33.33333333%}}@media (min-width:1300px){.container-cards.container-fluid .card{width:25%}}@media (min-width:1600px){.container-cards.container-fluid .card{width:20%}}@media (min-width:1900px){.container-cards.container-fluid .card{width:16.66666667%}}.container-cards .form-search .row>div{padding-bottom:3px}.container-cards .form-search .form-search-filter-keyword{position:relative}.container-cards .form-search .form-search-filter-keyword .form-button-search{position:absolute;right:18px;margin-bottom:3px}.container-cards .form-search .form-control.form-search-filter{width:100%;height:40px;margin:3px 0 0;padding:8px 30px 10px 8px;border-radius:4px;border:solid 1px #c5c5c5}.container-cards .form-search .form-button-search{background:none;border:0;font-size:16px;color:#000;top:initial;bottom:9px}.container-cards .form-search .form-search-field-info{font-size:80%}.container-cards .form-search-reset{text-decoration:underline;display:block;margin-top:26px}.container-cards .form-search-reset:hover{text-decoration:none}.container-cards .form-search-filter-tags{padding-top:21px}.container-cards .form-search-filter-tags button{margin:10px 10px 0 0}.container-cards .form-search-filter-tags .btn.btn-info{padding-left:16px;padding-right:16px}.container-cards .form-search-filter-tags .btn.btn-info.active{background:#0397A8 !important;color:#FFF !important}.container-cards .form-search-filter-tags .btn.btn-info:not(.active){border:1px solid #435F6F;color:#435F6F !important;background:#FFF;padding:3px 14px}.container-cards .form-search-filter-tags .btn.btn-info:not(.active):hover{background:#0397A8 !important;border:1px solid #0397A8;color:#FFF !important}.container-cards .directory-filters-footer{display:flex;align-items:center;flex-wrap:wrap;margin:30px -10px -10px;padding:20px 5px;color:#000;border-radius:0 0 4px 4px;font-size:14px}.container-cards .directory-filters-footer.directory-filters-footer-warning{background:#FFC107}.container-cards .directory-filters-footer.directory-filters-footer-info{background:#d9edf7;border:1px solid #bce8f1}.container-cards .directory-filters-footer .filter-footer-icon{font-size:35px;line-height:25px;text-align:center;color:#435F6F;background:#FFF;height:25px;border-radius:50%;margin-right:32px;vertical-align:middle}.container-cards .cards{display:flex;flex-direction:row;flex-wrap:wrap}.container-cards .cards-no-results{color:#000;font-size:16px;line-height:34px}.container-cards .card{display:flex;flex-direction:row}.container-cards .card .card-panel{position:relative;width:100%;display:flex;flex-direction:column;margin:15px 0;border-radius:4px;overflow:hidden}.container-cards .card .card-panel.card-archived{filter:opacity(60%)}.container-cards .card .card-panel>div:not(.card-status){background-color:#ffffff}.container-cards .card .card-icons .fa{color:#21a1b3}.container-cards .card .card-icons .fa span{font:12px 'Open Sans',sans-serif;font-weight:600}.container-cards .card .card-bg-image{width:100%;height:86px;background-color:#cfcfcf;background-size:cover;background-position:center;border-radius:4px 4px 0 0}.container-cards .card .card-status{font-size:13px;font-weight:bold;padding:5px 12px;color:#FFF;min-height:30px;max-height:30px}.container-cards .card .card-status.card-status-professional{background:#415F6E}.container-cards .card .card-status.card-status-official,.container-cards .card .card-status.card-status-partner{background:#90A1AA}.container-cards .card .card-status.card-status-deprecated{background:#EB0000}.container-cards .card .card-status.card-status-featured,.container-cards .card .card-status.card-status-new{background:#21A1B3}.container-cards .card .card-header{position:absolute;padding:16px;display:table;width:100%}.container-cards .card .card-header .card-image-wrapper{display:table-cell;width:98px}.container-cards .card .card-header .card-image-link{display:inline-block;border:2px solid #fff;border-radius:6px}.container-cards .card .card-header .card-status{position:absolute;right:16px;background:#435f6f}.container-cards .card .card-header .card-icons{display:table-cell;padding:0 0 2px 5px;text-align:right;vertical-align:bottom;font-size:16px}.container-cards .card .card-header .card-icons .fa{color:#21a1b3}.container-cards .card .card-header .card-icons .fa.fa-mobile-phone{font-size:22px;line-height:15px;position:relative;top:2px}.container-cards .card .card-status-none+.card-header{border-radius:4px 4px 0 0}.container-cards .card .card-body{flex-grow:1;padding:44px 16px 24px 16px;overflow:auto}.container-cards .card .card-body .card-title{font-size:16px;font-weight:bold;line-height:24px}.container-cards .card .card-body .card-details{margin-top:8px;color:#57646c}.container-cards .card .card-body .card-details a{color:#21a1b3;text-decoration:underline}.container-cards .card .card-body .card-details a:hover{text-decoration:none}.container-cards .card .card-body .card-tags{margin-top:20px}.container-cards .card .card-footer{padding:0 16px 20px}.container-cards .card .card-footer a.btn{float:left;margin:0 8px 4px 0;white-space:normal;hyphens:none}.container-cards .card .card-footer a.btn:last-child{margin-right:0}.container-cards .card .card-footer .btn-group a.btn{margin-right:0}/*! Select2 humhub Theme v0.1.0-beta.4 | MIT License | github.com/select2/select2-humhub-theme */.select2-container--humhub{display:block}.select2-container--humhub .select2-selection{background-color:#fff;border:2px solid #ededed;border-radius:4px;color:#555;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;outline:0}.select2-container--humhub .select2-search--dropdown .select2-search__field{background-color:#fff;border:2px solid #ededed;border-radius:4px;color:#555;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px}.select2-container--humhub .select2-search__field{outline:0}.select2-container--humhub .select2-search__field::placeholder{color:#999;font-weight:normal}.select2-container--humhub .select2-search__field::-webkit-input-placeholder{color:#999;font-weight:normal}.select2-container--humhub .select2-search__field:-moz-placeholder{color:#999;font-weight:normal}.select2-container--humhub .select2-search__field::-moz-placeholder{color:#999;font-weight:normal;opacity:1}.select2-container--humhub .select2-search__field:-ms-input-placeholder{color:#999;font-weight:normal}.select2-container--humhub .select2-results__option[role=group]{padding:0}.select2-container--humhub .select2-results__option[aria-disabled=true]{color:#777;cursor:not-allowed}.select2-container--humhub .select2-results__option[aria-selected=true]{background-color:#f5f5f5;color:#262626;border-left:3px solid transparent}.select2-container--humhub .select2-results__option[aria-selected=false]{border-left:3px solid transparent}.select2-container--humhub .select2-results__option--highlighted[aria-selected]{background-color:#f7f7f7;border-left:3px solid #21A1B3;color:#000}.select2-container--humhub .select2-results__option .select2-results__option{padding:6px 12px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option{margin-left:-12px;padding-left:24px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-24px;padding-left:36px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-36px;padding-left:48px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-48px;padding-left:60px}.select2-container--humhub .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-60px;padding-left:72px}.select2-container--humhub .select2-results__group{color:#777;display:block;padding:6px 12px;font-size:12px;line-height:1.42857143;white-space:nowrap}.select2-container--humhub.select2-container--focus .select2-selection,.select2-container--humhub.select2-container--open .select2-selection{border:2px solid #21A1B3;outline:0;box-shadow:none}.select2-container--humhub.select2-container--open .select2-selection .select2-selection__arrow b{border-color:transparent transparent #999 transparent;border-width:0 4px 4px 4px}.select2-container--humhub .select2-selection__clear{color:#999;cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--humhub .select2-selection__clear:hover{color:#333}.select2-container--humhub.select2-container--disabled .select2-selection{border-color:#ccc;-webkit-box-shadow:none;box-shadow:none}.select2-container--humhub.select2-container--disabled .select2-selection,.select2-container--humhub.select2-container--disabled .select2-search__field{cursor:not-allowed}.select2-container--humhub.select2-container--disabled .select2-selection,.select2-container--humhub.select2-container--disabled .select2-selection--multiple .select2-selection__choice{background-color:#eee}.select2-container--humhub.select2-container--disabled .select2-selection__clear,.select2-container--humhub.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove{display:none}.select2-container--humhub .select2-dropdown{-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);border-color:#d7d7d7;overflow-x:hidden;margin-top:-1px}.select2-container--humhub .select2-dropdown--above{margin-top:1px}.select2-container--humhub .select2-results>.select2-results__options{max-height:400px;overflow-y:auto}.select2-container--humhub .select2-selection--single{height:34px;line-height:1.42857143;padding:6px 24px 6px 12px}.select2-container--humhub .select2-selection--single .select2-selection__arrow{position:absolute;bottom:0;right:12px;top:0;width:4px}.select2-container--humhub .select2-selection--single .select2-selection__arrow b{border-color:#999 transparent transparent transparent;border-style:solid;border-width:4px 4px 0 4px;height:0;left:0;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--humhub .select2-selection--single .select2-selection__rendered{color:#555;padding:0}.select2-container--humhub .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--humhub .select2-selection--multiple{min-height:34px;padding:2px}.select2-container--humhub .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;display:block;line-height:1.42857143;list-style:none;margin:0;overflow:hidden;padding:0;width:100%;text-overflow:ellipsis;white-space:nowrap}.select2-container--humhub .select2-selection--multiple .select2-selection__placeholder{color:#999;float:left;margin-top:5px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice{color:#555;border-radius:4px;cursor:default;padding:0 6px;background-color:#21A1B3;color:#fff;border-radius:3px;font-size:12px !important;padding:0 5px 2px 2px;float:left;margin:2px;height:28px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice img,.select2-container--humhub .select2-selection--multiple .select2-selection__choice div{margin-right:5px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice span.no-image{line-height:27px;padding-left:5px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice i{margin:0px 2px;line-height:27px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice .picker-close{cursor:pointer}.select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field{background:transparent;padding:0 5px;width:auto !important;height:32px;line-height:1.42857143;margin-top:0;min-width:5em}.select2-container--humhub .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:none;font-weight:bold;margin-right:3px}.select2-container--humhub .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--humhub .select2-selection--multiple .select2-selection__clear{margin-top:6px}.select2-container--humhub.input-sm,.select2-container--humhub.input-lg{border-radius:0;font-size:12px;height:auto;line-height:1;padding:0}.select2-container--humhub.input-sm .select2-selection--single,.input-group-sm .select2-container--humhub .select2-selection--single,.form-group-sm .select2-container--humhub .select2-selection--single{border-radius:3px;font-size:12px;height:30px;line-height:1.5;padding:5px 22px 5px 10px}.select2-container--humhub.input-sm .select2-selection--single .select2-selection__arrow b,.input-group-sm .select2-container--humhub .select2-selection--single .select2-selection__arrow b,.form-group-sm .select2-container--humhub .select2-selection--single .select2-selection__arrow b{margin-left:-5px}.select2-container--humhub.input-sm .select2-selection--multiple,.input-group-sm .select2-container--humhub .select2-selection--multiple,.form-group-sm .select2-container--humhub .select2-selection--multiple{min-height:30px}.select2-container--humhub.input-sm .select2-selection--multiple .select2-selection__choice,.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__choice,.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__choice{font-size:12px;line-height:1.5;margin:4px 0 0 5px;padding:0 5px}.select2-container--humhub.input-sm .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field,.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field{padding:0 10px;font-size:12px;height:28px;line-height:1.5}.select2-container--humhub.input-sm .select2-selection--multiple .select2-selection__clear,.input-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__clear,.form-group-sm .select2-container--humhub .select2-selection--multiple .select2-selection__clear{margin-top:5px}.select2-container--humhub.input-lg .select2-selection--single,.input-group-lg .select2-container--humhub .select2-selection--single,.form-group-lg .select2-container--humhub .select2-selection--single{border-radius:6px;font-size:18px;height:46px;line-height:1.3333333;padding:10px 31px 10px 16px}.select2-container--humhub.input-lg .select2-selection--single .select2-selection__arrow,.input-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow,.form-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow{width:5px}.select2-container--humhub.input-lg .select2-selection--single .select2-selection__arrow b,.input-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow b,.form-group-lg .select2-container--humhub .select2-selection--single .select2-selection__arrow b{border-width:5px 5px 0 5px;margin-left:-5px;margin-left:-10px;margin-top:-2.5px}.select2-container--humhub.input-lg .select2-selection--multiple,.input-group-lg .select2-container--humhub .select2-selection--multiple,.form-group-lg .select2-container--humhub .select2-selection--multiple{min-height:46px}.select2-container--humhub.input-lg .select2-selection--multiple .select2-selection__choice,.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__choice,.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__choice{font-size:18px;line-height:1.3333333;border-radius:4px;margin:9px 0 0 8px;padding:0 10px}.select2-container--humhub.input-lg .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field,.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-search--inline .select2-search__field{padding:0 16px;font-size:18px;height:44px;line-height:1.3333333}.select2-container--humhub.input-lg .select2-selection--multiple .select2-selection__clear,.input-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__clear,.form-group-lg .select2-container--humhub .select2-selection--multiple .select2-selection__clear{margin-top:10px}.select2-container--humhub.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #999 transparent;border-width:0 5px 5px 5px}.input-group-lg .select2-container--humhub.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #999 transparent;border-width:0 5px 5px 5px}.select2-container--humhub[dir="rtl"] .select2-selection--single{padding-left:24px;padding-right:12px}.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:0;padding-left:0;text-align:right}.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:12px;right:auto}.select2-container--humhub[dir="rtl"] .select2-selection--single .select2-selection__arrow b{margin-left:0}.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:0;margin-right:6px}.select2-container--humhub[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.has-warning .select2-dropdown,.has-warning .select2-selection{border-color:#FFC107}.has-warning .select2-container--focus .select2-selection,.has-warning .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ffdb6d;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ffdb6d;border-color:#d39e00}.has-warning.select2-drop-active{border-color:#d39e00}.has-warning.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#d39e00}.has-error .select2-dropdown,.has-error .select2-selection{border-color:#FC4A64}.has-error .select2-container--focus .select2-selection,.has-error .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #feaeba;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #feaeba;border-color:#fb1839}.has-error.select2-drop-active{border-color:#fb1839}.has-error.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#fb1839}.has-success .select2-dropdown,.has-success .select2-selection{border-color:#97d271}.has-success .select2-container--focus .select2-selection,.has-success .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d0ebbe;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d0ebbe;border-color:#7bc64a}.has-success.select2-drop-active{border-color:#7bc64a}.has-success.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#7bc64a}.input-group .select2-container--humhub{display:table;table-layout:fixed;position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group.select2-humhub-prepend .select2-container--humhub .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group.select2-humhub-append .select2-container--humhub .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.select2-humhub-append .select2-container--humhub,.select2-humhub-prepend .select2-container--humhub,.select2-humhub-append .input-group-btn,.select2-humhub-prepend .input-group-btn,.select2-humhub-append .input-group-btn .btn,.select2-humhub-prepend .input-group-btn .btn{vertical-align:top}.form-control.select2-hidden-accessible{position:absolute !important;width:1px !important}.form-inline .select2-container--humhub{display:inline-block}ul.tag_input{list-style:none;background-color:#fff;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;padding:0 0 9px 4px}ul.tag_input li img{margin:0 5px 0 0}.tag_input_field{outline:none;border:none !important;padding:5px 4px 0 !important;width:170px;margin:2px 0 0 !important}.userInput,.spaceInput{background-color:#21A1B3;font-weight:600;color:#fff;border-radius:3px;font-size:12px !important;padding:2px;float:left;margin:3px 4px 0 0}.userInput i,.spaceInput i{padding:0 6px;font-size:14px;cursor:pointer;line-height:8px} \ No newline at end of file From 89b04103497f9c2de8487464d9baed693ed3f492 Mon Sep 17 00:00:00 2001 From: s-tyshchenko Date: Mon, 7 Mar 2022 01:34:17 +0200 Subject: [PATCH 60/67] Mobile navigation: width detection problem (#5587) --- CHANGELOG_DEV.md | 1 + protected/humhub/widgets/views/topNavigation.php | 2 +- static/js/humhub/humhub.ui.topNavigation.js | 3 --- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/CHANGELOG_DEV.md b/CHANGELOG_DEV.md index b81b374511..9ccfd50091 100644 --- a/CHANGELOG_DEV.md +++ b/CHANGELOG_DEV.md @@ -40,3 +40,4 @@ - Enh #5127: LDAP: Reset mapping for single user only - Fix #5581: Fix long words in comment form - Fix #5578: Improved `rememberMe` parameter handling for thirdparty auth provider +- Fix #5340: Mobile navigation: width detection problem diff --git a/protected/humhub/widgets/views/topNavigation.php b/protected/humhub/widgets/views/topNavigation.php index dc4bfbd850..dc5c26b8a2 100755 --- a/protected/humhub/widgets/views/topNavigation.php +++ b/protected/humhub/widgets/views/topNavigation.php @@ -23,7 +23,7 @@ TopNavigationAsset::register($this); -