diff --git a/application/modules/backend/controllers/CdiscourseController.php b/application/modules/backend/controllers/CdiscourseController.php index c2bc51bc6..a32c62c00 100644 --- a/application/modules/backend/controllers/CdiscourseController.php +++ b/application/modules/backend/controllers/CdiscourseController.php @@ -1,202 +1,223 @@ . * * Created: 06.08.2018 */ class Backend_CdiscourseController extends Local_Controller_Action_CliAbstract { const filename = "members"; const filename_errors = "members"; protected $logfile; protected $errorlogfile; /** @var Zend_Config */ protected $config; protected $log; /** * @inheritDoc */ public function __construct( Zend_Controller_Request_Abstract $request, Zend_Controller_Response_Abstract $response, array $invokeArgs = array() ) { parent::__construct($request, $response, $invokeArgs); $this->config = Zend_Registry::get('config')->settings->server->forum; $this->log = new Local_Log_File($this->config->user_logfilename, self::filename); $this->_helper->viewRenderer->setNoRender(false); } /** * @throws Zend_Db_Statement_Exception * @throws Zend_Exception */ public function runAction() { ini_set('memory_limit', '1024M'); $force = (boolean)$this->getParam('force', false); $method = $this->getParam('method', 'create'); $this->log->info("METHOD: {$method}\n--------------\n"); $this->log->err("METHOD: {$method}\n--------------\n"); + if ('delete' == $method) { + $this->deleteMember($this->getParam('member_id')); + echo "not implemented"; + + return; + } + if ($this->hasParam('member_id')) { $memberId = $this->getParam('member_id'); $operator = $this->getParam('op', null); $members = $this->getMemberList($memberId, $operator); } else { $members = $this->getMemberList(); } if ('create' == $method) { $this->exportMembers($members, $force); return; } if ('update' == $method) { //$this->updateMembers($members); echo "not implemented"; return; } if ('validate' == $method) { //$this->validateMembers($members); echo "not implemented"; return; } } /** * @param null $member_id * @param string $operator * * @return Zend_Db_Statement_Interface * @throws Zend_Db_Statement_Exception */ private function getMemberList($member_id = null, $operator = "=") { $filter = ""; if (empty($operator)) { $operator = "="; } if ($operator == "gt") { $operator = ">"; } if ($operator == "lt") { $operator = "<"; } if (isset($member_id)) { $filter = " AND `m`.`member_id` {$operator} " . $member_id; } $sql = " SELECT `mei`.`external_id`,`m`.`member_id`, `m`.`username`, `me`.`email_address`, `m`.`password`, `m`.`roleId`, `m`.`firstname`, `m`.`lastname`, `m`.`profile_image_url`, `m`.`created_at`, `m`.`changed_at`, `m`.`source_id`, `m`.`biography`, `m`.`is_active`, `me`.`email_checked` FROM `member` AS `m` LEFT JOIN `member_email` AS `me` ON `me`.`email_member_id` = `m`.`member_id` AND `me`.`email_primary` = 1 LEFT JOIN `member_external_id` AS `mei` ON `mei`.`member_id` = `m`.`member_id` WHERE `m`.`is_active` = 1 AND `m`.`is_deleted` = 0 AND `me`.`email_checked` IS NOT NULL AND `me`.`email_deleted` = 0 AND LOCATE('_deactivated', `m`.`username`) = 0 AND LOCATE('_deactivated', `me`.`email_address`) = 0 " . $filter . " ORDER BY `m`.`member_id` ASC "; $result = Zend_Db_Table::getDefaultAdapter()->query($sql); $this->log->info("Load : " . $result->rowCount() . " members..."); return $result; } /** * @param Zend_Db_Statement_Interface $members * * @param bool $force * * @return bool * @throws Zend_Db_Statement_Exception * @throws Zend_Exception */ private function exportMembers($members, $force = false) { // only usernames which are valid in github/gitlab $usernameValidChars = new Local_Validate_UsernameValid(); $emailValidate = new Zend_Validate_EmailAddress(); $modelSubSystem = new Default_Model_Ocs_Forum($this->config); while ($member = $members->fetch()) { $this->log->info("process " . Zend_Json::encode($member)); echo "process " . Zend_Json::encode($member) . PHP_EOL; //if (false === $usernameValidChars->isValid($member['username'])) { // file_put_contents($this->errorlogfile, print_r($member, true) . "user name validation error" . "\n\n", FILE_APPEND); // continue; //} if (false === $emailValidate->isValid($member["email_address"])) { $this->log->info("messages [\"email address validation error\"] "); echo "response [\"email address validation error\"]" . PHP_EOL; continue; } try { //Export User, if he not exists $modelSubSystem->createUserFromArray($member, $force); } catch (Exception $e) { $this->log->info($e->getMessage() . PHP_EOL . $e->getTraceAsString()); } $messages = $modelSubSystem->getMessages(); $this->log->info("messages " . Zend_Json::encode($messages)); echo "response " . Zend_Json::encode($messages) . PHP_EOL; } return true; } public function groupAction() { $groupname = $this->getParam('name', null); $modelSubSystem = new Default_Model_Ocs_Forum($this->config); //$result = $modelSubSystem->createGroup($groupname); // //echo $result; // //$result = $modelSubSystem->deleteGroup($result); // //echo $result; $result = $modelSubSystem->getUserByEmail("info@dschinnweb.de"); print_r($result); echo json_encode($result); } + private function deleteMember($member) + { + $modelSubSystem = new Default_Model_Ocs_Forum($this->config); + try { + //Export User, if he not exists + $modelSubSystem->deleteUser($member); + } catch (Exception $e) { + $this->log->info($e->getMessage() . PHP_EOL . $e->getTraceAsString()); + } + $messages = $modelSubSystem->getMessages(); + $this->log->info("messages " . Zend_Json::encode($messages)); + echo "response " . Zend_Json::encode($messages) . PHP_EOL; + } + } \ No newline at end of file diff --git a/application/modules/default/models/Ocs/Forum.php b/application/modules/default/models/Ocs/Forum.php index efac9459a..14a392813 100644 --- a/application/modules/default/models/Ocs/Forum.php +++ b/application/modules/default/models/Ocs/Forum.php @@ -1,482 +1,514 @@ . * * Created: 10.09.2018 */ class Default_Model_Ocs_Forum { protected $config; protected $messages; protected $httpClient; /** * @inheritDoc */ public function __construct($config = null) { if (isset($config)) { $this->config = $config; } else { $this->config = Zend_Registry::get('config')->settings->server->forum; } $uri = $this->config->host; $this->httpClient = new Zend_Http_Client($uri, array('keepalive' => true, 'strictredirects' => true)); } /** * @param $member_data * * @param bool $force * * @return array|bool * @throws Zend_Exception * @throws Zend_Http_Client_Exception * @throws Zend_Json_Exception */ public function createUserFromArray($member_data, $force = false) { if (empty($member_data)) { return false; } $this->messages = array(); $data = $this->mapUserData($member_data); $user = $this->getUser($member_data['external_id'], $member_data['username']); $uid = $data['username']; if (empty($user)) { try { $uri = $this->config->host . "/users"; $method = Zend_Http_Client::POST; $result = $this->httpRequest($uri, $uid, $method, $data); if (false === $result) { $this->messages[] = "Fail "; return false; } } catch (Zend_Exception $e) { $this->messages[] = "Fail " . $e->getMessage(); return false; } $this->messages[] = "Success"; return $data; } if ($force === true) { $uid = $user['user']['username']; unset($data['password']); try { $uri = $this->config->host . "/users/{$uid}.json"; $method = Zend_Http_Client::PUT; $this->httpRequest($uri, $uid, $method, $data); } catch (Zend_Exception $e) { $this->messages[] = "Fail " . $e->getMessage(); return false; } $this->messages[] = "overwritten : " . json_encode($user); return $user; } $this->messages[] = 'user already exists.'; return false; } /** * @param array $user * * @return array */ protected function mapUserData($user) { $paramEmail = ''; if (isset($user['email_address'])) { $paramEmail = $user['email_address']; } else if (isset($user['mail'])) { $paramEmail = $user['mail']; } $data = array( 'name' => (false == empty($user['lastname'])) ? trim($user['firstname'] . ' ' . $user['lastname']) : $user['username'], 'email' => $paramEmail, 'password' => $user['password'], 'username' => strtolower($user['username']), 'active' => $user['is_active'] ? true : false, 'approved' => (false == empty($user['email_checked'])) ? true : false, 'user_fields' => array('2' => $user['external_id']) ); return $data; } /** * @param $extern_uid * @param $username * * @return array|null * @throws Default_Model_Ocs_Exception * @throws Zend_Exception * @throws Zend_Http_Client_Exception * @throws Zend_Json_Exception */ private function getUser($extern_uid, $username) { $user_by_uid = $this->getUserByExternUid($extern_uid); $user_by_dn = $this->getUserByUsername($username); if (empty($user_by_uid) AND empty($user_by_dn)) { return null; } if (!empty($user_by_uid) AND empty($user_by_dn)) { return $user_by_uid; } if (empty($user_by_uid) AND !empty($user_by_dn)) { return $user_by_dn; } return $user_by_uid; } /** * @param string $extern_uid * * @return bool|array * @throws Zend_Http_Client_Exception * @throws Zend_Json_Exception */ public function getUserByExternUid($extern_uid) { $uri = $this->config->host . "/u/by-external/{$extern_uid}.json"; $method = Zend_Http_Client::GET; $uid = 'external_id'; $user = $this->httpRequest($uri, $uid, $method); if (false === $user) { return false; } return $user; } /** * @param string $uri * @param string $uid * @param string $method * @param array|null $post_param * * @return bool|array * @throws Zend_Http_Client_Exception * @throws Zend_Json_Exception */ protected function httpRequest($uri, $uid, $method = Zend_Http_Client::GET, $post_param = null) { $this->httpClient->resetParameters(); $this->httpClient->setUri($uri); $this->httpClient->setParameterGet('api_key', $this->config->private_token); $this->httpClient->setParameterGet('api_username', $this->config->user_sudo); $this->httpClient->setHeaders('User-Agent', $this->config->user_agent); $this->httpClient->setMethod($method); if (isset($post_param)) { $this->httpClient->setParameterPost($post_param); } $response = $this->httpClient->request(); if ($response->getStatus() < 200 OR $response->getStatus() >= 500) { $this->messages[] = 'Request failed.(' . $uri . ') OCS Forum server send message: ' . $response->getBody(); return false; } $body = Zend_Json::decode($response->getBody()); if (array_key_exists("error_type", $body) OR array_key_exists("errors", $body)) { $this->messages[] = "id: {$uid} ($uri) - " . $response->getBody(); return false; } if (array_key_exists('success', $body) AND $body['success'] == false) { $this->messages[] = "id: {$uid} ($uri) - " . $body['message']; return false; } return $body; } /** * @param $username * * @return bool|array * @throws Zend_Http_Client_Exception * @throws Zend_Json_Exception */ public function getUserByUsername($username) { $encoded_username = urlencode($username); $uri = $this->config->host . "/users/{$encoded_username}.json"; $method = Zend_Http_Client::GET; $uid = $username; $user = $this->httpRequest($uri, $uid, $method); if (false === $user) { return false; } return $user; } /** * @param string $email * * @return bool|array * @throws Zend_Http_Client_Exception * @throws Zend_Json_Exception */ public function getUserByEmail($email) { $uri = $this->config->host . "/admin/users/list/all.json?email={$email}"; $method = Zend_Http_Client::GET; $user = $this->httpRequest($uri, $email, $method); if (false === $user) { return false; } return $user[0]; } /** * @return array|null */ public function getMessages() { return $this->messages; } /** * @param $member_id * * @return bool * @throws Default_Model_Ocs_Exception * @throws Zend_Exception * @throws Zend_Http_Client_Exception * @throws Zend_Json_Exception */ public function deleteUser($member_id) { if (empty($member_id)) { return false; } - $uri = $this->config->host . '/admin/users/' . $member_id . '.json'; + $member_data = $this->getMemberData($member_id, false); + if (empty($member_data)) { + return false; + } + + $forum_member = $this->getUserByExternUid($member_data['external_id']); + if (empty($forum_member)) { + return false; + } + $uri = $this->config->host . '/admin/users/' . $forum_member['user']['id'] . '.json'; $method = Zend_Http_Client::DELETE; $uid = $member_id; $user = $this->httpRequest($uri, $uid, $method); if (false === $user) { return false; } return $user; } /** * @param $member_id * @param bool $onlyActive * * @return mixed * @throws Default_Model_Ocs_Exception */ private function getMemberData($member_id, $onlyActive = true) { $onlyActiveFilter = ''; if ($onlyActive) { $onlyActiveFilter = " AND `m`.`is_active` = 1 AND `m`.`is_deleted` = 0 AND `me`.`email_checked` IS NOT NULL AND `me`.`email_deleted` = 0"; } $sql = " SELECT `mei`.`external_id`,`m`.`member_id`, `m`.`username`, `me`.`email_address`, `m`.`password`, `m`.`roleId`, `m`.`firstname`, `m`.`lastname`, `m`.`profile_image_url`, `m`.`biography`, `m`.`created_at`, `m`.`changed_at`, `m`.`source_id` FROM `member` AS `m` LEFT JOIN `member_email` AS `me` ON `me`.`email_member_id` = `m`.`member_id` AND `me`.`email_primary` = 1 LEFT JOIN `member_external_id` AS `mei` ON `mei`.`member_id` = `m`.`member_id` WHERE `m`.`member_id` = :memberId {$onlyActiveFilter} ORDER BY `m`.`member_id` DESC "; $result = Zend_Db_Table::getDefaultAdapter()->fetchRow($sql, array('memberId' => $member_id)); if (count($result) == 0) { throw new Default_Model_Ocs_Exception('member with id ' . $member_id . ' could not found.'); } return $result; } /** * @return bool|array */ public function getGroups() { $uri = $this->config->host . '/groups.json'; $uid = 'get groups'; $method = Zend_Http_Client::GET; try { $result = $this->httpRequest($uri, $uid, $method); } catch (Zend_Exception $e) { $this->messages[] = "Fail " . $e->getMessage(); return false; } if (false === $result) { $this->messages[] = "Fail "; return false; } $this->messages[] = "Success"; return $result; } /** * @param string $name * * @return bool|array */ public function createGroup($name) { $uri = $this->config->host . '/admin/groups'; $method = Zend_Http_Client::POST; $data = array( "group[name]" => $name ); try { $result = $this->httpRequest($uri, $name, $method, $data); } catch (Zend_Exception $e) { $this->messages[] = "Fail " . $e->getMessage(); return false; } if (false === $result) { $this->messages[] = "Fail "; return false; } $this->messages[] = "Success"; return $result['basic_group']; } public function deleteGroup($group_id) { $uri = $this->config->host . '/admin/groups/' . $group_id . '.json'; $method = Zend_Http_Client::DELETE; try { $result = $this->httpRequest($uri, $group_id, $method); } catch (Zend_Exception $e) { $this->messages[] = "Fail " . $e->getMessage(); return false; } if (false === $result) { $this->messages[] = "Fail "; return false; } $this->messages[] = "Success"; return $result; } public function addGroupMember($groupname, $members) { } /** * @param $member_data * @param $oldUsername * * @return array|bool|null * @throws Default_Model_Ocs_Exception * @throws Zend_Exception * @throws Zend_Http_Client_Exception * @throws Zend_Json_Exception */ public function updateUserFromArray($member_data, $oldUsername) { if (empty($member_data)) { return false; } $this->messages = array(); $data = $this->mapUserData($member_data); $user = $this->getUser($member_data['external_id'], $oldUsername); if (empty($user)) { $this->messages[] = "Fail "; return false; } $uid = $user['user']['username']; unset($data['password']); try { $uri = $this->config->host . "/users/{$uid}.json"; $method = Zend_Http_Client::PUT; $this->httpRequest($uri, $uid, $method, $data); } catch (Zend_Exception $e) { $this->messages[] = "Fail " . $e->getMessage(); return false; } $this->messages[] = "overwritten : " . json_encode($user); return $user; } + public function deleteUserWithArray($member_data) + { + if (empty($member_data)) { + return false; + } + + $forum_member = $this->getUserByExternUid($member_data['external_id']); + if (empty($forum_member)) { + return false; + } + $uri = $this->config->host . '/admin/users/' . $forum_member['id'] . '.json'; + $method = Zend_Http_Client::DELETE; + $uid = $member_data['member_id']; + + $user = $this->httpRequest($uri, $uid, $method); + + if (false === $user) { + return false; + } + + return $user; + } + } \ No newline at end of file diff --git a/application/modules/default/views/scripts/home/index-opendesktop.phtml b/application/modules/default/views/scripts/home/index-opendesktop.phtml index 22c6c6fba..5b827f921 100644 --- a/application/modules/default/views/scripts/home/index-opendesktop.phtml +++ b/application/modules/default/views/scripts/home/index-opendesktop.phtml @@ -1,370 +1,373 @@ . **/ $modelInfo = new Default_Model_Info(); $this->comments = $modelInfo->getLatestComments(10); //$this->users = $modelInfo->getNewActiveMembers(18); //$this->supporters = $modelInfo->getNewActiveSupporters(9); //$this->plingproducts = $modelInfo->getNewActivePlingProduct(9); $this->productsThemesGTK = $modelInfo->getLastProductsForHostStores(5,"366,363,273,267,138,125,131,153,154,414,133"); $this->productsThemesPlasma = $modelInfo->getLastProductsForHostStores(5,"365,119,123,266,114,118,349,417,101,100,111,422,423,446,417"); $this->productsWindowmanager = $modelInfo->getLastProductsForHostStores(5,"117,267,139,143,142,140,141,144"); $this->productsIconsCursors= $modelInfo->getLastProductsForHostStores(5,"386,107"); $this->productsScreenshots= $modelInfo->getLastProductsForHostStores(5,"225,445"); $this->productsApps = $modelInfo->getLastProductsForHostStores(5,233); $this->productsAddons = $modelInfo->getLastProductsForHostStores(5,"152"); $this->productsWallpapersOriginal = $modelInfo->getLastProductsForHostStores(5,"295,158",null,true); $this->productsWallpapers = $modelInfo->getLastProductsForHostStores(5,"295,158",null,false); $this->countSupporters = $modelInfo->getCountActiveSupporters(); $featuredProducts = $modelInfo->getFeaturedProductsForHostStores(100); if ($featuredProducts->getTotalItemCount()) { $request = Zend_Controller_Front::getInstance()->getRequest(); $offset = (int)$request->getParam('page'); $irandom = rand(1,$featuredProducts->getTotalItemCount()); $featuredProducts->setItemCountPerPage(1); $featuredProducts->setCurrentPageNumber($irandom); $this->featureProducts = $featuredProducts; } $helperBuildMemberUrl = new Default_View_Helper_BuildMemberUrl(); $helperImage = new Default_View_Helper_Image(); $helpPrintDate = new Default_View_Helper_PrintDate(); ?>
featureProducts) { echo $this->render('home/partials/featured-products.phtml'); } ?>
partial('/home/partials/product_group.phtml', array( "title" => "GTK/Gnome", "products" => $this->productsThemesGTK, "catIDs" =>"366" ) ); echo $this->partial('/home/partials/product_group.phtml', array( "title" => "KDE Plasma", "products" => $this->productsThemesPlasma, "catIDs" =>"365" ) ); ?>
partial('/home/partials/product_group.phtml', array( "title" => "Window Managers", "products" => $this->productsWindowmanager, "catIDs" =>"147" ) ); echo $this->partial('/home/partials/product_group.phtml', array( "title" => "Icons, Cursors", "products" => $this->productsIconsCursors, "catIDs" =>"386,107" ) ); ?>
partial('/home/partials/product_group.phtml', array( "title" => "Artwork, Wallpapers ", "products" => $this->productsWallpapers, "catIDs" =>"158,295" ) ); echo $this->partial('/home/partials/product_group.phtml', array( "title" => "Artwork, Wallpapers (Original)", "products" => $this->productsWallpapersOriginal, "catIDs" =>"158,295" ) ); ?>
partial('/home/partials/product_group.phtml', array( "title" => "App Add-Ons", "products" => $this->productsAddons, "catIDs" =>"152" ) ); echo $this->partial('/home/partials/product_group.phtml', array( "title" => "Applications", "products" => $this->productsApps, "catIDs" =>"233" ) ); ?>
partial('/home/partials/product_group.phtml', array( "title" => "Concepts, Screenshots", "products" => $this->productsScreenshots, "catIDs" =>"445,225" ) ); ?>
partial('/home/partials/plingprojects.phtml', array( "title" => "Recently plinged Products", "projects" => $this->plingproducts ) ); ?>
partial('/home/partials/users.phtml', array( "title" => "Latest Supporters", "users" => $this->supporters ) ); ?>
partial('/home/partials/users.phtml', array( "title" => "Latest Community Members ", "users" => $this->users ) ); ?>
*/ ?>
inlineScript()->appendScript( ' $(document).ready(function(){ TooltipUser.setup("tooltipuser","right"); TooltipUser.setup("tooltipuserleft","left"); TooltipUserPlings.setup("tooltipuserplings","right"); }); '); diff --git a/application/modules/default/views/scripts/product/partials/details.phtml b/application/modules/default/views/scripts/product/partials/details.phtml index 01c8016da..b040f12f1 100644 --- a/application/modules/default/views/scripts/product/partials/details.phtml +++ b/application/modules/default/views/scripts/product/partials/details.phtml @@ -1,427 +1,431 @@ . **/ $tableProject = new Default_Model_Project(); $this->product_views = $tableProject->fetchProjectViews($this->product->project_id); $helperUserRole = new Backend_View_Helper_UserRole(); $userRoleName = $helperUserRole->userRole(); $tableTags = new Default_Model_Tags(); $tagsArray = $tableTags->getTagsArray($this->product->project_id, $tableTags::TAG_TYPE_PROJECT, $tableTags::TAG_GHNS_EXCLUDED_GROUPID); $isGhnsExcluded = false; if(isset($tagsArray) && (count($tagsArray) == 1)) { $isGhnsExcluded = true; } + +// $heute = date("Y-m-d H:i:s"); +$today = (new DateTime())->modify('-1 day'); +$filterDownloadToday = $today->format("Y-m-d H:i:s"); ?>
Details
license
product->project_license_title; ?>
version
product->project_version); ?>
product->project_changed_at) { ?>
updated printDate($this->product->project_changed_at) ?>
added printDate($this->product->project_created_at) ?>
downloads today
0
page views today projectPageviewsToday($this->product->project_id) ?>
spam reports fetchReportsSpamCnt($this->product->project_id) ?>
misuse reports fetchReportsMisuseCnt($this->product->project_id)?>
* * package type * * * FetchProjectPackageTypes($this->product->project_id); * if(!empty($type)){ * ?> * FetchProjectPackageTypes($this->product->project_id) ?> * * *
**/ ?>
link to hive delete product
(remember the cache) after you change some value below and refresh the page you may encounter some differences to your changes
product->spam_checked == 1 ? ' checked=\'checked\' ' : ''; ?> /> spam checked product->featured == 1 ? ' checked=\'checked\' ' : ''; ?> /> featured /> ghns-excluded product->pling_excluded == 1 ? ' checked=\'checked\' ' : ''; ?> /> pling-excluded product->ghns_excluded == 1 ? ' checked=\'checked\' ' : ''; ?> /> ghns-excluded inlineScript()->appendScript( ' $(document).ready(function(){ GhnsExcludedClick.setup('.$this->product->project_id.'); }); '); } diff --git a/httpdocs/theme/flatui/css/stylesheet.css b/httpdocs/theme/flatui/css/stylesheet.css index 7942fd144..c73dc8852 100644 --- a/httpdocs/theme/flatui/css/stylesheet.css +++ b/httpdocs/theme/flatui/css/stylesheet.css @@ -1 +1 @@ -.bg_sheet{background-image:url(../img/bg_sheet.png)}.bg_sheet_statistics{background-image:url(../img/statistics_sheet.png)}.unstyled_list{list-style-type:none;padding:0;margin:0}.hand-with-coin{display:inline-block;background-image:url(../img/new/button/hand-w-coin.png);height:61px;width:61px}.hand-with-coin.v-2{background-image:url(../img/new/button/hand-w-coin-2.png)}@font-face{font-family:'Open Sans';font-style:normal;font-weight:300;src:local('Open Sans Light'),local('OpenSans-Light'),url(../css/fonts/open-sans-v15-latin-300.woff2) format('woff2'),url(../css/fonts/open-sans-v15-latin-300.woff) format('woff')}@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:local('Open Sans Regular'),local('OpenSans-Regular'),url(../css/fonts/open-sans-v15-latin-regular.woff2) format('woff2'),url(../css/fonts/open-sans-v15-latin-regular.woff) format('woff')}@font-face{font-family:'Open Sans';font-style:normal;font-weight:600;src:local('Open Sans SemiBold'),local('OpenSans-SemiBold'),url(../css/fonts/open-sans-v15-latin-600.woff2) format('woff2'),url(../css/fonts/open-sans-v15-latin-600.woff) format('woff')}@font-face{font-family:'Open Sans';font-style:normal;font-weight:700;src:local('Open Sans Bold'),local('OpenSans-Bold'),url(../css/fonts/open-sans-v15-latin-700.woff2) format('woff2'),url(../css/fonts/open-sans-v15-latin-700.woff) format('woff')}body{color:#32353d;overflow-y:scroll;font-size:1.5em;line-height:1.231;color:#4e4e4e;font-family:'Open Sans',sans-serif;font-size:medium}footer,header,main,section{width:100%;float:left}footer section.wrapper,header section.wrapper,main section.wrapper,section section.wrapper{margin-left:auto;margin-right:auto;width:95%;float:none;height:auto}a{text-decoration:none;color:#2673b0;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out}a:hover{text-decoration:none}a:focus{outline:0}button::-moz-focus-inner{border:0}button,input,select,textarea{font-family:Lato,sans-serif;font-size:14px}h1{font-size:32px;font-weight:900}h3{font-size:24px;font-weight:700;margin-bottom:4px;margin-top:2px}h5{font-size:16px;font-weight:500;text-transform:uppercase}@media (max-width:1200px) and (min-width:992px){footer section.wrapper,header section.wrapper,main section.wrapper{width:95%;margin-left:2.5%;margin-right:2.5%}}.btn{background:#bdc3c7 none repeat scroll 0 0;border:medium none;border-radius:6px;box-shadow:none;color:#fff;line-height:22px;padding:9px 12px 10px;text-decoration:none;text-shadow:none;-webkit-transition:all .2 ease-out;-moz-transition:all .2 ease-out;-ms-transition:all .2 ease-out;-o-transition:all .2 ease-out}.btn.btn-large{font-size:17px;line-height:20px;padding:12px 18px 13px}.btn.btn-native{background-color:#2673b0;color:#fff}.btn.btn-pling-red{background-color:#e84310}.btn.btn-pling-green{background-color:green}.btn.btn-purple{background:#9b59b6;padding:10px 35px}.btn.btn-file-dropzone{font-size:10px;padding:8px 10px 10px;line-height:10px}.btn.btn-file-action{font-size:12px;padding:8px 10px 10px;line-height:16px;margin-left:5px}.pling-danger{background:#C9302C none repeat scroll 0 0}.standard-form input{height:41px}.standard-form input,.standard-form select,.standard-form textarea{border:1px solid #bdc3c7;padding:0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.standard-form .field{margin-bottom:15px}.icon-facebook,.icon-google,.icon-twitter{width:40px;height:40px;cursor:pointer;display:inline-block;background-image:url(../img/bg_sheet.png)}.icon-facebook{background-position:0 -105px}.icon-twitter{background-position:-40px -105px}.lightblue{color:#2673b0}.small{font-size:12px}.large{font-size:18px}.relative{position:relative}.absolute{position:absolute}.light{font-weight:300}.lightgrey{color:#95a5a6}.center{text-align:center}i.myfav{color:#8e44ad}h1.page-title{color:#34495e;font-weight:700;font-size:32px}.modal{overflow-y:hidden}.right{float:right}.left{float:left}em.icon{display:inline-block;background-image:url(../img/bg_sheet.png)}em.icon.info-icon{width:31px;height:30px;background-position:-289px -64px}.margin-bottom-10{margin-bottom:10px}.margin-top-15{margin-top:15px}.full-width{width:100%!important}.progress{height:8px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;margin-bottom:0}.opendesktopwidgetpager{display:flex;justify-content:right;align-items:center;justify-content:flex-end}.opendesktopwidgetpager ul.opendesktopwidgetpager{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.opendesktopwidgetpager ul.opendesktopwidgetpager>li{display:inline}.opendesktopwidgetpager ul.opendesktopwidgetpager>li>span{cursor:pointer;position:relative;float:left;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd;padding:5px 10px;font-size:12px}.opendesktopwidgetpager ul.opendesktopwidgetpager>.active>span{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.metamenu{width:100%;background-color:#fff;height:15px}.metamenu a#toggleStoreBtn{float:left;margin-left:20px;text-decoration:none}.metamenu a.home-link{float:left}.metamenu a.home-link img.logo{width:16px;height:16px}.meta-nav-top>li>a{padding:0 5px;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out}.meta-nav-top>li>a#ocs-stores img{width:16px;height:16px}ul.meta-nav-top{list-style:none}ul.meta-nav-top li{float:left}ul.meta-nav-top-right{margin:0;margin-right:30px;float:right}ul.meta-nav-top-right li{padding:0 10px}ul.meta-nav-top-left{float:left}#toggleStoreContainer{z-index:1000;display:none;width:60%;height:200px;top:12px;left:190px}#toggleStoreContainer a{display:block;font-size:16px}#toggleStoreContainer a:hover{color:#6a7686}#toggleStoreContainer b{text-decoration:underline;text-align:center;padding-left:20px;font-size:18px;cursor:default}#toggleStoreContainer ul{list-style:none;padding:0;padding-top:10px;padding-left:30px}#toggleStoreContainer ul li{font-size:14px}#toggleStoreContainer ul li:hover{background-color:transparent}header nav{border-bottom:transparent}header#page_header{color:#6a7686;height:auto;font-size:10pt;font-weight:400;width:100%;font-family:Arial,sans-serif}header#page_header nav#nav-top{margin-left:130px;width:84%}header .dropdown-header{width:175px;height:12px;background-image:url(../img/bg_sheet.png);background-position:-385px 0}header a{color:#fff}header .pull-left,header .pull-right{padding:0}header ul{margin-bottom:0}header ul.menu-icon{float:right;display:none}header ul li{list-style:none;display:inline-block;margin:0;cursor:pointer;position:relative;height:40px;line-height:40px;float:left}header ul li a{float:left;display:block;height:inherit;line-height:inherit;padding:0 20px}header ul li.profile-menu-container{padding-top:0;padding-left:40px}header ul li.profile-menu-container .header-profile-image{top:50%;left:10px;height:30px;width:30px;margin-top:-15px}header ul li.profile-menu-container .header-profile-image .supporter-badge{position:absolute;left:0;bottom:0;background:#EE6E09;text-align:center;border-radius:30px 30px 30px 30px;color:#fff;padding:5px 10px;font-size:12px}header ul li.profile-menu-container .header-profile-image img{height:30px;width:30px;float:left;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}header ul li.profile-menu-container>a{display:block}header ul li ul{width:165px;margin-left:0;position:absolute;left:-9999px;top:45px;border:none;font-size:14px;color:#7f8c8d;font-weight:400;padding:0;z-index:10000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}header ul li ul.active{left:0;top:40px}header ul li ul li{text-align:left;display:block;width:100%;background:#ecf0f1;margin:0;padding:0;height:40px;border-bottom:1px solid #d6d7d9}header ul li ul li.first,header ul li ul li:first-of-type{-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}header ul li ul li:last-of-type{-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}header ul li ul li a{color:#6a7686;text-align:left;height:40px;line-height:40px}header .container{margin-left:auto;margin-right:auto;float:none;height:auto;width:100%;background-color:#e2e2e2}header .container.header{margin-left:auto;margin-right:auto;float:none;width:100%}header .container.header section.container{background-color:transparent}header .container.header section.container.backLink{background-color:#729ECD!important;height:30px}header .container.header section.container.backLink h4 a:hover{color:#1d1d1d}header .container.header section.container section.wrapper{height:40px;padding-left:80px;position:relative}header .container.header section.container+section.container{background-color:transparent;padding-left:0}header .container.header section.container+section.container>section.wrapper{padding-left:242px;height:50px}header .container.header nav{border-bottom:transparent}header .container.header nav #search{height:25px;padding:0;margin:6.5px 15px;line-height:25px;position:relative}header .container.header nav #search input.content-search{width:16em;height:25px;padding:0;border:1px solid #fff;margin-bottom:-1px;padding-right:30px;text-indent:5px;color:#6a7686;float:left;border-radius:6px;box-shadow:none}header .container.header nav #search div.icon-search-input{top:2px;right:0;width:25px;height:25px;background-image:url(/theme/flatui/img/icon-search-input-2.png);background-position:center center;position:absolute;cursor:pointer}header .container.header ul.menu-nav-tabs{bottom:0;display:inline-table;list-style-type:none;margin:0;padding:0;position:absolute;z-index:999}.pling-nav-tabs-a{border:0;position:relative;color:#777;font-size:13px;transition:color 0s;bottom:-1px;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;background-color:transparent}.pling-nav-tabs ul.nav-tabs>li{background-color:transparent;margin-bottom:0}.pling-nav-tabs ul.nav-tabs>li>a{border:0;position:relative;color:#777;font-size:13px;transition:color 0s;bottom:-1px;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;background-color:transparent}.pling-nav-tabs ul.nav-tabs>li>a:hover{border:0;position:relative;color:#777;font-size:13px;transition:color 0s;bottom:-1px;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;background-color:transparent;color:#2673b0}.pling-nav-tabs ul.nav-tabs>li>a:hover svg{fill:#2673b0}.pling-nav-tabs ul.nav-tabs>li>a:focus{border:0;position:relative;color:#777;font-size:13px;transition:color 0s;bottom:-1px;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;background-color:transparent}.pling-nav-tabs ul.nav-tabs>li svg{fill:#777}.pling-nav-tabs ul.nav-tabs>li.active>a{border:0;position:relative;color:#777;font-size:13px;transition:color 0s;bottom:-1px;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;background-color:transparent;color:#2673b0;border-bottom-color:#2673b0;font-weight:700}.pling-nav-tabs ul.nav-tabs>li.active>a:hover{border:0;position:relative;color:#777;font-size:13px;transition:color 0s;bottom:-1px;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;background-color:transparent;color:#2673b0;border-bottom-color:#2673b0;font-weight:700}.pling-nav-tabs ul.nav-tabs>li.active>a:focus{border:0;position:relative;color:#777;font-size:13px;transition:color 0s;bottom:-1px;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;background-color:transparent;color:#2673b0;border-bottom-color:#2673b0;font-weight:700}.pling-nav-tabs ul.nav-tabs>li.active svg{fill:#2673b0}footer{width:100%;float:left;padding:12px 0;border-bottom:5px solid #2673b0;border-top:1px solid #a9a9a9;background-color:#dcdcdc;font-size:9pt}footer h3{font-weight:400}footer h3#footer-heading{font-size:1.3em;margin:0}footer nav#footer-nav ul{margin-top:1em;list-style:none;padding:0;margin-right:1em;float:left;width:auto;margin-bottom:.2em}footer nav#footer-nav ul li{display:inline-block;margin-right:0;font-size:1em}footer nav#footer-nav ul li a{color:#666;font-weight:400}footer nav#footer-nav ul li+li{margin-left:10px}footer h3#footer-social-heading{color:#666;font-size:1em;margin:0 0 .4em 0}footer #footer-social{float:right}footer #footer-social a{width:30px;display:block;float:left}footer #footer-social a+a{margin-left:2px}footer section.wrapper .pull-left{padding:0}footer section.wrapper .pull-right{padding:0}body.home-page main section.wrapper .container{padding:150px 0;height:auto;float:none;max-width:95%;width:95%}body.home-page main section.wrapper#intro .container{padding-bottom:50px}body.home-page main section.wrapper#intro .container article{text-align:center;width:100%}body.home-page main section.wrapper#intro .container article>*{margin-bottom:40px}body.home-page main section.wrapper#intro .container article h2{font-size:40px;font-weight:700;margin-bottom:20px}body.home-page main section.wrapper#intro .container article h3{font-size:30px;font-weight:700;margin-top:2px}body.home-page main section.wrapper#intro .container article p{margin-bottom:0;text-align:center}body.home-page main section#cat-list{border-top:1px solid #cdd7dd}body.home-page main .card-wrapper{position:relative;max-width:960px;margin:auto;margin-bottom:2rem;background:#fff}body.home-page main .card-wrapper .card-item{position:absolute;padding:1rem;width:31.4%;border:1px solid gray;border-radius:7px}body.home-page main .card-wrapper .card-item .category a.title{font-size:14pt;font-weight:600;min-height:30px;line-height:30px;padding-right:30px}body.home-page main .card-wrapper .card-item .category a.title span.label{padding:2px 3px}body.home-page main .card-wrapper .card-item div a.title{font-size:11pt;min-height:20px;line-height:20px;padding-right:5px}body.home-page main .card-wrapper .card-item div a.title span.label{font-size:7pt;font-weight:300;vertical-align:top;margin-left:5px;padding:1px 3px}.card-item{border:1px solid gray}.card-item .category>a.title{color:#444}.card-item div>a.title{color:#6a6a6a}#indeximages{line-height:0;-webkit-column-count:20;-webkit-column-gap:0;-moz-column-count:20;-moz-column-gap:0;column-count:20;column-gap:0}#indeximages img{width:100%!important;height:auto!important;opacity:1}@media (max-width:1920px){#indeximages{-moz-column-count:20;-webkit-column-count:20;column-count:20}}@media (max-width:1200px){#indeximages{-moz-column-count:15;-webkit-column-count:4;column-count:4}}@media (max-width:1000px){#indeximages{-moz-column-count:12;-webkit-column-count:3;column-count:3}}@media (max-width:800px){#indeximages{-moz-column-count:9;-webkit-column-count:2;column-count:2}}@media (max-width:400px){#indeximages{-moz-column-count:7;-webkit-column-count:1;column-count:1}}#products-wrapper{padding-top:20px}.explore-products{padding-left:30px;padding-right:30px;margin-top:-10px}.explore-products .product-list{width:100%;float:left;padding:0 10px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.explore-products .product-list .explore-product{padding:10px 0;font-size:12px;border-top:1px solid #ccc}.explore-products .product-list .explore-product .rownum{font-size:12px;float:left}.explore-products .product-list .explore-product .explore-product-imgcolumn{padding-left:5px;padding-right:5px}.explore-products .product-list .explore-product .imageContainer{height:167px;display:flex;justify-content:center;align-items:center}.explore-products .product-list .explore-product .explore-product-image{max-width:95%;max-height:167px}.explore-products .product-list .explore-product .contentLeft{float:left;padding-right:0;width:270px}.explore-products .product-list .explore-product .contentLeft img{max-width:167px;max-height:167px}.explore-products .product-list .explore-product .contentLeft div.productimg{width:167px;height:167px}.explore-products .product-list .explore-product .explore-product-details{padding-left:20px}.explore-products .product-list .explore-product .explore-product-details h3{font-size:24px;font-weight:700;color:#2673b0}.explore-products .product-list .explore-product .explore-product-details h3 span.version{font-size:smaller;padding-left:20px}.explore-products .product-list .explore-product .explore-product-details .title{display:block;margin-bottom:8px}.explore-products .product-list .explore-product .explore-product-details .title .username{padding-left:20px}.explore-products .product-list .explore-product .explore-product-details .description{display:block;margin-bottom:8px}.explore-products .product-list .explore-product .explore-product-details .packagetypes{display:block;float:left}.explore-products .product-list .explore-product .explore-product-details .packagetypes .packagetypeos{width:100px;float:left}.explore-products .product-list .explore-product .explore-product-details .productInfo{clear:left;padding-top:5px}.explore-products .product-list .explore-product .explore-product-details .productInfo span.cntSupporters{padding-right:20px}.explore-products .product-list .explore-product .explore-product-plings{padding:0}.explore-products .product-list .explore-product .explore-product-plings .rating{width:50%}.explore-products .product-list .explore-product .explore-product-plings .progress{margin-bottom:10px;padding:3px;opacity:0;margin-bottom:0;height:12px;opacity:1;background-color:transparent;box-shadow:none;padding:2px}.explore-products .product-list .explore-product .explore-product-plings .progress .bar{width:4px;max-width:100%;height:14px;background-color:#2673b0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 6px 0 rgba(255,255,255,.2);-moz-box-shadow:inset 0 6px 0 rgba(255,255,255,.2);box-shadow:inset 0 6px 0 rgba(255,255,255,.2)}.explore-products .product-list .explore-product .explore-product-plings .progress .bar.no-goal{width:50%;opacity:0}.explore-products .product-list .explore-product .explore-product-plings .collected span{display:block;width:100%;float:left}.explore-products .product-list .explore-product:first-of-type{border-top:0}.explore-products .explore-footer{width:100%;text-align:center}.explore-products .explore-footer .projectPaginationControl{width:auto;display:table;margin:0 auto}.explore-products .explore-footer .projectPaginationControl ul#pagination-digg{padding:0;list-style-type:none;margin:20px 0;height:auto;overflow:hidden}.explore-products .explore-footer .projectPaginationControl ul#pagination-digg li{float:left;font-size:16px;font-weight:400;margin:0 4px}aside#explore-sidebar{padding-left:0;margin-bottom:20px}main#community-page .head-wrap{padding-top:1em;height:auto;background-size:cover;position:relative}main#community-page .head-wrap .wrapper{width:95%}main#community-page .head-wrap .page-title{height:3em;position:relative;margin-bottom:2em}main#community-page .head-wrap .page-title .center{position:absolute;top:0;left:0;width:100%;height:3em;text-align:center}main#community-page .head-wrap .page-title .center>div{background:rgba(246,246,246,.86);width:auto;display:table;float:none;margin:0 auto}main#community-page .head-wrap .page-title .center>div>h1{margin:0 .5em}main#community-page .head-wrap .page-title hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff;float:left;width:100%}main#community-page .banner{margin:0 auto;float:none;background:#fff;border:1px solid #e4e4e4;padding:0;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;text-align:center}main#community-page .banner .top{padding:1em;font-size:1em}main#community-page .banner .top .large{font-size:2em}main#community-page .banner .bottom{padding:1em;background:rgba(231,231,231,.4);border-top:1px solid #e4e4e4;-webkit-border-radius:0 0 9px 9px;-moz-border-radius:0 0 9px 9px;border-radius:0 0 9px 9px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}main#community-page .banner .bottom a{margin-right:5px}main#community-page .body-wrap{background:#fff;position:relative}main#community-page .body-wrap .wrapper{width:70%}main#community-page .body-wrap #user-lists{padding-top:1em}main#community-page .body-wrap #user-lists #community-tabs{margin-bottom:20px;text-align:center}main#community-page .body-wrap #user-lists #community-tabs .pling-nav-tabs .nav-tabs{text-align:center}main#community-page .body-wrap #user-lists #community-tabs .pling-nav-tabs .nav-pills>li,main#community-page .body-wrap #user-lists #community-tabs .pling-nav-tabs .nav-tabs>li{float:none;display:inline-block}main#community-page .body-wrap #user-lists .list{display:block;margin:auto;padding-right:15px;padding-left:15px;display:flex;flex-wrap:wrap;align-items:center;justify-content:center}main#community-page .body-wrap #user-lists .list .u-wrap{float:left;width:100%;padding:.3em;border:.35em solid #dee0e0;border-radius:5px;height:14em;margin-bottom:1em;background:#fff;width:115px;height:200px;margin-right:10px;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out;position:relative;text-align:center}main#community-page .body-wrap #user-lists .list .u-wrap figure{float:left;padding:.25em;border:1px solid #dbdbdb;background:#f6f6f6;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}main#community-page .body-wrap #user-lists .list .u-wrap figure img{width:100%;border:1px solid #dbdbdb;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}main#community-page .body-wrap #user-lists .list .u-wrap h3{font-size:13px;font-weight:700;word-wrap:break-word;line-height:20px;height:20px;padding:0;margin:0}main#community-page .body-wrap #user-lists .list .u-wrap span.small{font-size:13px;color:#444;position:absolute;bottom:5px;right:5px}main#community-page .body-wrap #user-lists .list .u-wrap div.projecttitle{font-size:11px}main#community-page .body-wrap #user-lists .list .u-wrap span.rank{font-size:14px;position:absolute;bottom:5px;left:5px;color:#444;font-weight:700}#product-page-content{padding:0}#product-page-content #product-main-img #product-title-div{padding-left:30px;min-height:105px;padding-top:20px;display:flex}#product-page-content #product-main-img #product-title-div .product-title{flex:0 0 80%;font-size:25px;color:#2673b0;font-weight:700;padding-bottom:15px}#product-page-content #product-main-img #product-title-div .product-title-right{flex:1}#product-page-content #product-main-img #product-title-div img.logo{max-height:85px;max-width:85px;float:left;padding-right:15px;border-radius:0}#product-page-content #product-main-img #product-title-div .product-logo-container{float:left;width:95px}#product-page-content #product-main-img #product-title-div .product_category{font-size:small;display:block;font-weight:400}#product-page-content #product-main-img #product-title-div .topics{padding-right:20px;float:right}#product-page-content #product-main-img #product-title-div .topics .topic-tag{display:inline-block;padding:.3em .9em;margin:0 .5em .5em 0;white-space:nowrap;background-color:#f1f8ff;border-radius:3px}#product-page-content #product-main-img #product-title-div .topics .usertagslabelcat{background-color:#f1f1f1}#product-page-content #product-main-img #product-title-div .topics .topic-tag-link:hover{text-decoration:none;background-color:#def}#product-page-content #product-main-img #product-title-div .topics .btn-link{display:inline-block;padding:0;font-size:inherit;color:#0366d6;text-decoration:none;white-space:nowrap;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;float:right;padding-top:5px;padding-left:10px}#product-page-content #product-main-img #product-title-div .topics .topic-tags-saved{display:none;color:#0366d6;float:left;padding-top:5px;padding-left:10px}#product-page-content #product-main-img #product-title-div .topics .topic-tags-saved .fa-check{color:green}#product-page-content #product-main-img #product-title-div span.source{color:#4e4e4e}#product-page-content #product-main-img #product-title-div div.projectdetailRating{float:right;width:150px;z-index:100}#product-page-content #product-main-img #product-title-div div.projectdtailHeart{float:right;margin-right:5px;width:80px}#product-page-content #product-main-img #product-title-div div.projectdtailHeart .container-pling{position:relative;width:80px}#product-page-content #product-main-img #product-title-div div.projectdtailHeart .container-pling .partialbuttonfollowproject{text-align:center;width:80px;height:30px}#product-page-content #product-main-img #product-title-div div.projectdtailHeart .container-pling .partialbuttonplingproject{text-align:center}#product-page-content #product-main-img #product-title-div div.projectdtailHeart{float:right;z-index:100;margin-right:5px;width:50px}#product-page-content #product-main-img #product-title-div div.projectdtailHeart .container-pling{position:relative;width:50px}#product-page-content #product-main-img #product-title-div div.projectdtailHeart .container-pling .partialbuttonfollowproject{text-align:center;width:45px;height:45px}#product-page-content #product-main-img #product-title-div div.projectdtailHeart .container-pling .partialbuttonplingproject{text-align:center}#product-page-content #product-main-img #product-title-div .heartproject{position:relative;color:#8e44ad;font-size:45px;display:block}#product-page-content #product-main-img #product-title-div div.heartnumber{z-index:3;position:relative;top:-32px;display:block;margin:auto;color:#fff}#product-page-content #product-main-img #product-title-div .heartgrey{position:relative;color:#C8C8C8;font-size:45px;display:block}#product-page-content #product-main-img #product-title-div span.plingcircle{width:30px;height:30px;background-color:#fff;border:3px solid #C8C8C8;border-radius:50%;display:inline-block;font-size:17px;text-align:center;color:#C8C8C8;font-weight:700;transform:rotate(345deg)}#product-page-content #product-main-img #product-title-div span.active{border:3px solid #EE6E09;color:#EE6E09}#product-page-content #product-main-img #product-title-div div.heartnumberpurple{color:#8e44ad}#product-page-content #product-tabs-container{padding-top:30px}#product-page-content #product-tabs-container #product-actions{margin-top:25px;margin-right:10px}#product-page-content #product-tabs{font-size:10pt;padding-left:25px}#product-page-content #product-panels{background:none repeat scroll 0 0 #fff;height:auto;overflow:hidden;border-radius:0;padding:15px;float:left;width:100%;margin:0}#product-page-content #product-panels .tab-pane{width:100%;float:left;background-color:#fff;padding:4px}#product-page-content #product-panels .tab-pane h3{color:#2673b0;margin-bottom:20px;margin-top:0}#product-page-content #product-panels .tab-pane .panel-grey-part{padding:15px;background-color:#f3f3f3;color:#2673b0;border-left:1px solid #e5e5e5}#product-page-content #product-panels .tab-pane#about-panel #product-about{padding:20px 10px 10px 10px}#product-page-content #product-panels .tab-pane#about-panel #product-about article{padding-top:15px}#product-page-content #product-panels .tab-pane#about-panel #product-about article.lastchangelog{padding-top:50px}#product-page-content #product-panels .tab-pane#donations-panel #comments{width:100%;float:left;padding:15px}#product-page-content #product-panels .tab-pane#donations-panel .list#supporters{padding:15px}#product-page-content #product-panels .tab-pane#ratings-panel .productRating-rows-inactive{color:#ddd;display:none}#product-page-content #product-panels .tab-pane#ratings-panel .userimg{border-radius:50%;border:1px solid #ccc;width:40px;height:40px}#product-page-content #product-panels .tab-pane#ratings-panel span.o-thumbs-up{color:green;padding-left:10px;padding-top:10px}#product-page-content #product-panels .tab-pane#ratings-panel span.o-thumbs-down{color:red;padding-left:10px;padding-top:10px}#product-page-content #product-panels #files-panel{padding-top:30px}#product-page-content #product-panels #files-panel table.table-ocs-file td{padding:3px;vertical-align:middle;padding-left:8px}#product-page-content #product-panels #files-panel table.table-ocs-file th{padding-right:3px}#product-page-content #product-panels #files-panel .btn{padding:3px 5px}#product-page-content #product-panels #updates-panel span.product-update-date{padding-left:10px}#product-page-content #product-panels #likes-panel .u-wrap{float:left;padding:.3em;border:.35em solid #dee0e0;border-radius:5px;height:14em;margin-bottom:1em;background:#fff;width:115px;height:200px;margin-right:10px;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out}#product-page-content #product-panels #likes-panel .u-wrap figure img{width:100%;border:1px solid #dbdbdb;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#product-page-content #product-panels #likes-panel .u-wrap h3{font-size:13px;font-weight:700;word-wrap:break-word;line-height:20px;height:20px;padding:0;margin:0}#product-page-content #product-panels #likes-panel .u-wrap span.small{font-size:13px;text-align:right;color:#444;margin-top:50px;float:right}span.page-views{float:left;font-size:12px;padding:5px 15px 5px 0;color:#2673b0}#product-maker{background-color:#f1f1f1}#product-maker .project-share-new{padding-bottom:10px;padding-top:10px}#product-maker .project-share-new>.row{padding-left:30px}#product-maker .project-share-new .prod-user{margin-top:10px}#product-maker .project-share-new .prod-user .product-maker-thumbnail{float:right}#product-maker .project-share-new .prod-user .product-maker-thumbnail .supporter-badge{position:absolute;left:0;bottom:0;background:#EE6E09;text-align:center;border-radius:15px 15px 15px 15px;color:#fff;padding:2px 5px;font-size:10px}#product-maker .project-share-new .prod-user .product-maker-summary{float:right;padding-right:20px}#product-maker .project-share-new .prod-info{font-size:12px;padding-bottom:10px}#product-maker .project-share-new .prod-info>span{width:100%;float:left;padding-left:15px}#product-maker .project-share-new .prod-download>a{position:relative;display:block;float:left;color:#2673b0;background-image:-moz-linear-gradient(top,#E8E8E8,#D6D6D6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#E8E8E8),to(#D6D6D6));background-image:-webkit-linear-gradient(top,#E8E8E8,#D6D6D6);background-image:-o-linear-gradient(top,#E8E8E8,#D6D6D6);background-image:linear-gradient(to bottom,#E8E8E8,#D6D6D6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@from', endColorstr='@to', GradientType=0);-webkit-box-shadow:inset 0 0 0 1px rgba(154,154,154,.45);-moz-box-shadow:inset 0 0 0 1px rgba(154,154,154,.45);box-shadow:inset 0 0 0 1px rgba(154,154,154,.45);padding:10px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;height:50px;font-size:16px;line-height:30px;padding-left:15px;margin-right:5px;margin-bottom:10px}#product-maker .project-share-new .prod-download>a .glyphicon{font-size:30px;margin:0;position:absolute;height:30px;width:30px;display:block;top:10px;left:10px}#product-maker .project-share-new .prod-download>a .txt{float:left;width:100%;height:30px}#product-maker .project-share-new .prod-download>a .txt>span{text-transform:capitalize}#product-maker .project-share-new #donation-box{margin:0 -10px}.prod-widget-box{border:1px solid #ccd4d8!important;font-size:10pt;padding:5px;margin-bottom:10px!important;width:95%!important}.prod-widget-box .product-row .product-thumbnail{width:75px;height:77px;margin:7px;padding:10px;position:relative}.prod-widget-box .product-row .product-thumbnail img{border-radius:5px;border:1px solid #b2b2b2;height:75px;width:75px}.prod-widget-box #pling-box .donation-box{padding-top:10px;padding-bottom:15px;width:100%;height:auto}.prod-widget-box #pling-box .donation-box>div{height:auto}.prod-widget-box #comments figure{width:40px;height:auto;text-align:center;border-top:1px solid #f5f5f5;padding:0 0 15px 0;float:left}.prod-widget-box #comments figure img{margin:0 auto;width:70%}.prod-widget-box.details span{line-height:1.65em;font-size:8.25pt}.prod-widget-box.details span.title{font:12pt Trebuchet MS,sans-serif;display:block;padding-bottom:10px}.prod-widget-box.details span.value{font-size:9pt}#product-donate{display:none;width:550px;height:300px;font-size:13px}main#reg-page{width:100%;height:100%}main#reg-page .form-control-feedback{line-height:40px}main#reg-page section#register-wrap{position:fixed;top:20%;left:50%;margin-left:-290px;width:580px}main#reg-page section#register-wrap input[type=text],main#reg-page section#register-wrap input[type=password]{border-width:1px;height:41px;margin:4px 0;width:100%;float:none;padding:0 5px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.15);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.15);box-shadow:inset 0 1px 1px rgba(0,0,0,.15)}main#reg-page section#register-wrap input[type=checkbox]{height:20px;width:auto}main#reg-page section#register-wrap label{font-size:12px}main#reg-page section#register-wrap button#login{margin-top:8px;width:120px}main#reg-page section#register-wrap #register{width:100%;margin:auto;background:#f5f5f5;padding:10px;border-radius:5px}@media (max-width:800px){main#reg-page section#register-wrap #register{max-height:400px;overflow-y:auto}}@media (max-width:550px){main#reg-page section#register-wrap #register{max-height:300px;overflow-y:auto}}@media (max-width:350px){main#reg-page section#register-wrap #register{max-height:200px;overflow-y:auto}}main#reg-page section#register-wrap #register h3{text-align:center;font-weight:400;position:relative;margin:10px 0 13px 0}main#reg-page section#register-wrap #register #register-box{padding-left:0;padding-right:0;min-height:373px}main#reg-page section#register-wrap #register #register-box #register-form-box{background-color:#fff;margin-bottom:0;width:373px}main#reg-page section#register-wrap #register #social-register{padding-top:20px;padding-right:15px;padding-left:30px;float:right}main#reg-page section#register-wrap #register #social-register #social-login-elements{margin-bottom:91px}main#reg-page section#register-wrap #register #social-register>div{float:left;width:100%}main#reg-page section#register-wrap #register #social-register form button{background-image:url(../img/bg_sheet.png);font-size:14px;display:block;font-weight:300;color:#fff;width:140px;height:41px;margin:0;border:none;text-align:left;text-indent:10px;padding-left:41px}main#reg-page section#register-wrap #register #social-register form button.facebook{background-position:0 -189px;margin-top:4px}main#reg-page section#register-wrap #register #social-register form button.twitter{background-position:0 -232px;margin-top:7px}main#reg-page section#register-wrap #register #social-register .bottom .small{margin-bottom:6px;text-align:center}main#reg-page section#register-wrap #register #social-register .bottom .login2 a{width:100%}main#reg-page section#register-wrap #login-form-box{background-color:#fff;margin-bottom:0;position:absolute;top:0;bottom:0}main#reg-page #thumbs{z-index:-1;width:100%;min-height:700px;overflow:hidden;position:relative;background:#000}main#reg-page #thumbs div.thumb{width:5.5555%;max-height:100px;padding:0;float:left;background:rgba(0,0,0,.8)}main#reg-page #thumbs div.thumb a{float:left;width:100%;height:auto;display:block;position:relative}main#reg-page #thumbs div.thumb a>span{width:100%;height:100%;display:block;position:absolute;top:0;left:0;background:rgba(0,0,0,.8);-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out}main#reg-page #thumbs div.thumb a img{width:100%;height:auto}.login-popup{position:relative;background:#fff;padding:0;width:420px;margin:0 auto}.login-popup .login-popup-form{background:#fff;border-radius:10px;padding:20px;float:left;margin:0;width:440px}.login-popup .login-popup-form .login-form-container{position:relative}.login-popup .login-popup-form .login-form-container form{margin:0}.login-popup .login-popup-form .login-form-container form input,.login-popup .login-popup-form .login-form-container form select,.login-popup .login-popup-form .login-form-container form textarea{border:1px solid #bdc3c7;padding:0;border-radius:5px}.login-popup .login-popup-form .login-form-container form .inputbox{border:1px solid #eaedf2;border-radius:3px;height:40px;padding:10px 0 10px 32px;width:100%;outline:0;margin-bottom:10px;font-family:inherit}.login-popup .login-popup-form .login-form-container form .email{background:#eaedf2 url(../img/email.png) 10px 15px no-repeat}.login-popup .login-popup-form .login-form-container form .password{background:#eaedf2 url(../img/password.png) 10px 10px no-repeat}.login-popup .login-popup-form .login-form-container form .container-checkbox-remember-me{height:20px;clear:both;margin-bottom:10px}.login-popup .login-popup-form .login-form-container form .container-checkbox-remember-me input{height:20px;margin:0 5px;float:left;width:auto}.login-popup .login-popup-form .login-form-container form .container-checkbox-remember-me label{display:inline-block;font-weight:700;font-size:13px;float:left}.login-popup .login-popup-form .login-form-links{position:absolute;bottom:10px;right:20px;font-size:13px}.login-popup .login-popup-form .login-form-links a{font-size:13px}.login-popup p{font-size:15px;margin-bottom:0;text-align:left}.login-popup .social{margin:20px 0 15px}.login-popup .social a{color:#fff;text-decoration:none;font-weight:700;border-radius:4px 4px 4px 4px;margin-right:10px;float:left;height:40px}.user-admin-page{position:relative}.user-admin-page .head-wrap{padding-top:1em;height:auto;background-size:cover;position:relative;padding-bottom:1.9em}.user-admin-page .head-wrap .about-me-header figure{width:6.9em;height:6.9em;padding:.3em;border:1px solid #dbdbdb;background:#fff;position:absolute;z-index:10;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.user-admin-page .head-wrap .about-me-header figure img{width:100%;height:100%;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.user-admin-page .head-wrap .about-me-header .user-menu{position:relative;height:auto;background:#fff;float:left;margin-top:1.5em;padding:.5em 2em .5em 8em;-webkit-border-radius:50px 0 0 50px;-moz-border-radius:50px 0 0 50px;border-radius:50px 0 0 50px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.user-admin-page .head-wrap .about-me-header .user-menu .intro{margin-top:0}.user-admin-page .body-wrap{background:#fff;position:relative}.user-admin-page .body-wrap .product-page{padding-top:1em}.user-admin-page .my-payments-page,.user-admin-page .my-products-page{padding-bottom:2em}.user-admin-page .my-payments-page .my-products-heading,.user-admin-page .my-products-page .my-products-heading{padding-bottom:20px;margin-bottom:20px;margin-top:20px;border-bottom:1px solid #c1c1c1;float:left;width:100%}.user-admin-page .my-payments-page .my-products-heading .num-products,.user-admin-page .my-products-page .my-products-heading .num-products{margin-top:35px}.user-admin-page .my-payments-page .my-products-list,.user-admin-page .my-products-page .my-products-list{float:left;width:100%}.user-admin-page .my-payments-page .my-product-item,.user-admin-page .my-products-page .my-product-item{margin-bottom:20px}.user-admin-page .my-payments-page .my-product-item figure,.user-admin-page .my-products-page .my-product-item figure{height:auto;padding:0}.user-admin-page .my-payments-page .my-product-item figure img.explore-product-image,.user-admin-page .my-products-page .my-product-item figure img.explore-product-image{width:101px;height:auto;padding-top:10px}.user-admin-page .my-payments-page .my-product-item article>div,.user-admin-page .my-products-page .my-product-item article>div{float:left;width:100%}.user-admin-page .my-payments-page .my-product-item article .title,.user-admin-page .my-products-page .my-product-item article .title{margin-bottom:10px}.user-admin-page .my-payments-page .my-product-item article .title h3,.user-admin-page .my-products-page .my-product-item article .title h3{margin:0;padding:0}.user-admin-page .my-payments-page .my-product-item article .info ul,.user-admin-page .my-products-page .my-product-item article .info ul{list-style-type:none;padding:0;margin:0}.user-admin-page .my-payments-page .my-product-item article .info ul li,.user-admin-page .my-products-page .my-product-item article .info ul li{float:left;width:auto;font-size:12px}.user-admin-page .my-payments-page .my-product-item article .info ul li span+span,.user-admin-page .my-products-page .my-product-item article .info ul li span+span{margin-left:5px;font-weight:700}.user-admin-page .my-payments-page .my-product-item article .info ul li+li,.user-admin-page .my-products-page .my-product-item article .info ul li+li{margin-left:15px}.user-admin-page .my-payments-page .my-product-item article .text,.user-admin-page .my-products-page .my-product-item article .text{font-size:12px;margin:5px 0 10px 0}.user-admin-page .my-payments-page .my-product-item article .text p,.user-admin-page .my-products-page .my-product-item article .text p{margin:0}.user-admin-page .my-payments-page .my-product-item article .buttons a.btn.btn-native,.user-admin-page .my-products-page .my-product-item article .buttons a.btn.btn-native{color:#fff;font-size:12px;padding:3px 6px}.user-admin-page .my-payments-page .my-product-item article .buttons a.btn.pling-danger,.user-admin-page .my-products-page .my-product-item article .buttons a.btn.pling-danger{background-color:#C82333}.user-admin-page .my-payments-page .my-product-divider,.user-admin-page .my-products-page .my-product-divider{border-bottom:1px solid #c1c1c1;margin-bottom:20px;width:97%;margin-left:15px}.user-admin-page .my-payments-page #my-earnings-list ul.nav-tabs,.user-admin-page .my-products-page #my-earnings-list ul.nav-tabs{top:0;position:relative;margin:0;border-radius:5px 5px 0 0;padding:10px;padding-bottom:0}.user-admin-page .my-payments-page #my-earnings-list ul.nav-tabs>li>a,.user-admin-page .my-products-page #my-earnings-list ul.nav-tabs>li>a{padding:.7em 1em;font-size:.9em;height:2.95em;color:#2673b0}.user-admin-page .my-payments-page #my-earnings-list #my-earnings-tabs,.user-admin-page .my-products-page #my-earnings-list #my-earnings-tabs{padding:10px;border:1px solid #ddd;border-radius:0 0 5px 5px}.user-admin-page .my-payments-page #my-earnings-list #my-earnings-tabs .tab-pane,.user-admin-page .my-products-page #my-earnings-list #my-earnings-tabs .tab-pane{font-weight:700}.user-admin-page .my-payments-page #my-earnings-list #my-earnings-tabs .tab-pane .row,.user-admin-page .my-products-page #my-earnings-list #my-earnings-tabs .tab-pane .row{margin:0}.user-admin-page .my-payments-page #my-earnings-list #my-earnings-tabs .tab-pane .row h3,.user-admin-page .my-products-page #my-earnings-list #my-earnings-tabs .tab-pane .row h3{margin:5px 0}.modal-ppload .content-modal{width:950px}.about-me-page .my-fav-list{width:1100px}.about-me-page .my-fav-list .totaldownloads{margin:0;padding:20px;text-align:right}.about-me-page .my-fav-list .smaller{font-size:smaller}.about-me-page .my-fav-list .row{border-bottom:1px solid #ccc;padding-top:15px;padding-bottom:15px}.about-me-page .my-fav-list .rating{width:60px!important;font-size:10pt}.about-me-page .my-fav-list .downloadhistory-image{width:50px;height:50px;float:left;margin-right:15px}.about-me-page .my-fav-list .nowrap{white-space:nowrap}.about-me-page .my-fav-list i.voteup{color:#409540;font-size:20px;padding-left:5px;padding-right:5px}.about-me-page .my-fav-list i.votedown{color:#C9302C;font-size:20px;padding-left:5px;padding-right:5px}.about-me-page .my-fav-list .newusers .u-wrap{float:left;width:100%;padding:.3em;border:.35em solid #dee0e0;border-radius:5px;height:14em;margin-bottom:1em;background:#fff;width:115px;height:200px;margin-right:10px;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out;position:relative}.about-me-page .my-fav-list .newusers .u-wrap figure img{width:100%;border:1px solid #dbdbdb;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.about-me-page .my-fav-list .newusers .u-wrap h3{font-size:13px;font-weight:700;word-wrap:break-word;line-height:20px;height:20px;padding:0;margin:0}.about-me-page .my-fav-list .newusers .u-wrap div.small{font-size:13px;color:#444;position:absolute;bottom:5px;right:5px}.about-me-page .my-fav-list .newusers .u-wrap div.small img.plingactivesmall{width:20px;height:20px}.about-me-page .my-fav-list .newusers .u-wrap div.small .cntplings{line-height:20px}.about-me-page>.head-wrap{padding-top:1em;height:auto;background-size:cover;position:relative;padding-bottom:1em}.about-me-page>.head-wrap .page-title{height:3em;position:relative;margin-bottom:2em;margin-top:2em}.about-me-page>.head-wrap .page-title .center{position:absolute;top:0;left:0;width:100%;height:3em;text-align:center}.about-me-page>.head-wrap .page-title .center>div{background:#f6f6f6;width:auto;display:table;float:none;margin:0 auto}.about-me-page>.head-wrap .page-title .center>div>h1{margin:0 .5em}.about-me-page>.head-wrap .page-title hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff;float:left;width:100%}.about-me-page .header{height:auto;position:relative;margin-bottom:3em}.about-me-page .header>div.col-lg-8{padding-right:5px;padding-left:0}.about-me-page .header>div.col-lg-4{padding-right:0;padding-left:5px}.about-me-page .header .about{display:none}.about-me-page .header .about .well{background-color:#fff;padding:1em;height:22.5em}.about-me-page .header .about .well h2{font-size:1.4em;margin:0;min-height:1.4em;line-height:1.2em;border-bottom:1px solid #dbdbdb;font-weight:400}.about-me-page .header .about .well article{border-top:1px solid #f5f5f5;padding-top:.5em;width:100%;float:left;overflow:hidden;height:18.5em}.about-me-page .header .about .well article>.scroll-pane{height:18em}.about-me-page .header .summary{float:none;margin:0 auto}.about-me-page .header .summary article{padding:0;background-color:#fff;height:auto;float:left}.about-me-page .header .summary article .about-title{padding:1em;height:8.9em;padding-left:8.9em;position:relative;background:rgba(246,246,246,.45);border-bottom:1px solid #e1e1e1;float:left;width:100%}.about-me-page .header .summary article .about-title figure{width:6.9em;height:6.9em;padding:.3em;border:1px solid #dbdbdb;background:#fff;position:absolute;top:1em;left:1em;display:inline-block;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.about-me-page .header .summary article .about-title figure img{width:100%;height:100%;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.about-me-page .header .summary article .about-title .supporter-badge{position:absolute;left:0;bottom:0;background:#EE6E09;text-align:center;border-radius:30px 30px 30px 30px;color:#fff;padding:5px 10px;font-size:16px}.about-me-page .header .summary article .about-title .mod-badge{display:block;text-align:center;padding-top:3px;font-size:small}.about-me-page .header .summary article .about-title h1{margin:1.5em 0 0 0;font-size:1.5em;min-height:1.7em;line-height:1em}.about-me-page .header .summary article .about-content{padding:1em;float:left}.about-me-page .header .summary article .about-content>div{float:left;width:100%}.about-me-page .header .summary article .about-content>div span{float:left;display:block;line-height:1.25em}.about-me-page .header .summary article .about-content>div span.glyphicon{color:#939292;margin-right:.25em;font-size:1.25em}.about-me-page .header .summary article .about-content>div span+span{line-height:1.65em}.about-me-page .header .summary article .about-content>div.social-icons a{font-size:1.35em;height:1em;width:1em;display:block;float:left}.about-me-page .header .summary article .about-content>div.social-icons a img{width:100%;height:100%;vertical-align:top}.about-me-page .header .summary article .about-content>div.social-icons a+a{margin-left:.25em}.about-me-page .header .summary article .about-content div+div{margin-top:.25em}.about-me-page .header .summary article .about-footer{float:left;width:100%;padding:1em}.about-me-page .header .summary article .about-footer .info-div{width:100%;float:left}.about-me-page .header .summary article .about-footer .info-div+.info-div{margin-top:5px}.about-me-page .header .summary article .about-footer .social-share .social+.social{margin-left:.5em}.about-me-page .header .summary article .about-footer>.pull-right em.report-icon{height:1.5em;width:1.5em;margin-top:.5em;background-size:cover}.about-me-page .about-me-details{padding-left:0;padding-right:.5em}.about-me-page .about-me-details .tab-content{padding-top:20px}.about-me-page .about-me-details h3.about-me-heading{font-size:1.5em;margin:0;min-height:1.9em;line-height:1.9em;border-bottom:1px solid #dbdbdb;font-weight:400}.about-me-page .about-me-details article{padding-top:.5em;padding-bottom:1.5em;width:100%;float:left}.about-me-page .about-me-details .my-products-list h3{width:100%;margin-bottom:20px}.about-me-page .about-me-details .my-products-list .cat-title{padding:0 5px;position:relative;height:2em;margin-bottom:1em;margin-top:1.1em}.about-me-page .about-me-details .my-products-list .cat-title>div{position:absolute;top:0;left:1em;background:#fff;height:2em;width:auto;padding:0 .5em}.about-me-page .about-me-details .my-products-list .cat-title>div>h2{margin:0}.about-me-page .about-me-details .my-products-list .cat-title hr{float:left;width:100%;margin-top:1em;margin-bottom:1em;border-bottom:1px solid #F9F9F9}.about-me-page .about-me-details .my-products-list .mini-card{width:14.28571%;margin-bottom:10px}.about-me-page .about-me-details .my-products-list .mini-card p img{vertical-align:baseline}.about-me-page aside .details{float:left;width:100%;height:auto;padding:.5em}.about-me-page aside .details h3{line-height:2em;font-size:1em;margin:0;color:#a3a2a2;border-bottom:1px solid #e1e1e1}.about-me-page aside .details .box-content{padding:.5em 0 0 0;border-top:1px solid #ededed}.about-me-page aside .details .box-content>div{width:100%;float:left;height:auto;margin-top:.5em}.about-me-page aside .details .box-content>div .label{float:left;padding:0}.about-me-page aside .details .box-content>div .label em,.about-me-page aside .details .box-content>div .label span{font-size:1.7em;float:left;display:inline-block;color:#AAA}.about-me-page aside .details .box-content>div .label em{display:block;width:1em;height:1em;background-size:cover}.about-me-page aside .details .box-content>div .label em.fb-link{background-image:url(../img/social_icons/fb.png)}.about-me-page aside .details .box-content>div .label em.tw-link{background-image:url(../img/social_icons/tw.png)}.about-me-page aside .details .box-content>div .label em.gp-link{background-image:url(../img/social_icons/g_plus.png)}.about-me-page aside .details .box-content>div .label em.gt-link{background-image:url(../img/social_icons/github.png)}.about-me-page aside .details .box-content>div .text{width:90%;float:right;font-size:1em;min-height:1.5em;line-height:1.3em}.mini-card{padding:0 2px;width:14.28571%;margin-bottom:10px}.mini-card .u-wrap{float:left;width:100%;border:2px solid #DEE0E0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;height:15em;margin-bottom:4px;background:#fff;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out}.mini-card .u-wrap a{float:left;width:100%;height:100%;display:block;position:relative}.mini-card .u-wrap figure{width:100%;float:left;height:120px}.mini-card .u-wrap figure img{width:100%;height:120px;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.mini-card .u-wrap .rating{font-size:11px;position:absolute;right:10px;bottom:10px}.mini-card .u-wrap .u-content{width:100%;float:left;padding:3px;height:5.5em;position:relative;overflow:hidden}.mini-card .u-wrap .u-content .productCategory{color:#4e4e4e;display:block;font-size:11px}.mini-card .u-wrap .u-content>h3{font-size:12px;word-wrap:break-word;width:100%;margin:2px 0 4px 0}.mini-card .u-wrap .u-content>p{font-size:15px;position:absolute;bottom:0;right:3px;width:100%;margin:0;color:#000;font-weight:700;text-align:right;color:#444}.mini-card .u-wrap:hover{border-color:#DEE0E0;background:#f6f6f6}.mini-card .u-wrap:hover figure{background:#fff}@media (max-width:800px){.mini-card{width:16.6666667%}.mini-card .u-wrap{height:12em}}@media (max-width:550px){.mini-card{width:20%}.mini-card .u-wrap{height:14em}}@media (max-width:350px){.mini-card{width:33.333333%}.mini-card .u-wrap{height:16em}}.product-card{width:10%;padding:0 3px;margin-bottom:10px;height:auto}.product-card>a{display:block;float:left;width:100%;height:auto;position:relative}.product-card>a .card>.border{position:absolute;top:0;left:0;width:100%;background-color:#2673B0}.product-card>a .card>.p-wrap{width:100%;height:8.25em;border:2px solid #c5ced5;background-color:#fff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.product-card>a .card>.p-wrap>figure{width:100%;height:3.5em;overflow:hidden;display:block;float:left;border-bottom:1px solid #c5ced5}.product-card>a .card>.p-wrap>figure>img{height:100%;width:100%}.product-card>a .card>.p-wrap>.content{width:100%;float:left;padding:.25em;font-size:1em;height:3.5em}.product-card>a .card>.p-wrap>.content>h3{font-size:.7em;margin:0;color:#34495e;display:block;width:100%;height:100%;overflow:hidden;word-break:break-word}.product-card>a .card>.p-wrap>.footer{float:left;width:100%;height:1em;line-height:1em;font-size:1em;text-align:right;padding:0 .1em;background-color:#f5f5f5;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.product-card>a .card>.p-wrap>.footer>p{font-weight:700;font-size:.75em;color:#a7a7a7}.product-card>a>.empty-card{width:100%}@media (max-width:800px){.product-card{width:16.6666667%}}@media (max-width:550px){.product-card{width:20%}}@media (max-width:350px){.product-card{width:33.333333%}}.wizard>.content>.body{position:inherit}.wizard>.content>.body input.error,.wizard>.content>.body select.error,.wizard>.content>.body textarea.error{background:none repeat scroll 0 0 #fbe3e4;border:1px solid #fbc2c4;color:#8a1f11}.wizard>.steps li a{background:#eee none repeat scroll 0 0;color:#aaa;cursor:default}.wizard>.steps li a:hover{cursor:pointer}.wizard>.steps>ul>li{width:20%}.add-product-top{width:100%;margin:20px 0 100px 0;padding:0 15px}.add-product-top h1{margin-bottom:0;font-size:2em}.add-product-top ul.steps{width:auto;margin-bottom:0}.add-product-top ul.steps li{float:left;display:inline-block;list-style:none;margin:0;color:#bdc3c7;border-bottom:2px solid #bdc3c7;padding:1em 2.5em;font-size:1em;width:auto}.add-product-top ul.steps li.active{color:#2673B0;border-bottom:2px solid #2673B0}.add-product-container{padding-bottom:40px}.add-product-container>form{width:50%;margin:0 auto}.add-product-container>form .field label{width:100%}.add-product-container>form .field input,.add-product-container>form .field textarea{width:100%}.add-product-container>form .field select{height:35px;width:48%}.add-product-container>form .field select+select{float:right}.add-product-container>form button+button{margin-right:10px}.add-product-form{margin:auto}.mandatory{top:2px;left:-240px;width:220px;text-align:right}.bold-font{font-size:18px;font-weight:700}.field-missing-container{top:26px;right:-240px;width:230px}.field-missing-left{margin-top:6px;float:left;width:8px;height:22px;background:url(../img/field-missing-left.png)}.field-missing{float:left;background:#fadbd8;border-radius:5px;color:#e74c3c;padding:12px;max-width:190px;word-break:normal;word-wrap:break-word}.add-more{right:10px}a.add-more:hover{text-decoration:underline}.icon-plus{margin-left:5px;width:15px;height:15px;background:url(../img/icon-plus.png)}.product-gallery{margin-bottom:30px}.product-gallery .product-image{float:left;margin:5px 5px 0 0}.product-gallery .product-image img{max-width:110px;max-height:110px;overflow:hidden;border-radius:5px;border:3px solid #2673B0}.product-gallery .product-image img:hover{border:3px solid #bdc3c7}.product-gallery .product-image .image{width:110px;height:77px;overflow:hidden;border-radius:5px;border:3px solid #2673B0;background-size:110px;background-position:center center}.product-gallery .product-image .image:hover{border:3px solid #bdc3c7}.product-gallery .product-image .icon-check{width:20px;height:20px;background:url(../img/icon-check.png)}.product-gallery .product-image .icon-cross{display:none;width:20px;height:20px;background:url(../img/icon-cross.png);right:0;cursor:pointer}.product-gallery .upload-image-container .upload-image{float:left;cursor:pointer;width:116px;height:83px;background:url(../img/icon-upload.png);background-position:0 -15px;margin:5px 0 0 -5px;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.product-gallery .upload-image-container .upload-image:hover{background:url(../img/icon-upload-hover.png);background-position:0 -15px}input.gallery-picture,input.product-picture,input.title-picture{opacity:0;margin-bottom:0;height:0;width:0;position:absolute}#product-picture-container,#title-picture-container{max-width:110px;max-height:110px;overflow:hidden}img#product-picture-preview,img#title-picture-preview{display:none;margin-top:20px}#embed-code{margin-top:20px}.add-page-preview{background:rgba(46,49,51,.8);color:#fff;position:fixed;margin-top:0;width:100%;z-index:1}.add-page-preview>.container{padding-bottom:20px}.add-page-preview .add-product-mid>.left{width:100%}.preview-container>.row-fluid{margin-top:220px}.preview-title{font-size:18px;margin:0 60px 0 15px;padding-top:15px}.preview-explanation{padding-top:18px}.add-page-preview .add-product-top{border-bottom:1px solid #393d3f;margin-bottom:10px}.add-page-preview ul.steps{margin-bottom:0}.paypal-label{font-size:17px;margin:15px 60px 0 30px}.icon-paypal{width:40px;height:40px;background:url(../img/icon-paypal.png);margin:-10px 30px 0 0}.preview-inputs{padding:10px 0;border-bottom:1px solid #393d3f}.preview-buttons{padding:20px 0 0 0}.preview-buttons .btn.right{margin-left:10px}input.preview-input{margin-left:20px;width:250px;height:35px}.settings-page>.about-me{float:left;width:100%;margin-bottom:40px}.settings-page .settings-options{padding:0}.settings-main{padding-right:0;margin-bottom:40px}.settings-main .panel .panel-heading{position:relative}.settings-main .panel .panel-heading h4 a{font-size:1.2em;padding:.5em .5em}.settings-main .panel .panel-heading h4 a:hover{text-decoration:none;color:#2673B0}.settings-main .panel .panel-heading span.glyphicon-chevron-down{position:absolute;top:50%;margin-top:-.5em;right:.5em;transform:rotate(0);-ms-transform:rotate(0);-webkit-transform:rotate(0);-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out}.settings-main .panel .panel-heading.active span.glyphicon-chevron-down{transform:rotate(180deg);-ms-transform:rotate(180deg);-webkit-transform:rotate(180deg)}.settings-main .panel .panel-body{padding:.5em}.settings-main .panel .panel-body>form{padding:.5em;margin-bottom:0}.settings-main .panel .panel-body>form>.row>div input[type=text],.settings-main .panel .panel-body>form>.row>div input[type=password],.settings-main .panel .panel-body>form>.row>div textarea{width:100%;padding:0 5px}.settings-main .panel .panel-body>form>.row>div textarea.about{padding:.5em 1em .5em .5em}.settings-main .panel .panel-body>form>.row .btn.pull-right{margin-right:15px}.settings-main .panel .panel-body>form>hr{margin-top:1em;margin-bottom:1em;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff}.settings-main ul li.text-error,.settings-main ul.errors{color:#b94a48;list-style-type:none;font-size:.8em;padding:0;display:inline-block}.settings-main input.input-error,.settings-main textarea.input-error{border:1px solid #b94a48}.settings-main .form-success{color:#48B96C}.settings-main .section-body{padding:15px 15px 0 15px;display:none;border-bottom:1px solid #bdc3c7}.settings-main .section-body .row:last-of-type{margin:0 0 15px 0}.settings-main .section-body hr{display:block;height:0;border-top:1px solid #bdc3c7;padding:0 1em;width:100%;margin:10px 0 20px -15px}.settings-main .section-body .field input[type=text],.settings-main .section-body .field input[type=password],.settings-main .section-body .field textarea,.settings-main .section-body .row input[type=text],.settings-main .section-body .row input[type=password],.settings-main .section-body .row textarea{width:100%}.settings-main #form-profile textarea.about{height:228px}.settings-main #form-picture .image-preview,.settings-main #form-picture-background .image-preview{display:block;padding:0;margin:10px auto;width:100%;max-width:200px;height:auto}.settings-main #form-picture .image-preview>img,.settings-main #form-picture-background .image-preview>img{width:100%;height:auto}.settings-main #form-picture .image-info,.settings-main #form-picture-background .image-info{margin:22px 0 0 -20px;padding:0 0 0 35px;border-left:1px solid #bdc3c7;height:200px}.settings-main #form-picture .image-info p,.settings-main #form-picture-background .image-info p{margin-bottom:30px}.settings-main #form-website .clipboard-copy{background:rgba(8,165,193,.49);padding:7px;position:relative;padding-right:230px;margin-bottom:20px;border-radius:7px}.settings-main #form-website .clipboard-copy .btn-purple{position:absolute;top:0;right:0;padding:7px 35px}.settings-main #form-website .clipboard-copy .clipboard-code{margin:0;width:100%;color:#fff;background:0;padding:0;box-shadow:none;font-size:16px}.settings-main #form-newsletter .newsletter-label{margin:5px 10px 0 0}.settings-main #form-newsletter #newsletter{height:14px;float:left;width:auto;margin:7px 0 0 0;cursor:pointer}.settings-main #add-profile-picture{width:100%;max-width:200px}.profile-summary{padding:15px;background:#FDFDFD}.profile-summary .profile-image-container{width:123px;height:123px;margin:auto;border:1px solid #ccc;padding:.25em;background:#fff;-webkit-border-radius:123px;-moz-border-radius:123px;border-radius:123px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.profile-summary .profile-image-container .profile-image img{width:100%;height:100%;border:1px solid #ccc;-webkit-border-radius:123px;-moz-border-radius:123px;border-radius:123px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.profile-summary .profile-name{font-size:20px;margin-bottom:45px}.profile-summary .last-active{font-size:12px;margin-top:5px}#overlays .clipboard-copy{background:#ebf5fb;padding-left:10px;margin-bottom:20px}#overlays .clipboard-copy .clipboard-code{margin:10px 0}div.image{display:inline-block;margin-left:5px;width:17px;height:17px}div.image.checked{background:url(/theme/flatui/img/icon-check-round-green.png) no-repeat}div.image.unchecked{background:url(/theme/flatui/img/icon-question-round.png) no-repeat}input.gallery-picture,input.product-picture,input.title-picture{opacity:0;margin-bottom:0;height:0;width:0;position:absolute}@media (max-width:767px){.settings-main{padding-left:0}}.static-container{margin-top:0;margin-bottom:0;max-width:970px}.static-container hr:first-of-type{height:0;border-bottom:1px solid #ecf0f1;margin:40px auto}.static-container .static-heading h1.page-title{color:#34495e;font-weight:700;font-size:32px}.static-container .static-content{margin-bottom:50px}.static-container .static-content h3{color:#2673B0;font-size:1.5em;margin:10px 0;font-weight:400}#top-content{position:relative}#top-content>.left{padding-left:0;padding-right:15px;width:50%}#top-content>.right{padding-right:0;padding-left:15px;width:50%}#top-content h4{line-height:1.4em;font-size:1.3em;text-align:justify;margin-top:0}#top-content h3{position:absolute;bottom:1em;left:0;width:50%;text-align:center;font-size:2em}.panel-group h3{margin-bottom:10px;font-weight:400}.panel-group .panel .panel-heading{padding:0}.panel-group .panel .panel-heading a{padding:10px 15px;width:100%;display:block}section{float:left;width:100%}section.top{border-bottom:1px solid #eee;margin-bottom:40px}section.top h1.page-title{font-size:45px;height:45px;line-height:45px;margin-bottom:40px}section.top p{font-weight:700}section.team-members{text-align:center;margin-bottom:40px}section.team-members .row{width:100%;float:right}section.team-members .row .team-member{float:left;width:104px}section.team-members .row .team-member figure{margin:0 0 10px 0;width:104px;height:104px}section.team-members .row .team-member figure img{width:104px;height:104px}section.team-members .row .team-member .info{width:150%;margin-left:-25%}section.team-members .row .team-member .info h3{font-size:14px;height:15px;line-height:15px;margin:3px 0;font-weight:700;color:#34495e}section.team-members .row .team-member+.team-member{margin-left:208px}section.team-members .row+.row{margin-top:30px}.term .term-description{margin:0}.term .term-description ol li+li{margin-top:5px}.content-modal .modal-header h3{text-align:center;color:#2673b0}.clipboard-copy .clipboard-code{margin-bottom:10px;float:left;background:#2673b0;color:#fff;padding:10px 5px;border-radius:5px;box-shadow:inset 1px 1px 1px rgba(0,0,0,.15);font-size:13px;width:100%}.code-embed-modal .content-modal .modal-body textarea{width:100%;border-width:1px;height:100px}#files-panel{font-size:10pt}#comments-frame>h3{margin:45px 0 30px 0}#comments-frame .comment-row{width:100%;float:left;padding-bottom:15px}#comments-frame .comment-row+.comment-row{padding-top:15px}#comments-frame .comment{width:100%;padding-left:55px;float:left;position:relative;font-size:12px}#comments-frame .comment .supporter-thumbnail{width:50px;height:50px;padding:0;margin:0;position:absolute;top:0;left:0}#comments-frame .comment .supporter-thumbnail img{width:100%;height:100%}#comments-frame .comment .comment-content{width:100%;padding-right:0;padding-left:0}#comments-frame .comment .comment-content .popover-title{padding:0;margin-bottom:5px;font-weight:700;background:#fff;border-bottom:0;font-weight:400}#comments-frame .comment .comment-content .popover-title span{font-size:11px}#comments-frame .comment .comment-content .popover-title span.name{font-weight:700;font-size:13px}#comments-frame .comment .comment-content .popover-title span.amount{font-size:12px}#comments-frame .comment .comment-content .popover-title span.lightgrey{margin-left:15px}#comments-frame .comment .comment-content .popover-content{overflow:hidden;padding:0;min-height:28px}#comments-frame .comment .comment-content .popover-content p{margin-bottom:0}#comments-frame .comment .comment-content .maker-comment-container{padding:0;margin-top:15px}#comments-frame .comment .comment-content .maker-comment-container.maker-form{display:none;position:relative;padding-left:8%}#comments-frame .comment .comment-content .maker-comment-container.maker-form .glyphicon{position:absolute;top:4px;left:7%;cursor:pointer;z-index:100}#comments-frame .comment .comment-content .maker-comment-container.maker-form .maker-comment{margin-top:5px;background:#f7f7f7}#comments-frame .comment .comment-content .maker-comment-container.maker-form .popover-content{height:auto;overflow:hidden;background:#f7f7f7;border-radius:4px;border:0;padding-top:4px;padding-right:4px;padding-bottom:4px;padding-left:12%}#comments-frame .comment .comment-content .maker-comment-container.maker-form textarea{border-width:1px;margin-bottom:5px}#comments-frame .comment .comment-content .maker-comment{width:100%;float:none;padding:0;position:relative;border:0}#comments-frame .comment .comment-content .maker-comment .supporter-thumbnail{width:38px}#comments-frame .comment .comment-content .maker-comment .supporter-thumbnail a{width:38px;height:38px}#comments-frame .comment .comment-content .maker-comment .content{padding-left:43px}#comments-frame .comment .comment-content .maker-comment .content .popover-content{margin-bottom:0}#comments-frame .comment a.show-maker-reply{position:absolute;bottom:1px;right:0;display:block;cursor:pointer;color:#fff;font-size:.8em;padding:.2em .4em;-webkit-border-radius:4px 0 4px 0;-moz-border-radius:4px 0 4px 0;border-radius:4px 0 4px 0;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.modal.report-product .modal-dialog .modal-content{padding:10px 10px 0 10px}.modal.report-product .modal-dialog .modal-content #product-report button.small{border:none;background:0 0;color:#2673b0}#modal-widget .content-modal{width:770px}#modal-widget .content-modal .modal-body{overflow:hidden;height:auto}#modal-widget .content-modal .modal-body hr{float:left;width:100%}#modal-widget .content-modal #configuration-options{width:50%;float:left;padding-right:10px}#modal-widget .content-modal #configuration-options .tab-content .tab-pane{padding:10px 0}#modal-widget .content-modal #configuration-options .tab-content .tab-pane .field{font-size:12px}#modal-widget .content-modal #configuration-options .tab-content .tab-pane .field label{width:35%;float:left;height:25px;line-height:25px}#modal-widget .content-modal #configuration-options .tab-content .tab-pane .field input[type=text]{float:right;width:65%;border-width:1px;height:25px;line-height:25px;border-radius:3px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.15);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.15);box-shadow:inset 0 1px 1px rgba(0,0,0,.15)}#modal-widget .content-modal #configuration-options .tab-content .tab-pane .field input[type=radio]{width:auto;float:left;margin:7px 3px 5px 0}#modal-widget .content-modal #configuration-options .tab-content .tab-pane .field span{float:left;height:25px;line-height:25px;display:inline-block}#modal-widget .content-modal #configuration-options .tab-content .tab-pane .field span+input[type=radio]{margin-left:15px}#modal-widget .content-modal #configuration-options .tab-content .tab-pane .field input[type=checkbox]{float:left;margin:7px 0;width:auto}#modal-widget .content-modal #configuration-options .tab-content .tab-pane .field textarea{width:65%;border-width:1px;border-radius:3px;padding:2px 10px;height:100px;margin-bottom:5px}#modal-widget .content-modal #widget-preview{width:50%;padding-left:10px;float:left}#modal-widget .content-modal #widget-preview #pling-widget{width:100%;padding:8px;font-size:12px;background-color:#2673B0;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#modal-widget .content-modal #widget-preview #pling-widget .widget-header{width:100%;margin-bottom:5px}#modal-widget .content-modal #widget-preview #pling-widget .widget-header h3{margin:0;font-size:18px;margin-bottom:0!important}#modal-widget .content-modal #widget-preview #pling-widget .widget-body{background-color:#fff;padding:5px;margin-bottom:5px;border:1px solid rgba(68,68,68,.2);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 1px 4px rgba(0,0,0,.15);-moz-box-shadow:inset 0 1px 4px rgba(0,0,0,.15);box-shadow:inset 0 1px 4px rgba(0,0,0,.15)}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info{width:100%;position:relative}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info .goal-range-number{width:100%;height:20px;line-height:20px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info .goal-range-number span{display:block;float:left}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info .goal-range-number span+span{float:right}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info .goal-range-number span+span.unlimited{font-size:27px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info .achieved-amount{width:100%;height:20px;padding:3px;background:rgba(204,204,204,.19);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info .achieved-amount .bar{width:4px;max-width:100%;height:14px;background-color:#2673B0;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 6px 0 rgba(255,255,255,.2);-moz-box-shadow:inset 0 6px 0 rgba(255,255,255,.2);box-shadow:inset 0 6px 0 rgba(255,255,255,.2)}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info .achieved-amount .bar.no-goal{width:50%}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info .money-raised{width:100%;height:20px;line-height:20px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info.with-goal{padding-right:25%}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info.with-goal .percentage{position:absolute;top:0;right:0;width:25%;height:60px;line-height:60px;text-align:center;font-size:22px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .widget-text{margin-top:10px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .supporters{width:100%;height:auto;overflow:hidden;margin-top:10px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .supporters .supporter{width:12.5%;height:auto;float:left;padding:2px;clear:none;border-bottom:0}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .supporters .supporter figure{width:100%;height:auto}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .supporters .supporter figure img{width:100%;height:auto;-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .comments{height:auto;overflow:hidden;width:100%;margin-top:10px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .comments .comment{position:relative;width:100%;min-height:42px;padding-left:15%}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .comments .comment figure{position:absolute;top:0;left:0;width:15%;height:auto}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .comments .comment figure img{width:100%;height:auto}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .comments .comment .content{width:100%}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .comments .comment .content .info{width:100%;height:12px;line-height:12px;margin-bottom:5px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .comments .comment .content .text{width:100%;font-size:11px;line-height:11px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .comments .comment+.comment{margin-top:5px}#modal-widget .content-modal #widget-preview #pling-widget .widget-footer{width:100%;height:auto;overflow:hidden}#modal-widget .content-modal #widget-preview #pling-widget .widget-footer .button{float:left}#modal-widget .content-modal #widget-preview #pling-widget .widget-footer .pay-secure{float:left;padding-left:10px;color:#fff;width:100px}#modal-widget .content-modal #widget-preview #pling-widget .widget-footer .powered-by{float:right}#modal-widget .content-modal #widget-preview #pling-widget .widget-footer .powered-by a.pling-logo{display:block;background-image:url(../img/new/pling-logo-large.png);height:34px;width:63px;background-size:contain}#modal-widget .content-modal #widget-preview #pling-widget .widget-footer .powered-by a.pling-logo.grey{background-image:url(../img/new/logo.png)}#modal-widget .content-modal #widget-preview #pling-widget .widget-footer .powered-by a.pling-logo.icon{width:34px;background-image:url(../img/new/box-logo.png)}.code-embed-modal .content-modal{width:400px}.code-embed-modal .content-modal .modal-body textarea{width:100%;border-width:1px;height:100px}body.body-external{margin:0;padding-top:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}.supporter-box-container{width:100%;height:auto;float:left;border:1px solid #999;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.supporter-box-container figure{float:left;margin:0;padding:0}.supporter-box-container div{float:left}.supporter-box-container>div{width:100%;height:auto;padding:7px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.supporter-box-container .supporter-box-top{background-color:#e5e5e5;position:relative}.supporter-box-container .supporter-box-top .title{float:left;width:50%}.supporter-box-container .supporter-box-top .title>a{font-size:16px;color:#39568c;text-decoration:none;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out}.supporter-box-container .supporter-box-top .title>a:hover{text-decoration:underline;color:#428bca}.supporter-box-container .supporter-box-top figure{position:absolute;top:7px;right:7px;width:102px;height:68px;border:inset 1px #999}.supporter-box-container .supporter-box-top figure a{width:100%;height:100%;display:block;overflow:hidden}.supporter-box-container .supporter-box-top figure a img{width:100%}.supporter-box-container .supporter-box-body>div{width:100%;float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.supporter-box-container .supporter-box-body .info{height:30px;padding-left:35px;position:relative;margin-bottom:10px}.supporter-box-container .supporter-box-body .info>em{position:absolute;left:0;top:0}.supporter-box-container .supporter-box-body .info>span{display:block;width:100%;height:15px;line-height:15px;font-size:13px;float:left;color:#000}.supporter-box-container .supporter-box-body .info span+span{color:#1e4483}.supporter-box-container .supporter-box-body .supporters{width:102%}.supporter-box-container .supporter-box-body .supporters figure{width:30px;height:30px;margin:0 3.5px 3.5px 0}.supporter-box-container .supporter-box-body .supporters figure a{display:block;width:100%;height:100%;overflow:hidden;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.supporter-box-container .supporter-box-body .supporters figure a img{width:100%}#configuration-options{width:60%;float:left;padding-right:10px}#configuration-options ul.nav-tabs{padding:0;background-color:#fff}#configuration-options ul.nav-tabs li a{padding:5px}#configuration-options .tab-content .tab-pane{padding:10px 0}#configuration-options .tab-content .tab-pane textarea{width:65%;border-width:1px;border-radius:3px;padding:0 5px;height:100px;margin-bottom:5px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.15);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.15);box-shadow:inset 0 1px 1px rgba(0,0,0,.15)}#configuration-options .tab-content .tab-pane .field{font-size:12px}#configuration-options .tab-content .tab-pane .field label{width:35%;float:left;height:25px;line-height:25px}#configuration-options .tab-content .tab-pane .field input.color-input,#configuration-options .tab-content .tab-pane .field input[type=text]{padding:0 5px;float:right;width:65%;border-width:1px;height:25px;line-height:25px;border-radius:3px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.15);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.15);box-shadow:inset 0 1px 1px rgba(0,0,0,.15)}#configuration-options .tab-content .tab-pane .field input[type=radio]{width:auto;float:left;margin:7px 3px 5px 0}#configuration-options .tab-content .tab-pane .field span{float:left;height:25px;line-height:25px;display:inline-block}#configuration-options .tab-content .tab-pane .field span+input[type=radio]{margin-left:15px}#configuration-options .tab-content .tab-pane .field input[type=checkbox]{float:left;margin:7px 0;width:auto}#pling-widget{width:100%;max-width:400px;padding:8px;font-size:12px;background-color:#2673B0;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#pling-widget .widget-header{width:100%;margin-bottom:5px}#pling-widget .widget-header h3{margin:0;font-size:18px}#pling-widget .widget-body{background-color:#fff;padding:5px;margin-bottom:5px;border:1px solid rgba(68,68,68,.2);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 1px 4px rgba(0,0,0,.15);-moz-box-shadow:inset 0 1px 4px rgba(0,0,0,.15);box-shadow:inset 0 1px 4px rgba(0,0,0,.15)}#pling-widget .widget-body .donation-amount{line-height:34px;margin:0 0 5px 0;overflow:hidden}#pling-widget .widget-body .donation-amount .support-with{width:25%;height:34px;float:left}#pling-widget .widget-body .donation-amount .donation-amount-number{width:50%;float:left;position:relative}#pling-widget .widget-body .donation-amount .donation-amount-number span.glyphicon{position:absolute;top:11px;left:0}#pling-widget .widget-body .donation-amount .donation-amount-number input[type=text]{padding:0 10px;float:right;width:100%;border-width:1px;height:24px;line-height:24px;border-radius:3px;margin:5px 0;border-right:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.15);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.15);box-shadow:inset 0 1px 1px rgba(0,0,0,.15)}#pling-widget .widget-body .donation-amount .button{width:25%;float:right}#pling-widget .widget-body .donation-amount .button button{float:left;margin-top:5px;padding:0;width:100%;text-align:center;height:24px}#pling-widget .widget-body .donation-amount .payment-providers{width:100%;float:left;margin:5px 0}#pling-widget .widget-body .donation-amount .payment-providers .pay-with{width:25%;height:34px;float:left}#pling-widget .widget-body .donation-amount .payment-providers .input-group{width:37%;float:left;display:block}#pling-widget .widget-body .donation-amount .payment-providers .input-group .input-group-addon{width:20%;float:left;padding:8px 16px 4px 0;border:0;background:0 0;margin-top:3px}#pling-widget .widget-body .donation-amount .payment-providers .input-group .input-group-addon input[type=radio]{width:auto}#pling-widget .widget-body .donation-amount .payment-providers .input-group .payment-icon{width:70%;float:left;height:34px;display:block}#pling-widget .widget-body .donation-amount .payment-providers .input-group .payment-icon img{max-width:100%;height:20px;width:auto;margin-top:7px}#pling-widget .widget-body .product-funding-info{width:100%;position:relative}#pling-widget .widget-body .product-funding-info .goal-range-number{width:100%;height:20px;line-height:20px;display:none}#pling-widget .widget-body .product-funding-info .goal-range-number span{display:block;float:left}#pling-widget .widget-body .product-funding-info .goal-range-number span+span{float:right}#pling-widget .widget-body .product-funding-info .goal-range-number span+span.unlimited{font-size:27px}#pling-widget .widget-body .product-funding-info .achieved-amount{width:100%;height:20px;padding:3px;background:rgba(204,204,204,.19);display:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}#pling-widget .widget-body .product-funding-info .achieved-amount .bar{width:4px;max-width:100%;height:14px;background-color:#2673B0;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 6px 0 rgba(255,255,255,.2);-moz-box-shadow:inset 0 6px 0 rgba(255,255,255,.2);box-shadow:inset 0 6px 0 rgba(255,255,255,.2)}#pling-widget .widget-body .product-funding-info .achieved-amount .bar.no-goal{width:50%}#pling-widget .widget-body .product-funding-info .money-raised{width:100%;height:20px;line-height:20px}#pling-widget .widget-body .product-funding-info.with-goal .percentage{position:absolute;top:0;right:0;width:25%;height:60px;line-height:60px;text-align:center;font-size:22px}#pling-widget .widget-body .product-funding-info.with-goal .goal-range-number{padding-right:25%;display:block}#pling-widget .widget-body .product-funding-info.with-goal .achieved-amount{width:75%;display:block}#pling-widget .widget-body .widget-text{margin-top:10px}#pling-widget .widget-body .supporters{width:100%;height:auto;overflow:hidden;margin-top:5px;padding-top:5px;border-top:1px solid #ddd}#pling-widget .widget-body .supporters .supporter{width:12.5%;height:auto;float:left;padding:2px;clear:none;border-bottom:0}#pling-widget .widget-body .supporters .supporter figure{width:100%;height:auto}#pling-widget .widget-body .supporters .supporter figure img{width:100%;height:auto}#pling-widget .widget-body .comments{height:auto;overflow:hidden;width:100%;margin-top:5px;padding-top:5px;border-top:1px solid #ddd}#pling-widget .widget-body .comments .comment{position:relative;width:100%;min-height:42px;padding-left:15%}#pling-widget .widget-body .comments .comment figure{position:absolute;top:0;left:0;width:15%;height:100%;text-align:center}#pling-widget .widget-body .comments .comment figure img{width:auto;height:100%;float:left}#pling-widget .widget-body .comments .comment .content{width:100%;padding-left:5%}#pling-widget .widget-body .comments .comment .content .info{width:100%;height:12px;line-height:12px;margin-bottom:5px}#pling-widget .widget-body .comments .comment .content .text{width:100%;font-size:11px;line-height:11px}#pling-widget .widget-body .comments .comment+.comment{margin-top:5px}#pling-widget .widget-footer{width:100%;height:auto;overflow:hidden}#pling-widget .widget-footer .donation-amount{padding-bottom:10px;color:#fff;font-size:14px}#pling-widget .widget-footer .button{float:left}#pling-widget .widget-footer .pay-secure{float:left;color:#fff;width:100px}#pling-widget .widget-footer .pay-secure a{color:#fff}#pling-widget .widget-footer .powered-by{float:right}#pling-widget .widget-footer .powered-by a.opendesktop-logo{display:block;background-image:url(/images/system/storeLogo.png);height:34px;width:63px;background-size:contain;background-repeat:no-repeat}#pling-widget .widget-footer .powered-by a.pling-logo{display:block;background-image:url(../img/new/pling-logo-large.png);height:34px;width:63px;background-size:contain}#pling-widget .widget-footer .powered-by a.pling-logo.grey{background-image:url(../img/new/logo.png)}#pling-widget .widget-footer .powered-by a.pling-logo.icon{width:34px;background-image:url(../img/new/box-logo.png)}#widget-preview{width:40%;padding-left:10px;float:left}#widget-code-modal{width:800px;height:auto;overflow:hidden}#widget-code-modal .modal-body{height:auto;overflow:hidden}#widget-code-modal .modal-body article{width:100%;float:left}#widget-code-modal .modal-body article #configuration-options ul.nav-tabs{float:left;width:100%;background-color:#F3F3F3;border-bottom:1px solid #e5e5e5;position:relative;top:0}#widget-code-modal .modal-body article #configuration-options ul.nav-tabs li{border-bottom:1px solid #e5e5e5;-webkit-transition:all 0 ease-out;-moz-transition:all 0 ease-out;-ms-transition:all 0 ease-out;-o-transition:all 0 ease-out}#widget-code-modal .modal-body article #configuration-options ul.nav-tabs li a{margin:0;background-color:transparent;border:0;color:#2673B0;border-bottom:3px solid #f3f3f3;-webkit-transition:all 0 ease-out;-moz-transition:all 0 ease-out;-ms-transition:all 0 ease-out;-o-transition:all 0 ease-out}#widget-code-modal .modal-body article #configuration-options ul.nav-tabs li.active{border-color:#2673B0}#widget-code-modal .modal-body article #configuration-options ul.nav-tabs li.active a{border-color:#2673B0}.body-external .supporter-box-container{border:0;text-align:center}.body-external .supporter-box-container #pling-widget{text-align:left;float:none;height:auto;overflow:hidden}#mainpage{background-image:url(/images/system/1-opendesktop-bg.png);background-repeat:no-repeat;background-attachment:fixed;background-position:0 0;background-size:100% 100%;width:100%!important;margin-top:15px}#mainpage .wrapper{padding-top:100px}#mainpage .card-wrapper{border-radius:10px;padding:5px}#mainpage .card-wrapper a.title{display:block}#mainpage .card-wrapper img.logo{height:45px;margin-right:10px;margin-bottom:5px}#mainpage .card-wrapper .domainobj{margin:15px;border-bottom:1px solid #ccc}#indeximages{height:400px;width:100%;overflow:hidden}#indeximages a{cursor:default}.commentstore{border-bottom:1px solid #ccd4d8;padding-top:5px;padding-bottom:5px;overflow:hidden}.commentstore p{margin:0}.commentstore .userinfo img{border-radius:50%;width:42px;height:42px;float:right}.commentstore .userinfo{float:right}.commentstore .info{display:block}.commentstore:last-child{border-bottom:none}div.profile-img-product{width:200px;height:160px}img.imgpopover{max-width:200px;max-height:160px;display:block;margin:auto}#my-comments-tabs-content{font-size:11pt;width:1100px}#my-comments-tabs-content .rownomargin{margin:0}#my-comments-tabs-content .rownopadding{padding:0}#my-comments-tabs-content .category{display:block;font-size:smaller}#my-comments-tabs-content .createat{font-size:smaller;color:#888}#my-comments-tabs-content .productrow{padding-bottom:5px;padding-top:5px;border-bottom:1px solid #ccd4d8;font-size:small}#my-comments-tabs-content .productrow .project-image{width:50px;height:50px;float:left;margin-right:15px}#my-comments-tabs-content .productrow:last-child{border-bottom:none}#my-comments-tabs-content .row{margin-top:10px}#my-comments-tabs-content .rating{width:60px}#my-comments-tabs-content .time{font-size:smaller}#my-comments-tabs-content .cntComments{font-size:smaller;display:block;padding-top:5px}#my-comments-tabs-content .productimg{width:50px;height:50px}#my-comments-tabs-content .commenttext{padding-left:20px}.user-admin-page .commentText{font-size:smaller}.user-admin-page .commentTime{font-size:smaller;padding-left:20px}.user-admin-page .title{font-weight:700;color:#37628D;padding-top:10px;padding-bottom:10px}.user-admin-page .topics{padding-right:20px}.user-admin-page .topics .topic-tag{display:inline-block;padding:.3em .9em;margin:0 .5em .5em 0;white-space:nowrap;background-color:#f1f8ff;border-radius:3px}.user-admin-page .topics .usertagslabelcat{background-color:#f1f1f1}.user-admin-page .topics .topic-tag-link:hover{text-decoration:none;background-color:#def}.user-admin-page .topics .btn-link{display:inline-block;padding:0;font-size:inherit;color:#0366d6;text-decoration:none;white-space:nowrap;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.user-admin-page .my-downloadshistory-list{width:1100px}.user-admin-page .my-downloadshistory-list .totaldownloads{margin:0;padding:20px;text-align:right}.user-admin-page .my-downloadshistory-list .smaller{font-size:smaller}.user-admin-page .my-downloadshistory-list .header{border-top:1px solid #ccc;padding-top:15px;padding-bottom:15px}.user-admin-page .my-downloadshistory-list .subheader{background-color:#ddd}.user-admin-page .my-downloadshistory-list .paddingLeft80{padding-left:80px}.user-admin-page .my-downloadshistory-list .marginLeft80{margin-left:80px}.user-admin-page .my-downloadshistory-list button.voting{line-height:10px}.user-admin-page .my-downloadshistory-list button.voting span{font-size:10px}.user-admin-page .my-downloadshistory-list .rating{width:60px!important;font-size:10pt}.user-admin-page .my-downloadshistory-list .downloadhistory-image{width:50px;height:50px;float:left;margin-right:15px}.user-admin-page .my-downloadshistory-list .nowrap{white-space:nowrap}.col-container span.cnt{padding-right:5px;display:inline-block;font-weight:700}.col-container .stat{padding-top:15px;padding-left:15px;font-size:12px}.col-container .statContent{padding-top:15px;padding-left:15px;font-size:12px}main#plings-page .wrapper{width:700px;padding:20px}main#plings-page .wrapper .title{background-color:#ccc;height:30px}main#plings-page .wrapper .label{padding-top:10px;padding-left:0}main#plings-page .wrapper .row:not(:first-child):hover{background-color:#eef}main#plings-page .wrapper .depth0{padding-left:0}main#plings-page .wrapper .depth1{padding-left:20px}main#plings-page .wrapper .depth2{padding-left:40px}main#plings-page .wrapper .depth3{padding-left:60px}main#plings-page .wrapper .depth4{padding-left:80px}main#plings-page .wrapper .depth5{padding-left:100px}main#plings-page .wrapper .factor{padding-right:10px}#product-page-content .sidebar-left{padding-right:15px;padding-left:15px;min-width:200px;padding-top:20px}#product-page-content .tag-element{background-clip:padding-box;background-color:#eee;background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-repeat:repeat-x;background-size:100% 19px;border:1px solid #aaa;border-radius:3px;box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,.05);color:#333;line-height:25px!important;margin:3px 3px 3px 0;max-width:100%;padding:0 10px;position:relative;display:inline-block}#carouselContainer .carousel-indicators{z-index:31;background-color:transparent;height:20px;bottom:-30px}#carouselContainer .carousel-indicators .active{background-color:#E2E2E2}#carouselContainer .carousel-indicators li{border:1px solid #C4D7EF}#carouselContainer iframe{border:0}#email-collapse .group-list{list-style:outside none none}#email-collapse .group-list>li:first-child{border-top:0 none;border-top:1px solid #ddd}#email-collapse .group-list>li{border-bottom:1px solid #e5e5e5;display:block;line-height:30px;margin-left:-10px;padding:5px 10px}#email-collapse .css-truncate-target{max-width:300px;display:inline-block;text-overflow:ellipsis;vertical-align:top;white-space:nowrap}#email-collapse .email-actions{float:right}#email-collapse .email-actions form{display:inline}#email-collapse span.label.default{background-color:#6cc644;border-radius:3px;color:#fff;margin-left:4px;padding:4px 6px}#email-collapse span.label.attention{background-color:#c64f0d;border-radius:3px;color:#fff;margin-left:4px;padding:4px 6px}#email-collapse .btn{line-height:20px;padding:4px 12px}.user-admin-page .body-wrap .well{min-height:20px;padding:20px;margin-bottom:20px;background-color:transparent;border:0;border-radius:0;-webkit-box-shadow:inset 0 0 0 rgba(0,0,0,.05);box-shadow:inset 0 0 0 rgba(0,0,0,.05)}.profile-menu li a{width:100%}.grid-container{padding-top:10px}.grid-container .flex-container{font-size:10pt!important}.grid-container .flex-container .explore-product-grid{width:200px;padding:0;margin:20px;border:1px solid #dedede;border-radius:2px;margin:10px 10px 10px 10px;position:relative}.grid-container .flex-container .explore-product-grid figure{opacity:1;display:block;transition:.5s ease;backface-visibility:hidden}.grid-container .flex-container .explore-product-grid .explore-product-image{width:170px;height:120px}.grid-container .flex-container .explore-product-grid .explore-product-desc{background:linear-gradient(#fff,#EDEDED);padding:0 10px 5px 10px;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.grid-container .flex-container .explore-product-grid .explore-product-plings{padding:0;padding-top:5px;width:100px;margin:0 auto;font-size:10px}.grid-container .flex-container .explore-product-grid .explore-product-plings .rating{width:100%}.grid-container .flex-container .explore-product-grid .explore-product-plings .progress{margin-bottom:10px;padding:3px;opacity:0;margin-bottom:0;height:12px;opacity:1;background-color:transparent;box-shadow:none;padding:2px}.grid-container .flex-container .explore-product-grid .explore-product-plings .progress .bar{width:4px;max-width:100%;height:14px;background-color:#2673b0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 6px 0 rgba(255,255,255,.2);-moz-box-shadow:inset 0 6px 0 rgba(255,255,255,.2);box-shadow:inset 0 6px 0 rgba(255,255,255,.2)}.grid-container .flex-container .explore-product-grid .explore-product-plings .progress .bar.no-goal{width:50%;opacity:0}.grid-container .flex-container .explore-product-grid .explore-product-plings .collected span{display:block;width:100%;float:left;font-size:12px}.grid-container .flex-container .explore-product-grid .explore-product-details span.version{font-size:smaller;padding-left:20px}.grid-container .flex-container .explore-product-grid .explore-product-details span.title{display:block;font-size:smaller;line-height:1.5}@media (max-width:400px){#explore-content .GridFlex .sidebar-left{flex:0 0 100%}.metamenu{height:100%}.metamenu .sitelogo{display:block;width:100%;height:30px;font-size:20px}.metamenu .sitelogo img.logo{width:30px;height:30px}}#ratings-panel .bbtn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid #adadad;border-radius:4px;margin-right:10px}#ratings-panel .activeRating{border:2px solid #2673B0}#ratings-panel .bbtn:focus{color:#333;background-color:transparent;border-color:#2673B0}#plings-panel .u-wrap{float:left;padding:.3em;border:.35em solid #dee0e0;border-radius:5px;height:14em;margin-bottom:1em;background:#fff;width:115px;height:200px;margin-right:10px;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out;position:relative}#plings-panel .u-wrap figure img{width:100%;border:1px solid #dbdbdb;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#plings-panel .u-wrap h3{font-size:13px;font-weight:700;word-wrap:break-word;line-height:20px;height:20px;padding:0;margin:0}#plings-panel .u-wrap span.small{position:absolute;bottom:5px;left:5px}.tooltipuserplingscontainer .user{display:block;float:left;text-align:center;width:60px;overflow:hidden}.tooltipuserplingscontainer .user img{width:40px;height:40px;border:1px solid #ccc;border-radius:999px}.tooltipuserplingscontainer .user .caption{display:block} \ No newline at end of file +.bg_sheet{background-image:url(../img/bg_sheet.png)}.bg_sheet_statistics{background-image:url(../img/statistics_sheet.png)}.unstyled_list{list-style-type:none;padding:0;margin:0}.hand-with-coin{display:inline-block;background-image:url('../img/new/button/hand-w-coin.png');height:61px;width:61px}.hand-with-coin.v-2{background-image:url('../img/new/button/hand-w-coin-2.png')}@font-face{font-family:'Open Sans';font-style:normal;font-weight:300;src:local('Open Sans Light'),local('OpenSans-Light'),url('../css/fonts/open-sans-v15-latin-300.woff2') format('woff2'),url('../css/fonts/open-sans-v15-latin-300.woff') format('woff')}@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:local('Open Sans Regular'),local('OpenSans-Regular'),url('../css/fonts/open-sans-v15-latin-regular.woff2') format('woff2'),url('../css/fonts/open-sans-v15-latin-regular.woff') format('woff')}@font-face{font-family:'Open Sans';font-style:normal;font-weight:600;src:local('Open Sans SemiBold'),local('OpenSans-SemiBold'),url('../css/fonts/open-sans-v15-latin-600.woff2') format('woff2'),url('../css/fonts/open-sans-v15-latin-600.woff') format('woff')}@font-face{font-family:'Open Sans';font-style:normal;font-weight:700;src:local('Open Sans Bold'),local('OpenSans-Bold'),url('../css/fonts/open-sans-v15-latin-700.woff2') format('woff2'),url('../css/fonts/open-sans-v15-latin-700.woff') format('woff')}body{color:#32353d;overflow-y:scroll;font-size:1.5em;line-height:1.231;color:#4e4e4e;font-family:'Open Sans',sans-serif;font-size:medium}header,footer,main,section{width:100%;float:left}header section.wrapper,footer section.wrapper,main section.wrapper,section section.wrapper{margin-left:auto;margin-right:auto;width:95%;float:none;height:auto}a{text-decoration:none;color:#2673b0;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out}a:hover{text-decoration:none}a:focus{outline:none}button::-moz-focus-inner{border:0}input,button,select,textarea{font-family:"Lato",sans-serif;font-size:14px}h1{font-size:32px;font-weight:900}h3{font-size:24px;font-weight:700;margin-bottom:4px;margin-top:2px}h5{font-size:16px;font-weight:500;text-transform:uppercase}@media (max-width:1200px) and (min-width:992px){header section.wrapper,footer section.wrapper,main section.wrapper{width:95%;margin-left:2.5%;margin-right:2.5%}}.btn{background:#bdc3c7 none repeat scroll 0 0;border:medium none;border-radius:6px;box-shadow:none;color:#fff;line-height:22px;padding:9px 12px 10px;text-decoration:none;text-shadow:none;-webkit-transition:all .2 ease-out;-moz-transition:all .2 ease-out;-ms-transition:all .2 ease-out;-o-transition:all .2 ease-out}.btn.btn-large{font-size:16.996px;line-height:20px;padding:12px 18px 13px}.btn.btn-native{background-color:#2673b0;color:white}.btn.btn-pling-red{background-color:#e84310}.btn.btn-pling-green{background-color:green}.btn.btn-purple{background:#9b59b6;padding:10px 35px}.btn.btn-file-dropzone{font-size:10px;padding:8px 10px 10px;line-height:10px}.btn.btn-file-action{font-size:12px;padding:8px 10px 10px;line-height:16px;margin-left:5px}.pling-danger{background:#C9302C none repeat scroll 0 0}.standard-form input{height:41px}.standard-form input,.standard-form textarea,.standard-form select{border:1px solid #bdc3c7;padding:0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.standard-form .field{margin-bottom:15px}.icon-facebook,.icon-twitter,.icon-google{width:40px;height:40px;cursor:pointer;display:inline-block;background-image:url(../img/bg_sheet.png)}.icon-facebook{background-position:0 -105px}.icon-twitter{background-position:-40px -105px}.lightblue{color:#2673b0}.small{font-size:12px}.large{font-size:18px}.relative{position:relative}.absolute{position:absolute}.light{font-weight:300}.lightgrey{color:#95a5a6}.center{text-align:center}i.myfav{color:#8e44ad}h1.page-title{color:#34495e;font-weight:bold;font-size:32px}.modal{overflow-y:hidden}.right{float:right}.left{float:left}em.icon{display:inline-block;background-image:url(../img/bg_sheet.png)}em.icon.info-icon{width:31px;height:30px;background-position:-289px -64px}.margin-bottom-10{margin-bottom:10px}.margin-top-15{margin-top:15px}.full-width{width:100% !important}.progress{height:8px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;margin-bottom:0}.opendesktopwidgetpager{display:flex;justify-content:right;align-items:center;justify-content:flex-end}.opendesktopwidgetpager ul.opendesktopwidgetpager{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.opendesktopwidgetpager ul.opendesktopwidgetpager>li{display:inline}.opendesktopwidgetpager ul.opendesktopwidgetpager>li>span{cursor:pointer;position:relative;float:left;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd;padding:5px 10px;font-size:12px}.opendesktopwidgetpager ul.opendesktopwidgetpager>.active>span{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.metamenu{width:100%;background-color:#fff;height:15px}.metamenu a#toggleStoreBtn{float:left;margin-left:20px;text-decoration:none}.metamenu a.home-link{float:left}.metamenu a.home-link img.logo{width:16px;height:16px}.meta-nav-top>li>a{padding:0 5px;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out}.meta-nav-top>li>a#ocs-stores img{width:16px;height:16px}ul.meta-nav-top{list-style:none}ul.meta-nav-top li{float:left}ul.meta-nav-top-right{margin:0;margin-right:30px;float:right}ul.meta-nav-top-right li{padding:0 10px}ul.meta-nav-top-left{float:left}#toggleStoreContainer{z-index:1000;display:none;width:60%;height:200px;top:12px;left:190px}#toggleStoreContainer a{display:block;font-size:16px}#toggleStoreContainer a:hover{color:#6a7686}#toggleStoreContainer b{text-decoration:underline;text-align:center;padding-left:20px;font-size:18px;cursor:default}#toggleStoreContainer ul{list-style:none;padding:0;padding-top:10px;padding-left:30px}#toggleStoreContainer ul li{font-size:14px}#toggleStoreContainer ul li:hover{background-color:transparent}header nav{border-bottom:transparent}header#page_header{color:#6a7686;height:auto;font-size:10pt;font-weight:400;width:100%;font-family:Arial,sans-serif}header#page_header nav#nav-top{margin-left:130px;width:84%}header .dropdown-header{width:175px;height:12px;background-image:url(../img/bg_sheet.png);background-position:-385px 0}header a{color:#ffffff}header .pull-left,header .pull-right{padding:0}header ul{margin-bottom:0}header ul.menu-icon{float:right;display:none}header ul li{list-style:none;display:inline-block;margin:0;cursor:pointer;position:relative;height:40px;line-height:40px;float:left}header ul li a{float:left;display:block;height:inherit;line-height:inherit;padding:0 20px}header ul li.profile-menu-container{padding-top:0;padding-left:40px}header ul li.profile-menu-container .header-profile-image{top:50%;left:10px;height:30px;width:30px;margin-top:-15px}header ul li.profile-menu-container .header-profile-image .supporter-badge{position:absolute;left:0;bottom:0;background:#EE6E09;text-align:center;border-radius:30px 30px 30px 30px;color:#fff;padding:5px 10px;font-size:12px}header ul li.profile-menu-container .header-profile-image img{height:30px;width:30px;float:left;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}header ul li.profile-menu-container>a{display:block}header ul li ul{width:165px;margin-left:0;position:absolute;left:-9999px;top:45px;border:none;font-size:14px;color:#7f8c8d;font-weight:normal;padding:0;z-index:10000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}header ul li ul.active{left:0;top:40px}header ul li ul li{text-align:left;display:block;width:100%;background:#ecf0f1;margin:0;padding:0;height:40px;border-bottom:1px solid #d6d7d9}header ul li ul li.first,header ul li ul li:first-of-type{-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}header ul li ul li:last-of-type{-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}header ul li ul li a{color:#6a7686;text-align:left;height:40px;line-height:40px}header .container{margin-left:auto;margin-right:auto;float:none;height:auto;width:100%;background-color:#e2e2e2}header .container.header{margin-left:auto;margin-right:auto;float:none;width:100%}header .container.header section.container{background-color:transparent}header .container.header section.container.backLink{background-color:#729ECD !important;height:30px}header .container.header section.container.backLink h4 a:hover{color:#1d1d1d}header .container.header section.container section.wrapper{height:40px;padding-left:80px;position:relative}header .container.header section.container+section.container{background-color:transparent;padding-left:0}header .container.header section.container+section.container>section.wrapper{padding-left:242px;height:50px}header .container.header nav{border-bottom:transparent}header .container.header nav #search{height:25px;padding:0;margin:6.5px 15px;line-height:25px;position:relative}header .container.header nav #search input.content-search{width:16em;height:25px;padding:0;border:1px solid white;margin-bottom:-1px;padding-right:30px;text-indent:5px;color:#6a7686;float:left;border-radius:6px;box-shadow:none}header .container.header nav #search div.icon-search-input{top:2px;right:0;width:25px;height:25px;background-image:url(/theme/flatui/img/icon-search-input-2.png);background-position:center center;position:absolute;cursor:pointer}header .container.header ul.menu-nav-tabs{bottom:0;display:inline-table;list-style-type:none;margin:0;padding:0;position:absolute;z-index:999}.pling-nav-tabs-a{border:0;position:relative;color:#777;font-size:13px;transition:color 0s;bottom:-1px;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;background-color:transparent}.pling-nav-tabs ul.nav-tabs>li{background-color:transparent;margin-bottom:0}.pling-nav-tabs ul.nav-tabs>li>a{border:0;position:relative;color:#777;font-size:13px;transition:color 0s;bottom:-1px;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;background-color:transparent}.pling-nav-tabs ul.nav-tabs>li>a:hover{border:0;position:relative;color:#777;font-size:13px;transition:color 0s;bottom:-1px;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;background-color:transparent;color:#2673b0}.pling-nav-tabs ul.nav-tabs>li>a:hover svg{fill:#2673b0}.pling-nav-tabs ul.nav-tabs>li>a:focus{border:0;position:relative;color:#777;font-size:13px;transition:color 0s;bottom:-1px;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;background-color:transparent}.pling-nav-tabs ul.nav-tabs>li svg{fill:#777}.pling-nav-tabs ul.nav-tabs>li.active>a{border:0;position:relative;color:#777;font-size:13px;transition:color 0s;bottom:-1px;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;background-color:transparent;color:#2673b0;border-bottom-color:#2673b0;font-weight:bold}.pling-nav-tabs ul.nav-tabs>li.active>a:hover{border:0;position:relative;color:#777;font-size:13px;transition:color 0s;bottom:-1px;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;background-color:transparent;color:#2673b0;border-bottom-color:#2673b0;font-weight:bold}.pling-nav-tabs ul.nav-tabs>li.active>a:focus{border:0;position:relative;color:#777;font-size:13px;transition:color 0s;bottom:-1px;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;background-color:transparent;color:#2673b0;border-bottom-color:#2673b0;font-weight:bold}.pling-nav-tabs ul.nav-tabs>li.active svg{fill:#2673b0}footer{width:100%;float:left;padding:12px 0;border-bottom:5px solid #2673b0;border-top:1px solid darkgray;background-color:gainsboro;font-size:9pt}footer h3{font-weight:normal}footer h3#footer-heading{font-size:1.3em;margin:0}footer nav#footer-nav ul{margin-top:1em;list-style:none;padding:0;margin-right:1em;float:left;width:auto;margin-bottom:.2em}footer nav#footer-nav ul li{display:inline-block;margin-right:0;font-size:1em}footer nav#footer-nav ul li a{color:#666;font-weight:400}footer nav#footer-nav ul li+li{margin-left:10px}footer h3#footer-social-heading{color:#666;font-size:1em;margin:0 0 .4em 0}footer #footer-social{float:right}footer #footer-social a{width:30px;display:block;float:left}footer #footer-social a+a{margin-left:2px}footer section.wrapper .pull-left{padding:0}footer section.wrapper .pull-right{padding:0}body.home-page main section.wrapper .container{padding:150px 0;height:auto;float:none;max-width:95%;width:95%}body.home-page main section.wrapper#intro .container{padding-bottom:50px}body.home-page main section.wrapper#intro .container article{text-align:center;width:100%}body.home-page main section.wrapper#intro .container article>*{margin-bottom:40px}body.home-page main section.wrapper#intro .container article h2{font-size:40px;font-weight:700;margin-bottom:20px}body.home-page main section.wrapper#intro .container article h3{font-size:30px;font-weight:700;margin-top:2px}body.home-page main section.wrapper#intro .container article p{margin-bottom:0;text-align:center}body.home-page main section#cat-list{border-top:1px solid #cdd7dd}body.home-page main .card-wrapper{position:relative;max-width:960px;margin:auto;margin-bottom:2rem;background:white}body.home-page main .card-wrapper .card-item{position:absolute;padding:1rem;width:31.4%;border:1px solid gray;border-radius:7px}body.home-page main .card-wrapper .card-item .category a.title{font-size:14pt;font-weight:600;min-height:30px;line-height:30px;padding-right:30px}body.home-page main .card-wrapper .card-item .category a.title span.label{padding:2px 3px}body.home-page main .card-wrapper .card-item div a.title{font-size:11pt;min-height:20px;line-height:20px;padding-right:5px}body.home-page main .card-wrapper .card-item div a.title span.label{font-size:7pt;font-weight:300;vertical-align:top;margin-left:5px;padding:1px 3px}.card-item{border:1px solid gray}.card-item .category>a.title{color:#444444}.card-item div>a.title{color:#6a6a6a}#indeximages{line-height:0;-webkit-column-count:20;-webkit-column-gap:0;-moz-column-count:20;-moz-column-gap:0;column-count:20;column-gap:0}#indeximages img{width:100% !important;height:auto !important;opacity:1}@media (max-width:1920px){#indeximages{-moz-column-count:20;-webkit-column-count:20;column-count:20}}@media (max-width:1200px){#indeximages{-moz-column-count:15;-webkit-column-count:4;column-count:4}}@media (max-width:1000px){#indeximages{-moz-column-count:12;-webkit-column-count:3;column-count:3}}@media (max-width:800px){#indeximages{-moz-column-count:9;-webkit-column-count:2;column-count:2}}@media (max-width:400px){#indeximages{-moz-column-count:7;-webkit-column-count:1;column-count:1}}#products-wrapper{padding-top:20px}.explore-products{padding-left:30px;padding-right:30px;margin-top:-10px}.explore-products .product-list{width:100%;float:left;padding:0 10px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.explore-products .product-list .explore-product{padding:10px 0;font-size:12px;border-top:1px solid #ccc}.explore-products .product-list .explore-product .rownum{font-size:12px;float:left}.explore-products .product-list .explore-product .explore-product-imgcolumn{padding-left:5px;padding-right:5px}.explore-products .product-list .explore-product .imageContainer{height:167px;display:flex;justify-content:center;align-items:center}.explore-products .product-list .explore-product .explore-product-image{max-width:95%;max-height:167px}.explore-products .product-list .explore-product .contentLeft{float:left;padding-right:0;width:270px}.explore-products .product-list .explore-product .contentLeft img{max-width:167px;max-height:167px}.explore-products .product-list .explore-product .contentLeft div.productimg{width:167px;height:167px}.explore-products .product-list .explore-product .explore-product-details{padding-left:20px}.explore-products .product-list .explore-product .explore-product-details h3{font-size:24px;font-weight:bold;color:#2673b0}.explore-products .product-list .explore-product .explore-product-details h3 span.version{font-size:smaller;padding-left:20px}.explore-products .product-list .explore-product .explore-product-details .title{display:block;margin-bottom:8px}.explore-products .product-list .explore-product .explore-product-details .title .username{padding-left:20px}.explore-products .product-list .explore-product .explore-product-details .description{display:block;margin-bottom:8px}.explore-products .product-list .explore-product .explore-product-details .packagetypes{display:block;float:left}.explore-products .product-list .explore-product .explore-product-details .packagetypes .packagetypeos{width:100px;float:left}.explore-products .product-list .explore-product .explore-product-details .productInfo{clear:left;padding-top:5px}.explore-products .product-list .explore-product .explore-product-details .productInfo span.cntSupporters{padding-right:20px}.explore-products .product-list .explore-product .explore-product-plings{padding:0}.explore-products .product-list .explore-product .explore-product-plings .rating{width:50%}.explore-products .product-list .explore-product .explore-product-plings .progress{margin-bottom:10px;padding:3px;opacity:0;margin-bottom:0;height:12px;opacity:1;background-color:transparent;box-shadow:none;padding:2px}.explore-products .product-list .explore-product .explore-product-plings .progress .bar{width:4px;max-width:100%;height:14px;background-color:#2673b0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 6px 0 rgba(255,255,255,0.2);-moz-box-shadow:inset 0 6px 0 rgba(255,255,255,0.2);box-shadow:inset 0 6px 0 rgba(255,255,255,0.2)}.explore-products .product-list .explore-product .explore-product-plings .progress .bar.no-goal{width:50%;opacity:0}.explore-products .product-list .explore-product .explore-product-plings .collected span{display:block;width:100%;float:left}.explore-products .product-list .explore-product:first-of-type{border-top:0}.explore-products .explore-footer{width:100%;text-align:center}.explore-products .explore-footer .projectPaginationControl{width:auto;display:table;margin:0 auto}.explore-products .explore-footer .projectPaginationControl ul#pagination-digg{padding:0;list-style-type:none;margin:20px 0;height:auto;overflow:hidden}.explore-products .explore-footer .projectPaginationControl ul#pagination-digg li{float:left;font-size:16px;font-weight:normal;margin:0 4px}aside#explore-sidebar{padding-left:0;margin-bottom:20px}main#community-page .head-wrap{padding-top:1em;height:auto;background-size:cover;position:relative}main#community-page .head-wrap .wrapper{width:95%}main#community-page .head-wrap .page-title{height:3em;position:relative;margin-bottom:2em}main#community-page .head-wrap .page-title .center{position:absolute;top:0;left:0;width:100%;height:3em;text-align:center}main#community-page .head-wrap .page-title .center>div{background:rgba(246,246,246,0.86);width:auto;display:table;float:none;margin:0 auto}main#community-page .head-wrap .page-title .center>div>h1{margin:0 .5em}main#community-page .head-wrap .page-title hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee;border-bottom:1px solid white;float:left;width:100%}main#community-page .banner{margin:0 auto;float:none;background:white;border:1px solid #e4e4e4;padding:0;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;text-align:center}main#community-page .banner .top{padding:1em;font-size:1em}main#community-page .banner .top .large{font-size:2em}main#community-page .banner .bottom{padding:1em;background:rgba(231,231,231,0.4);border-top:1px solid #e4e4e4;-webkit-border-radius:0 0 9px 9px;-moz-border-radius:0 0 9px 9px;border-radius:0 0 9px 9px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}main#community-page .banner .bottom a{margin-right:5px}main#community-page .body-wrap{background:white;position:relative}main#community-page .body-wrap .wrapper{width:70%}main#community-page .body-wrap #user-lists{padding-top:1em}main#community-page .body-wrap #user-lists #community-tabs{margin-bottom:20px;text-align:center}main#community-page .body-wrap #user-lists #community-tabs .pling-nav-tabs .nav-tabs{text-align:center}main#community-page .body-wrap #user-lists #community-tabs .pling-nav-tabs .nav-tabs>li,main#community-page .body-wrap #user-lists #community-tabs .pling-nav-tabs .nav-pills>li{float:none;display:inline-block}main#community-page .body-wrap #user-lists .list{display:block;margin:auto;padding-right:15px;padding-left:15px;display:flex;flex-wrap:wrap;align-items:center;justify-content:center}main#community-page .body-wrap #user-lists .list .u-wrap{float:left;width:100%;padding:.3em;border:.35em solid #dee0e0;border-radius:5px;height:14em;margin-bottom:1em;background:white;width:115px;height:200px;margin-right:10px;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out;position:relative;text-align:center}main#community-page .body-wrap #user-lists .list .u-wrap figure{float:left;padding:.25em;border:1px solid #dbdbdb;background:#f6f6f6;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}main#community-page .body-wrap #user-lists .list .u-wrap figure img{width:100%;border:1px solid #dbdbdb;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}main#community-page .body-wrap #user-lists .list .u-wrap h3{font-size:13px;font-weight:bold;word-wrap:break-word;line-height:20px;height:20px;padding:0;margin:0}main#community-page .body-wrap #user-lists .list .u-wrap span.small{font-size:13px;color:#444;position:absolute;bottom:5px;right:5px}main#community-page .body-wrap #user-lists .list .u-wrap div.projecttitle{font-size:11px}main#community-page .body-wrap #user-lists .list .u-wrap span.rank{font-size:14px;position:absolute;bottom:5px;left:5px;color:#444;font-weight:bold}#product-page-content{padding:0}#product-page-content #product-main-img #product-title-div{padding-left:30px;min-height:105px;padding-top:20px;display:flex}#product-page-content #product-main-img #product-title-div .product-title{flex:0 0 80%;font-size:25px;color:#2673b0;font-weight:bold;padding-bottom:15px}#product-page-content #product-main-img #product-title-div .product-title-right{flex:1}#product-page-content #product-main-img #product-title-div img.logo{max-height:85px;max-width:85px;float:left;padding-right:15px;border-radius:0}#product-page-content #product-main-img #product-title-div .product-logo-container{float:left;width:95px}#product-page-content #product-main-img #product-title-div .product_category{font-size:small;display:block;font-weight:normal}#product-page-content #product-main-img #product-title-div .topics{padding-right:20px;float:right}#product-page-content #product-main-img #product-title-div .topics .topic-tag{display:inline-block;padding:.3em .9em;margin:0 .5em .5em 0;white-space:nowrap;background-color:#f1f8ff;border-radius:3px}#product-page-content #product-main-img #product-title-div .topics .usertagslabelcat{background-color:#f1f1f1}#product-page-content #product-main-img #product-title-div .topics .topic-tag-link:hover{text-decoration:none;background-color:#def}#product-page-content #product-main-img #product-title-div .topics .btn-link{display:inline-block;padding:0;font-size:inherit;color:#0366d6;text-decoration:none;white-space:nowrap;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;float:right;padding-top:5px;padding-left:10px}#product-page-content #product-main-img #product-title-div .topics .topic-tags-saved{display:none;color:#0366d6;float:left;padding-top:5px;padding-left:10px}#product-page-content #product-main-img #product-title-div .topics .topic-tags-saved .fa-check{color:green}#product-page-content #product-main-img #product-title-div span.source{color:#4e4e4e}#product-page-content #product-main-img #product-title-div div.projectdetailRating{float:right;width:150px;z-index:100}#product-page-content #product-main-img #product-title-div div.projectdtailHeart{float:right;margin-right:5px;width:80px}#product-page-content #product-main-img #product-title-div div.projectdtailHeart .container-pling{position:relative;width:80px}#product-page-content #product-main-img #product-title-div div.projectdtailHeart .container-pling .partialbuttonfollowproject{text-align:center;width:80px;height:30px}#product-page-content #product-main-img #product-title-div div.projectdtailHeart .container-pling .partialbuttonplingproject{text-align:center}#product-page-content #product-main-img #product-title-div div.projectdtailHeart{float:right;z-index:100;margin-right:5px;width:50px}#product-page-content #product-main-img #product-title-div div.projectdtailHeart .container-pling{position:relative;width:50px}#product-page-content #product-main-img #product-title-div div.projectdtailHeart .container-pling .partialbuttonfollowproject{text-align:center;width:45px;height:45px}#product-page-content #product-main-img #product-title-div div.projectdtailHeart .container-pling .partialbuttonplingproject{text-align:center}#product-page-content #product-main-img #product-title-div .heartproject{position:relative;color:#8e44ad;font-size:45px;display:block}#product-page-content #product-main-img #product-title-div div.heartnumber{z-index:3;position:relative;top:-32px;display:block;margin:auto;color:#fff}#product-page-content #product-main-img #product-title-div .heartgrey{position:relative;color:#C8C8C8;font-size:45px;display:block}#product-page-content #product-main-img #product-title-div span.plingcircle{width:30px;height:30px;background-color:#fff;border:3px solid #C8C8C8;border-radius:50%;display:inline-block;font-size:17px;text-align:center;color:#C8C8C8;font-weight:bold;transform:rotate(345deg)}#product-page-content #product-main-img #product-title-div span.active{border:3px solid #EE6E09;color:#EE6E09}#product-page-content #product-main-img #product-title-div div.heartnumberpurple{color:#8e44ad}#product-page-content #product-tabs-container{padding-top:30px}#product-page-content #product-tabs-container #product-actions{margin-top:25px;margin-right:10px}#product-page-content #product-tabs{font-size:10pt;padding-left:25px}#product-page-content #product-panels{background:none repeat scroll 0 0 #fff;height:auto;overflow:hidden;border-radius:0;padding:15px;float:left;width:100%;margin:0}#product-page-content #product-panels .tab-pane{width:100%;float:left;background-color:white;padding:4px}#product-page-content #product-panels .tab-pane h3{color:#2673b0;margin-bottom:20px;margin-top:0}#product-page-content #product-panels .tab-pane .panel-grey-part{padding:15px;background-color:#f3f3f3;color:#2673b0;border-left:1px solid #e5e5e5}#product-page-content #product-panels .tab-pane#about-panel #product-about{padding:20px 10px 10px 10px}#product-page-content #product-panels .tab-pane#about-panel #product-about article{padding-top:15px}#product-page-content #product-panels .tab-pane#about-panel #product-about article.lastchangelog{padding-top:50px}#product-page-content #product-panels .tab-pane#donations-panel #comments{width:100%;float:left;padding:15px}#product-page-content #product-panels .tab-pane#donations-panel .list#supporters{padding:15px}#product-page-content #product-panels .tab-pane#ratings-panel .productRating-rows-inactive{color:#ddd;display:none}#product-page-content #product-panels .tab-pane#ratings-panel .userimg{border-radius:50%;border:1px solid #ccc;width:40px;height:40px}#product-page-content #product-panels .tab-pane#ratings-panel span.o-thumbs-up{color:green;padding-left:10px;padding-top:10px}#product-page-content #product-panels .tab-pane#ratings-panel span.o-thumbs-down{color:red;padding-left:10px;padding-top:10px}#product-page-content #product-panels #files-panel{padding-top:30px}#product-page-content #product-panels #files-panel table.table-ocs-file td{padding:3px;vertical-align:middle;padding-left:8px}#product-page-content #product-panels #files-panel table.table-ocs-file th{padding-right:3px}#product-page-content #product-panels #files-panel .btn{padding:3px 5px}#product-page-content #product-panels #updates-panel span.product-update-date{padding-left:10px}#product-page-content #product-panels #likes-panel .u-wrap{float:left;padding:.3em;border:.35em solid #dee0e0;border-radius:5px;height:14em;margin-bottom:1em;background:white;width:115px;height:200px;margin-right:10px;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out}#product-page-content #product-panels #likes-panel .u-wrap figure img{width:100%;border:1px solid #dbdbdb;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#product-page-content #product-panels #likes-panel .u-wrap h3{font-size:13px;font-weight:bold;word-wrap:break-word;line-height:20px;height:20px;padding:0;margin:0}#product-page-content #product-panels #likes-panel .u-wrap span.small{font-size:13px;text-align:right;color:#444;margin-top:50px;float:right}span.page-views{float:left;font-size:12px;padding:5px 15px 5px 0;color:#2673b0}#product-maker{background-color:#f1f1f1}#product-maker .project-share-new{padding-bottom:10px;padding-top:10px}#product-maker .project-share-new>.row{padding-left:30px}#product-maker .project-share-new .prod-user{margin-top:10px}#product-maker .project-share-new .prod-user .product-maker-thumbnail{float:right}#product-maker .project-share-new .prod-user .product-maker-thumbnail .supporter-badge{position:absolute;left:0;bottom:0;background:#EE6E09;text-align:center;border-radius:15px 15px 15px 15px;color:#fff;padding:2px 5px;font-size:10px}#product-maker .project-share-new .prod-user .product-maker-summary{float:right;padding-right:20px}#product-maker .project-share-new .prod-info{font-size:12px;padding-bottom:10px}#product-maker .project-share-new .prod-info>span{width:100%;float:left;padding-left:15px}#product-maker .project-share-new .prod-download>a{position:relative;display:block;float:left;color:#2673b0;background-image:-moz-linear-gradient(top, #E8E8E8, #D6D6D6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#E8E8E8), to(#D6D6D6));background-image:-webkit-linear-gradient(top, #E8E8E8, #D6D6D6);background-image:-o-linear-gradient(top, #E8E8E8, #D6D6D6);background-image:linear-gradient(to bottom, #E8E8E8, #D6D6D6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='@from', endColorstr='@to', GradientType=0);-webkit-box-shadow:inset 0 0 0 1px rgba(154,154,154,0.45);-moz-box-shadow:inset 0 0 0 1px rgba(154,154,154,0.45);box-shadow:inset 0 0 0 1px rgba(154,154,154,0.45);padding:10px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;height:50px;font-size:16px;line-height:30px;padding-left:15px;margin-right:5px;margin-bottom:10px}#product-maker .project-share-new .prod-download>a .glyphicon{font-size:30px;margin:0;position:absolute;height:30px;width:30px;display:block;top:10px;left:10px}#product-maker .project-share-new .prod-download>a .txt{float:left;width:100%;height:30px}#product-maker .project-share-new .prod-download>a .txt>span{text-transform:capitalize}#product-maker .project-share-new #donation-box{margin:0 -10px}.prod-widget-box{border:1px solid #ccd4d8 !important;font-size:10pt;padding:5px;margin-bottom:10px !important;width:95% !important}.prod-widget-box .product-row .product-thumbnail{width:75px;height:77px;margin:7px;padding:10px;position:relative}.prod-widget-box .product-row .product-thumbnail img{border-radius:5px;border:1px solid #b2b2b2;height:75px;width:75px}.prod-widget-box #pling-box .donation-box{padding-top:10px;padding-bottom:15px;width:100%;height:auto}.prod-widget-box #pling-box .donation-box>div{height:auto}.prod-widget-box #comments figure{width:40px;height:auto;text-align:center;border-top:1px solid #f5f5f5;padding:0 0 15px 0;float:left}.prod-widget-box #comments figure img{margin:0 auto;width:70%}.prod-widget-box.details span{line-height:1.65em;font-size:8.25pt}.prod-widget-box.details span.title{font:12pt Trebuchet MS,sans-serif;display:block;padding-bottom:10px}.prod-widget-box.details span.value{font-size:9pt}#product-donate{display:none;width:550px;height:300px;font-size:13px}main#reg-page{width:100%;height:100%}main#reg-page .form-control-feedback{line-height:40px}main#reg-page section#register-wrap{position:fixed;top:20%;left:50%;margin-left:-290px;width:580px}main#reg-page section#register-wrap input[type="text"],main#reg-page section#register-wrap input[type="password"]{border-width:1px;height:41px;margin:4px 0;width:100%;float:none;padding:0 5px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.15);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.15);box-shadow:inset 0 1px 1px rgba(0,0,0,0.15)}main#reg-page section#register-wrap input[type="checkbox"]{height:20px;width:auto}main#reg-page section#register-wrap label{font-size:12px}main#reg-page section#register-wrap button#login{margin-top:8px;width:120px}main#reg-page section#register-wrap #register{width:100%;margin:auto;background:#f5f5f5;padding:10px;border-radius:5px}@media (max-width:800px){main#reg-page section#register-wrap #register{max-height:400px;overflow-y:auto}}@media (max-width:550px){main#reg-page section#register-wrap #register{max-height:300px;overflow-y:auto}}@media (max-width:350px){main#reg-page section#register-wrap #register{max-height:200px;overflow-y:auto}}main#reg-page section#register-wrap #register h3{text-align:center;font-weight:400;position:relative;margin:10px 0 13px 0}main#reg-page section#register-wrap #register #register-box{padding-left:0;padding-right:0;min-height:373px}main#reg-page section#register-wrap #register #register-box #register-form-box{background-color:white;margin-bottom:0;width:373px}main#reg-page section#register-wrap #register #social-register{padding-top:20px;padding-right:15px;padding-left:30px;float:right}main#reg-page section#register-wrap #register #social-register #social-login-elements{margin-bottom:91px}main#reg-page section#register-wrap #register #social-register>div{float:left;width:100%}main#reg-page section#register-wrap #register #social-register form button{background-image:url(../img/bg_sheet.png);font-size:14px;display:block;font-weight:300;color:white;width:140px;height:41px;margin:0;border:none;text-align:left;text-indent:10px;padding-left:41px}main#reg-page section#register-wrap #register #social-register form button.facebook{background-position:0 -189px;margin-top:4px}main#reg-page section#register-wrap #register #social-register form button.twitter{background-position:0 -232px;margin-top:7px}main#reg-page section#register-wrap #register #social-register .bottom .small{margin-bottom:6px;text-align:center}main#reg-page section#register-wrap #register #social-register .bottom .login2 a{width:100%}main#reg-page section#register-wrap #login-form-box{background-color:white;margin-bottom:0;position:absolute;top:0;bottom:0}main#reg-page #thumbs{z-index:-1;width:100%;min-height:700px;overflow:hidden;position:relative;background:#000}main#reg-page #thumbs div.thumb{width:5.5555%;max-height:100px;padding:0;float:left;background:rgba(0,0,0,0.8)}main#reg-page #thumbs div.thumb a{float:left;width:100%;height:auto;display:block;position:relative}main#reg-page #thumbs div.thumb a>span{width:100%;height:100%;display:block;position:absolute;top:0;left:0;background:rgba(0,0,0,0.8);-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out}main#reg-page #thumbs div.thumb a img{width:100%;height:auto}.login-popup{position:relative;background:white;padding:0;width:420px;margin:0 auto}.login-popup .login-popup-form{background:#fff;border-radius:10px;padding:20px;float:left;margin:0;width:440px}.login-popup .login-popup-form .login-form-container{position:relative}.login-popup .login-popup-form .login-form-container form{margin:0}.login-popup .login-popup-form .login-form-container form input,.login-popup .login-popup-form .login-form-container form textarea,.login-popup .login-popup-form .login-form-container form select{border:1px solid #bdc3c7;padding:0;border-radius:5px}.login-popup .login-popup-form .login-form-container form .inputbox{border:1px solid #eaedf2;border-radius:3px;height:40px;padding:10px 0 10px 32px;width:100%;outline:none;margin-bottom:10px;font-family:inherit}.login-popup .login-popup-form .login-form-container form .email{background:#eaedf2 url(../img/email.png) 10px 15px no-repeat}.login-popup .login-popup-form .login-form-container form .password{background:#eaedf2 url(../img/password.png) 10px 10px no-repeat}.login-popup .login-popup-form .login-form-container form .container-checkbox-remember-me{height:20px;clear:both;margin-bottom:10px}.login-popup .login-popup-form .login-form-container form .container-checkbox-remember-me input{height:20px;margin:0 5px;float:left;width:auto}.login-popup .login-popup-form .login-form-container form .container-checkbox-remember-me label{display:inline-block;font-weight:bold;font-size:13px;float:left}.login-popup .login-popup-form .login-form-links{position:absolute;bottom:10px;right:20px;font-size:13px}.login-popup .login-popup-form .login-form-links a{font-size:13px}.login-popup p{font-size:15px;margin-bottom:0;text-align:left}.login-popup .social{margin:20px 0 15px}.login-popup .social a{color:#fff;text-decoration:none;font-weight:bold;border-radius:4px 4px 4px 4px;margin-right:10px;float:left;height:40px}.user-admin-page{position:relative}.user-admin-page .head-wrap{padding-top:1em;height:auto;background-size:cover;position:relative;padding-bottom:1.9em}.user-admin-page .head-wrap .about-me-header figure{width:6.9em;height:6.9em;padding:.3em;border:1px solid #dbdbdb;background:white;position:absolute;z-index:10;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.user-admin-page .head-wrap .about-me-header figure img{width:100%;height:100%;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.user-admin-page .head-wrap .about-me-header .user-menu{position:relative;height:auto;background:white;float:left;margin-top:1.5em;padding:.5em 2em .5em 8em;-webkit-border-radius:50px 0 0 50px;-moz-border-radius:50px 0 0 50px;border-radius:50px 0 0 50px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.user-admin-page .head-wrap .about-me-header .user-menu .intro{margin-top:0}.user-admin-page .body-wrap{background:white;position:relative}.user-admin-page .body-wrap .product-page{padding-top:1em}.user-admin-page .my-products-page,.user-admin-page .my-payments-page{padding-bottom:2em}.user-admin-page .my-products-page .my-products-heading,.user-admin-page .my-payments-page .my-products-heading{padding-bottom:20px;margin-bottom:20px;margin-top:20px;border-bottom:1px solid #c1c1c1;float:left;width:100%}.user-admin-page .my-products-page .my-products-heading .num-products,.user-admin-page .my-payments-page .my-products-heading .num-products{margin-top:35px}.user-admin-page .my-products-page .my-products-list,.user-admin-page .my-payments-page .my-products-list{float:left;width:100%}.user-admin-page .my-products-page .my-product-item,.user-admin-page .my-payments-page .my-product-item{margin-bottom:20px}.user-admin-page .my-products-page .my-product-item figure,.user-admin-page .my-payments-page .my-product-item figure{height:auto;padding:0}.user-admin-page .my-products-page .my-product-item figure img.explore-product-image,.user-admin-page .my-payments-page .my-product-item figure img.explore-product-image{width:101px;height:auto;padding-top:10px}.user-admin-page .my-products-page .my-product-item article>div,.user-admin-page .my-payments-page .my-product-item article>div{float:left;width:100%}.user-admin-page .my-products-page .my-product-item article .title,.user-admin-page .my-payments-page .my-product-item article .title{margin-bottom:10px}.user-admin-page .my-products-page .my-product-item article .title h3,.user-admin-page .my-payments-page .my-product-item article .title h3{margin:0;padding:0}.user-admin-page .my-products-page .my-product-item article .info ul,.user-admin-page .my-payments-page .my-product-item article .info ul{list-style-type:none;padding:0;margin:0}.user-admin-page .my-products-page .my-product-item article .info ul li,.user-admin-page .my-payments-page .my-product-item article .info ul li{float:left;width:auto;font-size:12px}.user-admin-page .my-products-page .my-product-item article .info ul li span+span,.user-admin-page .my-payments-page .my-product-item article .info ul li span+span{margin-left:5px;font-weight:bold}.user-admin-page .my-products-page .my-product-item article .info ul li+li,.user-admin-page .my-payments-page .my-product-item article .info ul li+li{margin-left:15px}.user-admin-page .my-products-page .my-product-item article .text,.user-admin-page .my-payments-page .my-product-item article .text{font-size:12px;margin:5px 0 10px 0}.user-admin-page .my-products-page .my-product-item article .text p,.user-admin-page .my-payments-page .my-product-item article .text p{margin:0}.user-admin-page .my-products-page .my-product-item article .buttons a.btn.btn-native,.user-admin-page .my-payments-page .my-product-item article .buttons a.btn.btn-native{color:white;font-size:12px;padding:3px 6px}.user-admin-page .my-products-page .my-product-item article .buttons a.btn.pling-danger,.user-admin-page .my-payments-page .my-product-item article .buttons a.btn.pling-danger{background-color:#C82333}.user-admin-page .my-products-page .my-product-divider,.user-admin-page .my-payments-page .my-product-divider{border-bottom:1px solid #c1c1c1;margin-bottom:20px;width:97%;margin-left:15px}.user-admin-page .my-products-page #my-earnings-list ul.nav-tabs,.user-admin-page .my-payments-page #my-earnings-list ul.nav-tabs{top:0;position:relative;margin:0;border-radius:5px 5px 0 0;padding:10px;padding-bottom:0}.user-admin-page .my-products-page #my-earnings-list ul.nav-tabs>li>a,.user-admin-page .my-payments-page #my-earnings-list ul.nav-tabs>li>a{padding:.7em 1em;font-size:.9em;height:2.95em;color:#2673b0}.user-admin-page .my-products-page #my-earnings-list #my-earnings-tabs,.user-admin-page .my-payments-page #my-earnings-list #my-earnings-tabs{padding:10px;border:1px solid #ddd;border-radius:0 0 5px 5px}.user-admin-page .my-products-page #my-earnings-list #my-earnings-tabs .tab-pane,.user-admin-page .my-payments-page #my-earnings-list #my-earnings-tabs .tab-pane{font-weight:bold}.user-admin-page .my-products-page #my-earnings-list #my-earnings-tabs .tab-pane .row,.user-admin-page .my-payments-page #my-earnings-list #my-earnings-tabs .tab-pane .row{margin:0}.user-admin-page .my-products-page #my-earnings-list #my-earnings-tabs .tab-pane .row h3,.user-admin-page .my-payments-page #my-earnings-list #my-earnings-tabs .tab-pane .row h3{margin:5px 0}.modal-ppload .content-modal{width:950px}.about-me-page .my-fav-list{width:1100px}.about-me-page .my-fav-list .totaldownloads{margin:0;padding:20px;text-align:right}.about-me-page .my-fav-list .smaller{font-size:smaller}.about-me-page .my-fav-list .row{border-bottom:1px solid #ccc;padding-top:15px;padding-bottom:15px}.about-me-page .my-fav-list .rating{width:60px !important;font-size:10pt}.about-me-page .my-fav-list .downloadhistory-image{width:50px;height:50px;float:left;margin-right:15px}.about-me-page .my-fav-list .nowrap{white-space:nowrap}.about-me-page .my-fav-list i.voteup{color:#409540;font-size:20px;padding-left:5px;padding-right:5px}.about-me-page .my-fav-list i.votedown{color:#C9302C;font-size:20px;padding-left:5px;padding-right:5px}.about-me-page .my-fav-list .newusers .u-wrap{float:left;width:100%;padding:.3em;border:.35em solid #dee0e0;border-radius:5px;height:14em;margin-bottom:1em;background:white;width:115px;height:200px;margin-right:10px;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out;position:relative}.about-me-page .my-fav-list .newusers .u-wrap figure img{width:100%;border:1px solid #dbdbdb;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.about-me-page .my-fav-list .newusers .u-wrap h3{font-size:13px;font-weight:bold;word-wrap:break-word;line-height:20px;height:20px;padding:0;margin:0}.about-me-page .my-fav-list .newusers .u-wrap div.small{font-size:13px;color:#444;position:absolute;bottom:5px;right:5px}.about-me-page .my-fav-list .newusers .u-wrap div.small img.plingactivesmall{width:20px;height:20px}.about-me-page .my-fav-list .newusers .u-wrap div.small .cntplings{line-height:20px}.about-me-page>.head-wrap{padding-top:1em;height:auto;background-size:cover;position:relative;padding-bottom:1em}.about-me-page>.head-wrap .page-title{height:3em;position:relative;margin-bottom:2em;margin-top:2em}.about-me-page>.head-wrap .page-title .center{position:absolute;top:0;left:0;width:100%;height:3em;text-align:center}.about-me-page>.head-wrap .page-title .center>div{background:#f6f6f6;width:auto;display:table;float:none;margin:0 auto}.about-me-page>.head-wrap .page-title .center>div>h1{margin:0 .5em}.about-me-page>.head-wrap .page-title hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee;border-bottom:1px solid white;float:left;width:100%}.about-me-page .header{height:auto;position:relative;margin-bottom:3em}.about-me-page .header>div.col-lg-8{padding-right:5px;padding-left:0}.about-me-page .header>div.col-lg-4{padding-right:0;padding-left:5px}.about-me-page .header .about{display:none}.about-me-page .header .about .well{background-color:white;padding:1em;height:22.5em}.about-me-page .header .about .well h2{font-size:1.4em;margin:0;min-height:1.4em;line-height:1.2em;border-bottom:1px solid #dbdbdb;font-weight:normal}.about-me-page .header .about .well article{border-top:1px solid #f5f5f5;padding-top:.5em;width:100%;float:left;overflow:hidden;height:18.5em}.about-me-page .header .about .well article>.scroll-pane{height:18em}.about-me-page .header .summary{float:none;margin:0 auto}.about-me-page .header .summary article{padding:0;background-color:white;height:auto;float:left}.about-me-page .header .summary article .about-title{padding:1em;height:8.9em;padding-left:8.9em;position:relative;background:rgba(246,246,246,0.45);border-bottom:1px solid #e1e1e1;float:left;width:100%}.about-me-page .header .summary article .about-title figure{width:6.9em;height:6.9em;padding:.3em;border:1px solid #dbdbdb;background:white;position:absolute;top:1em;left:1em;display:inline-block;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.about-me-page .header .summary article .about-title figure img{width:100%;height:100%;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.about-me-page .header .summary article .about-title .supporter-badge{position:absolute;left:0;bottom:0;background:#EE6E09;text-align:center;border-radius:30px 30px 30px 30px;color:#fff;padding:5px 10px;font-size:16px}.about-me-page .header .summary article .about-title .mod-badge{display:block;text-align:center;padding-top:3px;font-size:small}.about-me-page .header .summary article .about-title h1{margin:1.5em 0 0 0;font-size:1.5em;min-height:1.7em;line-height:1em}.about-me-page .header .summary article .about-content{padding:1em;float:left}.about-me-page .header .summary article .about-content>div{float:left;width:100%}.about-me-page .header .summary article .about-content>div span{float:left;display:block;line-height:1.25em}.about-me-page .header .summary article .about-content>div span.glyphicon{color:#939292;margin-right:.25em;font-size:1.25em}.about-me-page .header .summary article .about-content>div span+span{line-height:1.65em}.about-me-page .header .summary article .about-content>div.social-icons a{font-size:1.35em;height:1em;width:1em;display:block;float:left}.about-me-page .header .summary article .about-content>div.social-icons a img{width:100%;height:100%;vertical-align:top}.about-me-page .header .summary article .about-content>div.social-icons a+a{margin-left:.25em}.about-me-page .header .summary article .about-content div+div{margin-top:.25em}.about-me-page .header .summary article .about-footer{float:left;width:100%;padding:1em}.about-me-page .header .summary article .about-footer .info-div{width:100%;float:left}.about-me-page .header .summary article .about-footer .info-div+.info-div{margin-top:5px}.about-me-page .header .summary article .about-footer .social-share .social+.social{margin-left:.5em}.about-me-page .header .summary article .about-footer>.pull-right em.report-icon{height:1.5em;width:1.5em;margin-top:.5em;background-size:cover}.about-me-page .about-me-details{padding-left:0;padding-right:.5em}.about-me-page .about-me-details .tab-content{padding-top:20px}.about-me-page .about-me-details h3.about-me-heading{font-size:1.5em;margin:0;min-height:1.9em;line-height:1.9em;border-bottom:1px solid #dbdbdb;font-weight:normal}.about-me-page .about-me-details article{padding-top:.5em;padding-bottom:1.5em;width:100%;float:left}.about-me-page .about-me-details .my-products-list h3{width:100%;margin-bottom:20px}.about-me-page .about-me-details .my-products-list .cat-title{padding:0 5px;position:relative;height:2em;margin-bottom:1em;margin-top:1.1em}.about-me-page .about-me-details .my-products-list .cat-title>div{position:absolute;top:0;left:1em;background:white;height:2em;width:auto;padding:0 .5em}.about-me-page .about-me-details .my-products-list .cat-title>div>h2{margin:0}.about-me-page .about-me-details .my-products-list .cat-title hr{float:left;width:100%;margin-top:1em;margin-bottom:1em;border-bottom:1px solid #F9F9F9}.about-me-page .about-me-details .my-products-list .mini-card{width:14.28571%;margin-bottom:10px}.about-me-page .about-me-details .my-products-list .mini-card p img{vertical-align:baseline}.about-me-page aside .details{float:left;width:100%;height:auto;padding:.5em}.about-me-page aside .details h3{line-height:2em;font-size:1em;margin:0;color:#a3a2a2;border-bottom:1px solid #e1e1e1}.about-me-page aside .details .box-content{padding:.5em 0 0 0;border-top:1px solid #ededed}.about-me-page aside .details .box-content>div{width:100%;float:left;height:auto;margin-top:.5em}.about-me-page aside .details .box-content>div .label{float:left;padding:0}.about-me-page aside .details .box-content>div .label em,.about-me-page aside .details .box-content>div .label span{font-size:1.7em;float:left;display:inline-block;color:#AAA}.about-me-page aside .details .box-content>div .label em{display:block;width:1em;height:1em;background-size:cover}.about-me-page aside .details .box-content>div .label em.fb-link{background-image:url('../img/social_icons/fb.png')}.about-me-page aside .details .box-content>div .label em.tw-link{background-image:url('../img/social_icons/tw.png')}.about-me-page aside .details .box-content>div .label em.gp-link{background-image:url('../img/social_icons/g_plus.png')}.about-me-page aside .details .box-content>div .label em.gt-link{background-image:url('../img/social_icons/github.png')}.about-me-page aside .details .box-content>div .text{width:90%;float:right;font-size:1em;min-height:1.5em;line-height:1.3em}.mini-card{padding:0 2px;width:14.28571%;margin-bottom:10px}.mini-card .u-wrap{float:left;width:100%;border:2px solid #DEE0E0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;height:15em;margin-bottom:4px;background:white;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out}.mini-card .u-wrap a{float:left;width:100%;height:100%;display:block;position:relative}.mini-card .u-wrap figure{width:100%;float:left;height:120px}.mini-card .u-wrap figure img{width:100%;height:120px;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.mini-card .u-wrap .rating{font-size:11px;position:absolute;right:10px;bottom:10px}.mini-card .u-wrap .u-content{width:100%;float:left;padding:3px;height:5.5em;position:relative;overflow:hidden}.mini-card .u-wrap .u-content .productCategory{color:#4e4e4e;display:block;font-size:11px}.mini-card .u-wrap .u-content>h3{font-size:12px;word-wrap:break-word;width:100%;margin:2px 0 4px 0}.mini-card .u-wrap .u-content>p{font-size:15px;position:absolute;bottom:0;right:3px;width:100%;margin:0;color:black;font-weight:bold;text-align:right;color:#444}.mini-card .u-wrap:hover{border-color:#DEE0E0;background:#f6f6f6}.mini-card .u-wrap:hover figure{background:white}@media (max-width:800px){.mini-card{width:16.6666667%}.mini-card .u-wrap{height:12em}}@media (max-width:550px){.mini-card{width:20%}.mini-card .u-wrap{height:14em}}@media (max-width:350px){.mini-card{width:33.333333%}.mini-card .u-wrap{height:16em}}.product-card{width:10%;padding:0 3px;margin-bottom:10px;height:auto}.product-card>a{display:block;float:left;width:100%;height:auto;position:relative}.product-card>a .card>.border{position:absolute;top:0;left:0;width:100%;background-color:#2673B0}.product-card>a .card>.p-wrap{width:100%;height:8.25em;border:2px solid #c5ced5;background-color:white;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.product-card>a .card>.p-wrap>figure{width:100%;height:3.5em;overflow:hidden;display:block;float:left;border-bottom:1px solid #c5ced5}.product-card>a .card>.p-wrap>figure>img{height:100%;width:100%}.product-card>a .card>.p-wrap>.content{width:100%;float:left;padding:.25em;font-size:1em;height:3.5em}.product-card>a .card>.p-wrap>.content>h3{font-size:.7em;margin:0;color:#34495e;display:block;width:100%;height:100%;overflow:hidden;word-break:break-word}.product-card>a .card>.p-wrap>.footer{float:left;width:100%;height:1em;line-height:1em;font-size:1em;text-align:right;padding:0 .1em;background-color:#f5f5f5;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.product-card>a .card>.p-wrap>.footer>p{font-weight:bold;font-size:.75em;color:#a7a7a7}.product-card>a>.empty-card{width:100%}@media (max-width:800px){.product-card{width:16.6666667%}}@media (max-width:550px){.product-card{width:20%}}@media (max-width:350px){.product-card{width:33.333333%}}.wizard>.content>.body{position:inherit}.wizard>.content>.body input.error,.wizard>.content>.body select.error,.wizard>.content>.body textarea.error{background:none repeat scroll 0 0 #fbe3e4;border:1px solid #fbc2c4;color:#8a1f11}.wizard>.steps li a{background:#eee none repeat scroll 0 0;color:#aaa;cursor:default}.wizard>.steps li a:hover{cursor:pointer}.wizard>.steps>ul>li{width:20%}.add-product-top{width:100%;margin:20px 0 100px 0;padding:0 15px}.add-product-top h1{margin-bottom:0;font-size:2em}.add-product-top ul.steps{width:auto;margin-bottom:0}.add-product-top ul.steps li{float:left;display:inline-block;list-style:none;margin:0;color:#bdc3c7;border-bottom:2px solid #bdc3c7;padding:1em 2.5em;font-size:1em;width:auto}.add-product-top ul.steps li.active{color:#2673B0;border-bottom:2px solid #2673B0}.add-product-container{padding-bottom:40px}.add-product-container>form{width:50%;margin:0 auto}.add-product-container>form .field label{width:100%}.add-product-container>form .field input,.add-product-container>form .field textarea{width:100%}.add-product-container>form .field select{height:35px;width:48%}.add-product-container>form .field select+select{float:right}.add-product-container>form button+button{margin-right:10px}.add-product-form{margin:auto}.mandatory{top:2px;left:-240px;width:220px;text-align:right}.bold-font{font-size:18px;font-weight:bold}.field-missing-container{top:26px;right:-240px;width:230px}.field-missing-left{margin-top:6px;float:left;width:8px;height:22px;background:url(../img/field-missing-left.png)}.field-missing{float:left;background:#fadbd8;border-radius:5px;color:#e74c3c;padding:12px;max-width:190px;word-break:normal;word-wrap:break-word}.add-more{right:10px}a.add-more:hover{text-decoration:underline}.icon-plus{margin-left:5px;width:15px;height:15px;background:url(../img/icon-plus.png)}.product-gallery{margin-bottom:30px}.product-gallery .product-image{float:left;margin:5px 5px 0 0}.product-gallery .product-image img{max-width:110px;max-height:110px;overflow:hidden;border-radius:5px;border:3px solid #2673B0}.product-gallery .product-image img:hover{border:3px solid #bdc3c7}.product-gallery .product-image .image{width:110px;height:77px;overflow:hidden;border-radius:5px;border:3px solid #2673B0;background-size:110px;background-position:center center}.product-gallery .product-image .image:hover{border:3px solid #bdc3c7}.product-gallery .product-image .icon-check{width:20px;height:20px;background:url(../img/icon-check.png)}.product-gallery .product-image .icon-cross{display:none;width:20px;height:20px;background:url(../img/icon-cross.png);right:0;cursor:pointer}.product-gallery .upload-image-container .upload-image{float:left;cursor:pointer;width:116px;height:83px;background:url(../img/icon-upload.png);background-position:0 -15px;margin:5px 0 0 -5px;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.product-gallery .upload-image-container .upload-image:hover{background:url(../img/icon-upload-hover.png);background-position:0 -15px}input.product-picture,input.title-picture,input.gallery-picture{opacity:0;margin-bottom:0;height:0;width:0;position:absolute}#product-picture-container,#title-picture-container{max-width:110px;max-height:110px;overflow:hidden}img#product-picture-preview,img#title-picture-preview{display:none;margin-top:20px}#embed-code{margin-top:20px}.add-page-preview{background:rgba(46,49,51,0.8);color:white;position:fixed;margin-top:0;width:100%;z-index:1}.add-page-preview>.container{padding-bottom:20px}.add-page-preview .add-product-mid>.left{width:100%}.preview-container>.row-fluid{margin-top:220px}.preview-title{font-size:18px;margin:0 60px 0 15px;padding-top:15px}.preview-explanation{padding-top:18px}.add-page-preview .add-product-top{border-bottom:1px solid #393d3f;margin-bottom:10px}.add-page-preview ul.steps{margin-bottom:0}.paypal-label{font-size:17px;margin:15px 60px 0 30px}.icon-paypal{width:40px;height:40px;background:url(../img/icon-paypal.png);margin:-10px 30px 0 0}.preview-inputs{padding:10px 0;border-bottom:1px solid #393d3f}.preview-buttons{padding:20px 0 0 0}.preview-buttons .btn.right{margin-left:10px}input.preview-input{margin-left:20px;width:250px;height:35px}.settings-page>.about-me{float:left;width:100%;margin-bottom:40px}.settings-page .settings-options{padding:0}.settings-main{padding-right:0;margin-bottom:40px}.settings-main .panel .panel-heading{position:relative}.settings-main .panel .panel-heading h4 a{font-size:1.2em;padding:.5em .5em}.settings-main .panel .panel-heading h4 a:hover{text-decoration:none;color:#2673B0}.settings-main .panel .panel-heading span.glyphicon-chevron-down{position:absolute;top:50%;margin-top:-0.5em;right:.5em;transform:rotate(0deg);-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out}.settings-main .panel .panel-heading.active span.glyphicon-chevron-down{transform:rotate(180deg);-ms-transform:rotate(180deg);-webkit-transform:rotate(180deg)}.settings-main .panel .panel-body{padding:.5em}.settings-main .panel .panel-body>form{padding:.5em;margin-bottom:0}.settings-main .panel .panel-body>form>.row>div input[type="text"],.settings-main .panel .panel-body>form>.row>div input[type="password"],.settings-main .panel .panel-body>form>.row>div textarea{width:100%;padding:0 5px}.settings-main .panel .panel-body>form>.row>div textarea.about{padding:.5em 1em .5em .5em}.settings-main .panel .panel-body>form>.row .btn.pull-right{margin-right:15px}.settings-main .panel .panel-body>form>hr{margin-top:1em;margin-bottom:1em;border:0;border-top:1px solid #eee;border-bottom:1px solid white}.settings-main ul.errors,.settings-main ul li.text-error{color:#b94a48;list-style-type:none;font-size:.8em;padding:0;display:inline-block}.settings-main input.input-error,.settings-main textarea.input-error{border:1px solid #b94a48}.settings-main .form-success{color:#48B96C}.settings-main .section-body{padding:15px 15px 0 15px;display:none;border-bottom:1px solid #bdc3c7}.settings-main .section-body .row:last-of-type{margin:0 0 15px 0}.settings-main .section-body hr{display:block;height:0;border-top:1px solid #bdc3c7;padding:0 1em;width:100%;margin:10px 0 20px -15px}.settings-main .section-body .row input[type="text"],.settings-main .section-body .field input[type="text"],.settings-main .section-body .row input[type="password"],.settings-main .section-body .field input[type="password"],.settings-main .section-body .row textarea,.settings-main .section-body .field textarea{width:100%}.settings-main #form-profile textarea.about{height:228px}.settings-main #form-picture .image-preview,.settings-main #form-picture-background .image-preview{display:block;padding:0;margin:10px auto;width:100%;max-width:200px;height:auto}.settings-main #form-picture .image-preview>img,.settings-main #form-picture-background .image-preview>img{width:100%;height:auto}.settings-main #form-picture .image-info,.settings-main #form-picture-background .image-info{margin:22px 0 0 -20px;padding:0 0 0 35px;border-left:1px solid #bdc3c7;height:200px}.settings-main #form-picture .image-info p,.settings-main #form-picture-background .image-info p{margin-bottom:30px}.settings-main #form-website .clipboard-copy{background:rgba(8,165,193,0.49);padding:7px;position:relative;padding-right:230px;margin-bottom:20px;border-radius:7px}.settings-main #form-website .clipboard-copy .btn-purple{position:absolute;top:0;right:0;padding:7px 35px}.settings-main #form-website .clipboard-copy .clipboard-code{margin:0;width:100%;color:white;background:0;padding:0;box-shadow:none;font-size:16px}.settings-main #form-newsletter .newsletter-label{margin:5px 10px 0 0}.settings-main #form-newsletter #newsletter{height:14px;float:left;width:auto;margin:7px 0 0 0;cursor:pointer}.settings-main #add-profile-picture{width:100%;max-width:200px}.profile-summary{padding:15px;background:#FDFDFD}.profile-summary .profile-image-container{width:123px;height:123px;margin:auto;border:1px solid #ccc;padding:.25em;background:white;-webkit-border-radius:123px;-moz-border-radius:123px;border-radius:123px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.profile-summary .profile-image-container .profile-image img{width:100%;height:100%;border:1px solid #ccc;-webkit-border-radius:123px;-moz-border-radius:123px;border-radius:123px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.profile-summary .profile-name{font-size:20px;margin-bottom:45px}.profile-summary .last-active{font-size:12px;margin-top:5px}#overlays .clipboard-copy{background:#ebf5fb;padding-left:10px;margin-bottom:20px}#overlays .clipboard-copy .clipboard-code{margin:10px 0}div.image{display:inline-block;margin-left:5px;width:17px;height:17px}div.image.checked{background:url(/theme/flatui/img/icon-check-round-green.png) no-repeat}div.image.unchecked{background:url(/theme/flatui/img/icon-question-round.png) no-repeat}input.product-picture,input.title-picture,input.gallery-picture{opacity:0;margin-bottom:0;height:0;width:0;position:absolute}@media (max-width:767px){.settings-main{padding-left:0}}.static-container{margin-top:0;margin-bottom:0;max-width:970px}.static-container hr:first-of-type{height:0;border-bottom:1px solid #ecf0f1;margin:40px auto}.static-container .static-heading h1.page-title{color:#34495e;font-weight:bold;font-size:32px}.static-container .static-content{margin-bottom:50px}.static-container .static-content h3{color:#2673B0;font-size:1.5em;margin:10px 0;font-weight:normal}#top-content{position:relative}#top-content>.left{padding-left:0;padding-right:15px;width:50%}#top-content>.right{padding-right:0;padding-left:15px;width:50%}#top-content h4{line-height:1.4em;font-size:1.3em;text-align:justify;margin-top:0}#top-content h3{position:absolute;bottom:1em;left:0;width:50%;text-align:center;font-size:2em}.panel-group h3{margin-bottom:10px;font-weight:normal}.panel-group .panel .panel-heading{padding:0}.panel-group .panel .panel-heading a{padding:10px 15px;width:100%;display:block}section{float:left;width:100%}section.top{border-bottom:1px solid #eeeeee;margin-bottom:40px}section.top h1.page-title{font-size:45px;height:45px;line-height:45px;margin-bottom:40px}section.top p{font-weight:bold}section.team-members{text-align:center;margin-bottom:40px}section.team-members .row{width:100%;float:right}section.team-members .row .team-member{float:left;width:104px}section.team-members .row .team-member figure{margin:0 0 10px 0;width:104px;height:104px}section.team-members .row .team-member figure img{width:104px;height:104px}section.team-members .row .team-member .info{width:150%;margin-left:-25%}section.team-members .row .team-member .info h3{font-size:14px;height:15px;line-height:15px;margin:3px 0;font-weight:bold;color:#34495e}section.team-members .row .team-member+.team-member{margin-left:208px}section.team-members .row+.row{margin-top:30px}.term .term-description{margin:0}.term .term-description ol li+li{margin-top:5px}.content-modal .modal-header h3{text-align:center;color:#2673b0}.clipboard-copy .clipboard-code{margin-bottom:10px;float:left;background:#2673b0;color:white;padding:10px 5px;border-radius:5px;box-shadow:inset 1px 1px 1px rgba(0,0,0,0.15);font-size:13px;width:100%}.code-embed-modal .content-modal .modal-body textarea{width:100%;border-width:1px;height:100px}#files-panel{font-size:10pt}#comments-frame>h3{margin:45px 0 30px 0}#comments-frame .comment-row{width:100%;float:left;padding-bottom:15px}#comments-frame .comment-row+.comment-row{padding-top:15px}#comments-frame .comment{width:100%;padding-left:55px;float:left;position:relative;font-size:12px}#comments-frame .comment .supporter-thumbnail{width:50px;height:50px;padding:0;margin:0;position:absolute;top:0;left:0}#comments-frame .comment .supporter-thumbnail img{width:100%;height:100%}#comments-frame .comment .comment-content{width:100%;padding-right:0;padding-left:0}#comments-frame .comment .comment-content .popover-title{padding:0;margin-bottom:5px;font-weight:bold;background:white;border-bottom:0;font-weight:normal}#comments-frame .comment .comment-content .popover-title span{font-size:11px}#comments-frame .comment .comment-content .popover-title span.name{font-weight:bold;font-size:13px}#comments-frame .comment .comment-content .popover-title span.amount{font-size:12px}#comments-frame .comment .comment-content .popover-title span.lightgrey{margin-left:15px}#comments-frame .comment .comment-content .popover-content{overflow:hidden;padding:0;min-height:28px}#comments-frame .comment .comment-content .popover-content p{margin-bottom:0}#comments-frame .comment .comment-content .maker-comment-container{padding:0;margin-top:15px}#comments-frame .comment .comment-content .maker-comment-container.maker-form{display:none;position:relative;padding-left:8%}#comments-frame .comment .comment-content .maker-comment-container.maker-form .glyphicon{position:absolute;top:4px;left:7%;cursor:pointer;z-index:100}#comments-frame .comment .comment-content .maker-comment-container.maker-form .maker-comment{margin-top:5px;background:#f7f7f7}#comments-frame .comment .comment-content .maker-comment-container.maker-form .popover-content{height:auto;overflow:hidden;background:#f7f7f7;border-radius:4px;border:0;padding-top:4px;padding-right:4px;padding-bottom:4px;padding-left:12%}#comments-frame .comment .comment-content .maker-comment-container.maker-form textarea{border-width:1px;margin-bottom:5px}#comments-frame .comment .comment-content .maker-comment{width:100%;float:none;padding:0;position:relative;border:0}#comments-frame .comment .comment-content .maker-comment .supporter-thumbnail{width:38px}#comments-frame .comment .comment-content .maker-comment .supporter-thumbnail a{width:38px;height:38px}#comments-frame .comment .comment-content .maker-comment .content{padding-left:43px}#comments-frame .comment .comment-content .maker-comment .content .popover-content{margin-bottom:0}#comments-frame .comment a.show-maker-reply{position:absolute;bottom:1px;right:0;display:block;cursor:pointer;color:white;font-size:.8em;padding:.2em .4em;-webkit-border-radius:4px 0 4px 0;-moz-border-radius:4px 0 4px 0;border-radius:4px 0 4px 0;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.modal.report-product .modal-dialog .modal-content{padding:10px 10px 0 10px}.modal.report-product .modal-dialog .modal-content #product-report button.small{border:none;background:transparent;color:#2673b0}#modal-widget .content-modal{width:770px}#modal-widget .content-modal .modal-body{overflow:hidden;height:auto}#modal-widget .content-modal .modal-body hr{float:left;width:100%}#modal-widget .content-modal #configuration-options{width:50%;float:left;padding-right:10px}#modal-widget .content-modal #configuration-options .tab-content .tab-pane{padding:10px 0}#modal-widget .content-modal #configuration-options .tab-content .tab-pane .field{font-size:12px}#modal-widget .content-modal #configuration-options .tab-content .tab-pane .field label{width:35%;float:left;height:25px;line-height:25px}#modal-widget .content-modal #configuration-options .tab-content .tab-pane .field input[type="text"]{float:right;width:65%;border-width:1px;height:25px;line-height:25px;border-radius:3px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.15);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.15);box-shadow:inset 0 1px 1px rgba(0,0,0,0.15)}#modal-widget .content-modal #configuration-options .tab-content .tab-pane .field input[type="radio"]{width:auto;float:left;margin:7px 3px 5px 0}#modal-widget .content-modal #configuration-options .tab-content .tab-pane .field span{float:left;height:25px;line-height:25px;display:inline-block}#modal-widget .content-modal #configuration-options .tab-content .tab-pane .field span+input[type="radio"]{margin-left:15px}#modal-widget .content-modal #configuration-options .tab-content .tab-pane .field input[type="checkbox"]{float:left;margin:7px 0;width:auto}#modal-widget .content-modal #configuration-options .tab-content .tab-pane .field textarea{width:65%;border-width:1px;border-radius:3px;padding:2px 10px;height:100px;margin-bottom:5px}#modal-widget .content-modal #widget-preview{width:50%;padding-left:10px;float:left}#modal-widget .content-modal #widget-preview #pling-widget{width:100%;padding:8px;font-size:12px;background-color:#2673B0;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#modal-widget .content-modal #widget-preview #pling-widget .widget-header{width:100%;margin-bottom:5px}#modal-widget .content-modal #widget-preview #pling-widget .widget-header h3{margin:0;font-size:18px;margin-bottom:0 !important}#modal-widget .content-modal #widget-preview #pling-widget .widget-body{background-color:white;padding:5px;margin-bottom:5px;border:1px solid rgba(68,68,68,0.2);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 1px 4px rgba(0,0,0,0.15);-moz-box-shadow:inset 0 1px 4px rgba(0,0,0,0.15);box-shadow:inset 0 1px 4px rgba(0,0,0,0.15)}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info{width:100%;position:relative}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info .goal-range-number{width:100%;height:20px;line-height:20px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info .goal-range-number span{display:block;float:left}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info .goal-range-number span+span{float:right}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info .goal-range-number span+span.unlimited{font-size:27px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info .achieved-amount{width:100%;height:20px;padding:3px;background:rgba(204,204,204,0.19);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info .achieved-amount .bar{width:4px;max-width:100%;height:14px;background-color:#2673B0;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 6px 0 rgba(255,255,255,0.2);-moz-box-shadow:inset 0 6px 0 rgba(255,255,255,0.2);box-shadow:inset 0 6px 0 rgba(255,255,255,0.2)}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info .achieved-amount .bar.no-goal{width:50%}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info .money-raised{width:100%;height:20px;line-height:20px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info.with-goal{padding-right:25%}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .product-funding-info.with-goal .percentage{position:absolute;top:0;right:0;width:25%;height:60px;line-height:60px;text-align:center;font-size:22px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .widget-text{margin-top:10px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .supporters{width:100%;height:auto;overflow:hidden;margin-top:10px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .supporters .supporter{width:12.5%;height:auto;float:left;padding:2px;clear:none;border-bottom:0}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .supporters .supporter figure{width:100%;height:auto}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .supporters .supporter figure img{width:100%;height:auto;-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .comments{height:auto;overflow:hidden;width:100%;margin-top:10px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .comments .comment{position:relative;width:100%;min-height:42px;padding-left:15%}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .comments .comment figure{position:absolute;top:0;left:0;width:15%;height:auto}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .comments .comment figure img{width:100%;height:auto}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .comments .comment .content{width:100%}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .comments .comment .content .info{width:100%;height:12px;line-height:12px;margin-bottom:5px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .comments .comment .content .text{width:100%;font-size:11px;line-height:11px}#modal-widget .content-modal #widget-preview #pling-widget .widget-body .comments .comment+.comment{margin-top:5px}#modal-widget .content-modal #widget-preview #pling-widget .widget-footer{width:100%;height:auto;overflow:hidden}#modal-widget .content-modal #widget-preview #pling-widget .widget-footer .button{float:left}#modal-widget .content-modal #widget-preview #pling-widget .widget-footer .pay-secure{float:left;padding-left:10px;color:white;width:100px}#modal-widget .content-modal #widget-preview #pling-widget .widget-footer .powered-by{float:right}#modal-widget .content-modal #widget-preview #pling-widget .widget-footer .powered-by a.pling-logo{display:block;background-image:url('../img/new/pling-logo-large.png');height:34px;width:63px;background-size:contain}#modal-widget .content-modal #widget-preview #pling-widget .widget-footer .powered-by a.pling-logo.grey{background-image:url('../img/new/logo.png')}#modal-widget .content-modal #widget-preview #pling-widget .widget-footer .powered-by a.pling-logo.icon{width:34px;background-image:url('../img/new/box-logo.png')}.code-embed-modal .content-modal{width:400px}.code-embed-modal .content-modal .modal-body textarea{width:100%;border-width:1px;height:100px}body.body-external{margin:0;padding-top:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}.supporter-box-container{width:100%;height:auto;float:left;border:1px solid #999999;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.supporter-box-container figure{float:left;margin:0;padding:0}.supporter-box-container div{float:left}.supporter-box-container>div{width:100%;height:auto;padding:7px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.supporter-box-container .supporter-box-top{background-color:#e5e5e5;position:relative}.supporter-box-container .supporter-box-top .title{float:left;width:50%}.supporter-box-container .supporter-box-top .title>a{font-size:16px;color:#39568c;text-decoration:none;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out}.supporter-box-container .supporter-box-top .title>a:hover{text-decoration:underline;color:#428bca}.supporter-box-container .supporter-box-top figure{position:absolute;top:7px;right:7px;width:102px;height:68px;border:inset 1px #999999}.supporter-box-container .supporter-box-top figure a{width:100%;height:100%;display:block;overflow:hidden}.supporter-box-container .supporter-box-top figure a img{width:100%}.supporter-box-container .supporter-box-body>div{width:100%;float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.supporter-box-container .supporter-box-body .info{height:30px;padding-left:35px;position:relative;margin-bottom:10px}.supporter-box-container .supporter-box-body .info>em{position:absolute;left:0;top:0}.supporter-box-container .supporter-box-body .info>span{display:block;width:100%;height:15px;line-height:15px;font-size:13px;float:left;color:black}.supporter-box-container .supporter-box-body .info span+span{color:#1e4483}.supporter-box-container .supporter-box-body .supporters{width:102%}.supporter-box-container .supporter-box-body .supporters figure{width:30px;height:30px;margin:0 3.5px 3.5px 0}.supporter-box-container .supporter-box-body .supporters figure a{display:block;width:100%;height:100%;overflow:hidden;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.supporter-box-container .supporter-box-body .supporters figure a img{width:100%}#configuration-options{width:60%;float:left;padding-right:10px}#configuration-options ul.nav-tabs{padding:0;background-color:white}#configuration-options ul.nav-tabs li a{padding:5px}#configuration-options .tab-content .tab-pane{padding:10px 0}#configuration-options .tab-content .tab-pane textarea{width:65%;border-width:1px;border-radius:3px;padding:0 5px;height:100px;margin-bottom:5px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.15);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.15);box-shadow:inset 0 1px 1px rgba(0,0,0,0.15)}#configuration-options .tab-content .tab-pane .field{font-size:12px}#configuration-options .tab-content .tab-pane .field label{width:35%;float:left;height:25px;line-height:25px}#configuration-options .tab-content .tab-pane .field input[type="text"],#configuration-options .tab-content .tab-pane .field input.color-input{padding:0 5px;float:right;width:65%;border-width:1px;height:25px;line-height:25px;border-radius:3px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.15);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.15);box-shadow:inset 0 1px 1px rgba(0,0,0,0.15)}#configuration-options .tab-content .tab-pane .field input[type="radio"]{width:auto;float:left;margin:7px 3px 5px 0}#configuration-options .tab-content .tab-pane .field span{float:left;height:25px;line-height:25px;display:inline-block}#configuration-options .tab-content .tab-pane .field span+input[type="radio"]{margin-left:15px}#configuration-options .tab-content .tab-pane .field input[type="checkbox"]{float:left;margin:7px 0;width:auto}#pling-widget{width:100%;max-width:400px;padding:8px;font-size:12px;background-color:#2673B0;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#pling-widget .widget-header{width:100%;margin-bottom:5px}#pling-widget .widget-header h3{margin:0;font-size:18px}#pling-widget .widget-body{background-color:white;padding:5px;margin-bottom:5px;border:1px solid rgba(68,68,68,0.2);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 1px 4px rgba(0,0,0,0.15);-moz-box-shadow:inset 0 1px 4px rgba(0,0,0,0.15);box-shadow:inset 0 1px 4px rgba(0,0,0,0.15)}#pling-widget .widget-body .donation-amount{line-height:34px;margin:0 0 5px 0;overflow:hidden}#pling-widget .widget-body .donation-amount .support-with{width:25%;height:34px;float:left}#pling-widget .widget-body .donation-amount .donation-amount-number{width:50%;float:left;position:relative}#pling-widget .widget-body .donation-amount .donation-amount-number span.glyphicon{position:absolute;top:11px;left:0}#pling-widget .widget-body .donation-amount .donation-amount-number input[type="text"]{padding:0 10px;float:right;width:100%;border-width:1px;height:24px;line-height:24px;border-radius:3px;margin:5px 0;border-right:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.15);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.15);box-shadow:inset 0 1px 1px rgba(0,0,0,0.15)}#pling-widget .widget-body .donation-amount .button{width:25%;float:right}#pling-widget .widget-body .donation-amount .button button{float:left;margin-top:5px;padding:0;width:100%;text-align:center;height:24px}#pling-widget .widget-body .donation-amount .payment-providers{width:100%;float:left;margin:5px 0}#pling-widget .widget-body .donation-amount .payment-providers .pay-with{width:25%;height:34px;float:left}#pling-widget .widget-body .donation-amount .payment-providers .input-group{width:37%;float:left;display:block}#pling-widget .widget-body .donation-amount .payment-providers .input-group .input-group-addon{width:20%;float:left;padding:8px 16px 4px 0;border:0;background:transparent;margin-top:3px}#pling-widget .widget-body .donation-amount .payment-providers .input-group .input-group-addon input[type="radio"]{width:auto}#pling-widget .widget-body .donation-amount .payment-providers .input-group .payment-icon{width:70%;float:left;height:34px;display:block}#pling-widget .widget-body .donation-amount .payment-providers .input-group .payment-icon img{max-width:100%;height:20px;width:auto;margin-top:7px}#pling-widget .widget-body .product-funding-info{width:100%;position:relative}#pling-widget .widget-body .product-funding-info .goal-range-number{width:100%;height:20px;line-height:20px;display:none}#pling-widget .widget-body .product-funding-info .goal-range-number span{display:block;float:left}#pling-widget .widget-body .product-funding-info .goal-range-number span+span{float:right}#pling-widget .widget-body .product-funding-info .goal-range-number span+span.unlimited{font-size:27px}#pling-widget .widget-body .product-funding-info .achieved-amount{width:100%;height:20px;padding:3px;background:rgba(204,204,204,0.19);display:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}#pling-widget .widget-body .product-funding-info .achieved-amount .bar{width:4px;max-width:100%;height:14px;background-color:#2673B0;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 6px 0 rgba(255,255,255,0.2);-moz-box-shadow:inset 0 6px 0 rgba(255,255,255,0.2);box-shadow:inset 0 6px 0 rgba(255,255,255,0.2)}#pling-widget .widget-body .product-funding-info .achieved-amount .bar.no-goal{width:50%}#pling-widget .widget-body .product-funding-info .money-raised{width:100%;height:20px;line-height:20px}#pling-widget .widget-body .product-funding-info.with-goal .percentage{position:absolute;top:0;right:0;width:25%;height:60px;line-height:60px;text-align:center;font-size:22px}#pling-widget .widget-body .product-funding-info.with-goal .goal-range-number{padding-right:25%;display:block}#pling-widget .widget-body .product-funding-info.with-goal .achieved-amount{width:75%;display:block}#pling-widget .widget-body .widget-text{margin-top:10px}#pling-widget .widget-body .supporters{width:100%;height:auto;overflow:hidden;margin-top:5px;padding-top:5px;border-top:1px solid #ddd}#pling-widget .widget-body .supporters .supporter{width:12.5%;height:auto;float:left;padding:2px;clear:none;border-bottom:0}#pling-widget .widget-body .supporters .supporter figure{width:100%;height:auto}#pling-widget .widget-body .supporters .supporter figure img{width:100%;height:auto}#pling-widget .widget-body .comments{height:auto;overflow:hidden;width:100%;margin-top:5px;padding-top:5px;border-top:1px solid #ddd}#pling-widget .widget-body .comments .comment{position:relative;width:100%;min-height:42px;padding-left:15%}#pling-widget .widget-body .comments .comment figure{position:absolute;top:0;left:0;width:15%;height:100%;text-align:center}#pling-widget .widget-body .comments .comment figure img{width:auto;height:100%;float:left}#pling-widget .widget-body .comments .comment .content{width:100%;padding-left:5%}#pling-widget .widget-body .comments .comment .content .info{width:100%;height:12px;line-height:12px;margin-bottom:5px}#pling-widget .widget-body .comments .comment .content .text{width:100%;font-size:11px;line-height:11px}#pling-widget .widget-body .comments .comment+.comment{margin-top:5px}#pling-widget .widget-footer{width:100%;height:auto;overflow:hidden}#pling-widget .widget-footer .donation-amount{padding-bottom:10px;color:white;font-size:14px}#pling-widget .widget-footer .button{float:left}#pling-widget .widget-footer .pay-secure{float:left;color:white;width:100px}#pling-widget .widget-footer .pay-secure a{color:white}#pling-widget .widget-footer .powered-by{float:right}#pling-widget .widget-footer .powered-by a.opendesktop-logo{display:block;background-image:url('/images/system/storeLogo.png');height:34px;width:63px;background-size:contain;background-repeat:no-repeat}#pling-widget .widget-footer .powered-by a.pling-logo{display:block;background-image:url('../img/new/pling-logo-large.png');height:34px;width:63px;background-size:contain}#pling-widget .widget-footer .powered-by a.pling-logo.grey{background-image:url('../img/new/logo.png')}#pling-widget .widget-footer .powered-by a.pling-logo.icon{width:34px;background-image:url('../img/new/box-logo.png')}#widget-preview{width:40%;padding-left:10px;float:left}#widget-code-modal{width:800px;height:auto;overflow:hidden}#widget-code-modal .modal-body{height:auto;overflow:hidden}#widget-code-modal .modal-body article{width:100%;float:left}#widget-code-modal .modal-body article #configuration-options ul.nav-tabs{float:left;width:100%;background-color:#F3F3F3;border-bottom:1px solid #e5e5e5;position:relative;top:0}#widget-code-modal .modal-body article #configuration-options ul.nav-tabs li{border-bottom:1px solid #e5e5e5;-webkit-transition:all 0 ease-out;-moz-transition:all 0 ease-out;-ms-transition:all 0 ease-out;-o-transition:all 0 ease-out}#widget-code-modal .modal-body article #configuration-options ul.nav-tabs li a{margin:0;background-color:transparent;border:0;color:#2673B0;border-bottom:3px solid #f3f3f3;-webkit-transition:all 0 ease-out;-moz-transition:all 0 ease-out;-ms-transition:all 0 ease-out;-o-transition:all 0 ease-out}#widget-code-modal .modal-body article #configuration-options ul.nav-tabs li.active{border-color:#2673B0}#widget-code-modal .modal-body article #configuration-options ul.nav-tabs li.active a{border-color:#2673B0}.body-external .supporter-box-container{border:0;text-align:center}.body-external .supporter-box-container #pling-widget{text-align:left;float:none;height:auto;overflow:hidden}#mainpage{background-image:url(/images/system/1-opendesktop-bg.png);background-repeat:no-repeat;background-attachment:fixed;background-position:0 0;background-size:100% 100%;width:100% !important;margin-top:15px}#mainpage .wrapper{padding-top:100px}#mainpage .card-wrapper{border-radius:10px;padding:5px}#mainpage .card-wrapper a.title{display:block}#mainpage .card-wrapper img.logo{height:45px;margin-right:10px;margin-bottom:5px}#mainpage .card-wrapper .domainobj{margin:15px;border-bottom:1px solid #ccc}#indeximages{height:400px;width:100%;overflow:hidden}#indeximages a{cursor:default}.commentstore{border-bottom:1px solid #ccd4d8;padding-top:5px;padding-bottom:5px;overflow:hidden}.commentstore p{margin:0}.commentstore .userinfo img{border-radius:50%;width:42px;height:42px;float:right}.commentstore .userinfo{float:right}.commentstore .info{display:block}.commentstore:last-child{border-bottom:none}div.profile-img-product{width:200px;height:160px}img.imgpopover{max-width:200px;max-height:160px;display:block;margin:auto}#my-comments-tabs-content{font-size:11pt;width:1100px}#my-comments-tabs-content .rownomargin{margin:0}#my-comments-tabs-content .rownopadding{padding:0}#my-comments-tabs-content .category{display:block;font-size:smaller}#my-comments-tabs-content .createat{font-size:smaller;color:#888}#my-comments-tabs-content .productrow{padding-bottom:5px;padding-top:5px;border-bottom:1px solid #ccd4d8;font-size:small}#my-comments-tabs-content .productrow .project-image{width:50px;height:50px;float:left;margin-right:15px}#my-comments-tabs-content .productrow:last-child{border-bottom:none}#my-comments-tabs-content .row{margin-top:10px}#my-comments-tabs-content .rating{width:60px}#my-comments-tabs-content .time{font-size:smaller}#my-comments-tabs-content .cntComments{font-size:smaller;display:block;padding-top:5px}#my-comments-tabs-content .productimg{width:50px;height:50px}#my-comments-tabs-content .commenttext{padding-left:20px}.user-admin-page .commentText{font-size:smaller}.user-admin-page .commentTime{font-size:smaller;padding-left:20px}.user-admin-page .title{font-weight:bold;color:#37628D;padding-top:10px;padding-bottom:10px}.user-admin-page .topics{padding-right:20px}.user-admin-page .topics .topic-tag{display:inline-block;padding:.3em .9em;margin:0 .5em .5em 0;white-space:nowrap;background-color:#f1f8ff;border-radius:3px}.user-admin-page .topics .usertagslabelcat{background-color:#f1f1f1}.user-admin-page .topics .topic-tag-link:hover{text-decoration:none;background-color:#def}.user-admin-page .topics .btn-link{display:inline-block;padding:0;font-size:inherit;color:#0366d6;text-decoration:none;white-space:nowrap;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.user-admin-page .my-downloadshistory-list{width:1100px}.user-admin-page .my-downloadshistory-list .totaldownloads{margin:0;padding:20px;text-align:right}.user-admin-page .my-downloadshistory-list .smaller{font-size:smaller}.user-admin-page .my-downloadshistory-list .header{border-top:1px solid #ccc;padding-top:15px;padding-bottom:15px}.user-admin-page .my-downloadshistory-list .subheader{background-color:#ddd}.user-admin-page .my-downloadshistory-list .paddingLeft80{padding-left:80px}.user-admin-page .my-downloadshistory-list .marginLeft80{margin-left:80px}.user-admin-page .my-downloadshistory-list button.voting{line-height:10px}.user-admin-page .my-downloadshistory-list button.voting span{font-size:10px}.user-admin-page .my-downloadshistory-list .rating{width:60px !important;font-size:10pt}.user-admin-page .my-downloadshistory-list .downloadhistory-image{width:50px;height:50px;float:left;margin-right:15px}.user-admin-page .my-downloadshistory-list .nowrap{white-space:nowrap}.col-container span.cnt{padding-right:5px;display:inline-block;font-weight:bold}.col-container .stat{padding-top:15px;padding-left:15px;font-size:12px}.col-container .statContent{padding-top:15px;padding-left:15px;font-size:12px}main#plings-page .wrapper{width:700px;padding:20px}main#plings-page .wrapper .title{background-color:#ccc;height:30px}main#plings-page .wrapper .label{padding-top:10px;padding-left:0}main#plings-page .wrapper .row:not(:first-child):hover{background-color:#eef}main#plings-page .wrapper .depth0{padding-left:0}main#plings-page .wrapper .depth1{padding-left:20px}main#plings-page .wrapper .depth2{padding-left:40px}main#plings-page .wrapper .depth3{padding-left:60px}main#plings-page .wrapper .depth4{padding-left:80px}main#plings-page .wrapper .depth5{padding-left:100px}main#plings-page .wrapper .factor{padding-right:10px}#product-page-content .sidebar-left{padding-right:15px;padding-left:15px;min-width:200px;padding-top:20px}#product-page-content .tag-element{background-clip:padding-box;background-color:#eeeeee;background-image:linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);background-repeat:repeat-x;background-size:100% 19px;border:1px solid #aaa;border-radius:3px;box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,0.05);color:#333;line-height:25px !important;margin:3px 3px 3px 0;max-width:100%;padding:0 10px;position:relative;display:inline-block}#carouselContainer .carousel-indicators{z-index:31;background-color:transparent;height:20px;bottom:-30px}#carouselContainer .carousel-indicators .active{background-color:#E2E2E2}#carouselContainer .carousel-indicators li{border:1px solid #C4D7EF}#carouselContainer iframe{border:0}#email-collapse .group-list{list-style:outside none none}#email-collapse .group-list>li:first-child{border-top:0 none;border-top:1px solid #ddd}#email-collapse .group-list>li{border-bottom:1px solid #e5e5e5;display:block;line-height:30px;margin-left:-10px;padding:5px 10px}#email-collapse .css-truncate-target{max-width:300px;display:inline-block;text-overflow:ellipsis;vertical-align:top;white-space:nowrap}#email-collapse .email-actions{float:right}#email-collapse .email-actions form{display:inline}#email-collapse span.label.default{background-color:#6cc644;border-radius:3px;color:#fff;margin-left:4px;padding:4px 6px}#email-collapse span.label.attention{background-color:#c64f0d;border-radius:3px;color:#fff;margin-left:4px;padding:4px 6px}#email-collapse .btn{line-height:20px;padding:4px 12px}.user-admin-page .body-wrap .well{min-height:20px;padding:20px;margin-bottom:20px;background-color:transparent;border:0;border-radius:0;-webkit-box-shadow:inset 0 0 0 rgba(0,0,0,0.05);box-shadow:inset 0 0 0 rgba(0,0,0,0.05)}.profile-menu li a{width:100%}.grid-container{padding-top:10px}.grid-container .flex-container{font-size:10pt !important}.grid-container .flex-container .explore-product-grid{width:200px;padding:0;margin:20px;border:1px solid #dedede;border-radius:2px;margin:10px 10px 10px 10px;position:relative}.grid-container .flex-container .explore-product-grid figure{opacity:1;display:block;transition:.5s ease;backface-visibility:hidden}.grid-container .flex-container .explore-product-grid .explore-product-image{width:170px;height:120px}.grid-container .flex-container .explore-product-grid .explore-product-desc{background:linear-gradient(#fff, #EDEDED);padding:0 10px 5px 10px;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.grid-container .flex-container .explore-product-grid .explore-product-plings{padding:0;padding-top:5px;width:100px;margin:0 auto;font-size:10px}.grid-container .flex-container .explore-product-grid .explore-product-plings .rating{width:100%}.grid-container .flex-container .explore-product-grid .explore-product-plings .progress{margin-bottom:10px;padding:3px;opacity:0;margin-bottom:0;height:12px;opacity:1;background-color:transparent;box-shadow:none;padding:2px}.grid-container .flex-container .explore-product-grid .explore-product-plings .progress .bar{width:4px;max-width:100%;height:14px;background-color:#2673b0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-box-shadow:inset 0 6px 0 rgba(255,255,255,0.2);-moz-box-shadow:inset 0 6px 0 rgba(255,255,255,0.2);box-shadow:inset 0 6px 0 rgba(255,255,255,0.2)}.grid-container .flex-container .explore-product-grid .explore-product-plings .progress .bar.no-goal{width:50%;opacity:0}.grid-container .flex-container .explore-product-grid .explore-product-plings .collected span{display:block;width:100%;float:left;font-size:12px}.grid-container .flex-container .explore-product-grid .explore-product-details span.version{font-size:smaller;padding-left:20px}.grid-container .flex-container .explore-product-grid .explore-product-details span.title{display:block;font-size:smaller;line-height:1.5}@media (max-width:400px){#explore-content .GridFlex .sidebar-left{flex:0 0 100%}.metamenu{height:100%}.metamenu .sitelogo{display:block;width:100%;height:30px;font-size:20px}.metamenu .sitelogo img.logo{width:30px;height:30px}}#ratings-panel .bbtn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid #adadad;border-radius:4px;margin-right:10px}#ratings-panel .activeRating{border:2px solid #2673B0}#ratings-panel .bbtn:focus{color:#333;background-color:transparent;border-color:#2673B0}#plings-panel .u-wrap{float:left;padding:.3em;border:.35em solid #dee0e0;border-radius:5px;height:14em;margin-bottom:1em;background:#fff;width:115px;height:200px;margin-right:10px;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out;position:relative}#plings-panel .u-wrap figure img{width:100%;border:1px solid #dbdbdb;-webkit-border-radius:999px;-moz-border-radius:999px;border-radius:999px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#plings-panel .u-wrap h3{font-size:13px;font-weight:700;word-wrap:break-word;line-height:20px;height:20px;padding:0;margin:0}#plings-panel .u-wrap span.small{position:absolute;bottom:5px;left:5px}.tooltipuserplingscontainer .user{display:block;float:left;text-align:center;width:60px;overflow:hidden}.tooltipuserplingscontainer .user img{width:40px;height:40px;border:1px solid #ccc;border-radius:999px}.tooltipuserplingscontainer .user .caption{display:block} \ No newline at end of file diff --git a/httpdocs/theme/flatui/css/stylesheet.css.map b/httpdocs/theme/flatui/css/stylesheet.css.map new file mode 100644 index 000000000..aad5f99ba --- /dev/null +++ b/httpdocs/theme/flatui/css/stylesheet.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["/Users/davidnelband/Sites/git/ocs-webserver/httpdocs/theme/flatui/less/stylesheets/mixins.less","stylesheet.less"],"names":[],"mappings":"AASA,UAAW,0CACX,qBAAsB,kDAEtB,eACC,oBAAA,CACA,SAAA,CACA,SA2FD,gBACC,oBAAA,CACA,qBAAsB,oCAAtB,CACA,WAAA,CACA,WAEA,eAAC,KACA,qBAAsB,uCC1GxB,WACE,YAAa,WAAb,CACA,iBAAA,CACA,eAAA,CACA,IAAK,MAAM,mBAAoB,MAAM,sBAC5B,8CAA8C,OAAO,aACrD,6CAA6C,OAAO,QAI/D,WACE,YAAa,WAAb,CACA,iBAAA,CACA,eAAA,CACA,IAAK,MAAM,qBAAsB,MAAM,wBAC9B,kDAAkD,OAAO,aACzD,iDAAiD,OAAO,QAInE,WACE,YAAa,WAAb,CACA,iBAAA,CACA,eAAA,CACA,IAAK,MAAM,sBAAuB,MAAM,yBAC/B,8CAA8C,OAAO,aACrD,6CAA6C,OAAO,QAI/D,WACE,YAAa,WAAb,CACA,iBAAA,CACA,eAAA,CACA,IAAK,MAAM,kBAAmB,MAAM,qBAC3B,8CAA8C,OAAO,aACrD,6CAA6C,OAAO,QAM7D,KACI,aAAA,CACA,iBAAA,CACA,eAAA,CACA,iBAAA,CACA,aAAA,CACA,YAAa,sBAAb,CACA,iBAGJ,OAAQ,OAAQ,KAAM,QAClB,UAAA,CACA,WAFJ,MAII,QAAO,SAJH,MAIJ,QAAO,SAJK,IAIZ,QAAO,SAJW,OAIlB,QAAO,SACL,gBAAA,CACA,iBAAA,CACA,SAAA,CACA,UAAA,CACA,YAIN,EACE,oBAAA,CACA,aAAA,CDnCH,mCAAA,CACA,gCAAA,CACA,+BAAA,CACA,+BCmCG,CAAC,OACC,qBAIJ,CAAC,OACG,aAKJ,MAAM,mBACJ,SAIF,MAAO,OAAQ,OAAQ,SACnB,YAAa,iBAAb,CACA,eAGJ,GACI,cAAA,CACA,gBAGJ,GACI,cAAA,CACA,eAAA,CACA,iBAAA,CACA,eAGJ,GACI,cAAA,CACA,eAAA,CACA,yBAGJ,QAA2B,uBAAuB,iBAEhD,MAAO,QAAO,SAAU,MAAO,QAAO,SAAU,IAAK,QAAO,SAC1D,SAAA,CACA,gBAAA,CACA,mBASJ,KACE,yCAAA,CACA,kBAAA,CACA,iBAAA,CACA,eAAA,CACA,UAAA,CACA,gBAAA,CACA,qBAAA,CACA,oBAAA,CACA,gBAAA,CDpGH,kCAAA,CACA,+BAAA,CACA,8BAAA,CACA,8BCoGG,IAAC,WACC,kBAAA,CACA,gBAAA,CACA,uBAGF,IAAC,YACC,wBAAA,CACA,YAGF,IAAC,eACC,yBAED,IAAC,iBACA,uBAGF,IAAC,YACC,kBAAA,CACA,kBAEF,IAAC,mBACC,cAAA,CACA,qBAAA,CACA,iBAEF,IAAC,iBACC,cAAA,CACA,qBAAA,CACA,gBAAA,CACA,gBAIJ,cACO,0CAIP,cAEE,OACE,YAHJ,cAME,OANF,cAOE,UAPF,cAQE,QACE,wBAAA,CACA,SAAA,CDnKJ,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BCoJR,cAcE,QACE,mBAKJ,eAAgB,cAAe,aAC3B,UAAA,CACA,WAAA,CACA,cAAA,CACA,oBAAA,CACA,0CAGJ,eACE,6BAGF,cACE,iCAGF,WACI,cAGJ,OACE,eAGF,OACI,eAGJ,UACE,kBAGF,UACE,kBAGF,OACI,gBAGJ,WACI,cAGJ,QACE,kBAGF,CAAC,OACC,cAGF,EAAE,YACE,aAAA,CACA,gBAAA,CACA,eAGJ,OACE,kBAGF,OACE,YAGF,MACE,WAGF,EAAE,MACE,oBAAA,CACA,0CAEA,EAJF,KAIG,WACG,UAAA,CACA,WAAA,CACA,iCAKR,kBACI,mBAGJ,eACI,gBAGJ,YACE,UAAA,YAIF,UACE,UAAA,CD7QF,uBAAA,CACG,oBAAA,CACK,eAAA,CACR,mCAAA,CACG,4BAAA,CACK,2BAAA,CC0QN,gBAIF,wBACE,YAAA,CACA,qBAAA,CACA,kBAAA,CACA,yBAJF,uBAKE,GAAE,wBACA,oBAAA,CACA,cAAA,CACA,aAAA,CACA,kBATJ,uBAKE,GAAE,uBAKC,IACC,eAXN,uBAKE,GAAE,uBAKC,GAEK,MACE,cAAA,CACA,iBAAA,CACA,UAAA,CACA,gBAAA,CACA,sBAAA,CACA,aAAA,CACA,oBAAA,CACA,qBAAA,CACA,qBAAA,CACA,gBAAA,CACA,eAvBZ,uBAKE,GAAE,uBAqBA,QAAS,MACP,SAAA,CACA,UAAA,CACA,cAAA,CACA,wBAAA,CACA,qBAOP,UACG,UAAA,CACA,qBAAA,CACA,YAHH,SAIG,EAAC,gBACC,UAAA,CACA,gBAAA,CACA,qBAPL,SASG,EAAC,WACC,WAVL,SASG,EAAC,UAEC,IAAG,MACD,UAAA,CACA,YAKN,aAEE,GAEE,GACE,aAAA,CDtUP,mCAAA,CACA,gCAAA,CACA,+BAAA,CACA,+BCsUO,aANJ,GAEE,EAIG,WAEC,KACE,UAAA,CACA,YAaZ,EAAE,cAEI,gBAFN,EAAE,aAGI,IACI,WAIN,EAAE,oBACA,QAAA,CACA,iBAAA,CACA,YAHF,EAAE,mBAIA,IACE,eAKJ,EAAE,mBACC,WAGP,sBACI,YAAA,CACA,YAAA,CACA,SAAA,CACA,YAAA,CACA,QAAA,CACA,WAGF,qBAAsB,GAClB,aAAA,CACA,eAGJ,qBAAsB,EAAC,OACnB,cAGJ,qBAAsB,GAClB,yBAAA,CACA,iBAAA,CACA,iBAAA,CACA,cAAA,CACA,eAEJ,qBAAsB,IAClB,eAAA,CACA,SAAA,CACA,gBAAA,CACA,kBAEJ,qBAAsB,GAAG,IACrB,eAEJ,qBAAsB,GAAG,GAAE,OACvB,6BAIJ,MAEE,KACE,0BAIF,MAAC,aACK,aAAA,CACA,WAAA,CACA,cAAA,CACA,eAAA,CACA,UAAA,CACA,6BANN,MAAC,YAQK,IAAG,SACD,iBAAA,CACA,UAjBV,MAqBE,kBACI,WAAA,CACA,WAAA,CACA,yCAAA,CACA,6BAzBN,MA6BE,GACE,cA9BJ,MAiCE,YAjCF,MAkCE,aACE,UAnCJ,MAsCE,IACE,gBAEA,MAHF,GAGG,WACC,WAAA,CACA,aA3CN,MAsCE,GAQE,IACE,eAAA,CACA,oBAAA,CACA,QAAA,CACA,cAAA,CAEA,iBAAA,CACA,WAAA,CACA,gBAAA,CACA,WAvDN,MAsCE,GAQE,GAWE,GACE,UAAA,CACA,aAAA,CACA,cAAA,CACA,mBAAA,CACA,eAGF,MA3BJ,GAQE,GAmBG,wBACG,aAAA,CACA,kBAFJ,MA3BJ,GAQE,GAmBG,uBAIG,uBACE,OAAA,CACA,SAAA,CACA,WAAA,CACA,UAAA,CACA,iBATN,MA3BJ,GAQE,GAmBG,uBAIG,sBAME,kBACI,iBAAA,CACA,MAAA,CACA,QAAA,CACA,kBAAA,CACA,iBAAA,CACA,iCAAA,CACA,UAAA,CACA,gBAAA,CACA,eAnBV,MA3BJ,GAQE,GAmBG,uBAIG,sBAiBE,KACE,WAAA,CACA,UAAA,CACA,UAAA,CD1fd,2BAAA,CACG,wBAAA,CACK,mBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BC6dF,MA3BJ,GAQE,GAmBG,uBA8BG,GACI,cAhGd,MAsCE,GAQE,GAsDE,IACE,WAAA,CACA,aAAA,CACA,iBAAA,CACA,YAAA,CACA,QAAA,CACA,WAAA,CACA,cAAA,CACA,aAAA,CACA,kBAAA,CACA,SAAA,CACA,aAAA,CDhhBR,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BC8gBA,MA5EN,GAQE,GAsDE,GAcG,QACC,MAAA,CACA,SApHV,MAsCE,GAQE,GAsDE,GAmBE,IACE,eAAA,CACA,aAAA,CACA,UAAA,CACA,kBAAA,CACA,QAAA,CACA,SAAA,CACA,WAAA,CACA,gCAEA,MA3FR,GAQE,GAsDE,GAmBE,GAUG,OACD,MA5FR,GAQE,GAsDE,GAmBE,GAWG,eDniBX,iCAAA,CACG,8BAAA,CACK,yBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BCkiBE,MAhGR,GAQE,GAsDE,GAmBE,GAeG,cDviBX,iCAAA,CACG,8BAAA,CACK,yBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BC4ZR,MAsCE,GAQE,GAsDE,GAmBE,GAmBE,GACE,aAAA,CACA,eAAA,CACA,WAAA,CACA,iBA9IZ,MAsJE,YACE,gBAAA,CACA,iBAAA,CACA,UAAA,CACA,WAAA,CACA,UAAA,CACA,yBA5JJ,MA+JE,WAAU,QACR,gBAAA,CACA,iBAAA,CACA,UAAA,CACA,WAnKJ,MA+JE,WAAU,OAMR,QAAO,WACL,6BAEA,MATJ,WAAU,OAMR,QAAO,UAGJ,UACC,wBAAA,YACA,YAFF,MATJ,WAAU,OAMR,QAAO,UAGJ,SAIC,GACE,EAAC,OACC,cA9KZ,MA+JE,WAAU,OAMR,QAAO,UAcL,QAAO,SACH,WAAA,CACA,iBAAA,CACA,kBAtLV,MA+JE,WAAU,OA4BR,QAAO,UAAW,QAAS,WACvB,4BAAA,CACA,eA7LR,MA+JE,WAAU,OA4BR,QAAO,UAAW,QAAS,UAIvB,QAAS,SACL,kBAAA,CACA,YAjMZ,MA+JE,WAAU,OAsCR,KACE,0BAtMN,MA+JE,WAAU,OAsCR,IAGE,SACE,WAAA,CACA,SAAA,CACA,iBAAA,CACA,gBAAA,CACA,kBA7MR,MA+JE,WAAU,OAsCR,IAGE,QAOE,MAAK,gBACD,UAAA,CACA,WAAA,CACA,SAAA,CACA,sBAAA,CACA,kBAAA,CACA,kBAAA,CACA,eAAA,CACA,aAAA,CACA,UAAA,CACA,iBAAA,CACA,gBA1NZ,MA+JE,WAAU,OAsCR,IAGE,QAqBE,IAAG,mBACC,OAAA,CACA,OAAA,CACA,UAAA,CACA,WAAA,CACA,+DAAA,CACA,iCAAA,CACA,iBAAA,CACA,eArOZ,MA+JE,WAAU,OA6ER,GAAE,eACE,QAAA,CACA,oBAAA,CACA,oBAAA,CACA,QAAA,CACA,SAAA,CACA,iBAAA,CACA,YAwDV,kBACE,QAAA,CACA,iBAAA,CACA,UAAA,CACA,cAAA,CACA,mBAAA,CACA,WAAA,CACA,uBAAA,CACA,yBAAA,CACA,+BAAA,CACA,6BAIF,eACI,GAAE,SACA,IACI,4BAAA,CACA,gBAJV,eACI,GAAE,SACA,GAGI,GAlBR,QAAA,CACA,iBAAA,CACA,UAAA,CACA,cAAA,CACA,mBAAA,CACA,WAAA,CACA,uBAAA,CACA,yBAAA,CACA,+BAAA,CACA,6BAIF,eACI,GAAE,SACA,GAMI,EAAG,OArBX,QAAA,CACA,iBAAA,CACA,UAAA,CACA,cAAA,CACA,mBAAA,CACA,WAAA,CACA,uBAAA,CACA,yBAAA,CACA,+BAAA,CACA,4BAAA,CAcU,cAVZ,eACI,GAAE,SACA,GAMI,EAAG,MAGD,KACE,aAZd,eACI,GAAE,SACA,GAaK,EAAG,OA5BZ,QAAA,CACA,iBAAA,CACA,UAAA,CACA,cAAA,CACA,mBAAA,CACA,WAAA,CACA,uBAAA,CACA,yBAAA,CACA,+BAAA,CACA,6BAIF,eACI,GAAE,SACA,GAgBI,KACE,UAGF,eArBN,GAAE,SACA,GAoBK,OACC,GApCV,QAAA,CACA,iBAAA,CACA,UAAA,CACA,cAAA,CACA,mBAAA,CACA,WAAA,CACA,uBAAA,CACA,yBAAA,CACA,+BAAA,CACA,4BAAA,CA6BY,aAAA,CACA,2BAAA,CACA,iBALJ,eArBN,GAAE,SACA,GAoBK,OAOC,EAAG,OA1Cb,QAAA,CACA,iBAAA,CACA,UAAA,CACA,cAAA,CACA,mBAAA,CACA,WAAA,CACA,uBAAA,CACA,yBAAA,CACA,+BAAA,CACA,4BAAA,CAmCY,aAAA,CACA,2BAAA,CACA,iBAXJ,eArBN,GAAE,SACA,GAoBK,OAcE,EAAG,OAjDd,QAAA,CACA,iBAAA,CACA,UAAA,CACA,cAAA,CACA,mBAAA,CACA,WAAA,CACA,uBAAA,CACA,yBAAA,CACA,+BAAA,CACA,4BAAA,CA0CY,aAAA,CACA,2BAAA,CACA,iBAlBJ,eArBN,GAAE,SACA,GAoBK,OAoBE,KACK,aAchB,OACI,UAAA,CACA,UAAA,CACA,cAAA,CACA,+BAAA,CACA,6BAAA,CACA,0BAAA,CACA,cAPJ,MASI,IACE,mBAVN,MAaI,GAAE,gBACE,eAAA,CACA,SAfR,MAkBI,IAAG,WAED,IACE,cAAA,CACA,eAAA,CACA,SAAA,CACA,gBAAA,CACA,UAAA,CACA,UAAA,CACA,mBA3BR,MAkBI,IAAG,WAED,GASE,IACE,oBAAA,CACA,cAAA,CACA,cAhCV,MAkBI,IAAG,WAED,GASE,GAKE,GACE,UAAA,CACA,gBApCZ,MAkBI,IAAG,WAED,GAoBE,GAAG,IACD,iBAzCV,MA8CI,GAAE,uBACA,UAAA,CACA,aAAA,CACA,kBAjDN,MAoDI,gBACE,YArDN,MAoDI,eAEE,GACI,UAAA,CACA,aAAA,CACA,WAzDV,MAoDI,eAOE,EAAE,GACA,gBA5DR,MAgEI,QAAO,QAEL,YACE,UAnER,MAgEI,QAAO,QAML,aACE,UAUR,IAAI,UAEF,KAEE,QAAO,QAEL,YACE,eAAA,CACA,WAAA,CACA,UAAA,CACA,aAAA,CACA,UAGF,IAdF,UAEF,KAEE,QAAO,QAUJ,MAEC,YACE,oBAHJ,IAdF,UAEF,KAEE,QAAO,QAUJ,MAEC,WAGE,SACE,iBAAA,CACA,WAPN,IAdF,UAEF,KAEE,QAAO,QAUJ,MAEC,WAGE,QAIE,GACE,mBAVR,IAdF,UAEF,KAEE,QAAO,QAUJ,MAEC,WAGE,QAQE,IACE,cAAA,CACA,eAAA,CACA,mBAhBR,IAdF,UAEF,KAEE,QAAO,QAUJ,MAEC,WAGE,QAcE,IACE,cAAA,CACA,eAAA,CACA,eAtBR,IAdF,UAEF,KAEE,QAAO,QAUJ,MAEC,WAGE,QAoBE,GACE,eAAA,CACA,kBAzCd,IAAI,UAEF,KAkDE,QAAO,UACL,6BArDN,IAAI,UAEF,KAsDE,eACI,iBAAA,CACA,eAAA,CACA,WAAA,CACA,kBAAA,CACA,iBA7DR,IAAI,UAEF,KAsDE,cAOI,YACE,iBAAA,CACA,YAAA,CACA,WAAA,CACA,qBAAA,CACA,kBApEV,IAAI,UAEF,KAsDE,cAOI,WAOE,UACE,EAAC,OACC,cAAA,CACA,eAAA,CACA,eAAA,CACA,gBAAA,CACA,mBA5Ed,IAAI,UAEF,KAsDE,cAOI,WAOE,UACE,EAAC,MAOC,KAAI,OACF,gBA/EhB,IAAI,UAEF,KAsDE,cAOI,WAqBE,IAEE,EAAC,OACC,cAAA,CACA,eAAA,CACA,gBAAA,CACA,kBA1Fd,IAAI,UAEF,KAsDE,cAOI,WAqBE,IAEE,EAAC,MAMC,KAAI,OACF,aAAA,CACA,eAAA,CACA,kBAAA,CACA,eAAA,CACA,gBAWhB,WACI,sBAGJ,UAAW,UAAU,EAAG,OACpB,cAGJ,UAAW,IAAI,EAAG,OACd,cAGN,aAEc,aAAA,CACA,uBAAA,CACA,oBAAA,CACA,oBAAA,CACA,iBAAA,CACA,eAAA,CACA,aAGF,YAAa,KAEf,UAAA,YACA,WAAA,YACA,UAGF,QAA2B,kBACrB,aACA,oBAAA,CACA,uBAAA,CACA,iBAIN,QAA2B,kBACrB,aACA,oBAAA,CACA,sBAAA,CACA,gBAGF,QAA2B,kBACzB,aACA,oBAAA,CACA,sBAAA,CACA,gBAGF,QAA0B,iBACxB,aACA,mBAAA,CACA,sBAAA,CACA,gBAGF,QAA0B,iBACxB,aACA,mBAAA,CACA,sBAAA,CACA,gBASZ,kBACI,iBAkPJ,kBACE,iBAAA,CACA,kBAAA,CACA,iBAHF,iBAmCE,eACE,UAAA,CACA,UAAA,CACA,cAAA,CDjzCJ,iCAAA,CACG,8BAAA,CACK,yBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BCswCR,iBAmCE,cAME,kBACE,cAAA,CACA,cAAA,CACA,0BA5CN,iBAmCE,cAME,iBAIE,SACE,cAAA,CACA,WA/CR,iBAmCE,cAME,iBAQE,4BAEE,gBAAA,CACA,kBApDR,iBAmCE,cAME,iBAaE,iBACG,YAAA,CACA,YAAA,CACA,sBAAA,CACA,mBA1DT,iBAmCE,cAME,iBAmBG,wBACG,aAAA,CACA,iBA9DV,iBAmCE,cAME,iBAwBE,cAEE,UAAA,CACA,eAAA,CACA,YArER,iBAmCE,cAME,iBAwBE,aAKE,KACE,eAAA,CACA,iBAxEV,iBAmCE,cAME,iBAwBE,aAUE,IAAG,YAEA,WAAA,CACA,aA9EX,iBAmCE,cAME,iBA0CE,0BACE,kBApFR,iBAmCE,cAME,iBA0CE,yBAGE,IACE,cAAA,CACA,gBAAA,CACA,cAzFV,iBAmCE,cAME,iBA0CE,yBAGE,GAIE,KAAI,SAEF,iBAAA,CACA,kBA7FZ,iBAmCE,cAME,iBA0CE,yBAaE,QACE,aAAA,CACA,kBAlGV,iBAmCE,cAME,iBA0CE,yBAaE,OAGE,WACI,kBApGd,iBAmCE,cAME,iBA0CE,yBAoBE,cACE,aAAA,CACA,kBAzGV,iBAmCE,cAME,iBA0CE,yBAwBE,eACE,aAAA,CACA,WA7GV,iBAmCE,cAME,iBA0CE,yBAwBE,cAGE,gBACE,WAAA,CACA,WAhHZ,iBAmCE,cAME,iBA0CE,yBAgCE,cAEE,UAAA,CACA,gBAtHV,iBAmCE,cAME,iBA0CE,yBAgCE,aAIE,KAAI,eAEF,mBAzHZ,iBAmCE,cAME,iBAqFE,yBACE,UA/HR,iBAmCE,cAME,iBAqFE,wBAGE,SACG,UAlIX,iBAmCE,cAME,iBAqFE,wBAQE,WACE,kBAAA,CACA,WAAA,CACA,SAAA,CACA,eAAA,CACA,WAAA,CACA,SAAA,CACA,4BAAA,CACA,eAAA,CACA,YA/IV,iBAmCE,cAME,iBAqFE,wBAQE,UAWE,MACI,SAAA,CACA,cAAA,CACA,WAAA,CACA,wBAAA,CDh6Cd,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,2BAAA,CAuCT,sDAAA,CACA,mDAAA,CACA,+CCs3Ce,iBAtHZ,cAME,iBAqFE,wBAQE,UAWE,KAQK,SACC,SAAA,CACA,UA3JhB,iBAmCE,cAME,iBAqFE,wBAmCE,WACE,MACE,aAAA,CACA,UAAA,CACA,WAKN,iBAvIJ,cAME,iBAiIG,eACC,aA3KR,iBAkLE,iBACE,UAAA,CACA,kBApLJ,iBAkLE,gBAIE,2BACI,UAAA,CACA,aAAA,CACA,cAzLR,iBAkLE,gBAIE,0BAKI,GAAE,iBACE,SAAA,CACA,oBAAA,CACA,aAAA,CACA,WAAA,CACA,gBAhMZ,iBAkLE,gBAIE,0BAKI,GAAE,gBAOE,IACE,UAAA,CACA,cAAA,CACA,kBAAA,CACA,aAQd,KAAK,iBACH,cAAA,CACA,mBAOF,IAAI,eAEF,YACE,eAAA,CACA,WAAA,CACA,qBAAA,CACA,kBANJ,IAAI,eAEF,WAME,UACE,UATN,IAAI,eAEF,WAUE,aACE,UAAA,CACA,iBAAA,CACA,kBAfN,IAAI,eAEF,WAUE,YAKE,SACI,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,kBAvBV,IAAI,eAEF,WAUE,YAKE,QAQI,KACI,iCAAA,CACA,UAAA,CACA,aAAA,CACA,UAAA,CACA,cA9Bd,IAAI,eAEF,WAUE,YAKE,QAQI,IAOI,IACI,cAjClB,IAAI,eAEF,WAUE,YA0BG,IACG,eAAA,CACA,kBAAA,CACA,QAAA,CACA,yBAAA,CACA,6BAAA,CACA,UAAA,CACA,WA7CV,IAAI,eAoDF,SACI,aAAA,CACA,UAAA,CACA,gBAAA,CACA,wBAAA,CACA,SAAA,CACA,0BAAA,CACA,uBAAA,CACA,kBAAA,CACA,mCAAA,CACA,4BAAA,CACA,2BAAA,CACA,kBAhEN,IAAI,eAoDF,QAcI,MACI,WAAA,CACA,cApEV,IAAI,eAoDF,QAcI,KAII,QACI,cAvEd,IAAI,eAoDF,QAuBI,SACE,WAAA,CACA,gCAAA,CACA,4BAAA,CDhjDR,iCAAA,CACG,8BAAA,CACK,yBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BC69CR,IAAI,eAoDF,QAuBI,QAME,GACI,iBAlFZ,IAAI,eAwFF,YACE,gBAAA,CACA,kBA1FJ,IAAI,eAwFF,WAIE,UACE,UA7FN,IAAI,eAwFF,WAQE,aACE,gBAjGN,IAAI,eAwFF,WAQE,YAEQ,iBACI,kBAAA,CACA,kBApGhB,IAAI,eAwFF,WAQE,YAEQ,gBAII,gBACG,WACK,kBAxGxB,IAAI,eAwFF,WAQE,YAEQ,gBAII,gBAII,UAAU,IA1G9B,IAAI,eAwFF,WAQE,YAEQ,gBAII,gBAIoB,WAAW,IACvB,UAAA,CACA,qBA5GxB,IAAI,eAwFF,WAQE,YAiBQ,OACE,aAAA,CACA,WAAA,CACA,kBAAA,CACA,iBAAA,CAEA,YAAA,CACA,cAAA,CACA,kBAAA,CACA,uBA1Hd,IAAI,eAwFF,WAQE,YAiBQ,MAWM,SACE,UAAA,CACA,UAAA,CACA,YAAA,CACA,0BAAA,CACA,iBAAA,CACA,WAAA,CACA,iBAAA,CACA,gBAAA,CACA,WAAA,CACA,YAAA,CACA,iBAAA,CACA,mCAAA,CACA,gCAAA,CACA,+BAAA,CACA,8BAAA,CACA,iBAAA,CACA,kBA7IpB,IAAI,eAwFF,WAQE,YAiBQ,MAWM,QAkBE,QACE,UAAA,CACA,aAAA,CACA,wBAAA,CACA,kBAAA,CDpnDtB,2BAAA,CACG,wBAAA,CACK,mBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BC69CR,IAAI,eAwFF,WAQE,YAiBQ,MAWM,QAkBE,OAME,KACwB,UAAA,CACA,wBAAA,CACA,2BAAA,CACA,wBAAA,CACA,mBAAA,CACA,mCAAA,CACA,4BAAA,CACA,4BA5J9C,IAAI,eAwFF,WAQE,YAiBQ,MAWM,QAoCE,IACE,cAAA,CACA,gBAAA,CACA,oBAAA,CACA,gBAAA,CACA,WAAA,CACA,SAAA,CACA,SAvKtB,IAAI,eAwFF,WAQE,YAiBQ,MAWM,QA6CE,KAAI,OACF,cAAA,CACA,UAAA,CACA,iBAAA,CACA,UAAA,CACA,UA9KtB,IAAI,eAwFF,WAQE,YAiBQ,MAWM,QAoDG,IAAG,cACA,eAjLxB,IAAI,eAwFF,WAQE,YAiBQ,MAWM,QAuDE,KAAI,MACA,cAAA,CACA,iBAAA,CACA,UAAA,CACA,QAAA,CACA,UAAA,CACA,iBA8GxB,sBACE,UADF,qBAGE,kBAEE,oBACE,iBAAA,CACA,gBAAA,CACA,gBAAA,CACA,aATN,qBAGE,kBAEE,mBAKE,gBACM,YAAA,CACA,cAAA,CACA,aAAA,CACA,gBAAA,CACA,oBAfZ,qBAGE,kBAEE,mBAYE,sBACI,OAlBV,qBAGE,kBAEE,mBAgBE,IAAG,MACC,eAAA,CACA,cAAA,CACA,UAAA,CACA,kBAAA,CACA,gBA1BV,qBAGE,kBAEE,mBAuBE,yBACE,UAAA,CACA,WA9BR,qBAGE,kBAEE,mBA4BE,mBACE,eAAA,CACA,aAAA,CACA,mBApCR,qBAGE,kBAEE,mBAiCE,SACM,kBAAA,CACA,YAxCZ,qBAGE,kBAEE,mBAiCE,QAII,YAEI,oBAAA,CACA,iBAAA,CACA,oBAAA,CACA,kBAAA,CACA,wBAAA,CACA,kBAjDd,qBAGE,kBAEE,mBAiCE,QAaI,mBACQ,yBAIJ,qBArDZ,kBAEE,mBAiCE,QAgBI,gBAEK,OACK,oBAAA,CACA,sBA1DpB,qBAGE,kBAEE,mBAiCE,QAuBI,WACI,oBAAA,CACA,SAAA,CACA,iBAAA,CACA,aAAA,CACA,oBAAA,CACA,kBAAA,CACA,cAAA,CACA,wBAAA,CACA,qBAAA,CACA,oBAAA,CACA,gBAAA,CACA,4BAAA,CACA,QAAA,CACA,uBAAA,CACA,oBAAA,CACA,eAAA,CACA,WAAA,CACA,eAAA,CACA,kBAhFd,qBAGE,kBAEE,mBAiCE,QA4CI,mBACI,YAAA,CACA,aAAA,CACA,UAAA,CACA,eAAA,CACA,kBAvFd,qBAGE,kBAEE,mBAiCE,QA4CI,kBAMI,WACE,YAzFhB,qBAGE,kBAEE,mBAyFE,KAAI,QACA,cA/FV,qBAGE,kBAEE,mBA4FE,IAAG,qBACD,WAAA,CACA,WAAA,CACA,YApGR,qBAGE,kBAEE,mBAoGE,IAAG,mBACC,WAAA,CAEA,gBAAA,CACA,WA7GV,qBAGE,kBAEE,mBAoGE,IAAG,kBAMC,kBACE,iBAAA,CACA,WAjHZ,qBAGE,kBAEE,mBAoGE,IAAG,kBAMC,iBAGE,6BACG,iBAAA,CACA,UAAA,CACA,YArHf,qBAGE,kBAEE,mBAoGE,IAAG,kBAMC,iBAQE,4BAEE,kBAzHd,qBAGE,kBAEE,mBA2HE,IAAG,mBACC,WAAA,CACA,WAAA,CACA,gBAAA,CACA,WApIV,qBAGE,kBAEE,mBA2HE,IAAG,kBAMC,kBACE,iBAAA,CACA,WAxIZ,qBAGE,kBAEE,mBA2HE,IAAG,kBAMC,iBAGE,6BACG,iBAAA,CACA,UAAA,CACA,YA5If,qBAGE,kBAEE,mBA2HE,IAAG,kBAMC,iBAQE,4BAEE,kBAhJd,qBAGE,kBAEE,mBAgJI,eACA,iBAAA,CACA,aAAA,CACA,cAAA,CACA,cAzJR,qBAGE,kBAEE,mBAuJE,IAAG,aACD,SAAA,CACA,iBAAA,CACA,SAAA,CACA,aAAA,CACA,WAAA,CACA,WAlKR,qBAGE,kBAEE,mBAgKE,YACI,iBAAA,CACA,aAAA,CACA,cAAA,CACA,cAzKV,qBAGE,kBAEE,mBA6LE,KAAI,aACA,UAAA,CACA,WAAA,CACA,qBAAA,CACA,wBAAA,CACA,iBAAA,CACA,oBAAA,CACA,cAAA,CACA,iBAAA,CACA,aAAA,CACA,gBAAA,CACA,UAAW,eA7MrB,qBAGE,kBAEE,mBA2ME,KAAI,QACA,wBAAA,CACC,cAlNX,qBAGE,kBAEE,mBAoNE,IAAG,mBACD,cA1NR,qBAkOE,yBACE,iBAnOJ,qBAkOE,wBAGE,kBACE,eAAA,CACA,kBAvON,qBA2OE,eACE,cAAA,CACA,kBA7OJ,qBA8QE,iBACI,sCAAA,CACA,WAAA,CACA,eAAA,CAEA,eAAA,CACA,YAAA,CACA,UAAA,CACA,UAAA,CACA,SAvRN,qBA8QE,gBAWI,WAEI,UAAA,CACA,UAAA,CACA,sBAAA,CACA,YA9RV,qBA8QE,gBAWI,UAOI,IACI,aAAA,CACA,kBAAA,CACA,aAnSd,qBA8QE,gBAWI,UAaI,kBACI,YAAA,CACA,wBAAA,CACA,aAAA,CACA,8BAGJ,qBA/BR,gBAWI,UAoBK,YAEC,gBACE,4BAHJ,qBA/BR,gBAWI,UAoBK,YAEC,eAEE,SACI,iBALR,qBA/BR,gBAWI,UAoBK,YAEC,eAKE,QAAO,eACH,iBAYR,qBAnDR,gBAWI,UAwCK,gBAEC,WACI,UAAA,CACA,UAAA,CACA,aALN,qBAnDR,gBAWI,UAwCK,gBAQC,MAAK,YACD,aAKN,qBAjER,gBAWI,UAsDK,cACC,8BACI,UAAA,CACA,aAHN,qBAjER,gBAWI,UAsDK,cAKC,UACI,iBAAA,CACA,qBAAA,CACA,UAAA,CACA,YATN,qBAjER,gBAWI,UAsDK,cAWC,KAAI,aACF,WAAA,CACA,iBAAA,CACA,iBAdJ,qBAjER,gBAWI,UAsDK,cAgBC,KAAI,eACF,SAAA,CACA,iBAAA,CACA,iBAlWd,qBA8QE,gBAyFI,cACE,iBAxWR,qBA8QE,gBAyFI,aAEE,MAAK,eACH,IACG,WAAA,CACA,qBAAA,CACA,iBA7Wb,qBA8QE,gBAyFI,aAEE,MAAK,eAMH,IACE,kBAhXZ,qBA8QE,gBAyFI,aAYE,MACE,gBApXV,qBA8QE,gBAyGI,eACE,KAAI,qBACF,kBAzXV,qBA8QE,gBA+GI,aACI,SACE,UAAA,CACA,YAAA,CACA,0BAAA,CACA,iBAAA,CACA,WAAA,CACA,iBAAA,CACA,gBAAA,CACA,WAAA,CACA,YAAA,CACA,iBAAA,CACA,mCAAA,CACA,gCAAA,CACA,+BAAA,CACA,+BA5YZ,qBA8QE,gBA+GI,aACI,QAeE,OAAO,KACL,UAAA,CACA,wBAAA,CACA,2BAAA,CACA,wBAAA,CACA,mBAAA,CACA,mCAAA,CACA,4BAAA,CACA,4BArZd,qBA8QE,gBA+GI,aACI,QAyBE,IACE,cAAA,CACA,gBAAA,CACA,oBAAA,CACA,gBAAA,CACA,WAAA,CACA,SAAA,CACA,SA9Zd,qBA8QE,gBA+GI,aACI,QAkCE,KAAI,OACF,cAAA,CACA,gBAAA,CACA,UAAA,CACA,eAAA,CACA,YAShB,IAAI,YACI,UAAA,CACA,cAAA,CACA,sBAAA,CACA,cAIN,eACE,yBADF,cAGE,oBACE,mBAAA,CACA,iBALJ,cAGE,mBAIE,MACE,kBARN,cAGE,mBAQE,YACE,gBAZN,cAGE,mBAQE,WAGE,0BACE,YAfR,cAGE,mBAQE,WAGE,yBAEE,kBACI,iBAAA,CACA,MAAA,CACA,QAAA,CACA,kBAAA,CACA,iBAAA,CACD,iCAAA,CACA,UAAA,CACA,eAAA,CACA,eAzBX,cAGE,mBAQE,WAkBE,wBACE,WAAA,CACA,mBA/BR,cAGE,mBAgCE,YACE,cAAA,CAEA,oBAtCN,cAGE,mBAgCE,WAKE,MACE,UAAA,CACA,UAAA,CACA,kBA3CR,cAGE,mBA8CG,eAEG,GACE,iBAAA,CACA,aAAA,CACA,UAAA,CACA,aAAA,CD/tET,iBAAkB,2CAAlB,CACA,iBAAkB,sCAAsC,eAAa,YAArE,CACA,iBAAkB,8CAAlB,CACA,iBAAkB,yCAAlB,CACA,iBAAkB,4CAAlB,CACA,0BAAA,CAA6B,OAAQ,yDAAyD,qBAAqB,sBAAtF,CAgB/B,yDAAA,CACA,sDAAA,CACA,iDAAA,CC2sEW,YAAA,CDzvEV,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,2BAAA,CCsvEE,WAAA,CACA,cAAA,CACA,gBAAA,CACA,iBAAA,CACA,gBAAA,CACA,mBAjEV,cAGE,mBA8CG,eAEG,EAeE,YACG,cAAA,CACC,QAAA,CACA,iBAAA,CACA,WAAA,CACA,UAAA,CACA,aAAA,CACA,QAAA,CACA,UA1Ed,cAGE,mBA8CG,eAEG,EA0BE,MACE,UAAA,CACA,UAAA,CACA,YAhFZ,cAGE,mBA8CG,eAEG,EA0BE,KAKE,MACE,0BAnFd,cAGE,mBAsFI,eACE,eAkER,iBACI,wBAAA,YACA,cAAA,CACA,WAAA,CACA,kBAAA,YACA,SAAA,YALJ,gBAOI,aAEE,oBACI,UAAA,CACA,WAAA,CACA,UAAA,CACA,YAAA,CACA,kBAdV,gBAOI,aAEE,mBAOE,KACI,iBAAA,CACA,wBAAA,CACA,WAAA,CACA,WApBZ,gBAyBI,WAEE,eACE,gBAAA,CACA,mBAAA,CACA,UAAA,CACA,YA/BR,gBAyBI,WAEE,cAME,KACE,YAlCV,gBAuCI,UAEE,QACE,UAAA,CACA,WAAA,CACA,iBAAA,CACA,4BAAA,CACA,kBAAA,CACA,WA/CR,gBAuCI,UAEE,OAQE,KACI,aAAA,CACA,UAKR,gBAAC,QAEC,MAEI,kBAAA,CACA,iBALN,gBAAC,QAOC,KAAI,OAEF,iCAAA,CACA,aAAA,CACA,oBAXJ,gBAAC,QAaC,KAAI,OAED,cAKT,gBACE,YAAA,CACA,WAAA,CACA,YAAA,CACA,eAOF,IAAI,UACF,UAAA,CACA,YAFF,IAAI,SAIF,wBACI,iBALN,IAAI,SASF,QAAO,eACL,cAAA,CACA,OAAA,CACA,QAAA,CACA,kBAAA,CACA,YAdJ,IAAI,SASF,QAAO,cAOL,MAAK,cAhBT,IAAI,SASF,QAAO,cAQL,MAAK,kBACD,gBAAA,CACA,WAAA,CACA,YAAA,CACA,UAAA,CACA,UAAA,CACA,aAAA,CDz8ER,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,2BAAA,CAuCT,mDAAA,CACA,gDAAA,CACA,4CCo4EC,IAAI,SASF,QAAO,cAmBL,MAAK,kBACD,WAAA,CACA,WA9BR,IAAI,SASF,QAAO,cAwBL,OACE,eAlCN,IAAI,SASF,QAAO,cA4BL,OAAM,OACJ,cAAA,CACA,YAvCN,IAAI,SASF,QAAO,cAiCL,WACE,UAAA,CACA,WAAA,CACA,kBAAA,CACA,YAAA,CACA,kBACA,QAAuB,iBAw6H9B,IAx9HK,SASF,QAAO,cAiCL,WAOI,gBAAA,CACA,iBAGF,QAAuB,iBAm6H9B,IAx9HK,SASF,QAAO,cAiCL,WAaI,gBAAA,CACA,iBAGF,QAAuB,iBA65H9B,IAx9HK,SASF,QAAO,cAiCL,WAmBI,gBAAA,CACA,iBA9DR,IAAI,SASF,QAAO,cAiCL,UAsBE,IACI,iBAAA,CACA,eAAA,CACA,iBAAA,CACA,qBApEV,IAAI,SASF,QAAO,cAiCL,UA6BE,eACE,cAAA,CACA,eAAA,CACA,iBA1ER,IAAI,SASF,QAAO,cAiCL,UA6BE,cAKE,oBACE,sBAAA,CACA,eAAA,CACA,YA/EV,IAAI,SASF,QAAO,cAiCL,UAyCE,kBACE,gBAAA,CACA,kBAAA,CACA,iBAAA,CACA,YAvFR,IAAI,SASF,QAAO,cAiCL,UAyCE,iBAME,wBACI,mBA1FZ,IAAI,SASF,QAAO,cAiCL,UAyCE,iBAUE,KACI,UAAA,CACA,WA/FZ,IAAI,SASF,QAAO,cAiCL,UAyCE,iBAeE,KAEE,QACI,yCAAA,CACA,cAAA,CACA,aAAA,CACA,eAAA,CACA,WAAA,CACA,WAAA,CACA,WAAA,CACA,QAAA,CACA,WAAA,CACA,eAAA,CACA,gBAAA,CACA,kBAhHd,IAAI,SASF,QAAO,cAiCL,UAyCE,iBAeE,KAiBE,OAAM,UACF,4BAAA,CACA,eArHd,IAAI,SASF,QAAO,cAiCL,UAyCE,iBAeE,KAsBE,OAAM,SACF,4BAAA,CACA,eA1Hd,IAAI,SASF,QAAO,cAiCL,UAyCE,iBA4CE,QAEE,QACI,iBAAA,CACA,kBAnId,IAAI,SASF,QAAO,cAiCL,UAyCE,iBA4CE,QAOE,QAAQ,GACJ,WAvId,IAAI,SASF,QAAO,cAsIL,iBACI,sBAAA,CACA,eAAA,CACA,iBAAA,CACA,KAAA,CACA,SApJR,IAAI,SAyJF,SACI,UAAA,CACA,UAAA,CACA,gBAAA,CACA,eAAA,CACA,iBAAA,CACA,gBA/JN,IAAI,SAyJF,QAQI,IAAG,OACC,aAAA,CACA,gBAAA,CACA,SAAA,CAEA,UAAA,CACA,2BAvKV,IAAI,SAyJF,QAQI,IAAG,MAQC,GACC,UAAA,CACN,UAAA,CACA,WAAA,CACA,aAAA,CACA,kBA9KL,IAAI,SAyJF,QAQI,IAAG,MAQC,EAOL,MACC,UAAA,CACA,WAAA,CACA,aAAA,CACA,iBAAA,CACA,KAAA,CACA,MAAA,CACA,0BAAA,CACA,mCAAA,CACA,gCAAA,CACA,+BAAA,CACA,+BA3LN,IAAI,SAyJF,QAQI,IAAG,MAQC,EAqBR,KACI,UAAA,CACA,YAUN,aACI,iBAAA,CACA,gBAAA,CACA,SAAA,CACA,WAAA,CACA,cALJ,YAOI,mBACE,eAAA,CACA,kBAAA,CACA,YAAA,CACA,UAAA,CACA,QAAA,CACA,YAbN,YAOI,kBAQE,uBACI,kBAhBV,YAOI,kBAQE,sBAGI,MACI,SAnBd,YAOI,kBAQE,sBAGI,KAGI,OArBd,YAOI,kBAQE,sBAGI,KAII,UAtBd,YAOI,kBAQE,sBAGI,KAKI,QACI,wBAAA,CACA,SAAA,CACA,kBA1BlB,YAOI,kBAQE,sBAGI,KAWI,WACI,wBAAA,CACA,iBAAA,CACA,WAAA,CACA,wBAAA,CACA,UAAA,CACA,YAAA,CACA,kBAAA,CACA,oBArClB,YAOI,kBAQE,sBAGI,KAsBI,QACI,6DAzClB,YAOI,kBAQE,sBAGI,KA0BI,WACI,gEA7ClB,YAOI,kBAQE,sBAGI,KA8BI,iCACI,WAAA,CACA,UAAA,CACA,mBAnDlB,YAOI,kBAQE,sBAGI,KA8BI,gCAKI,OACI,WAAA,CACA,YAAA,CACA,UAAA,CACA,WAzDtB,YAOI,kBAQE,sBAGI,KA8BI,gCAYI,OACI,oBAAA,CACA,gBAAA,CACA,cAAA,CACA,WAhEtB,YAOI,kBAmEE,mBACI,iBAAA,CACA,WAAA,CACA,UAAA,CACA,eA9EV,YAOI,kBAmEE,kBAMI,GACI,eAjFd,YAuFI,GACI,cAAA,CACA,eAAA,CACA,gBA1FR,YA6FI,SACI,mBA9FR,YA6FI,QAGI,GACI,UAAA,CACA,oBAAA,CACA,gBAAA,CACA,6BAAA,CACA,iBAAA,CACA,UAAA,CACA,YAWZ,iBACE,kBADF,gBAGE,YACI,eAAA,CACA,WAAA,CACA,qBAAA,CACA,iBAAA,CACA,qBARN,gBAGE,WAOI,iBACE,QACE,WAAA,CACA,YAAA,CACA,YAAA,CACA,wBAAA,CACA,gBAAA,CACA,iBAAA,CACA,UAAA,CDhwFV,2BAAA,CACG,wBAAA,CACK,mBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BCyuFR,gBAGE,WAOI,iBACE,OAUE,KACE,UAAA,CACA,WAAA,CDrwFZ,2BAAA,CACG,wBAAA,CACK,mBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BCyuFR,gBAGE,WAOI,iBAkBE,YACE,iBAAA,CACA,WAAA,CACA,gBAAA,CACA,UAAA,CACA,gBAAA,CACA,yBAAA,CDhxFV,mCAAA,CACG,gCAAA,CACK,2BAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BCyuFR,gBAGE,WAOI,iBAkBE,WASE,QACI,aAtCd,gBA6CE,YACI,gBAAA,CACA,kBA/CN,gBA6CE,WAII,eACI,gBAlDV,gBAwEE,mBAxEF,gBAwEqB,mBACf,mBAzEN,gBAwEE,kBAGE,sBA3EJ,gBAwEqB,kBAGjB,sBACI,mBAAA,CACA,kBAAA,CACA,eAAA,CACA,+BAAA,CACA,UAAA,CACA,WAjFR,gBAwEE,kBAGE,qBAQK,eAnFT,gBAwEqB,kBAGjB,qBAQK,eACG,gBApFZ,gBAwEE,kBAgBE,mBAxFJ,gBAwEqB,kBAgBjB,mBACI,UAAA,CACA,WA1FR,gBAwEE,kBAqBE,kBA7FJ,gBAwEqB,kBAqBjB,kBACI,mBA9FR,gBAwEE,kBAqBE,iBAGI,QAhGR,gBAwEqB,kBAqBjB,iBAGI,QACI,WAAA,CACA,UAlGZ,gBAwEE,kBAqBE,iBAGI,OAIK,IAAG,uBApGhB,gBAwEqB,kBAqBjB,iBAGI,OAIK,IAAG,uBACA,WAAA,CACA,WAAA,CACA,iBAvGhB,gBAwEE,kBAqBE,iBAcI,QAEE,KA7GV,gBAwEqB,kBAqBjB,iBAcI,QAEE,KACI,UAAA,CACA,WA/Gd,gBAwEE,kBAqBE,iBAcI,QAOE,QAlHV,gBAwEqB,kBAqBjB,iBAcI,QAOE,QACI,mBAnHd,gBAwEE,kBAqBE,iBAcI,QAOE,OAGG,IArHb,gBAwEqB,kBAqBjB,iBAcI,QAOE,OAGG,IACG,QAAA,CACA,UAvHhB,gBAwEE,kBAqBE,iBAcI,QAgBE,MACG,IA5Hb,gBAwEqB,kBAqBjB,iBAcI,QAgBE,MACG,IACG,oBAAA,CACA,SAAA,CACA,SA/HhB,gBAwEE,kBAqBE,iBAcI,QAgBE,MACG,GAKG,IAjIhB,gBAwEqB,kBAqBjB,iBAcI,QAgBE,MACG,GAKG,IACI,UAAA,CACA,UAAA,CACA,eApIpB,gBAwEE,kBAqBE,iBAcI,QAgBE,MACG,GAKG,GAKI,KAAI,MAtIxB,gBAwEqB,kBAqBjB,iBAcI,QAgBE,MACG,GAKG,GAKI,KAAI,MACA,eAAA,CACA,iBAxIxB,gBAwEE,kBAqBE,iBAcI,QAgBE,MACG,GAgBG,GAAG,IA5InB,gBAwEqB,kBAqBjB,iBAcI,QAgBE,MACG,GAgBG,GAAG,IACD,iBA7IlB,gBAwEE,kBAqBE,iBAcI,QAuCE,OAlJV,gBAwEqB,kBAqBjB,iBAcI,QAuCE,OACI,cAAA,CACA,oBApJd,gBAwEE,kBAqBE,iBAcI,QAuCE,MAII,GAtJd,gBAwEqB,kBAqBjB,iBAcI,QAuCE,MAII,GACI,SAvJlB,gBAwEE,kBAqBE,iBAcI,QAiDE,SACE,EAAC,IAAI,YA7JjB,gBAwEqB,kBAqBjB,iBAcI,QAiDE,SACE,EAAC,IAAI,YACD,WAAA,CACA,cAAA,CACA,gBAhKhB,gBAwEE,kBAqBE,iBAcI,QAiDE,SAME,EAAC,IAAI,cAlKjB,gBAwEqB,kBAqBjB,iBAcI,QAiDE,SAME,EAAC,IAAI,cACD,yBAnKhB,gBAwEE,kBAiGE,qBAzKJ,gBAwEqB,kBAiGjB,qBACE,+BAAA,CACA,kBAAA,CACA,SAAA,CACA,iBA7KN,gBAwEE,kBAwGE,kBAEE,GAAE,UAlLR,gBAwEqB,kBAwGjB,kBAEE,GAAE,UACE,KAAA,CACA,iBAAA,CACA,QAAA,CACA,yBAAA,CACA,YAAA,CACA,iBAxLV,gBAwEE,kBAwGE,kBAEE,GAAE,SAQE,GAEE,GA5LZ,gBAwEqB,kBAwGjB,kBAEE,GAAE,SAQE,GAEE,GACI,gBAAA,CACA,cAAA,CACA,aAAA,CACA,cAhMhB,gBAwEE,kBAwGE,kBAqBE,mBArMN,gBAwEqB,kBAwGjB,kBAqBE,mBACI,YAAA,CACA,qBAAA,CACA,0BAxMV,gBAwEE,kBAwGE,kBAqBE,kBAKI,WA1MV,gBAwEqB,kBAwGjB,kBAqBE,kBAKI,WACE,iBA3MZ,gBAwEE,kBAwGE,kBAqBE,kBAKI,UAGE,MA7MZ,gBAwEqB,kBAwGjB,kBAqBE,kBAKI,UAGE,MACE,SA9Md,gBAwEE,kBAwGE,kBAqBE,kBAKI,UAGE,KAGE,IAhNd,gBAwEqB,kBAwGjB,kBAqBE,kBAKI,UAGE,KAGE,IACE,aAYhB,aAEE,gBACE,YAQJ,cAEE,cACE,aAHJ,cAEE,aAEE,iBACE,QAAA,CACA,YAAA,CACA,iBAPN,cAEE,aAOE,UACE,kBAVN,cAEE,aAUE,MACE,4BAAA,CACA,gBAAA,CACA,oBAfN,cAEE,aAgBE,SACE,UAAA,YACA,eApBN,cAEE,aAoBE,wBACE,UAAA,CACA,WAAA,CACA,UAAA,CACA,kBA1BN,cAEE,aA0BE,SACE,mBA7BN,cAEE,aA6BE,EAAC,QACG,aAAA,CACA,cAAA,CACA,gBAAA,CACA,kBAnCR,cAEE,aAmCE,EAAC,UACG,aAAA,CACA,cAAA,CACA,gBAAA,CACA,kBAzCR,cAEE,aA0CE,UAEY,SACE,UAAA,CACA,UAAA,CACA,YAAA,CACA,0BAAA,CACA,iBAAA,CACA,WAAA,CACA,iBAAA,CACA,gBAAA,CACA,WAAA,CACA,YAAA,CACA,iBAAA,CACA,mCAAA,CACA,gCAAA,CACA,+BAAA,CACA,8BAAA,CACA,kBA9DlB,cAEE,aA0CE,UAEY,QAiBE,OAAO,KACL,UAAA,CACA,wBAAA,CACA,2BAAA,CACA,wBAAA,CACA,mBAAA,CACA,mCAAA,CACA,4BAAA,CACA,4BAvEpB,cAEE,aA0CE,UAEY,QA4BE,IACE,cAAA,CACA,gBAAA,CACA,oBAAA,CACA,gBAAA,CACA,WAAA,CACA,SAAA,CACA,SAjFpB,cAEE,aA0CE,UAEY,QAqCC,IAAG,OACA,cAAA,CACA,UAAA,CACA,iBAAA,CACA,UAAA,CACA,UAxFpB,cAEE,aA0CE,UAEY,QAqCC,IAAG,MAMA,IAAG,kBACD,UAAA,CACA,YA3FtB,cAEE,aA0CE,UAEY,QAqCC,IAAG,MAUA,YACE,iBA9FtB,cAsGE,YACE,eAAA,CACA,WAAA,CACA,qBAAA,CACA,iBAAA,CACA,mBA3GJ,cAsGE,WAOE,aACE,UAAA,CACA,iBAAA,CACA,iBAAA,CACA,eAjHN,cAsGE,WAOE,YAME,SACE,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CACA,UAAA,CACA,kBAzHR,cAsGE,WAOE,YAME,QAQE,KACE,kBAAA,CACA,UAAA,CACA,aAAA,CACA,UAAA,CACA,cAhIV,cAsGE,WAOE,YAME,QAQE,IAOE,IACE,cAnIZ,cAsGE,WAOE,YA2BE,IACE,eAAA,CACA,kBAAA,CACA,QAAA,CACA,yBAAA,CACA,6BAAA,CACA,UAAA,CACA,WA/IR,cAoJE,SACE,WAAA,CACA,iBAAA,CACA,kBAvJJ,cAoJE,QAKE,IAAK,UACH,iBAAA,CACA,eA3JN,cAoJE,QAUE,IAAK,UACH,eAAA,CACA,iBAhKN,cAoJE,QAcE,QACE,aAnKN,cAoJE,QAcE,OAGE,OACE,sBAAA,CACA,WAAA,CACA,cAxKR,cAoJE,QAcE,OAGE,MAKE,IACE,eAAA,CACA,QAAA,CACA,gBAAA,CACA,iBAAA,CACA,+BAAA,CACA,mBAhLV,cAoJE,QAcE,OAGE,MAcE,SACE,4BAAA,CACA,gBAAA,CACA,UAAA,CACA,UAAA,CACA,eAAA,CACA,cAzLV,cAoJE,QAcE,OAGE,MAcE,QAQE,cACE,YA5LZ,cAoJE,QAgDE,UACE,UAAA,CACA,cAtMN,cAoJE,QAgDE,SAIE,SACE,SAAA,CACA,sBAAA,CACA,WAAA,CACA,WA5MR,cAoJE,QAgDE,SAIE,QAME,cACE,WAAA,CACA,YAAA,CACA,kBAAA,CACA,iBAAA,CACA,iCAAA,CACA,+BAAA,CACA,UAAA,CACA,WAtNV,cAoJE,QAgDE,SAIE,QAME,aAUE,QACE,WAAA,CACA,YAAA,CACA,YAAA,CACA,wBAAA,CACA,gBAAA,CACA,iBAAA,CACA,OAAA,CACA,QAAA,CACA,oBAAA,CDvrGZ,2BAAA,CACG,wBAAA,CACK,mBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BCi9FR,cAoJE,QAgDE,SAIE,QAME,aAUE,OAYE,KACE,UAAA,CACA,WAAA,CD5rGd,2BAAA,CACG,wBAAA,CACK,mBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BCi9FR,cAoJE,QAgDE,SAIE,QAME,aA6BE,kBACI,iBAAA,CACA,MAAA,CACA,QAAA,CACA,kBAAA,CACA,iBAAA,CACA,iCAAA,CACA,UAAA,CACA,gBAAA,CACA,eApPd,cAoJE,QAgDE,SAIE,QAME,aAwCE,YACI,aAAA,CACA,iBAAA,CACA,eAAA,CACA,gBA1Pd,cAoJE,QAgDE,SAIE,QAME,aA+CE,IACE,kBAAA,CACA,eAAA,CACA,gBAAA,CACA,gBAjQZ,cAoJE,QAgDE,SAIE,QA6DE,gBACE,WAAA,CACA,WAvQV,cAoJE,QAgDE,SAIE,QA6DE,eAIE,KACE,UAAA,CACA,WA3QZ,cAoJE,QAgDE,SAIE,QA6DE,eAIE,IAIE,MACE,UAAA,CACA,aAAA,CACA,mBAhRd,cAoJE,QAgDE,SAIE,QA6DE,eAIE,IAUE,KAAI,WACF,aAAA,CACA,kBAAA,CACA,iBAtRd,cAoJE,QAgDE,SAIE,QA6DE,eAIE,IAgBE,KAAK,MACH,mBAGF,cAzIV,QAgDE,SAIE,QA6DE,eAIE,IAoBG,aAEC,GACE,gBAAA,CACA,UAAA,CACA,SAAA,CACA,aAAA,CACA,WAPJ,cAzIV,QAgDE,SAIE,QA6DE,eAIE,IAoBG,aAEC,EAOE,KACE,UAAA,CACA,WAAA,CACA,mBAZN,cAzIV,QAgDE,SAIE,QA6DE,eAIE,IAoBG,aAgBC,EAAE,GACA,kBA9ShB,cAoJE,QAgDE,SAIE,QA6DE,eA8CE,IAAI,KACF,iBApTZ,cAoJE,QAgDE,SAIE,QAgHE,eACE,UAAA,CACA,UAAA,CACA,YA3TV,cAoJE,QAgDE,SAIE,QAgHE,cAKE,WACE,UAAA,CACA,WA/TZ,cAoJE,QAgDE,SAIE,QAgHE,cAUE,UAAU,WACR,eAnUZ,cAoJE,QAgDE,SAIE,QAgHE,cAcE,cAEE,QAAQ,SACN,iBAzUd,cAoJE,QAgDE,SAIE,QAgHE,cAuBE,YAEE,GAAE,aACA,YAAA,CACA,WAAA,CACA,eAAA,CACA,sBArVd,cA6VE,mBACE,cAAA,CACA,mBA/VJ,cA6VE,kBAIE,cACE,iBAlWN,cA6VE,kBAQE,GAAE,kBACA,eAAA,CACA,QAAA,CACA,gBAAA,CACA,iBAAA,CACA,+BAAA,CACA,mBA3WN,cA6VE,kBAiBE,SACE,gBAAA,CACA,oBAAA,CACA,UAAA,CACA,WAlXN,cA6VE,kBAyBE,kBAEE,IACE,UAAA,CACA,mBA1XR,cA6VE,kBAyBE,kBAOE,YACE,aAAA,CACA,iBAAA,CACA,UAAA,CACA,iBAAA,CACA,iBAlYR,cA6VE,kBAyBE,kBAOE,WAOE,KACE,iBAAA,CACA,KAAA,CACA,QAAA,CACA,gBAAA,CACA,UAAA,CACA,UAAA,CACA,eA3YV,cA6VE,kBAyBE,kBAOE,WAOE,IASE,IACE,SA9YZ,cA6VE,kBAyBE,kBAOE,WAqBE,IACE,UAAA,CACA,UAAA,CACA,cAAA,CACA,iBAAA,CACA,gCAvZV,cA6VE,kBAyBE,kBAoCE,YACE,eAAA,CACA,mBA5ZR,cA6VE,kBAyBE,kBAoCE,WAIE,EACE,KACE,wBAhaZ,cA2aE,MAEE,UACE,UAAA,CACA,UAAA,CACA,WAAA,CACA,aAjbN,cA2aE,MAEE,SAME,IACE,eAAA,CACA,aAAA,CACA,QAAA,CACA,aAAA,CACA,gCAxbR,cA2aE,MAEE,SAcE,cACE,kBAAA,CACA,6BA7bR,cA2aE,MAEE,SAcE,aAIE,KACE,UAAA,CACA,UAAA,CACA,WAAA,CACA,gBAncV,cA2aE,MAEE,SAcE,aAIE,IAME,QAEE,UAAA,CACA,UAxcZ,cA2aE,MAEE,SAcE,aAIE,IAME,OAKE,IA1cZ,cA2aE,MAEE,SAcE,aAIE,IAME,OAKM,MACF,eAAA,CACA,UAAA,CACA,oBAAA,CACA,WA9cd,cA2aE,MAEE,SAcE,aAIE,IAME,OAYE,IACE,aAAA,CACA,SAAA,CACA,UAAA,CACA,sBAEA,cA5CZ,MAEE,SAcE,aAIE,IAME,OAYE,GAMG,SACC,qBAAsB,8BAGxB,cAhDZ,MAEE,SAcE,aAIE,IAME,OAYE,GAUG,SACC,qBAAsB,8BAGxB,cApDZ,MAEE,SAcE,aAIE,IAME,OAYE,GAcG,SACC,qBAAsB,kCAGxB,cAxDZ,MAEE,SAcE,aAIE,IAME,OAYE,GAkBG,SACC,qBAAsB,kCApetC,cA2aE,MAEE,SAcE,aAIE,IA4CE,OACE,SAAA,CACA,WAAA,CACA,aAAA,CACA,gBAAA,CACA,kBAUV,WACE,aAAA,CACA,eAAA,CACA,mBAHF,UAKE,SACE,UAAA,CACA,UAAA,CACA,wBAAA,CDx9GN,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,2BAAA,CCq9GF,WAAA,CACA,iBAAA,CACA,gBAAA,CDl9GP,mCAAA,CACA,gCAAA,CACA,+BAAA,CACA,+BCm8GG,UAKE,QAUE,GACE,UAAA,CACA,UAAA,CACA,WAAA,CACA,aAAA,CACA,kBApBN,UAKE,QAkBE,QACE,UAAA,CACA,UAAA,CACA,aA1BN,UAKE,QAkBE,OAKE,KACE,UAAA,CACA,YAAA,CD9+GV,iCAAA,CACG,8BAAA,CACK,yBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BC28GN,UAKE,QA8BE,SACI,cAAA,CACA,iBAAA,CACA,UAAA,CACA,YAvCR,UAKE,QAqCE,YACE,UAAA,CACA,UAAA,CACA,WAAA,CACA,YAAA,CACA,iBAAA,CACA,gBAhDN,UAKE,QAqCE,WAQE,kBACI,aAAA,CACA,aAAA,CACA,eArDV,UAKE,QAqCE,WAcE,IACE,cAAA,CACA,oBAAA,CACA,UAAA,CACA,mBA5DR,UAKE,QAqCE,WAqBE,GACE,cAAA,CACA,iBAAA,CACA,QAAA,CACA,SAAA,CACA,UAAA,CACA,QAAA,CACA,WAAA,CACA,gBAAA,CACA,gBAAA,CACA,WAIJ,UAxEF,QAwEG,OACC,oBAAA,CACA,mBAFF,UAxEF,QAwEG,MAIC,QACE,iBAKN,QAAuB,iBAm2F5B,WAl2FO,kBAk2FP,UAh2FO,SACE,aAIJ,QAAuB,iBA21F5B,WA11FO,UA01FP,UAx1FO,SACE,aAIJ,QAAuB,iBAm1F5B,WAl1FO,iBAk1FP,UAh1FO,SACE,aAKN,cACE,SAAA,CAEA,aAAA,CACA,kBAAA,CACA,YALF,aAOE,GACE,aAAA,CACA,UAAA,CACA,UAAA,CACA,WAAA,CAEA,kBAbJ,aAOE,EAQI,MAME,SACE,iBAAA,CACA,KAAA,CACA,MAAA,CACA,UAAA,CAEA,yBA3BV,aAOE,EAQI,MAeE,SACE,UAAA,CACA,aAAA,CACA,wBAAA,CAEA,sBAAA,CDnmHZ,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BC2jHN,aAOE,EAQI,MAeE,QAQE,QACE,UAAA,CACA,YAAA,CACA,eAAA,CACA,aAAA,CACA,UAAA,CACA,gCA5CZ,aAOE,EAQI,MAeE,QAQE,OAQE,KACE,WAAA,CACA,WAhDd,aAOE,EAQI,MAeE,QAsBE,UACE,UAAA,CACA,UAAA,CACA,aAAA,CACA,aAAA,CACA,aAzDZ,aAOE,EAQI,MAeE,QAsBE,SAOE,IACE,cAAA,CACA,QAAA,CACA,aAAA,CACA,aAAA,CACA,UAAA,CACA,WAAA,CACA,eAAA,CACA,sBAnEd,aAOE,EAQI,MAeE,QAyCE,SACE,UAAA,CACA,UAAA,CACA,UAAA,CACA,eAAA,CACA,aAAA,CACA,gBAAA,CACA,cAAA,CACA,wBAAA,CD/oHd,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BC2jHN,aAOE,EAQI,MAeE,QAyCE,QAYE,GACE,gBAAA,CACA,eAAA,CACA,cAtFd,aAOE,EAqFE,aACE,WAKJ,QAAuB,iBAwuF5B,cAvuFO,mBAGF,QAAuB,iBAouF5B,cAnuFO,WAGF,QAAuB,iBAguF5B,cA/tFO,kBAUA,OACE,SACE,OACE,iBAHN,OACE,SACE,MAGE,MAAK,OALX,OACE,SACE,MAIE,OAAM,OANZ,OACE,SACE,MAKE,SAAQ,OACN,yCAAA,CACA,wBAAA,CACA,cAVR,OAeE,OAEE,GAEE,GACE,sCAAA,CACA,UAAA,CACA,eAEA,OATN,OAEE,GAEE,EAKG,OACC,eAzBV,OAeE,OAeE,GAEE,IACE,UASV,iBACE,UAAA,CACA,qBAAA,CACA,eAHF,gBAKE,IACE,eAAA,CACA,cAPJ,gBAUE,GAAE,OACA,UAAA,CACA,gBAZJ,gBAUE,GAAE,MAIA,IACE,UAAA,CACA,oBAAA,CACA,eAAA,CACA,QAAA,CACA,aAAA,CACA,+BAAA,CACA,iBAAA,CACA,aAAA,CACA,WAvBN,gBAUE,GAAE,MAgBA,GAAE,QACA,aAAA,CACA,gCAKN,uBACE,oBADF,sBAGE,MACE,SAAA,CACA,cALJ,sBAGE,KAIE,OAEE,OACE,WAVR,sBAGE,KAIE,OAME,OAbN,sBAGE,KAIE,OAMS,UACL,WAdR,sBAGE,KAIE,OAUE,QACE,WAAA,CACA,UAnBR,sBAGE,KAIE,OAeE,OAAO,QACL,YAvBR,sBAGE,KAwBE,OAAO,QACL,kBAKN,kBACE,YAGF,WACE,OAAA,CACA,WAAA,CACA,WAAA,CACA,iBAGF,WACE,cAAA,CACA,iBAGF,yBACE,QAAA,CACA,YAAA,CACA,YAGF,oBACE,cAAA,CACA,UAAA,CACA,SAAA,CACA,WAAA,CACA,8CAGF,eACE,UAAA,CACA,kBAAA,CACA,iBAAA,CACA,aAAA,CACA,YAAA,CACA,eAAA,CACA,iBAAA,CACA,qBAGF,UACE,WAGF,CAAC,SAAS,OACR,0BAGF,WACE,eAAA,CACA,UAAA,CACA,WAAA,CACA,qCAGF,iBACE,mBADF,gBAGE,gBACE,UAAA,CACA,mBALJ,gBAGE,eAIE,KACE,eAAA,CACA,gBAAA,CACA,eAAA,CACA,iBAAA,CACA,yBAEA,gBAXJ,eAIE,IAOG,OACC,yBAfR,gBAGE,eAgBE,QACE,WAAA,CACA,WAAA,CACA,eAAA,CACA,iBAAA,CACA,wBAAA,CACA,qBAAA,CACA,kCA1BN,gBAGE,eAyBE,OAAM,OACJ,yBA7BN,gBAGE,eA4BE,aACE,UAAA,CACA,WAAA,CACA,sCAlCN,gBAGE,eAkCE,aACE,YAAA,CACA,UAAA,CACA,WAAA,CACA,qCAAA,CACA,OAAA,CACA,eA3CN,gBA+CE,wBAEE,eACE,UAAA,CACA,cAAA,CACA,WAAA,CACA,WAAA,CACA,sCAAA,CACA,2BAAA,CACA,mBAAA,CDj5HV,0BAAA,CACG,uBAAA,CACK,kBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BCo1HJ,gBA+CE,wBAaE,cAAa,OACX,4CAAA,CACA,4BAKN,KAAK,iBACL,KAAK,eACL,KAAK,iBACH,SAAA,CACA,eAAA,CACA,QAAA,CACA,OAAA,CACA,kBAGF,2BACA,yBACE,eAAA,CACA,gBAAA,CACA,gBAGF,GAAG,yBACH,GAAG,uBACD,YAAA,CACA,gBAGF,YACE,gBAOF,kBAEE,6BAAA,CACA,WAAA,CACA,cAAA,CACA,YAAA,CACA,UAAA,CACA,UAPF,iBASE,YACE,oBAVJ,iBAaE,iBAEE,OACE,WAKN,kBAAmB,YACjB,iBAGF,eACE,cAAA,CACA,oBAAA,CACA,iBAGF,qBACE,iBAGF,iBAAkB,kBAChB,+BAAA,CACA,mBAGF,iBAAkB,GAAE,OAClB,gBAGF,cACE,cAAA,CACA,wBAGF,aACE,UAAA,CACA,WAAA,CACA,sCAAA,CACA,sBAGF,gBACE,cAAA,CACA,gCAGF,iBACE,mBAGF,gBAAiB,KAAI,OACnB,iBAGF,KAAK,eACH,gBAAA,CACA,WAAA,CACA,YASN,cACE,WACE,UAAA,CACA,UAAA,CACA,mBAJJ,cAOE,mBACE,UAMF,eACE,eAAA,CACA,mBAFF,cAIE,OAEE,gBACE,kBAPN,cAIE,OAEE,eAGE,GAEE,GACE,eAAA,CACA,kBAEA,cAXR,OAEE,eAGE,GAEE,EAIG,OACC,oBAAA,CACA,cAjBZ,cAIE,OAEE,eAgBE,KAAI,wBACF,iBAAA,CACA,OAAA,CACA,iBAAA,CACA,UAAA,CDphIX,UAAW,YAAX,CACA,cAAe,YAAf,CACA,kBAAmB,YAAnB,CAxBA,mCAAA,CACA,gCAAA,CACA,+BAAA,CACA,+BC4iIS,cA3BJ,OAEE,eAyBG,OAEC,KAAI,wBD3hIf,UAAW,cAAX,CACA,cAAe,cAAf,CACA,kBAAmB,eCw/HhB,cAIE,OAmCE,aACE,aAxCN,cAIE,OAmCE,YAGE,MACE,YAAA,CACA,gBA5CR,cAIE,OAmCE,YAGE,KAIE,KAEE,IAEE,MAAK,cAlDjB,cAIE,OAmCE,YAGE,KAIE,KAEE,IAGE,MAAK,kBAnDjB,cAIE,OAmCE,YAGE,KAIE,KAEE,IAIE,UACE,UAAA,CACA,cAtDd,cAIE,OAmCE,YAGE,KAIE,KAEE,IASE,SAAQ,OACN,2BA1Dd,cAIE,OAmCE,YAGE,KAIE,KAgBE,KAAI,YACF,kBA/DZ,cAIE,OAmCE,YAGE,KA0BE,IACE,cAAA,CACA,iBAAA,CACA,QAAA,CACA,yBAAA,CACA,8BAzEV,cA+EE,GAAE,QA/EJ,cA+Ea,GAAG,GAAE,YACd,aAAA,CACA,oBAAA,CACA,cAAA,CACA,SAAA,CACA,qBApFJ,cAuFE,MAAK,aAvFP,cAuFqB,SAAQ,aACzB,yBAxFJ,cA2FE,eACE,cA5FJ,cA+FE,eACE,wBAAA,CACA,YAAA,CACA,gCAlGJ,cA+FE,cAKE,KAAI,cACF,kBArGN,cA+FE,cASE,IACE,aAAA,CACA,QAAA,CACA,4BAAA,CACA,aAAA,CACA,UAAA,CACA,yBA9GN,cA+FE,cAkBE,KAGE,MAAK,cApHX,cA+FE,cAmBE,OAEE,MAAK,cApHX,cA+FE,cAkBE,KAIE,MAAK,kBArHX,cA+FE,cAmBE,OAGE,MAAK,kBArHX,cA+FE,cAkBE,KAKE,UAtHN,cA+FE,cAmBE,OAIE,UACE,WAvHR,cA4HE,cAEE,SAAQ,OACN,aA/HN,cAmIE,cAEE,gBArIJ,cAg3EH,CA7uEmB,wBAEZ,gBACE,aAAA,CACA,SAAA,CACA,gBAAA,CACA,UAAA,CACA,eAAA,CACA,YA3IN,cAmIE,cAEE,eAQE,KA7IN,cAg3EH,CA7uEmB,wBAEZ,eAQE,KACE,UAAA,CACA,YA/IR,cAmIE,cAgBE,aAnJJ,cAg3EH,CA7uEmB,wBAgBZ,aACE,qBAAA,CACA,kBAAA,CACA,6BAAA,CACA,aAvJN,cAmIE,cAgBE,YAME,GAzJN,cAg3EH,CA7uEmB,wBAgBZ,YAME,GACE,mBA1JR,cA+JE,cAEE,iBACE,+BAAA,CACA,WAAA,CACA,iBAAA,CACA,mBAAA,CACA,kBAAA,CACA,kBAvKN,cA+JE,cAEE,gBAQE,aACE,iBAAA,CACA,KAAA,CACA,OAAA,CACA,iBA7KR,cA+JE,cAEE,gBAeE,iBACE,QAAA,CACA,UAAA,CACA,WAAA,CACA,YAAA,CACA,SAAA,CACA,eAAA,CACA,eAvLR,cA4LE,iBAEE,mBACE,oBA/LN,cA4LE,iBAME,aACE,WAAA,CACA,UAAA,CACA,UAAA,CACA,gBAAA,CACA,eAvMN,cA2ME,sBACE,UAAA,CACA,gBAQJ,iBACE,YAAA,CACA,mBAFF,gBAIE,0BACE,WAAA,CACA,YAAA,CACA,WAAA,CACA,qBAAA,CACA,aAAA,CACA,gBAAA,CDzvIN,2BAAA,CACG,wBAAA,CACK,mBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BC0uIN,gBAIE,yBASE,eAEE,KACE,UAAA,CACA,WAAA,CACA,qBAAA,CDjwIV,2BAAA,CACG,wBAAA,CACK,mBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BC0uIN,gBAyBE,eACE,cAAA,CACA,mBA3BJ,gBA8BE,cACE,cAAA,CACA,eAMN,SAEE,iBACE,kBAAA,CACA,iBAAA,CACA,mBALJ,SAEE,gBAKE,iBACE,cAKN,GAAG,OACD,oBAAA,CACA,eAAA,CACA,UAAA,CACA,YAGF,GAAG,MAAM,SACP,uEAGF,GAAG,MAAM,WACP,oEAGF,KAAK,iBAAkB,KAAK,eAAgB,KAAK,iBAC7C,SAAA,CACA,eAAA,CACA,QAAA,CACA,OAAA,CACA,kBAKF,QAA0B,iBACxB,eACE,gBAcN,kBACE,YAAA,CACA,eAAA,CACA,gBAHF,iBAKE,GAAE,eACA,QAAA,CACA,+BAAA,CACA,iBARJ,iBAWE,gBAEE,GAAE,YACA,aAAA,CACA,gBAAA,CACA,eAhBN,iBAqBE,iBACE,mBAtBJ,iBAqBE,gBAGE,IACE,aAAA,CACA,eAAA,CACA,aAAA,CACA,mBAON,aACE,kBADF,YAGE,OACE,cAAA,CACA,kBAAA,CACA,UANJ,YASE,QACE,eAAA,CACA,iBAAA,CACA,UAZJ,YAeE,IACE,iBAAA,CACA,eAAA,CACA,kBAAA,CACA,aAnBJ,YAsBE,IACE,iBAAA,CACA,UAAA,CACA,MAAA,CACA,SAAA,CACA,iBAAA,CACA,cAIJ,YAEE,IACE,kBAAA,CACA,mBAJJ,YAOE,OAEE,gBACE,UAVN,YAOE,OAEE,eAGE,GACE,iBAAA,CACA,UAAA,CACA,cAUR,QACE,UAAA,CACA,WAEA,OAAC,KACC,+BAAA,CACA,mBAFF,OAAC,IAIC,GAAE,YACA,cAAA,CACA,WAAA,CACA,gBAAA,CACA,mBARJ,OAAC,IAWC,GACE,iBAIJ,OAAC,cACC,iBAAA,CACA,mBAFF,OAAC,aAIC,MACE,UAAA,CACA,YANJ,OAAC,aAIC,KAIE,cACE,UAAA,CACA,YAVN,OAAC,aAIC,KAIE,aAIE,QACE,iBAAA,CACA,WAAA,CACA,aAfR,OAAC,aAIC,KAIE,aAIE,OAKE,KACE,WAAA,CACA,aAnBV,OAAC,aAIC,KAIE,aAeE,OACE,UAAA,CACA,iBAzBR,OAAC,aAIC,KAIE,aAeE,MAIE,IACE,cAAA,CACA,WAAA,CACA,gBAAA,CACA,YAAA,CACA,gBAAA,CACA,cAjCV,OAAC,aAIC,KAkCE,aAAa,cACX,kBAvCN,OAAC,aA2CC,KAAK,MACH,gBASN,KAEE,mBACE,SAHJ,KAEE,kBAGE,GAEE,GAAG,IACD,eAUR,cAEE,cAEE,IACI,iBAAA,CACA,cAKR,eAEE,iBACE,kBAAA,CACA,UAAA,CACA,kBAAA,CACA,WAAA,CACA,gBAAA,CACA,iBAAA,CACA,6CAAA,CACA,cAAA,CACA,WAIJ,iBAEE,eAEE,YAME,UACI,UAAA,CACA,gBAAA,CACA,aAMV,aACI,eAGJ,eAEE,IACE,qBAHJ,eAME,cACE,UAAA,CACA,UAAA,CACA,oBATJ,eAYE,aAAa,cACX,iBAbJ,eAgBE,UACE,UAAA,CACA,iBAAA,CACA,UAAA,CACA,iBAAA,CACA,eArBJ,eAgBE,SAOE,sBAEE,UAAA,CACA,WAAA,CACA,SAAA,CACA,QAAA,CACA,iBAAA,CACA,KAAA,CACA,OA/BN,eAgBE,SAOE,qBAUE,KACE,UAAA,CACA,YAnCR,eAgBE,SAuBE,kBACE,UAAA,CACA,eAAA,CACA,eA1CN,eAgBE,SAuBE,iBAKE,gBACE,SAAA,CACA,iBAAA,CACA,gBAAA,CACA,gBAAA,CACA,eAAA,CACA,mBAlDR,eAgBE,SAuBE,iBAKE,eAQE,MACE,eArDV,eAgBE,SAuBE,iBAKE,eAYE,KAAI,MACF,gBAAA,CACA,eA1DV,eAgBE,SAuBE,iBAKE,eAiBE,KAAI,QACF,eA9DV,eAgBE,SAuBE,iBAKE,eAqBE,KAAI,WACF,iBAlEV,eAgBE,SAuBE,iBA+BE,kBACE,eAAA,CACA,SAAA,CACA,gBAzER,eAgBE,SAuBE,iBA+BE,iBAKE,GACE,gBA5EV,eAgBE,SAuBE,iBAyCE,0BACE,SAAA,CACA,gBAEA,eApEN,SAuBE,iBAyCE,yBAIG,YACC,YAAA,CACA,iBAAA,CACA,gBAHF,eApEN,SAuBE,iBAyCE,yBAIG,WAKC,YACE,iBAAA,CACA,OAAA,CACA,OAAA,CACA,cAAA,CACA,YAVJ,eApEN,SAuBE,iBAyCE,yBAIG,WAaC,gBACE,cAAA,CACA,mBAfJ,eApEN,SAuBE,iBAyCE,yBAIG,WAkBC,kBACE,WAAA,CACA,eAAA,CACA,kBAAA,CACA,iBAAA,CACA,QAAA,CACA,eAAA,CACA,iBAAA,CACA,kBAAA,CACA,iBA3BJ,eApEN,SAuBE,iBAyCE,yBAIG,WA8BC,UACE,gBAAA,CACA,kBApHZ,eAgBE,SAuBE,iBAkFE,gBACE,UAAA,CACA,UAAA,CACA,SAAA,CACA,iBAAA,CACA,SA9HR,eAgBE,SAuBE,iBAkFE,eAOE,sBACE,WAjIV,eAgBE,SAuBE,iBAkFE,eAOE,qBAGE,GACE,UAAA,CACA,YArIZ,eAgBE,SAuBE,iBAkFE,eAgBE,UACE,kBA1IV,eAgBE,SAuBE,iBAkFE,eAgBE,SAGE,kBACE,gBA7IZ,eAgBE,SAmIE,EAAC,kBACC,iBAAA,CACA,UAAA,CACA,OAAA,CACA,aAAA,CACA,cAAA,CACA,WAAA,CACA,cAAA,CACA,iBAAA,CD9sJN,iCAAA,CACG,8BAAA,CACK,yBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BC+sJR,MAAM,eAEJ,cAEE,gBACE,yBALN,MAAM,eAEJ,cAEE,eAGE,gBAEE,OAAM,OACJ,WAAA,CACA,sBAAA,CACA,cASR,aAEE,gBACE,YAHJ,aAEE,eAGE,aACE,eAAA,CACA,YAPN,aAEE,eAGE,YAIE,IACE,UAAA,CACA,WAXR,aAEE,eAaE,wBACE,SAAA,CACA,UAAA,CACA,mBAlBN,aAEE,eAaE,uBAKE,aAEE,WACE,eAvBV,aAEE,eAaE,uBAKE,aAEE,UAGE,QACE,eA1BZ,aAEE,eAaE,uBAKE,aAEE,UAGE,OAGE,OACE,SAAA,CACA,UAAA,CACA,WAAA,CACA,iBAhCd,aAEE,eAaE,uBAKE,aAEE,UAGE,OAUE,MAAK,cACH,WAAA,CACF,SAAA,CACA,gBAAA,CACA,WAAA,CACA,gBAAA,CACA,iBAAA,CDtuJf,mDAAA,CACA,gDAAA,CACA,4CC2rJG,aAEE,eAaE,uBAKE,aAEE,UAGE,OAoBE,MAAK,eACH,UAAA,CACF,UAAA,CACA,qBAhDZ,aAEE,eAaE,uBAKE,aAEE,UAGE,OA0BE,MACE,UAAA,CACA,WAAA,CACA,gBAAA,CACA,qBAvDd,aAEE,eAaE,uBAKE,aAEE,UAGE,OAiCE,KAAK,MAAO,eACV,iBA3Dd,aAEE,eAaE,uBAKE,aAEE,UAGE,OAqCE,MAAK,kBACH,UAAA,CACA,YAAA,CACA,WAjEd,aAEE,eAaE,uBAKE,aAEE,UAGE,OA2CE,UACA,SAAA,CACA,gBAAA,CACA,iBAAA,CACA,gBAAA,CACA,YAAA,CACA,kBA1EZ,aAEE,eAoFE,iBACE,SAAA,CACA,iBAAA,CACA,WAzFN,aAEE,eAoFE,gBAKE,eACE,UAAA,CACA,WAAA,CACA,cAAA,CACA,wBAAA,CDx0JV,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BCouJN,aAEE,eAoFE,gBAKE,cAOE,gBACE,UAAA,CACA,kBApGV,aAEE,eAoFE,gBAKE,cAOE,eAIE,IACE,QAAA,CACA,cAAA,CACA,eAAA,YAzGZ,aAEE,eAoFE,gBAKE,cAkBE,cACE,sBAAA,CACA,WAAA,CACA,iBAAA,CACA,mCAAA,CD11JZ,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,2BAAA,CAuCT,mDAAA,CACA,gDAAA,CACA,4CC2rJG,aAEE,eAoFE,gBAKE,cAkBE,aAQE,uBACA,UAAA,CACA,kBAvHV,aAEE,eAoFE,gBAKE,cAkBE,aAQE,sBAIA,oBACE,UAAA,CACA,WAAA,CACA,iBA5HZ,aAEE,eAoFE,gBAKE,cAkBE,aAQE,sBAIA,mBAKE,MACE,aAAA,CACA,WAhId,aAEE,eAoFE,gBAKE,cAkBE,aAQE,sBAIA,mBAUE,KAAK,MACH,YAEA,aApIZ,eAoFE,gBAKE,cAkBE,aAQE,sBAIA,mBAUE,KAAK,KAGF,WACC,eAvIhB,aAEE,eAoFE,gBAKE,cAkBE,aAQE,sBAuBA,kBACE,UAAA,CACA,WAAA,CACA,WAAA,CACA,iCAAA,CDz3Jd,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,2BAAA,CAuCT,mDAAA,CACA,gDAAA,CACA,4CC2rJG,aAEE,eAoFE,gBAKE,cAkBE,aAQE,sBAuBA,iBAQE,MACE,SAAA,CACA,cAAA,CACA,WAAA,CACA,wBAAA,CDj4JhB,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,2BAAA,CAuCT,sDAAA,CACA,mDAAA,CACA,+CCu1JiB,aA1JZ,eAoFE,gBAKE,cAkBE,aAQE,sBAuBA,iBAQE,KAQG,SACC,UA7JhB,aAEE,eAoFE,gBAKE,cAkBE,aAQE,sBA6CA,eACE,UAAA,CACA,WAAA,CACA,iBAIF,aAvKR,eAoFE,gBAKE,cAkBE,aAQE,sBAoDC,WACC,kBADF,aAvKR,eAoFE,gBAKE,cAkBE,aAQE,sBAoDC,UAGC,aACE,iBAAA,CACA,KAAA,CACA,OAAA,CACA,SAAA,CACA,WAAA,CACA,gBAAA,CACA,iBAAA,CACA,eApLd,aAEE,eAoFE,gBAKE,cAkBE,aA4EE,cACE,gBA1LZ,aAEE,eAoFE,gBAKE,cAkBE,aAgFE,aACE,UAAA,CACF,WAAA,CACA,eAAA,CACE,gBAjMZ,aAEE,eAoFE,gBAKE,cAkBE,aAgFE,YAME,YACA,WAAA,CACA,WAAA,CACA,UAAA,CACA,WAAA,CACA,UAAA,CACA,gBAzMZ,aAEE,eAoFE,gBAKE,cAkBE,aAgFE,YAME,WAQE,QACE,UAAA,CACA,YA7MhB,aAEE,eAoFE,gBAKE,cAkBE,aAgFE,YAME,WAQE,OAIE,KACE,UAAA,CACA,WAAA,CD17JpB,0BAAA,CACG,uBAAA,CACK,kBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BCouJN,aAEE,eAoFE,gBAKE,cAkBE,aA2GE,WACE,WAAA,CACA,eAAA,CACA,UAAA,CACA,gBA5NZ,aAEE,eAoFE,gBAKE,cAkBE,aA2GE,UAME,UACE,iBAAA,CACA,UAAA,CACA,eAAA,CACA,iBAlOd,aAEE,eAoFE,gBAKE,cAkBE,aA2GE,UAME,SAME,QACE,iBAAA,CACA,KAAA,CACA,MAAA,CACA,SAAA,CACA,YAzOhB,aAEE,eAoFE,gBAKE,cAkBE,aA2GE,UAME,SAME,OAOE,KACE,UAAA,CACA,YA7OlB,aAEE,eAoFE,gBAKE,cAkBE,aA2GE,UAME,SAmBE,UACE,WAlPhB,aAEE,eAoFE,gBAKE,cAkBE,aA2GE,UAME,SAmBE,SAGE,OACA,UAAA,CACA,WAAA,CACA,gBAAA,CACA,kBAxPhB,aAEE,eAoFE,gBAKE,cAkBE,aA2GE,UAME,SAmBE,SAUE,OACE,UAAA,CACF,cAAA,CACA,iBA9PhB,aAEE,eAoFE,gBAKE,cAkBE,aA2GE,UA2CE,SAAS,UACP,eApQd,aAEE,eAoFE,gBAKE,cA8KE,gBACE,UAAA,CACA,WAAA,CACA,gBA5QV,aAEE,eAoFE,gBAKE,cA8KE,eAKE,SACE,WA/QZ,aAEE,eAoFE,gBAKE,cA8KE,eASE,aACA,UAAA,CACA,iBAAA,CACA,WAAA,CACA,YAtRV,aAEE,eAoFE,gBAKE,cA8KE,eAgBE,aACE,YA1RZ,aAEE,eAoFE,gBAKE,cA8KE,eAgBE,YAGE,EAAC,YACC,aAAA,CACA,qBAAsB,kCAAtB,CACF,WAAA,CACA,UAAA,CACE,wBAEA,aAjSZ,eAoFE,gBAKE,cA8KE,eAgBE,YAGE,EAAC,WAOE,MACC,qBAAsB,uBAGxB,aArSZ,eAoFE,gBAKE,cA8KE,eAgBE,YAGE,EAAC,WAWE,MACC,UAAA,CACA,qBAAsB,2BActC,iBAEE,gBACE,YAHJ,iBAEE,eAGE,YAEE,UACE,UAAA,CACA,gBAAA,CACA,aAaR,IAAI,eACF,QAAA,CACA,aAAA,CACA,YAAa,4CAGf,yBACE,UAAA,CACA,WAAA,CACA,UAAA,CACA,wBAAA,CDhjKL,6BAAA,CACA,0BAAA,CACA,sBC0iKG,wBAQE,QACE,UAAA,CACA,QAAA,CACA,UAXJ,wBAcE,KACE,WAfJ,wBAkBE,KACE,UAAA,CACA,WAAA,CACA,WAAA,CDjkKP,6BAAA,CACA,0BAAA,CACA,sBC0iKG,wBAyBE,oBACE,wBAAA,CACA,kBA3BJ,wBAyBE,mBAIE,QACE,UAAA,CACA,UA/BN,wBAyBE,mBAIE,OAGE,GACE,cAAA,CACA,aAAA,CACA,oBAAA,CDtlKX,mCAAA,CACA,gCAAA,CACA,+BAAA,CACA,+BCslKW,wBAbN,mBAIE,OAGE,EAMG,OACC,yBAAA,CACA,cAxCV,wBAyBE,mBAoBE,QACE,iBAAA,CACA,OAAA,CACA,SAAA,CACA,WAAA,CACA,WAAA,CACA,yBAnDN,wBAyBE,mBAoBE,OAQE,GACE,UAAA,CACA,WAAA,CACA,aAAA,CACA,gBAzDR,wBAyBE,mBAoBE,OAQE,EAME,KACE,WA5DV,wBAkEE,oBAEE,KACE,UAAA,CACA,UAAA,CDlnKT,6BAAA,CACA,0BAAA,CACA,sBC0iKG,wBAkEE,oBAQE,OACE,WAAA,CACA,iBAAA,CACA,iBAAA,CACA,mBA9EN,wBAkEE,oBAQE,MAME,IACE,iBAAA,CACA,MAAA,CACA,MAnFR,wBAkEE,oBAQE,MAYE,MACE,aAAA,CACA,UAAA,CACA,WAAA,CACA,gBAAA,CACA,cAAA,CACA,UAAA,CACA,YA7FR,wBAkEE,oBAQE,MAsBE,KAAK,MACH,cAjGR,wBAkEE,oBAmCE,aACE,WAtGN,wBAkEE,oBAmCE,YAGE,QACE,UAAA,CACA,WAAA,CACA,uBA3GR,wBAkEE,oBAmCE,YAGE,OAKE,GACE,aAAA,CACA,UAAA,CACA,WAAA,CACA,eAAA,CD9qKZ,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BCwjKN,wBAkEE,oBAmCE,YAGE,OAKE,EAOE,KACE,WAcZ,uBACE,SAAA,CACA,UAAA,CACA,mBAHF,sBAKE,GAAE,UACA,SAAA,CACA,uBAPJ,sBAKE,GAAE,SAKA,GACE,GACE,YAZR,sBAiBI,aAEI,WACE,eApBV,sBAiBI,aAEI,UAGI,UACE,SAAA,CACA,gBAAA,CACA,iBAAA,CACA,aAAA,CACA,YAAA,CACA,iBAAA,CDhrKjB,mDAAA,CACA,gDAAA,CACA,4CCkpKG,sBAiBI,aAEI,UAaE,QACI,eAjCd,sBAiBI,aAEI,UAaE,OAGI,OACE,SAAA,CACA,UAAA,CACA,WAAA,CACA,iBAvChB,sBAiBI,aAEI,UAaE,OAUI,MAAK,cA1CnB,sBAiBI,aAEI,UAaE,OAWI,MAAK,aACH,aAAA,CACA,WAAA,CACA,SAAA,CACA,gBAAA,CACA,WAAA,CACA,gBAAA,CACA,iBAAA,CDtsKnB,mDAAA,CACA,gDAAA,CACA,4CCkpKG,sBAiBI,aAEI,UAaE,OAsBI,MAAK,eACH,UAAA,CACA,UAAA,CACA,qBAzDhB,sBAiBI,aAEI,UAaE,OA4BI,MACE,UAAA,CACA,WAAA,CACA,gBAAA,CACA,qBAhEhB,sBAiBI,aAEI,UAaE,OAmCI,KAAK,MAAO,eACV,iBApEhB,sBAiBI,aAEI,UAaE,OAuCI,MAAK,kBACH,UAAA,CACA,YAAA,CACA,WAWd,cACI,UAAA,CACA,eAAA,CACA,WAAA,CACA,cAAA,CACA,wBAAA,CD1xKR,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,4BCgxKJ,aAQI,gBACE,UAAA,CACA,kBAVN,aAQI,eAIE,IACE,QAAA,CACA,eAdR,aAkBI,cACE,sBAAA,CACA,WAAA,CACA,iBAAA,CACA,mCAAA,CD3yKV,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,2BAAA,CAuCT,mDAAA,CACA,gDAAA,CACA,4CCuuKK,aAkBI,aASE,kBACE,gBAAA,CACA,gBAAA,CACA,gBA9BR,aAkBI,aASE,iBAKE,eACE,SAAA,CACA,WAAA,CACA,WAnCV,aAkBI,aASE,iBAWE,yBACE,SAAA,CACA,UAAA,CACA,kBAzCV,aAkBI,aASE,iBAWE,wBAKE,KAAI,WACF,iBAAA,CACA,QAAA,CACA,OA9CZ,aAkBI,aASE,iBAWE,wBAWE,MAAK,cACH,cAAA,CACA,WAAA,CACA,UAAA,CACA,gBAAA,CACA,WAAA,CACA,gBAAA,CACA,iBAAA,CACA,YAAA,CACA,cAAA,CDnyKjB,mDAAA,CACA,gDAAA,CACA,4CCuuKK,aAkBI,aASE,iBAoCE,SACE,SAAA,CACA,YAjEV,aAkBI,aASE,iBAoCE,QAIE,QACE,UAAA,CACA,cAAA,CACA,SAAA,CACA,UAAA,CACA,iBAAA,CACA,YAzEZ,aAkBI,aASE,iBAkDE,oBACE,UAAA,CACA,UAAA,CACA,aAhFV,aAkBI,aASE,iBAkDE,mBAKE,WACE,SAAA,CACA,WAAA,CACA,WArFZ,aAkBI,aASE,iBAkDE,mBAWE,cACE,SAAA,CACA,UAAA,CACA,cA3FZ,aAkBI,aASE,iBAkDE,mBAWE,aAKE,oBACE,SAAA,CACA,UAAA,CACA,sBAAA,CACA,QAAA,CACA,sBAAA,CACA,eAnGd,aAkBI,aASE,iBAkDE,mBAWE,aAKE,mBAQE,MAAK,eACH,WAtGhB,aAkBI,aASE,iBAkDE,mBAWE,aAkBE,eACE,SAAA,CACA,UAAA,CACA,WAAA,CACA,cA9Gd,aAkBI,aASE,iBAkDE,mBAWE,aAkBE,cAME,KACR,cAAA,CACA,WAAA,CACA,UAAA,CACA,eApHN,aAkBI,aA0GE,uBACE,UAAA,CACA,kBA9HR,aAkBI,aA0GE,sBAIE,oBACE,UAAA,CACA,WAAA,CACA,gBAAA,CACA,aApIV,aAkBI,aA0GE,sBAIE,mBAME,MACE,aAAA,CACA,WAxIZ,aAkBI,aA0GE,sBAIE,mBAWE,KAAK,MACH,YAEA,aA5HR,aA0GE,sBAIE,mBAWE,KAAK,KAGF,WACC,eA/Id,aAkBI,aA0GE,sBAwBE,kBACE,UAAA,CACA,WAAA,CACA,WAAA,CACA,iCAAA,CACA,YAAA,CD96Kd,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,2BAAA,CAuCT,mDAAA,CACA,gDAAA,CACA,4CCuuKK,aAkBI,aA0GE,sBAwBE,iBASE,MACE,SAAA,CACA,cAAA,CACA,WAAA,CACA,wBAAA,CDt7KhB,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,2BAAA,CAuCT,sDAAA,CACA,mDAAA,CACA,+CC44KiB,aAnJR,aA0GE,sBAwBE,iBASE,KAQG,SACC,UAtKd,aAkBI,aA0GE,sBA+CE,eACE,UAAA,CACA,WAAA,CACA,iBAGF,aA/JJ,aA0GE,sBAqDG,UAEC,aACE,iBAAA,CACA,KAAA,CACA,OAAA,CACA,SAAA,CACA,WAAA,CACA,gBAAA,CACA,iBAAA,CACA,eAVJ,aA/JJ,aA0GE,sBAqDG,UAaC,oBACE,iBAAA,CACA,cAfJ,aA/JJ,aA0GE,sBAqDG,UAkBC,kBACE,SAAA,CACA,cArMZ,aAkBI,aAwLE,cACE,gBA3MR,aAkBI,aA4LE,aACE,UAAA,CACA,WAAA,CACA,eAAA,CACA,cAAA,CACA,eAAA,CACA,0BApNR,aAkBI,aA4LE,YAQE,YACE,WAAA,CACA,WAAA,CACA,UAAA,CACA,WAAA,CACA,UAAA,CACA,gBA5NV,aAkBI,aA4LE,YAQE,WAQE,QACE,UAAA,CACA,YAhOZ,aAkBI,aA4LE,YAQE,WAQE,OAIE,KACE,UAAA,CACA,YApOd,aAkBI,aAwNE,WACE,WAAA,CACA,eAAA,CACA,UAAA,CACA,cAAA,CACA,eAAA,CACA,0BAhPR,aAkBI,aAwNE,UAQE,UACE,iBAAA,CACA,UAAA,CACA,eAAA,CACA,iBAtPV,aAkBI,aAwNE,UAQE,SAME,QACE,iBAAA,CACA,KAAA,CACA,MAAA,CACA,SAAA,CACA,WAAA,CACA,kBA9PZ,aAkBI,aAwNE,UAQE,SAME,OAQE,KACE,UAAA,CACA,WAAA,CACA,WAnQd,aAkBI,aAwNE,UAQE,SAqBE,UACE,UAAA,CACA,gBAzQZ,aAkBI,aAwNE,UAQE,SAqBE,SAIE,OACA,UAAA,CACA,WAAA,CACA,gBAAA,CACA,kBA/QZ,aAkBI,aAwNE,UAQE,SAqBE,SAWE,OACE,UAAA,CACF,cAAA,CACA,iBArRZ,aAkBI,aAwNE,UAgDE,SAAS,UACP,eA3RV,aAgSI,gBACE,UAAA,CACA,WAAA,CACA,gBAnSN,aAgSI,eAKE,kBACE,mBAAA,CACA,WAAA,CACA,eAxSR,aAgSI,eAWE,SACE,WA5SR,aAgSI,eAeE,aACA,UAAA,CAEA,WAAA,CACA,YAnTN,aAgSI,eAeE,YAME,GACE,YAtTV,aAgSI,eA0BE,aACE,YA3TR,aAgSI,eA0BE,YAEI,EAAC,kBAEC,aAAA,CACA,qBAAsB,+BAAtB,CACA,WAAA,CACA,UAAA,CACA,uBAAA,CACA,4BAnUZ,aAgSI,eA0BE,YAWE,EAAC,YACC,aAAA,CACA,qBAAsB,kCAAtB,CACF,WAAA,CACA,UAAA,CACE,wBAEA,aA5CN,eA0BE,YAWE,EAAC,WAOE,MACC,qBAAsB,uBAGxB,aAhDN,eA0BE,YAWE,EAAC,WAWE,MACC,UAAA,CACA,qBAAsB,2BASpC,gBACI,SAAA,CACA,iBAAA,CACA,WAOA,mBACE,WAAA,CACA,WAAA,CACA,gBAHF,kBAKE,aACE,WAAA,CACA,gBAPJ,kBAKE,YAIE,SACE,UAAA,CACA,WAXN,kBAKE,YAIE,QAIE,uBAEM,GAAE,UACE,UAAA,CACA,UAAA,CACA,wBAAA,CACA,+BAAA,CACF,iBAAA,CACA,MArBd,kBAKE,YAIE,QAIE,uBAEM,GAAE,SAQE,IACE,+BAAA,CDxoLzB,iCAAA,CACA,8BAAA,CACA,6BAAA,CACA,6BC6mLO,kBAKE,YAIE,QAIE,uBAEM,GAAE,SAQE,GAIE,GACE,QAAA,CACA,4BAAA,CACA,QAAA,CACA,aAAA,CACA,+BAAA,CDhpL3B,iCAAA,CACA,8BAAA,CACA,6BAAA,CACA,6BCipLyB,kBA/BhB,YAIE,QAIE,uBAEM,GAAE,SAQE,GAaG,QACC,qBADF,kBA/BhB,YAIE,QAIE,uBAEM,GAAE,SAQE,GAaG,OAEC,GACE,qBAcxB,cAEE,0BACE,QAAA,CACA,kBAJJ,cAEE,yBAIE,eACE,eAAA,CACA,UAAA,CACA,WAAA,CACA,gBAWZ,UAEE,yDAAA,CACA,2BAAA,CACA,2BAAA,CACA,uBAAA,CACA,yBAAA,CACA,UAAA,YACA,gBAEF,SAAU,UAER,kBAGF,SAAU,eAER,kBAAA,CACA,YAGF,SAAU,cAEN,EAAC,OAEE,cAJP,SAAU,cAQN,IAAG,MAED,WAAA,CACA,iBAAA,CACA,kBAZN,SAAU,cAeN,YAEE,WAAA,CACA,6BAKN,aAEE,YAAA,CACA,UAAA,CACA,gBAEF,YAAa,GAEX,eAIF,cAEI,+BAAA,CACA,eAAA,CACA,kBAAA,CACA,gBALJ,aAMI,GACE,SAPN,aASI,UAAU,KAER,iBAAA,CACA,UAAA,CACA,WAAA,CACA,YAdN,aAiBI,WAEE,YAnBN,aAqBI,OAEE,cAIJ,aAAa,YAEX,mBAIJ,GAAG,qBAED,WAAA,CACA,aAEF,GAAG,YAEG,eAAA,CACA,gBAAA,CACD,aAAA,CACC,YAIN,0BACE,cAAA,CACA,aAFF,yBAGE,cAEE,SALJ,yBAOE,eAEE,UATJ,yBAWE,WAEE,aAAA,CACA,kBAdJ,yBAgBE,WAEE,iBAAA,CACA,WAnBJ,yBAqBE,aAEO,kBAAA,CACA,eAAA,CACA,+BAAA,CAEA,gBA3BT,yBAqBE,YAOO,gBACG,UAAA,CACA,WAAA,CACA,UAAA,CACA,kBAhCZ,yBAmCG,YAAW,YACC,mBApCf,yBAsCM,MAEE,gBAxCR,yBA0CM,SAEM,WA5CZ,yBA8CM,OAEM,kBAhDZ,yBAkDI,cAEM,iBAAA,CACA,aAAA,CACA,gBAtDV,yBAyDM,aAEQ,UAAA,CACA,YA5Dd,yBA8DM,cACE,kBAKR,gBAEE,cAEO,kBAJT,gBAMI,cAEG,iBAAA,CACA,kBATP,gBAWI,QAEG,gBAAA,CACA,aAAA,CACA,gBAAA,CACA,oBAhBP,gBAmBI,SACM,mBApBV,gBAmBI,QAGI,YAEI,oBAAA,CACA,iBAAA,CACA,oBAAA,CACA,kBAAA,CACA,wBAAA,CACA,kBA7BZ,gBAmBI,QAYI,mBACQ,yBAIJ,gBAjBR,QAeI,gBAEK,OACK,oBAAA,CACA,sBAtClB,gBAmBI,QAuBI,WACI,oBAAA,CACA,SAAA,CACA,iBAAA,CACA,aAAA,CACA,oBAAA,CACA,kBAAA,CACA,cAAA,CACA,wBAAA,CACA,qBAAA,CACA,oBAAA,CACA,gBAAA,CACA,4BAAA,CACA,QAAA,CACA,uBAAA,CACA,oBAAA,CACA,gBA1DZ,gBA8DI,2BACE,aA/DN,gBA8DI,0BAEE,iBACE,QAAA,CACA,YAAA,CACA,iBAnER,gBA8DI,0BAOE,UACE,kBAtER,gBA8DI,0BAUE,SACE,yBAAA,CACA,gBAAA,CACA,oBA3ER,gBA8DI,0BAeE,YACC,sBA9EP,gBA8DI,0BAkBE,gBACE,kBAjFR,gBA8DI,0BAqBE,eACE,iBApFR,gBA8DI,0BAyBE,OAAM,QACH,iBAxFT,gBA8DI,0BA4BE,OAAM,OAAQ,MACX,eA3FT,gBA8DI,0BAgCE,SACE,UAAA,YACA,eAhGR,gBA8DI,0BAoCE,wBACE,UAAA,CACA,WAAA,CACA,UAAA,CACA,kBAtGR,gBA8DI,0BA0CE,SACE,mBAKR,cAGI,KAAI,KAEA,iBAAA,CACA,oBAAA,CACA,iBAPR,cASI,OAEI,gBAAA,CACA,iBAAA,CACA,eAbR,cAeI,cAEI,gBAAA,CACA,iBAAA,CACA,eAMR,IAAI,YACF,UACK,WAAA,CACA,aAHP,IAAI,YACF,SAMK,QACG,qBAAA,CACA,YATV,IAAI,YACF,SAUI,QACI,gBAAA,CACA,eAbV,IAAI,YACF,SAcI,KAAI,IAAI,cAAc,OACpB,sBAhBR,IAAI,YACF,SAkBG,SACM,eApBX,IAAI,YACF,SAsBE,SACO,kBAxBX,IAAI,YACF,SAyBE,SACO,kBA3BX,IAAI,YACF,SA4BE,SACK,kBA9BT,IAAI,YACF,SA+BE,SACK,kBAjCT,IAAI,YACF,SAkCE,SACK,mBApCT,IAAI,YACF,SAqCE,SACK,mBAQT,qBACE,eACE,kBAAA,CACA,iBAAA,CACA,eAAA,CACA,iBALJ,qBAQE,cACI,2BAAA,CACA,wBAAA,CACA,iBAAkB,iEAAlB,CACA,0BAAA,CACA,yBAAA,CACA,qBAAA,CACA,iBAAA,CACA,sDAAA,CACA,UAAA,CACA,gBAAA,YACA,oBAAA,CACA,cAAA,CACA,cAAA,CACA,iBAAA,CACA,qBAIN,kBACE,sBACE,UAAA,CACA,4BAAA,CACA,WAAA,CACA,aACA,kBALF,qBAKI,SACA,yBAPN,kBACE,qBAQE,IACE,yBAVN,kBAaE,QACE,SAKJ,eACE,aACI,6BAFN,eACE,YAEI,GAAI,aACE,iBAAA,CACA,0BALZ,eACE,YAMI,IACM,+BAAA,CACA,aAAA,CACA,gBAAA,CACA,iBAAA,CACA,iBAZZ,eAiBE,sBACM,eAAA,CACA,oBAAA,CACA,sBAAA,CACA,kBAAA,CACA,mBAtBR,eAwBE,gBACI,YAzBN,eAwBE,eAEI,MACM,eA3BZ,eA+BE,KAAI,MAAM,SACN,wBAAA,CACA,iBAAA,CACA,UAAA,CACA,eAAA,CACA,gBApCN,eAsCE,KAAI,MAAM,WACN,wBAAA,CACA,iBAAA,CACA,UAAA,CACA,eAAA,CACA,gBA3CN,eA6CE,MACI,gBAAA,CACA,iBAIN,gBAEE,WACC,OACK,eAAA,CACA,YAAA,CACA,kBAAA,CACA,4BAAA,CACA,QAAA,CACA,eAAA,CACA,+CAAA,CACA,wCAKN,aACE,GACE,GACE,WAON,gBACI,iBADJ,eAEE,iBACG,cAAA,YAHL,eAEE,gBAEE,uBACE,WAAA,CACA,SAAA,CACA,WAAA,CACA,wBAAA,CACA,iBAAA,CACA,0BAAA,CACA,kBAXN,eAEE,gBAEE,sBAWE,QAGE,SAAA,CACA,aAAA,CACA,mBAAA,CACA,2BArBR,eAEE,gBAEE,sBAsBE,wBAMG,WAAA,CACD,aAjCR,eAEE,gBAEE,sBAgCE,uBACE,WAAY,8BAAZ,CACA,uBAAA,CACA,6BAAA,CACA,+BAxCR,eAEE,gBAEE,sBAsCE,yBACE,SAAA,CACA,eAAA,CACA,WAAA,CACA,aAAA,CACA,eA/CR,eAEE,gBAEE,sBAsCE,wBAME,SACG,WAjDX,eAEE,gBAEE,sBAsCE,wBAWE,WACE,kBAAA,CACA,WAAA,CACA,SAAA,CACA,eAAA,CACA,WAAA,CACA,SAAA,CACA,4BAAA,CACA,eAAA,CACA,YA9DV,eAEE,gBAEE,sBAsCE,wBAWE,UAWE,MACI,SAAA,CACA,cAAA,CACA,WAAA,CACA,wBAAA,CDpuMd,yBAAA,CACG,sBAAA,CACK,iBAAA,CACR,mCAAA,CACG,4BAAA,CACK,2BAAA,CAuCT,sDAAA,CACA,mDAAA,CACA,+CC0rMe,eAtEZ,gBAEE,sBAsCE,wBAWE,UAWE,KAQK,SACC,SAAA,CACA,UA1EhB,eAEE,gBAEE,sBAsCE,wBAsCE,WACE,MACE,aAAA,CACA,UAAA,CACA,UAAA,CACA,eArFZ,eAEE,gBAEE,sBAsFE,yBAGI,KAAI,SAEF,iBAAA,CACA,kBAhGZ,eAEE,gBAEE,sBAsFE,yBAQG,KAAI,OACH,aAAA,CACA,iBAAA,CACA,gBAWV,QAA0B,iBACxB,gBACI,UACE,eACQ,cAId,UACI,YADJ,SAEI,WACM,aAAA,CACA,UAAA,CACA,WAAA,CACA,eANV,SAEI,UAKM,IAAG,MACD,UAAA,CACA,aAOhB,cACE,OACI,oBAAA,CACA,gBAAA,CACA,eAAA,CACA,cAAA,CACA,eAAA,CACA,sBAAA,CACA,iBAAA,CACA,kBAAA,CACA,qBAAA,CACA,6BAAA,CACA,yBAAA,CACA,cAAA,CACA,wBAAA,CACA,qBAAA,CACA,oBAAA,CACA,gBAAA,CACA,qBAAA,CACA,wBAAA,CACA,iBAAA,CACA,kBArBN,cAwBE,eACE,yBAzBJ,cA2BE,MAAK,OACD,UAAA,CACA,4BAAA,CACA,qBAIL,aACM,SACG,UAAA,CACA,YAAA,CACA,0BAAA,CACA,iBAAA,CACA,WAAA,CACA,iBAAA,CACA,eAAA,CACA,WAAA,CACA,YAAA,CACA,iBAAA,CACA,mCAAA,CACA,gCAAA,CACA,+BAAA,CACA,8BAAA,CACA,kBAhBT,aACM,QAiBG,OAAO,KACH,UAAA,CACA,wBAAA,CACA,2BAAA,CACA,wBAAA,CACA,mBAAA,CACA,mCAAA,CACA,4BAAA,CACA,4BA1Bb,aACM,QA4BG,IACI,cAAA,CACA,eAAA,CACA,oBAAA,CACA,gBAAA,CACA,WAAA,CACA,SAAA,CACA,SApCb,aACM,QAqCI,KAAI,OACO,iBAAA,CACA,UAAA,CACA,SAMtB,2BACE,OACE,aAAA,CACA,UAAA,CACA,iBAAA,CACA,UAAA,CACA,gBANJ,2BACE,MAME,KACE,UAAA,CACA,WAAA,CACA,qBAAA,CACA,oBAXN,2BACE,MAYE,UACE"} \ No newline at end of file diff --git a/httpdocs/theme/flatui/less/stylesheet.less b/httpdocs/theme/flatui/less/stylesheet.less index 009708ce1..37287ae95 100644 --- a/httpdocs/theme/flatui/less/stylesheet.less +++ b/httpdocs/theme/flatui/less/stylesheet.less @@ -1,6567 +1,6567 @@ @import "stylesheets/mixins.less"; /** @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);**/ /** Google fonts **/ /* open-sans-300 - latin */ @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 300; src: local('Open Sans Light'), local('OpenSans-Light'), url('../css/fonts/open-sans-v15-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../css/fonts/open-sans-v15-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* open-sans-regular - latin */ @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; src: local('Open Sans Regular'), local('OpenSans-Regular'), url('../css/fonts/open-sans-v15-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../css/fonts/open-sans-v15-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* open-sans-600 - latin */ @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 600; src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url('../css/fonts/open-sans-v15-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../css/fonts/open-sans-v15-latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /* open-sans-700 - latin */ @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 700; src: local('Open Sans Bold'), local('OpenSans-Bold'), url('../css/fonts/open-sans-v15-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../css/fonts/open-sans-v15-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } /** GENERAL **/ body { color: #32353d; overflow-y: scroll; font-size: 1.5em; line-height: 1.231; color: #4e4e4e; font-family: 'Open Sans',sans-serif; font-size: medium; } header, footer, main, section { width: 100%; float: left; section.wrapper { margin-left: auto; margin-right: auto; width: 95%; float: none; height: auto; } } a { text-decoration: none; color: #2673b0; .transition(); &:hover { text-decoration: none; } } - a:focus { - outline: none; + a:focus { + outline: none; } - + button::-moz-focus-inner { border: 0; } input, button, select, textarea { font-family: "Lato",sans-serif; font-size: 14px; } h1 { font-size: 32px; font-weight: 900; } h3 { font-size: 24px; font-weight: 700; margin-bottom: 4px; margin-top: 2px; } h5 { font-size: 16px; font-weight: 500; text-transform: uppercase; } @media (max-width: 1200px) and (min-width: 992px) { header section.wrapper, footer section.wrapper, main section.wrapper { width: 95%; margin-left: 2.5%; margin-right: 2.5%; } } /** /GENERAL **/ /** COMMON **/ .btn{ background: #bdc3c7 none repeat scroll 0 0; border: medium none; border-radius: 6px; box-shadow: none; color: #fff; line-height: 22px; padding: 9px 12px 10px; text-decoration: none; text-shadow: none; .transition(0.2); &.btn-large { font-size: 16.996px; line-height: 20px; padding: 12px 18px 13px; } - + &.btn-native { background-color: #2673b0; color: white; } &.btn-pling-red { background-color: #e84310; } &.btn-pling-green { background-color: green; } &.btn-purple { background: #9b59b6; padding: 10px 35px; } &.btn-file-dropzone { font-size: 10px; padding: 8px 10px 10px; line-height: 10px; } &.btn-file-action { font-size: 12px; padding: 8px 10px 10px; line-height: 16px; margin-left: 5px; } } .pling-danger{ background: #C9302C none repeat scroll 0 0; } - + .standard-form { - + input { height: 41px; } input, textarea, select { border: 1px solid #bdc3c7; padding: 0; .border_radius(5px); } .field { margin-bottom: 15px; } } .icon-facebook, .icon-twitter, .icon-google { width: 40px; height: 40px; cursor: pointer; display: inline-block; background-image: url(../img/bg_sheet.png); } .icon-facebook { background-position: 0 -105px; } .icon-twitter { background-position: -40px -105px; } - + .lightblue { color: #2673b0; } .small { font-size: 12px; } .large { font-size: 18px; } .relative { position: relative; } .absolute { position: absolute; } .light { font-weight: 300; } .lightgrey { color: #95a5a6; } .center { text-align: center; } i.myfav{ color:#8e44ad; } h1.page-title { color: #34495e; font-weight: bold; font-size: 32px; } .modal { overflow-y: hidden; } .right { float: right; } .left { float: left; } em.icon { display: inline-block; background-image: url(../img/bg_sheet.png); &.info-icon { width: 31px; height: 30px; background-position: -289px -64px; } } .margin-bottom-10 { margin-bottom: 10px; } .margin-top-15 { margin-top: 15px; } .full-width { width: 100% !important; } .progress { height: 8px; .border_radius(0); margin-bottom: 0; } /*paging style*/ .opendesktopwidgetpager{ - display: flex; + display: flex; justify-content: right; align-items: center; justify-content: flex-end; ul.opendesktopwidgetpager{ display: inline-block; padding-left: 0; margin: 20px 0; border-radius: 4px; > li { - display: inline; + display: inline; >span{ cursor: pointer; position: relative; - float: left; + float: left; margin-left: -1px; line-height: 1.42857143; color: #337ab7; text-decoration: none; background-color: #fff; border: 1px solid #ddd; padding: 5px 10px; - font-size: 12px; + font-size: 12px; } } >.active > span{ z-index: 2; color: #fff; cursor: default; background-color: #337ab7; border-color: #337ab7; } } } /** /COMMON **/ /** TOP MENU **/ .metamenu{ - width:100%; + width:100%; background-color:#fff; height:15px; a#toggleStoreBtn{ - float: left; - margin-left: 20px; + float: left; + margin-left: 20px; text-decoration: none; } a.home-link{ float: left; img.logo{ - width:16px; + width:16px; height:16px; } - } + } } .meta-nav-top { - + > li { > a{ padding:0px 5px ; .transition(); &#ocs-stores { img { width: 16px; height: 16px; } } } - } + } } /** /TOP MENU **/ /** HEADER **/ ul.meta-nav-top - { + { list-style: none; li{ - float: left; + float: left; } } ul.meta-nav-top-right{ margin:0px; margin-right: 30px; float: right; li{ padding:0 10px; } } - + ul.meta-nav-top-left{ - float: left; + float: left; } #toggleStoreContainer{ - z-index: 1000; - display: none; + z-index: 1000; + display: none; width: 60%; - height: 200px; + height: 200px; top:12px; left:190px; } #toggleStoreContainer a{ display: block; font-size: 16px; - + } #toggleStoreContainer a:hover{ color:#6a7686; } - + #toggleStoreContainer b{ text-decoration: underline; text-align: center; padding-left: 20px; font-size: 18px; cursor: default; } #toggleStoreContainer ul { list-style: none; padding:0; padding-top: 10px; padding-left:30px; } #toggleStoreContainer ul li{ font-size: 14px; } #toggleStoreContainer ul li:hover{ background-color: transparent; - + } header { nav { border-bottom: transparent; } &#page_header { color: #6a7686; height: auto; font-size: 10pt; font-weight: 400; width: 100%; font-family: Arial,sans-serif; - + nav#nav-top { - margin-left:130px; + margin-left:130px; width:84%; } } .dropdown-header { width: 175px; height: 12px; background-image: url(../img/bg_sheet.png); background-position: -385px 0; } a { color: #ffffff; } .pull-left, .pull-right { padding:0; } ul { margin-bottom: 0; &.menu-icon { float: right; display: none; } li { list-style: none; display: inline-block; margin: 0; cursor: pointer; float: left; position: relative; height: 40px; line-height: 40px; - float: left; + float: left; - a { + a { float: left; display: block; height: inherit; line-height: inherit; padding: 0 20px; } &.profile-menu-container { padding-top: 0; padding-left: 40px; .header-profile-image { top: 50%; left: 10px; height: 30px; width: 30px; margin-top: -15px; .supporter-badge{ position: absolute; left: 0px; bottom: 0px; background: #EE6E09; text-align: center; border-radius: 30px 30px 30px 30px; color: #fff; padding: 5px 10px; font-size: 12px; } img { height: 30px; width: 30px; float: left; .border_radius(999px); } } > a { display: block; } } ul { width: 165px; margin-left: 0; position: absolute; left: -9999px; top: 45px; border: none; font-size: 14px; color: #7f8c8d; font-weight: normal; padding: 0; z-index: 10000; .border_radius(5px); &.active { left: 0; top: 40px; } li { text-align: left; display: block; width: 100%; background: #ecf0f1; margin: 0; padding: 0; height: 40px; border-bottom: 1px solid #d6d7d9; - &.first, + &.first, &:first-of-type { .border_radius(5px 5px 0 0); } &:last-of-type { .border_radius(0 0 5px 5px); } a { color: #6a7686; text-align: left; height: 40px; line-height: 40px; } } } } } .container { margin-left: auto; margin-right: auto; float: none; height: auto; width: 100%; background-color: #e2e2e2; } .container.header { margin-left: auto; margin-right: auto; float: none; width: 100%; section.container { background-color: transparent; &.backLink { background-color: #729ECD !important; height: 30px; h4 { a:hover { color: #1d1d1d; } } } section.wrapper { height: 40px; padding-left: 80px; position: relative; } } section.container + section.container { background-color: transparent; padding-left: 0; - + > section.wrapper { padding-left: 242px; height: 50px; } } - nav { + nav { border-bottom: transparent; #search { height: 25px; padding: 0; margin: 6.5px 15px; line-height: 25px; position: relative; input.content-search { width: 16em; height: 25px; padding: 0; border: 1px solid white; margin-bottom: -1px; padding-right: 30px; text-indent: 5px; color: #6a7686; float: left; border-radius: 6px; box-shadow: none; } - + div.icon-search-input { top: 2px; right: 0; width: 25px; height: 25px; background-image: url(/theme/flatui/img/icon-search-input-2.png); background-position: center center; position: absolute; cursor: pointer; } } } ul.menu-nav-tabs { bottom: 0; display: inline-table; list-style-type: none; margin: 0; padding: 0; position: absolute; z-index: 999; } } } /* header section.container { background-color: transparent; } header section.container + section.container { background-color: transparent; } header section.container + section.container > section.wrapper { padding-left: 242px; height: 50px; } header section.container.backLink { background-color: #729ECD !important; height: 30px; } header section.container.backLink h4 a:hover { color: #1d1d1d; } #page_header div a.black { color: #6a7686; } #page_header div a.black:hover { color: #1d1d1d; } ul.menu-nav-tabs { bottom: 0; display: inline-table; list-style-type: none; margin: 0; padding: 0; position: absolute; z-index: 999; - } + } */ /** /HEADER **/ /** pling nav tabs**/ // rewrite bootrap nav a @pling-nav-tabs-active-color: #2673b0; @pling-nav-tabs-onhover-color: #222; @pling-nav-tabs-color: #777; .pling-nav-tabs-a{ - border: 0 ; + border: 0 ; position: relative; - color: @pling-nav-tabs-color; - font-size: 13px; - transition: color 0s; + color: @pling-nav-tabs-color; + font-size: 13px; + transition: color 0s; bottom: -1px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: transparent; - background-color:transparent; + background-color:transparent; } .pling-nav-tabs{ ul.nav-tabs{ > li{ - background-color:transparent; - margin-bottom: 0px ; + background-color:transparent; + margin-bottom: 0px ; > a{ .pling-nav-tabs-a; } - > a:hover{ + > a:hover{ .pling-nav-tabs-a; - color: @pling-nav-tabs-active-color; + color: @pling-nav-tabs-active-color; svg{ fill:@pling-nav-tabs-active-color; - } - } + } + } > a:focus{ - .pling-nav-tabs-a; + .pling-nav-tabs-a; } svg{ fill:@pling-nav-tabs-color; } &.active{ > a { - .pling-nav-tabs-a; + .pling-nav-tabs-a; color: @pling-nav-tabs-active-color; border-bottom-color: @pling-nav-tabs-active-color; font-weight: bold; - } + } > a:hover{ - .pling-nav-tabs-a; + .pling-nav-tabs-a; color: @pling-nav-tabs-active-color; border-bottom-color: @pling-nav-tabs-active-color; font-weight: bold; } - > a:focus{ - .pling-nav-tabs-a; + > a:focus{ + .pling-nav-tabs-a; color: @pling-nav-tabs-active-color; - border-bottom-color: @pling-nav-tabs-active-color; + border-bottom-color: @pling-nav-tabs-active-color; font-weight: bold; - } + } svg { fill: @pling-nav-tabs-active-color; } } - } - } + } + } } /** pling nav tabs end**/ /** FOOTER **/ footer { width: 100%; float: left; padding: 12px 0; border-bottom: 5px solid #2673b0; border-top: 1px solid darkgray; background-color: gainsboro; font-size: 9pt; h3 { font-weight: normal; } h3#footer-heading { font-size: 1.3em; margin: 0; } nav#footer-nav { ul { margin-top: 1em; list-style: none; padding: 0; margin-right: 1em; float: left; width: auto; margin-bottom: .2em; li { display: inline-block; margin-right: 0; font-size: 1em; a { color: #666; font-weight: 400; } } li + li { margin-left: 10px; } } } h3#footer-social-heading { color: #666; font-size: 1em; margin: 0 0 .4em 0; } #footer-social { float: right; a { width: 30px; display: block; float: left; } a + a { margin-left:2px; } } section.wrapper { .pull-left { padding: 0; } .pull-right { padding: 0; } } } /** /FOOTER **/ /** HOME PAGE **/ body.home-page { main { - + section.wrapper { - + .container { padding: 150px 0; height: auto; float: none; max-width: 95%; width: 95%; } &#intro { - + .container { padding-bottom: 50px; article { text-align: center; width: 100%; > * { margin-bottom: 40px; } h2 { font-size: 40px; font-weight: 700; margin-bottom: 20px; } h3 { font-size: 30px; font-weight: 700; margin-top: 2px; } p { margin-bottom: 0; text-align: center; } } - + } - + } } section#cat-list { border-top: 1px solid #cdd7dd; } - + .card-wrapper { position: relative; max-width: 960px; margin: auto; margin-bottom: 2rem; background: white; .card-item { position: absolute; padding: 1rem; width: 31.4%; border: 1px solid gray; border-radius: 7px; .category { a.title { font-size: 14pt; font-weight: 600; min-height: 30px; line-height: 30px; padding-right: 30px; span.label { padding: 2px 3px; - } + } } } - + div { a.title { font-size: 11pt; min-height: 20px; line-height: 20px; padding-right: 5px; span.label { font-size: 7pt; font-weight: 300; vertical-align: top; margin-left: 5px; padding: 1px 3px; } } } } } - + } } .card-item { border: 1px solid gray; } .card-item .category > a.title { color: #444444; } .card-item div > a.title { color: #6a6a6a; } #indeximages { /* Prevent vertical gaps */ - line-height: 0; + line-height: 0; -webkit-column-count: 20; -webkit-column-gap: 0px; -moz-column-count: 20; -moz-column-gap: 0px; column-count: 20; - column-gap: 0px; + column-gap: 0px; } #indeximages img { /* Just in case there are inline attributes */ width: 100% !important; height: auto !important; opacity: 1; } @media (max-width: 1920px) { #indeximages { -moz-column-count: 20; -webkit-column-count: 20; column-count: 20; } } @media (max-width: 1200px) { #indeximages { -moz-column-count: 15; -webkit-column-count: 4; column-count: 4; } } @media (max-width: 1000px) { #indeximages { -moz-column-count: 12; -webkit-column-count: 3; column-count: 3; } } @media (max-width: 800px) { #indeximages { -moz-column-count: 9; -webkit-column-count: 2; column-count: 2; } } @media (max-width: 400px) { #indeximages { -moz-column-count: 7; -webkit-column-count: 1; column-count: 1; } } /** /HOME PAGE **/ /** BROWSE PAGE **/ #products-wrapper { padding-top: 20px; } /* .explore-products { padding-left: 30px; ul.nav-tabs { border-bottom: 0; margin-bottom: -2px !important; - + li.active { padding-bottom: 0; - + a { border-bottom: 0; - + span { height: 30px; background: white; border-radius: 2px 2px 0 0; border-bottom: 0; } - + } } - + li { margin: 0; margin-right: 5px; top: 2px; - + &.right { float: right; } - + &.active { padding-bottom: 0; - + a { border-bottom: 0; - + span { height: 30px; background: white; border-radius: 2px 2px 0 0; border-bottom: 0; } - + } } - + a { margin: 0; padding: 0; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; border: 1px solid #ccc; - + span { display: block; padding: 5px; font-size: 12px; font-weight: bold; height: 23px; line-height: 1; background: #e8e8e8; border: 1px solid white; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } } } } .product-list { width: 100%; float: left; padding: 0 10px; border: 1px solid #ccc; background-color: white; .border_radius(0 0 5px 5px); .explore-product { padding: 10px 0; font-size: 12px; border-top: 1px solid #ccc; .explore-product-imgcolumn { padding-left: 5px; padding-right: 5px; } .explore-product-image { max-width: 95%; max-height: 167px; } img{ max-width: 100%; } .contentLeft { - float: left; + float: left; padding-right: 0px; width: 270px; img{ - max-width: 167px; - max-height: 167px; + max-width: 167px; + max-height: 167px; } - + div.productimg { width: 167px; height: 167px; } } .rownum { - font-size: large; + font-size: large; color: graytext; width: 90px; float:left; } .explore-product-details { padding-left: 0px; - + h3 { margin: 0 0 10px 0; font-size: 16px; height: 20px; font-weight: bold; color: #2673b0; span.version { - font-size: smaller; + font-size: smaller; padding-left: 20px; } } .categoryname { font-weight: bold; } .productInfo { padding-top: 15px; span.cntSupporters { padding-right: 20px; } } } .explore-product-plings { - padding: 0; - + padding: 0; + .rating { width: 50%; } .progress { margin-bottom: 10px; padding: 3px; opacity:0; margin-bottom: 0; height:12px; opacity:1.0; - background-color: transparent; - box-shadow: none; + background-color: transparent; + box-shadow: none; padding:2px; - + .bar { width: 4px; max-width: 100%; height: 14px; background-color: #2673b0; .border_radius(5px); .box_shadow(inset 0 6px 0 rgba(255,255,255,0.2)); &.no-goal { width: 50%; opacity: 0; } } } .collected { span { display: block; width: 100%; float: left; } } } &:first-of-type { border-top:0; } } } .explore-footer { width: 100%; text-align: center; - + .projectPaginationControl { width: auto; display: table; margin: 0 auto; ul#pagination-digg { padding: 0; list-style-type: none; margin: 20px 0; height: auto; overflow: hidden; li { float: left; font-size: 16px; font-weight: normal; margin: 0 4px; } } } } } */ - + /* .explore-products css cleanup*/ .explore-products { padding-left: 30px; padding-right: 30px; margin-top: -10px; /* .nav-tabs{ > li{ - background-color:@contentbgcolor; + background-color:@contentbgcolor; > a{ - border: 0; - color: #777; + border: 0; + color: #777; font-size: 13px; } > a:hover{ - border: 0; - color: #222; - background-color:@contentbgcolor; + border: 0; + color: #222; + background-color:@contentbgcolor; } &.right { float: right; } - } + } > li.active{ > a { background-color: @contentbgcolor; border: 0px; border-bottom: 3px solid #2673b0; color: #2673b0; - font-weight: bold; - } - } - } + font-weight: bold; + } + } + } */ - + .product-list { width: 100%; float: left; - padding: 0 10px; + padding: 0 10px; .border_radius(0 0 5px 5px); .explore-product { padding: 10px 0; font-size: 12px; border-top: 1px solid #ccc; .rownum{ font-size: 12px; float:left; } .explore-product-imgcolumn { padding-left: 5px; padding-right: 5px; } .imageContainer{ - height:167px; + height:167px; display:flex; justify-content: center; - align-items: center; + align-items: center; } .explore-product-image { max-width: 95%; max-height: 167px; } - + .contentLeft { - float: left; + float: left; padding-right: 0px; width: 270px; img{ - max-width: 167px; - max-height: 167px; + max-width: 167px; + max-height: 167px; } - + div.productimg { width: 167px; height: 167px; } } - + .explore-product-details { padding-left: 20px; - - h3 { - font-size: 24px; + + h3 { + font-size: 24px; font-weight: bold; color: #2673b0; span.version { - font-size: smaller; + font-size: smaller; padding-left: 20px } } .title{ display: block; margin-bottom: 8px; .username{ padding-left: 20px; } } .description{ display: block; margin-bottom: 8px; } .packagetypes{ display: block; float: left; .packagetypeos{ width: 100px; float: left; } } .productInfo { clear: left; padding-top: 5px; span.cntSupporters { padding-right: 20px; } } } .explore-product-plings { - padding: 0; - + padding: 0; + .rating { width: 50%; } .progress { margin-bottom: 10px; padding: 3px; opacity:0; margin-bottom: 0; height:12px; opacity:1.0; - background-color: transparent; - box-shadow: none; + background-color: transparent; + box-shadow: none; padding:2px; - + .bar { width: 4px; max-width: 100%; height: 14px; background-color: #2673b0; .border_radius(5px); .box_shadow(inset 0 6px 0 rgba(255,255,255,0.2)); &.no-goal { width: 50%; opacity: 0; } } } .collected { span { display: block; width: 100%; float: left; } } } &:first-of-type { border-top:0; } } } .explore-footer { width: 100%; text-align: center; - + .projectPaginationControl { width: auto; display: table; margin: 0 auto; ul#pagination-digg { padding: 0; list-style-type: none; margin: 20px 0; height: auto; overflow: hidden; li { float: left; font-size: 16px; font-weight: normal; margin: 0 4px; } } } } } aside#explore-sidebar { padding-left: 0; margin-bottom: 20px; } /** /BROWSE PAGE **/ /** COMMUNITY PAGE **/ - main#community-page { + main#community-page { .head-wrap { padding-top: 1em; height: auto; background-size: cover; position: relative; .wrapper { width: 95%; } .page-title { height: 3em; position: relative; margin-bottom: 2em; .center { position: absolute; top: 0; left: 0; width: 100%; height: 3em; text-align: center; > div { background: rgba(246,246,246,0.86); width: auto; display: table; float: none; margin: 0 auto; >h1 { margin: 0 .5em; } } - } + } hr { margin-top: 20px; margin-bottom: 20px; border: 0; border-top: 1px solid #eee; border-bottom: 1px solid white; float: left; width: 100%; } } } .banner { margin: 0 auto; float: none; background: white; border: 1px solid #e4e4e4; padding: 0; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; text-align: center; .top { padding: 1em; font-size: 1em; - + .large { font-size: 2em; } } .bottom { padding: 1em; background: rgba(231,231,231,0.4); border-top: 1px solid #e4e4e4; .border_radius(0 0 9px 9px); a { margin-right: 5px; } } } .body-wrap { background: white; position: relative; .wrapper { width: 70%; } #user-lists { padding-top: 1em; #community-tabs{ - margin-bottom:20px; + margin-bottom:20px; text-align:center; - .pling-nav-tabs{ - .nav-tabs { + .pling-nav-tabs{ + .nav-tabs { text-align:center; } .nav-tabs > li, .nav-pills > li { float:none; - display:inline-block; + display:inline-block; } } } - .list{ - display:block; + .list{ + display:block; margin:auto; padding-right: 15px; padding-left: 15px; display:flex; flex-wrap: wrap; align-items: center; justify-content: center; .u-wrap{ float: left; width: 100%; padding: 0.3em; border: 0.35em solid #dee0e0; border-radius: 5px; height: 14em; margin-bottom: 1em; background: white; width: 115px; height: 200px; margin-right: 10px; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; position: relative; text-align: center; figure { float: left; padding: .25em; border: 1px solid #dbdbdb; background: #f6f6f6; .border_radius(999px); img{ width: 100%; border: 1px solid #dbdbdb; -webkit-border-radius: 999px; -moz-border-radius: 999px; border-radius: 999px; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } - } + } h3{ font-size: 13px; font-weight: bold; word-wrap: break-word; line-height: 20px; height: 20px; padding: 0; margin: 0; } span.small { - font-size: 13px; - color: #444; + font-size: 13px; + color: #444; position: absolute; bottom: 5px; right: 5px; } div.projecttitle{ - font-size: 11px; + font-size: 11px; } span.rank { font-size: 14px; position: absolute; bottom: 5px; - left: 5px; - color: #444; + left: 5px; + color: #444; font-weight: bold; } - + } } /* .list { .user { padding: 0 5px; - + .u-wrap { float: left; width: 100%; padding: .3em; border: .35em solid #dee0e0; border-radius: 5px; height: 14em; margin-bottom: 1em; background: white; .transition(0.2); - + .u-content { padding: 0; - + span { width: 100%; float: left; display: block; font-size: 12px; } } a { float: left; width: 100%; height: 100%; display: block; position: relative; } figure { float: left; padding: .25em; border: 1px solid #dbdbdb; background: #f6f6f6; .border_radius(999px); img { width: 100%; border: 1px solid #dbdbdb; -webkit-border-radius: 999px; -moz-border-radius: 999px; border-radius: 999px; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } } h3 { font-size: 13px; font-weight: bold; word-wrap: break-word; line-height: 20px; height: 20px; padding: 0; margin: 0; } p.small { font-size: 14px; position: absolute; bottom: 0; left: 0; width: 100%; margin: 0; color: black; text-align: right; color: #444; } span.rank { font-size: 14px; position: absolute; bottom: 0; left: 0; width: 100%; - margin: 0; + margin: 0; color: #444; font-weight: bold; } } } } */ } } } /** /COMMUNITY PAGE **/ /** PRODUCT PAGE **/ #product-page-content { padding: 0; - + #product-main-img { #product-title-div { padding-left: 30px; min-height:105px; padding-top: 20px; display: flex; .product-title{ flex:0 0 80%; font-size: 25px; - color: #2673b0; + color: #2673b0; font-weight: bold; padding-bottom: 15px; } .product-title-right{ flex:1; } img.logo { max-height: 85px; max-width: 85px; float: left; padding-right: 15px; border-radius: 0px; } .product-logo-container { - float: left; - width: 95px; + float: left; + width: 95px; } .product_category { - font-size: small; - display: block; + font-size: small; + display: block; font-weight: normal; } .topics{ padding-right: 20px; float: right; .topic-tag { display: inline-block; padding: 0.3em 0.9em; margin: 0 0.5em 0.5em 0; white-space: nowrap; background-color: #f1f8ff; border-radius: 3px; } .usertagslabelcat{ background-color: #f1f1f1; } .topic-tag-link { &:hover { text-decoration: none; background-color: #def; - } - } + } + } .btn-link{ display: inline-block; padding: 0; font-size: inherit; color: #0366d6; text-decoration: none; white-space: nowrap; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-color: transparent; border: 0; -webkit-appearance: none; -moz-appearance: none; appearance: none; float: right; padding-top: 5px; padding-left: 10px; } .topic-tags-saved{ - display: none; + display: none; color: #0366d6; - float: left; + float: left; padding-top: 5px; padding-left: 10px; .fa-check{ color: green; } } } - + span.source{ color:#4e4e4e; } div.projectdetailRating{ - float: right; - width:150px; + float: right; + width:150px; z-index: 100; - - + + } div.projectdtailHeart{ - float: right; - + float: right; + margin-right: 5px; width: 80px; - + .container-pling{ - position: relative; + position: relative; width: 80px; .partialbuttonfollowproject{ text-align: center; width: 80px; height: 30px; } .partialbuttonplingproject { text-align: center; } } } - + div.projectdtailHeart{ - float: right; + float: right; z-index: 100; margin-right: 5px; width: 50px; - + .container-pling{ - position: relative; + position: relative; width: 50px; .partialbuttonfollowproject{ text-align: center; width: 45px; height: 45px; } .partialbuttonplingproject { text-align: center; } } } .heartproject{ position:relative; - color:#8e44ad; + color:#8e44ad; font-size: 45px; display: block; } div.heartnumber{ z-index: 3; - position: relative; - top: -32px; + position: relative; + top: -32px; display: block; margin: auto; color: #fff; } .heartgrey{ position: relative; color: #C8C8C8; font-size: 45px; display: block; } /* .heartproject{ - - color:#8e44ad; + + color:#8e44ad; font-size: 25px; display: block; float: right; } .heartgrey{ position:relative; - color:#C8C8C8; + color:#C8C8C8; font-size: 25px; display: block; float: right; } div.heartnumber{ - + } - + */ - + span.plingcircle{ width: 30px; height: 30px; background-color: #fff; border: 3px solid #C8C8C8; border-radius: 50%; display: inline-block; font-size: 17px; text-align: center; color: #C8C8C8; font-weight: bold; transform: rotate(345deg); - + } span.active{ border: 3px solid #EE6E09; color: #EE6E09; } div.plingtext{ - + } div.heartnumberpurple{ color: #8e44ad; - + } - + } } #product-tabs-container { padding-top: 30px; - + #product-actions { - margin-top:25px; + margin-top:25px; margin-right: 10px; } } #product-tabs { font-size: 10pt; padding-left: 25px; } /* ul.nav-tabs { padding: 0 15px; border-bottom: 0; width: auto; float: left; - + li { float: left; margin-bottom: -1px; a { color: white; background-color: #21659b; .border_radius(10px 10px 0 0); } } li.active, li:hover, li:focus { a { border-color: #21659b; - background-color: #2673b0; + background-color: #2673b0; } } } */ #product-panels { background: none repeat scroll 0 0 #fff; height: auto; overflow: hidden; /* border-top: 2px solid #21659b;*/ - border-radius: 0px; + border-radius: 0px; padding: 15px; float: left; width: 100%; margin: 0; .tab-pane { width: 100%; float: left; background-color: white; padding: 4px; h3 { color: #2673b0; margin-bottom: 20px; margin-top: 0; } .panel-grey-part { padding: 15px; background-color: #f3f3f3; color: #2673b0; border-left: 1px solid #e5e5e5; } &#about-panel { #product-about { - padding: 20px 10px 10px 10px; + padding: 20px 10px 10px 10px; article { padding-top: 15px; } article.lastchangelog{ padding-top: 50px; } - } - + } + #product-discussion { - - - + + + } } &#donations-panel { #comments { width: 100%; float: left; padding: 15px; } .list#supporters { padding: 15px; } } &#ratings-panel{ .productRating-rows-inactive{ color: #ddd ; display: none; } .userimg{ - border-radius: 50%; - border: 1px solid #ccc; - width: 40px; + border-radius: 50%; + border: 1px solid #ccc; + width: 40px; height: 40px; } span.o-thumbs-up{ - color:green; - padding-left:10px; + color:green; + padding-left:10px; padding-top:10px } span.o-thumbs-down{ - color:red; - padding-left:10px; + color:red; + padding-left:10px; padding-top:10px } } } #files-panel{ padding-top: 30px; table.table-ocs-file{ td{ padding: 3px; vertical-align: middle; padding-left: 8px; - } + } th{ padding-right: 3px; - } + } } .btn{ padding: 3px 5px; } } #updates-panel{ span.product-update-date{ padding-left: 10px; } } #likes-panel{ .u-wrap{ - float: left; + float: left; padding: 0.3em; border: 0.35em solid #dee0e0; border-radius: 5px; height: 14em; margin-bottom: 1em; background: white; width: 115px; height: 200px; margin-right: 10px; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; figure img{ width: 100%; border: 1px solid #dbdbdb; -webkit-border-radius: 999px; -moz-border-radius: 999px; border-radius: 999px; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } h3{ font-size: 13px; font-weight: bold; word-wrap: break-word; line-height: 20px; height: 20px; padding: 0; margin: 0; } span.small { font-size: 13px; text-align: right; color: #444; margin-top: 50px; float: right; } } } } - + } span.page-views { float: left; font-size: 12px; padding: 5px 15px 5px 0px; color: #2673b0; } #product-maker { background-color: #f1f1f1; .project-share-new { padding-bottom: 10px; padding-top: 10px; >.row { padding-left: 30px; } .prod-user { margin-top: 10px; .product-maker-thumbnail { float: right; .supporter-badge{ position: absolute; left: 0px; bottom: 0px; background: #EE6E09; text-align: center; border-radius: 15px 15px 15px 15px; color: #fff; padding: 2px 5px; font-size: 10px; } } .product-maker-summary { float:right; padding-right: 20px; } } .prod-info { - font-size: 12px; - + font-size: 12px; + padding-bottom: 10px; > span { - width: 100%; + width: 100%; float: left; padding-left: 15px; } - + } .prod-download { > a { position: relative; display: block; - float: left; + float: left; color:#2673b0; .gradient_color(#E8E8E8, #D6D6D6); .box_shadow(inset 0 0 0 1px rgba(154, 154, 154, 0.45)); padding: 10px; .border_radius(5px); height: 50px; font-size: 16px; line-height: 30px; padding-left: 15px; margin-right: 5px; margin-bottom: 10px; .glyphicon { font-size: 30px; margin: 0; position: absolute; height: 30px; width: 30px; display: block; top: 10px; left: 10px; } .txt { float: left; width: 100%; height: 30px; > span { text-transform: capitalize; } } } } #donation-box { margin: 0 -10px; } } /* - div.projectdtailHeart{ + div.projectdtailHeart{ .container-like{ position: relative; width: 80px; height: 30px; float: left; - + .heartproject{ position:relative; - color:#8e44ad; + color:#8e44ad; font-size: 30px; display: block; float: right; } .heartgrey{ position:relative; - color:#C8C8C8; + color:#C8C8C8; font-size: 30px; display: block; float: right; - + } .likelabel{ line-height: 29px; } div.heartnumber{ z-index: 3; - position: relative; - top: -24px; - display: block; + position: relative; + top: -24px; + display: block; color:#fff; text-align: center; } div.heartnumberpurple{ color: #8e44ad; - + } } .container-pling{ - position: relative; + position: relative; .partialbuttonfollowproject{ text-align: center; width: 45px; height: 45px; } .partialbuttonplingproject { text-align: center; } } } */ - + } .prod-widget-box { border: 1px solid #ccd4d8 !important; font-size: 10pt; padding: 5px; margin-bottom: 10px !important; width: 95% !important; .product-row { .product-thumbnail { width: 75px; height: 77px; margin: 7px; padding: 10px; position: relative; img { border-radius: 5px; border: 1px solid #b2b2b2; height: 75px; width: 75px; } } } #pling-box { .donation-box { padding-top: 10px; padding-bottom: 15px; width: 100%; height: auto; - + >div { height: auto; } } } #comments { figure { width: 40px; height: auto; text-align: center; border-top: 1px solid #f5f5f5; padding: 0 0 15px 0; float: left; img { margin: 0 auto; width: 70%; } } } &.details { span{ line-height: 1.65em; font-size: 8.25pt; } span.title { - font: 12pt Trebuchet MS,sans-serif; - display: block; + font: 12pt Trebuchet MS,sans-serif; + display: block; padding-bottom: 10px; } span.value { - font-size: 9pt; + font-size: 9pt; } } } #product-donate { display: none; width:550px; height:300px; font-size: 13px; } /** /PRODUCT PAGE **/ /** REGISTER **/ main#reg-page { width: 100%; height: 100%; .form-control-feedback { line-height: 40px; } - + section#register-wrap { position: fixed; top: 20%; left: 50%; margin-left: -290px; width: 580px; input[type="text"], input[type="password"] { border-width: 1px; height: 41px; margin: 4px 0; width: 100%; float: none; padding: 0 5px; .border_radius(4px); .box_shadow(inset 0 1px 1px rgba(0,0,0,0.15)); } input[type="checkbox"] { height: 20px; width: auto; } label { font-size: 12px; } button#login { margin-top: 8px; width: 120px; } - + #register { width: 100%; margin: auto; background: #f5f5f5; padding: 10px; - border-radius: 5px; + border-radius: 5px; @media(max-width:800px){ max-height: 400px; overflow-y: auto; } @media(max-width:550px){ - + max-height: 300px; overflow-y: auto; } @media(max-width:350px){ - + max-height: 200px; overflow-y: auto; } h3 { text-align: center; font-weight: 400; position: relative; margin: 10px 0 13px 0; } #register-box { padding-left: 0; padding-right: 0; min-height: 373px; #register-form-box { background-color: white; margin-bottom: 0; width: 373px; } } #social-register { padding-top: 20px; padding-right: 15px; padding-left: 30px; float: right; #social-login-elements { margin-bottom: 91px; } > div { float: left; width: 100%; } form { - + button { background-image: url(../img/bg_sheet.png); font-size: 14px; display: block; font-weight: 300; color: white; width: 140px; height: 41px; margin: 0; border: none; text-align: left; text-indent: 10px; padding-left: 41px; } button.facebook { background-position: 0 -189px; margin-top: 4px; } button.twitter { background-position: 0 -232px; margin-top: 7px; } } .bottom { .small { margin-bottom: 6px; text-align: center; } .login2 a { width: 100%; } } } } - + #login-form-box { background-color: white; margin-bottom: 0; position: absolute; top: 0; bottom: 0; } } #thumbs { z-index: -1; width: 100%; min-height: 700px; overflow: hidden; position: relative; background: rgba(0,0,0,1); div.thumb { - width: 5.5555%; + width: 5.5555%; max-height: 100px; padding: 0; /*height: auto;*/ float: left; background: rgba(0,0,0,0.8); - + a { float: left; width: 100%; height: auto; display: block; position: relative; - + > span { width: 100%; height: 100%; display: block; position: absolute; top: 0; left: 0; background: rgba(0,0,0,0.8); -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; } - + img { width: 100%; height: auto; } } - + } } } .login-popup { position: relative; background: white; padding: 0; width: 420px; margin: 0 auto; - + .login-popup-form { background: #fff; border-radius: 10px; padding: 20px; float: left; margin: 0; width: 440px; .login-form-container { position: relative; - + form { margin: 0; - input, - textarea, + input, + textarea, select { border: 1px solid #bdc3c7; padding: 0; border-radius: 5px; } .inputbox { border: 1px solid #eaedf2; border-radius: 3px; height: 40px; padding: 10px 0 10px 32px; width: 100%; outline: none; margin-bottom: 10px; font-family: inherit; } .email { background: #eaedf2 url(../img/email.png) 10px 15px no-repeat; } .password { background: #eaedf2 url(../img/password.png) 10px 10px no-repeat; } .container-checkbox-remember-me { height: 20px; clear: both; margin-bottom: 10px; input { height: 20px; margin: 0 5px; float: left; width: auto; } label { display: inline-block; font-weight: bold; font-size: 13px; float: left; } } } } .login-form-links { position: absolute; bottom: 10px; right: 20px; font-size: 13px; a { font-size: 13px; } } - } - + } + p { font-size: 15px; margin-bottom: 0; text-align: left; } .social { margin: 20px 0 15px; a { color: #fff; text-decoration: none; font-weight: bold; border-radius: 4px 4px 4px 4px; margin-right: 10px; float: left; height: 40px; - } + } } } /** /REGISTER **/ /** USER ADMIN PAGE **/ .user-admin-page { position: relative; .head-wrap { padding-top: 1em; height: auto; background-size: cover; position: relative; padding-bottom: 1.9em; .about-me-header { figure { width: 6.9em; height: 6.9em; padding: .3em; border: 1px solid #dbdbdb; background: white; position: absolute; z-index: 10; .border_radius(999px); img { width: 100%; height: 100%; .border_radius(999px); } } .user-menu { position: relative; height: auto; background: white; float: left; margin-top: 1.5em; padding: .5em 2em .5em 8em; .border_radius(50px 0 0 50px); .intro { margin-top: 0; } } } } .body-wrap { background: white; position: relative; .product-page { padding-top: 1em; } /* ul.nav-tabs { li { a { padding: .7em 1em; font-size: .9em; height: 2.95em; color: #2673b0; &.active { color: #21659b; } } } } */ } .my-products-page, .my-payments-page { padding-bottom: 2em; .my-products-heading { padding-bottom: 20px; margin-bottom: 20px; margin-top: 20px; border-bottom: 1px solid #c1c1c1; float: left; width: 100%; .num-products { margin-top: 35px; } } .my-products-list { float: left; width: 100%; } .my-product-item { margin-bottom: 20px; - + figure { height: auto; padding: 0; img.explore-product-image { width: 101px; height: auto; padding-top: 10px; } } article { >div { float: left; width: 100%; } .title { margin-bottom: 10px; h3 { margin: 0; padding: 0; } } .info { ul { list-style-type: none; padding: 0; margin: 0; li { float: left; width: auto; font-size: 12px; span+span { margin-left: 5px; font-weight: bold; } } li + li { margin-left: 15px; } } } .text { font-size: 12px; margin: 5px 0 10px 0; p { margin: 0; } } .buttons { a.btn.btn-native { color: white; font-size: 12px; padding: 3px 6px; } a.btn.pling-danger{ background-color: #C82333; } } } } .my-product-divider { - border-bottom: 1px solid rgb(193, 193, 193); + border-bottom: 1px solid rgb(193, 193, 193); margin-bottom: 20px; width: 97%; margin-left: 15px; } #my-earnings-list { ul.nav-tabs { top: 0; position: relative; margin: 0; border-radius: 5px 5px 0 0; padding: 10px; padding-bottom: 0; > li { - + > a { padding: .7em 1em; font-size: .9em; height: 2.95em; color: #2673b0; } } } #my-earnings-tabs { padding: 10px; border: 1px solid #ddd; border-radius: 0 0 5px 5px; .tab-pane { font-weight: bold; .row { margin: 0; h3 { margin: 5px 0; } } } } } } } .modal-ppload { .content-modal { width: 950px; } } /** /USER ADMIN PAGE **/ /** MEMENER PAGE **/ .about-me-page { .my-fav-list{ width: 1100px; .totaldownloads{ margin:0; padding: 20px; text-align: right; } .smaller{ font-size: smaller; } - .row{ + .row{ border-bottom:1px solid #ccc; padding-top:15px; padding-bottom:15px; - } + } .rating{ width: 60px !important; font-size: 10pt; } .downloadhistory-image{ width: 50px; height: 50px; - float: left; - margin-right: 15px; + float: left; + margin-right: 15px; } .nowrap{ white-space: nowrap; } i.voteup{ color: #409540; - font-size: 20px; - padding-left:5px; + font-size: 20px; + padding-left:5px; padding-right:5px; } i.votedown{ color: #C9302C; - font-size: 20px; - padding-left:5px; + font-size: 20px; + padding-left:5px; padding-right:5px; } .newusers{ - + .u-wrap{ float: left; width: 100%; padding: 0.3em; border: 0.35em solid #dee0e0; border-radius: 5px; height: 14em; margin-bottom: 1em; background: white; width: 115px; height: 200px; margin-right: 10px; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; position: relative; figure img{ width: 100%; border: 1px solid #dbdbdb; -webkit-border-radius: 999px; -moz-border-radius: 999px; border-radius: 999px; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } h3{ font-size: 13px; font-weight: bold; word-wrap: break-word; line-height: 20px; height: 20px; padding: 0; margin: 0; } div.small { - font-size: 13px; - color: #444; + font-size: 13px; + color: #444; position: absolute; bottom: 5px; right: 5px; img.plingactivesmall{ width: 20px; height:20px; } .cntplings{ line-height: 20px; } - } + } } } } > .head-wrap { padding-top: 1em; height: auto; background-size: cover; - position: relative; + position: relative; padding-bottom: 1em; .page-title { height: 3em; position: relative; margin-bottom: 2em; margin-top: 2em; .center { position: absolute; top: 0; left: 0; width: 100%; height: 3em; text-align: center; > div { background: #f6f6f6; width: auto; display: table; float: none; margin: 0 auto; > h1 { margin: 0 0.5em; } } } hr { margin-top: 20px; margin-bottom: 20px; border: 0; border-top: 1px solid #eee; border-bottom: 1px solid white; float: left; width: 100%; } } } .header { height: auto; position: relative; margin-bottom: 3em; > div.col-lg-8 { padding-right: 5px; padding-left: 0; } > div.col-lg-4 { padding-right: 0; padding-left: 5px; } .about { display: none; .well { background-color: white; padding: 1em; height: 22.5em; h2 { font-size: 1.4em; margin: 0; min-height: 1.4em; line-height: 1.2em; border-bottom: 1px solid #dbdbdb; font-weight: normal; } article { border-top: 1px solid #f5f5f5; padding-top: 0.5em; width: 100%; float: left; overflow: hidden; height: 18.5em; > .scroll-pane { height: 18em; } } } } .summary { float: none; margin: 0 auto; article { padding: 0; background-color: white; height: auto; float: left; .about-title { padding: 1em; height: 8.9em; padding-left: 8.9em; position: relative; background: rgba(246, 246, 246, 0.45); border-bottom: 1px solid #e1e1e1; float: left; width: 100%; figure { width: 6.9em; height: 6.9em; padding: 0.3em; border: 1px solid #dbdbdb; background: white; position: absolute; top: 1em; left: 1em; display:inline-block; .border_radius(999px); img { width: 100%; height: 100%; .border_radius(999px); } } .supporter-badge{ position: absolute; left: 0px; bottom: 0px; background: #EE6E09; text-align: center; border-radius: 30px 30px 30px 30px; color: #fff; padding: 5px 10px; font-size: 16px; } .mod-badge{ - display: block; - text-align: center; + display: block; + text-align: center; padding-top: 3px; font-size: small; } h1 { margin: 1.5em 0 0 0; font-size: 1.5em; min-height: 1.7em; line-height: 1em; } } .about-content { padding: 1em; float: left; > div { float: left; width: 100%; span { float: left; display: block; line-height: 1.25em; } span.glyphicon { color: #939292; margin-right: 0.25em; font-size: 1.25em; } span + span { line-height: 1.65em; } &.social-icons { a { font-size: 1.35em; height: 1em; width: 1em; display: block; float: left; img { width: 100%; height: 100%; vertical-align: top; } } a + a { margin-left: 0.25em; } } } div + div { margin-top: 0.25em; } } .about-footer { float: left; width: 100%; padding: 1em; .info-div { width: 100%; float: left; } .info-div + .info-div { margin-top: 5px; } .social-share { .social + .social { margin-left: 0.5em; } } - + > .pull-right { em.report-icon { height: 1.5em; width: 1.5em; margin-top: 0.5em; background-size: cover; } } } } } } .about-me-details { padding-left: 0; padding-right: .5em; - + .tab-content{ padding-top: 20px; } - + h3.about-me-heading { font-size: 1.5em; margin: 0; min-height: 1.9em; line-height: 1.9em; border-bottom: 1px solid #dbdbdb; font-weight: normal; } article { padding-top: 0.5em; padding-bottom: 1.5em; width: 100%; float: left; } .my-products-list { h3 { width: 100%; margin-bottom: 20px; } .cat-title { padding: 0 5px; position: relative; height: 2em; margin-bottom: 1em; margin-top: 1.1em; > div { position: absolute; top: 0; left: 1em; background: white; height: 2em; width: auto; padding: 0 0.5em; > h2 { margin: 0; } } hr { float: left; width: 100%; margin-top: 1em; margin-bottom: 1em; border-bottom: 1px solid #F9F9F9; } } .mini-card { width: 14.28571%; margin-bottom: 10px; p { img { vertical-align: baseline; } } } } - + } aside { .details { float: left; width: 100%; height: auto; padding: 0.5em; h3 { line-height: 2em; font-size: 1em; margin: 0; color: #a3a2a2; border-bottom: 1px solid #e1e1e1; } .box-content { padding: 0.5em 0 0 0; border-top: 1px solid #ededed; > div { width: 100%; float: left; height: auto; margin-top: 0.5em; .label { /*width: 10%;*/ float: left; padding: 0; em, span { font-size: 1.7em; float: left; display: inline-block; color: #AAA; } em { display: block; width: 1em; height: 1em; background-size: cover; &.fb-link { background-image: url('../img/social_icons/fb.png'); } &.tw-link { background-image: url('../img/social_icons/tw.png'); } &.gp-link { background-image: url('../img/social_icons/g_plus.png'); } &.gt-link { background-image: url('../img/social_icons/github.png'); } } } .text { width: 90%; float: right; font-size: 1em; min-height: 1.5em; line-height: 1.3em; } } } } } } /**-- MINI CARDS --**/ .mini-card { padding: 0 2px; width: 14.28571%; margin-bottom: 10px; .u-wrap { float: left; width: 100%; border: 2px solid #DEE0E0; .border_radius(5px); height: 15em; margin-bottom: 4px; background: white; .transition(); a { float: left; width: 100%; height: 100%; display: block; position: relative; } figure { width: 100%; float: left; height: 120px; img { width: 100%; height: 120px; .border_radius(3px 3px 0 0); } } .rating { font-size: 11px; position: absolute; right: 10px; bottom: 10px; } .u-content { width: 100%; float: left; padding: 3px; height: 5.5em; position: relative; overflow: hidden; .productCategory { color: #4e4e4e; display: block; font-size: 11px; } > h3 { font-size: 12px; word-wrap: break-word; width: 100%; margin: 2px 0 4px 0; } > p { font-size: 15px; position: absolute; bottom: 0; right: 3px; width: 100%; margin: 0; color: black; font-weight: bold; text-align: right; color: #444; } } &:hover { border-color:#DEE0E0; background: rgba(246,246,246,1); figure { background: white; } } } @media(max-width:800px){ width: 16.6666667%; .u-wrap { - height:12em; + height:12em; } } @media(max-width:550px){ width: 20%; .u-wrap { height: 14em; } } @media(max-width:350px){ width: 33.333333%; - + .u-wrap { height:16em; } } } .product-card { width: 10%; height: auto; padding: 0 3px; margin-bottom: 10px; height: auto; > a { display: block; float: left; width: 100%; height: auto; //height: 100%; position: relative; .card { //width: 100%; //height: 100%; //position: absolute; //padding-top: 3px; > .border { position: absolute; top: 0; left: 0; width: 100%; //height: 3px; background-color: @newblue; } > .p-wrap { width: 100%; height: 8.25em; border: 2px solid #c5ced5; //border-top: 0; background-color: white; .border_radius(5px); > figure { width: 100%; height: 3.5em; overflow: hidden; display: block; float: left; border-bottom:1px solid #c5ced5; > img { height: 100%; width: 100%; } } > .content { width: 100%; float: left; padding: 0.25em; font-size: 1em; height: 3.5em; > h3 { font-size: .7em; margin: 0; color: #34495e; display: block; width: 100%; height: 100%; overflow: hidden; - word-break: break-word; + word-break: break-word; } } > .footer { float: left; width: 100%; height: 1em; line-height: 1em; font-size: 1em; text-align: right; padding: 0 0.1em; background-color: #f5f5f5; .border_radius(3px); //border-top: 1px solid #c5ced5; > p { font-weight: bold; font-size: 0.75em; color: #a7a7a7; } } } } > .empty-card { width: 100%; //height: 100%; } } @media(max-width:800px){ width: 16.6666667%; } @media(max-width:550px){ width: 20%; } @media(max-width:350px){ width: 33.333333%; } } /**-- MINI CARDS --**/ /** /MEMBER PAGE **/ /** ADD PRODUCT PAGE **/ .wizard { > .content { > .body { position: inherit; input.error, select.error, textarea.error { background: none repeat scroll 0 0 #fbe3e4; border: 1px solid #fbc2c4; color: #8a1f11; } } } > .steps { li { a { background: #eee none repeat scroll 0 0; color: #aaa; cursor: default; &:hover { cursor: pointer; - } + } } } > ul { > li { width: 20%; } } } } /** STEP 1 **/ .add-product-top { width: 100%; margin: 20px 0 100px 0; padding: 0 15px; h1 { margin-bottom: 0; font-size: 2em; } ul.steps { width: auto; margin-bottom: 0; li { float: left; display: inline-block; list-style: none; margin: 0; color: #bdc3c7; border-bottom: 2px solid #bdc3c7; padding: 1em 2.5em; font-size: 1em; width: auto; } li.active { color: @newblue; border-bottom: 2px solid @newblue; } } } .add-product-container { padding-bottom: 40px; > form { width: 50%; margin: 0 auto; .field { label { width: 100%; } input, textarea { width: 100%; } select { height: 35px; width: 48%; } select + select { float: right; } } button + button { margin-right: 10px; } } } .add-product-form { margin: auto; } .mandatory { top: 2px; left: -240px; width: 220px; text-align: right; } .bold-font { font-size: 18px; font-weight: bold; } .field-missing-container { top: 26px; right: -240px; width: 230px; } .field-missing-left { margin-top: 6px; float: left; width: 8px; height: 22px; background: url(../img/field-missing-left.png); } .field-missing { float: left; background: #fadbd8; border-radius: 5px; color: #e74c3c; padding: 12px; max-width: 190px; word-break: normal; word-wrap: break-word; } .add-more { right: 10px; } a.add-more:hover { text-decoration: underline; } .icon-plus { margin-left: 5px; width: 15px; height: 15px; background: url(../img/icon-plus.png); } .product-gallery { margin-bottom: 30px; .product-image { float: left; margin: 5px 5px 0 0; img { max-width: 110px; max-height: 110px; overflow: hidden; border-radius: 5px; border: 3px solid @newblue; &:hover { border: 3px solid #bdc3c7; } } .image { width: 110px; height: 77px; overflow: hidden; border-radius: 5px; border: 3px solid @newblue; background-size: 110px; background-position: center center; } .image:hover { border: 3px solid #bdc3c7; } .icon-check { width: 20px; height: 20px; background: url(../img/icon-check.png); } .icon-cross { display: none; width: 20px; height: 20px; background: url(../img/icon-cross.png); right: 0; cursor: pointer; } } .upload-image-container { .upload-image { float: left; cursor: pointer; width: 116px; height: 83px; background: url(../img/icon-upload.png); background-position: 0px -15px; margin: 5px 0 0 -5px; .border_radius(10px); } .upload-image:hover { background: url(../img/icon-upload-hover.png); background-position: 0px -15px; } } } input.product-picture, input.title-picture, input.gallery-picture { opacity: 0; margin-bottom: 0; height: 0; width: 0; position: absolute; } #product-picture-container, #title-picture-container { max-width: 110px; max-height: 110px; overflow: hidden; } img#product-picture-preview, img#title-picture-preview { display: none; margin-top: 20px; } #embed-code { margin-top: 20px; } /** /STEP 1 **/ /** /STEP 2 **/ .add-page-preview { background: rgba(46, 49, 51, 0.8); color: white; position: fixed; margin-top: 0; width: 100%; z-index: 1; > .container { padding-bottom: 20px; } .add-product-mid { > .left { width: 100%; } } } .preview-container > .row-fluid { margin-top: 220px; } .preview-title { font-size: 18px; margin: 0 60px 0 15px; padding-top: 15px; } .preview-explanation { padding-top: 18px; } .add-page-preview .add-product-top { border-bottom: 1px solid #393d3f; margin-bottom: 10px; } .add-page-preview ul.steps { margin-bottom: 0; } .paypal-label { font-size: 17px; margin: 15px 60px 0 30px; } .icon-paypal { width: 40px; height: 40px; background: url(../img/icon-paypal.png); margin: -10px 30px 0 0; } .preview-inputs { padding: 10px 0; border-bottom: 1px solid #393d3f; } .preview-buttons { padding: 20px 0 0 0; } .preview-buttons .btn.right { margin-left: 10px; } input.preview-input { margin-left: 20px; width: 250px; height: 35px; } /** /STEP 2 **/ /** /ADD PRODUCT PAGE **/ /** SETTINGS PAGE **/ .settings-page { > .about-me { float: left; width: 100%; margin-bottom: 40px; } .settings-options { padding: 0; } } /** main settings panel **/ .settings-main { padding-right: 0; margin-bottom: 40px; .panel { .panel-heading { position: relative; h4 { a { font-size: 1.2em; padding: 0.5em 0.5em; &:hover { text-decoration:none; color: @newblue; } } } span.glyphicon-chevron-down { position: absolute; top: 50%; margin-top: -0.5em; right: 0.5em; .rotate(0deg); .transition(); } &.active { span.glyphicon-chevron-down { .rotate(180deg); } } } .panel-body { padding: 0.5em; > form { padding: 0.5em; margin-bottom: 0; > .row { > div { input[type="text"], input[type="password"], textarea { width: 100%; padding: 0 5px; } textarea.about { padding: 0.5em 1em 0.5em 0.5em; } } .btn.pull-right { margin-right: 15px; } } > hr { margin-top: 1em; margin-bottom: 1em; border: 0; border-top: 1px solid #eee; border-bottom: 1px solid white; } } } } ul.errors, ul li.text-error { color: #b94a48; list-style-type: none; font-size: 0.8em; padding: 0; display: inline-block; } input.input-error, textarea.input-error { border: 1px solid #b94a48; } .form-success { color: #48B96C; } .section-body { padding: 15px 15px 0 15px; display: none; border-bottom: 1px solid #bdc3c7; .row:last-of-type { margin: 0 0 15px 0; } hr { display: block; height: 0; border-top: 1px solid #bdc3c7; padding: 0 1em; width: 100%; margin: 10px 0 20px -15px; } .row, .field { input[type="text"], input[type="password"], textarea { width: 100%; } } } #form-profile { textarea.about { height: 228px; } } #form-picture,#form-picture-background { .image-preview { display: block; padding: 0px; margin: 10px auto; width: 100%; max-width: 200px; height: auto; > img { width: 100%; height: auto; } } .image-info { margin: 22px 0 0 -20px; padding: 0px 0 0 35px; border-left: 1px solid #bdc3c7; height: 200px; p { margin-bottom: 30px; } } } #form-website { .clipboard-copy { background: rgba(8, 165, 193, 0.49); padding: 7px; position: relative; padding-right: 230px; margin-bottom: 20px; border-radius: 7px; .btn-purple { position: absolute; top: 0px; right: 0px; padding: 7px 35px; } .clipboard-code { margin: 0; width: 100%; color: white; background: 0; padding: 0; box-shadow: none; font-size: 16px; } } } #form-newsletter { .newsletter-label { margin: 5px 10px 0 0; } #newsletter { height: 14px; float: left; width: auto; margin: 7px 0 0 0; cursor: pointer; } } #add-profile-picture { width: 100%; max-width: 200px; } } /** /main setting panel **/ /** side bar **/ .profile-summary { padding: 15px; background: #FDFDFD; .profile-image-container { width: 123px; height: 123px; margin: auto; border: 1px solid #ccc; padding: 0.25em; background: white; .border_radius(123px); .profile-image { img { width: 100%; height: 100%; border: 1px solid #ccc; .border_radius(123px); } } } .profile-name { font-size: 20px; margin-bottom: 45px; } .last-active { font-size: 12px; margin-top: 5px; } } /** /sidebar **/ #overlays { .clipboard-copy { background: #ebf5fb; padding-left: 10px; margin-bottom: 20px; .clipboard-code { margin: 10px 0; } } } div.image { display: inline-block; margin-left: 5px; width: 17px; height: 17px; } div.image.checked { background: url(/theme/flatui/img/icon-check-round-green.png) no-repeat; } div.image.unchecked { background: url(/theme/flatui/img/icon-question-round.png) no-repeat; } input.product-picture, input.title-picture, input.gallery-picture { opacity: 0; margin-bottom: 0; height: 0; width: 0; position: absolute; } /** RESPONSIVE FIX **/ @media (max-width: 767px) { .settings-main { padding-left: 0; } } /** /RESPONSIVE FIX **/ /** /SETTINGS PAGE **/ /*==================*/ /* STATIC PAGES */ /*==================*/ .static-container { margin-top: 0px; margin-bottom: 0px; max-width: 970px; hr:first-of-type { height: 0px; border-bottom: 1px solid #ecf0f1; margin: 40px auto; } .static-heading { h1.page-title { color: #34495e; font-weight: bold; font-size: 32px; } } .static-content { margin-bottom: 50px; h3 { color: @newblue; font-size: 1.5em; margin: 10px 0; font-weight: normal; } } } /**-- FAQ PAGE -------------------**/ #top-content { position: relative; > .left { padding-left: 0; padding-right: 15px; width: 50%; } > .right { padding-right: 0; padding-left: 15px; width: 50%; } h4 { line-height: 1.4em; font-size: 1.3em; text-align: justify; margin-top: 0; } h3 { position: absolute; bottom: 1em; left: 0; width: 50%; text-align: center; font-size: 2em; } } .panel-group { h3 { margin-bottom: 10px; font-weight: normal; } .panel { .panel-heading { padding: 0; a { padding: 10px 15px; width: 100%; display: block; } } } } /**-- /FAQ PAGE -------------------**/ /**-- TEAM PAGE ---------------------------**/ section { float: left; width: 100%; &.top { border-bottom: 1px solid #eeeeee; margin-bottom: 40px; h1.page-title { font-size: 45px; height: 45px; line-height: 45px; margin-bottom: 40px; } p { font-weight: bold; } } &.team-members { text-align: center; margin-bottom: 40px; .row { width: 100%; float: right; .team-member { float: left; width: 104px; figure { margin: 0 0 10px 0; width: 104px; height: 104px; img { width: 104px; height: 104px; } } .info { width: 150%; margin-left: -25%; h3 { font-size: 14px; height: 15px; line-height: 15px; margin: 3px 0px; font-weight: bold; color: #34495e; } } } .team-member + .team-member { margin-left: 208px; } } .row + .row { margin-top: 30px; } } } /**-- /TEAM PAGE ---------------------------**/ /**-- TERMS & CONDITIONS -------------------**/ .term { .term-description { margin: 0; ol { li + li { margin-top: 5px; } } } } /**-- /TERMS & CONDITIONS -------------------**/ /** MODALS **/ .content-modal { .modal-header { h3 { text-align: center; color: #2673b0; } } } .clipboard-copy { .clipboard-code { margin-bottom: 10px; float: left; background: #2673b0; color: white; padding: 10px 5px; border-radius: 5px; box-shadow: inset 1px 1px 1px rgba(0,0,0,0.15); font-size: 13px; width: 100%; } } .code-embed-modal { .content-modal { .modal-body { .demo-code { //display: none; } textarea { width: 100%; border-width: 1px; height: 100px; } } } } #files-panel { - font-size: 10pt; + font-size: 10pt; } #comments-frame { > h3 { margin: 45px 0 30px 0; } .comment-row { width: 100%; float: left; padding-bottom: 15px; } .comment-row + .comment-row { padding-top: 15px; } .comment { width: 100%; padding-left: 55px; float: left; position: relative; font-size: 12px; .supporter-thumbnail { @size: 50px; width: @size; height: @size; padding: 0; margin: 0; position: absolute; top: 0px; left: 0px; img { width: 100%; height: 100%; } } .comment-content { width: 100%; padding-right: 0; padding-left: 0; .popover-title { padding: 0; margin-bottom: 5px; font-weight: bold; background: white; border-bottom: 0; font-weight: normal; span { font-size: 11px; } span.name { font-weight: bold; font-size: 13px; } span.amount { font-size: 12px; } span.lightgrey { margin-left: 15px; } } .popover-content { overflow: hidden; padding: 0; min-height: 28px; p { margin-bottom: 0; } } .maker-comment-container { padding: 0; margin-top: 15px; &.maker-form { display: none; position: relative; padding-left: 8%; .glyphicon { position: absolute; top: 4px; left: 7%; cursor: pointer; z-index: 100; } .maker-comment { margin-top: 5px; background: #f7f7f7; } .popover-content { height: auto; overflow: hidden; background: #f7f7f7; border-radius: 4px; border: 0; padding-top: 4px; padding-right: 4px; padding-bottom: 4px; padding-left: 12%; } textarea { border-width: 1px; margin-bottom: 5px; } } } .maker-comment { width: 100%; float: none; padding: 0; position: relative; border: 0; .supporter-thumbnail { width: 38px; a { width: 38px; height: 38px; } } .content { padding-left: 43px; .popover-content { margin-bottom: 0; } } } } a.show-maker-reply { position: absolute; bottom: 1px; right: 0px; display: block; cursor: pointer; color: white; font-size: 0.8em; padding: 0.2em 0.4em; .border_radius(4px 0 4px 0); } } } .modal.report-product { .modal-dialog { .modal-content { padding: 10px 10px 0 10px; - + #product-report { button.small { border:none; background: transparent; color: #2673b0; } } } } } /*-- WIDGET MODAL --*/ #modal-widget { .content-modal { width: 770px; .modal-body { overflow: hidden; height: auto; hr { float: left; width: 100%; } } #configuration-options { width: 50%; float: left; padding-right: 10px; .tab-content { .tab-pane { padding: 10px 0; .field { font-size: 12px; label { width: 35%; float: left; height: 25px; line-height: 25px; } input[type="text"]{ float: right; width: 65%; border-width: 1px; height: 25px; line-height: 25px; border-radius: 3px; .box_shadow(inset 0 1px 1px rgba(0,0,0,0.15)); } input[type="radio"]{ width: auto; float: left; margin: 7px 3px 5px 0; } span { float: left; height: 25px; line-height: 25px; display: inline-block; } - + span + input[type="radio"]{ margin-left: 15px; } input[type="checkbox"]{ float: left; margin: 7px 0; width: auto; } textarea { width: 65%; border-width: 1px; border-radius: 3px; padding: 2px 10px; height: 100px; margin-bottom: 5px; } } } } #colors-config { } } #widget-preview { width: 50%; padding-left: 10px; float: left; #pling-widget { width: 100%; padding: 8px; font-size: 12px; background-color: @newblue; .border_radius(8px); .widget-header { width: 100%; margin-bottom: 5px; h3 { margin: 0; font-size: 18px; margin-bottom: 0 !important; } } .widget-body { background-color: white; padding: 5px; margin-bottom: 5px; border: 1px solid rgba(68, 68, 68, 0.2); .border_radius(5px); .box_shadow(inset 0 1px 4px rgba(0,0,0,0.15)); .product-funding-info { width: 100%; position: relative; .goal-range-number { width: 100%; height: 20px; line-height: 20px; span { display: block; float: left; } span + span { float: right; &.unlimited { font-size: 27px; } } } .achieved-amount { width: 100%; height: 20px; padding: 3px; background: rgba(204, 204, 204, 0.19); .border_radius(4px); .box_shadow(inset 0 1px 1px rgba(0, 0, 0, 0.05)); .bar { width: 4px; max-width: 100%; height: 14px; background-color: @newblue; .border_radius(2px); .box_shadow(inset 0 6px 0 rgba(255, 255, 255, 0.2)); &.no-goal { width: 50%; } } } .money-raised { width: 100%; height: 20px; line-height: 20px; } &.with-goal { padding-right:25%; .percentage { position: absolute; top: 0; right: 0; width: 25%; height: 60px; line-height: 60px; text-align: center; font-size: 22px; } } } .widget-text { margin-top: 10px; } .supporters { width: 100%; height: auto; overflow: hidden; margin-top: 10px; - + .supporter { width: 12.5%; height: auto; float: left; padding: 2px; clear: none; border-bottom: 0; figure { width: 100%; height: auto; img { width: 100%; height: auto; .border_radius(100%); } } } } .comments { height: auto; overflow: hidden; width: 100%; margin-top: 10px; .comment { position: relative; width: 100%; min-height: 42px; padding-left: 15%; figure { position: absolute; top: 0; left: 0; width: 15%; height: auto; img { width: 100%; height: auto; } } .content { width: 100%; - + .info { width: 100%; height: 12px; line-height: 12px; margin-bottom: 5px; } .text { width: 100%; font-size: 11px; - line-height: 11px; + line-height: 11px; } } } .comment + .comment { margin-top: 5px; } } } .widget-footer { width: 100%; height: auto; overflow: hidden; .button { float: left; } .pay-secure { float: left; padding-left: 10px; color: white; width: 100px; } .powered-by { float: right; - + a.pling-logo { display: block; background-image: url('../img/new/pling-logo-large.png'); height: 34px; width: 63px; background-size: contain; &.grey { background-image: url('../img/new/logo.png'); } &.icon { width: 34px; - background-image: url('../img/new/box-logo.png'); + background-image: url('../img/new/box-logo.png'); } } } } } } } } /*-- /. MODAL --*/ /*-- CODE EMBED --*/ .code-embed-modal { .content-modal { width: 400px; .modal-body { textarea { width: 100%; border-width: 1px; height: 100px; } } } } /*-- /CODE EMBED --*/ /** /MODALS **/ /**-- SUPPORTER BOX ---------------------------*/ body.body-external { margin: 0; padding-top: 0; font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; } .supporter-box-container { width: 100%; height: auto; float: left; border:1px solid #999999; .box_sizing(); figure { float: left; margin: 0; padding: 0; } div { float: left; } > div { width: 100%; height: auto; padding: 7px; .box_sizing(); } .supporter-box-top { background-color: #e5e5e5; position: relative; .title { float: left; width: 50%; > a { font-size: 16px; color: #39568c; text-decoration: none; .transition(); &:hover { text-decoration:underline; color: #428bca; - } + } } } figure { position: absolute; top: 7px; right: 7px; width: 102px; height: 68px; border:inset 1px #999999; a { width: 100%; height: 100%; display: block; overflow: hidden; img { width: 100%; } } } } .supporter-box-body { > div { width: 100%; float: left; .box_sizing(); } .info { height: 30px; padding-left: 35px; position: relative; margin-bottom: 10px; > em { position: absolute; left: 0; top: 0; } > span { display: block; width: 100%; height: 15px; line-height: 15px; font-size: 13px; float: left; color: black; } span + span { color: #1e4483; } } .supporters { width: 102%; figure { width: 30px; height: 30px; margin: 0px 3.5px 3.5px 0px; a { display: block; width: 100%; height: 100%; overflow: hidden; .border_radius(3px); - + img { width: 100%; } } } } } } /**-- /SUPPORTER BOX ---------------------------*/ /*------ WIDGET --------------------*/ #configuration-options { width: 60%; float: left; padding-right: 10px; ul.nav-tabs { padding: 0; background-color: white; li { a { padding: 5px; } } } .tab-content { .tab-pane { padding: 10px 0; textarea { width: 65%; border-width: 1px; border-radius: 3px; padding: 0 5px; height: 100px; margin-bottom: 5px; .box_shadow(inset 0 1px 1px rgba(0,0,0,0.15)); } .field { font-size: 12px; label { width: 35%; float: left; height: 25px; line-height: 25px; } input[type="text"], input.color-input { padding: 0 5px; float: right; width: 65%; border-width: 1px; height: 25px; line-height: 25px; border-radius: 3px; .box_shadow(inset 0 1px 1px rgba(0,0,0,0.15)); } input[type="radio"]{ width: auto; float: left; margin: 7px 3px 5px 0; } span { float: left; height: 25px; line-height: 25px; display: inline-block; } - + span + input[type="radio"]{ margin-left: 15px; } input[type="checkbox"]{ float: left; margin: 7px 0; width: auto; } } } } #colors-config { } } #pling-widget { width: 100%; max-width: 400px; padding: 8px; font-size: 12px; background-color: @newblue; .border_radius(8px); .widget-header { width: 100%; margin-bottom: 5px; h3 { margin: 0; font-size: 18px; } } .widget-body { background-color: white; padding: 5px; margin-bottom: 5px; border: 1px solid rgba(68, 68, 68, 0.2); .border_radius(5px); .box_shadow(inset 0 1px 4px rgba(0,0,0,0.15)); .donation-amount { line-height: 34px; margin: 0 0 5px 0; overflow: hidden; .support-with { width: 25%; height: 34px; float: left; } .donation-amount-number { width: 50%; float: left; position: relative; span.glyphicon { position: absolute; top: 11px; left: 0; } input[type="text"] { padding: 0 10px; float: right; width: 100%; border-width: 1px; height: 24px; line-height: 24px; border-radius: 3px; margin: 5px 0; border-right: 0; .box_shadow(inset 0 1px 1px rgba(0,0,0,0.15)); } } .button { width: 25%; float: right; button { float: left; margin-top: 5px; padding: 0; width: 100%; text-align: center; height: 24px; } } .payment-providers { width: 100%; float: left; margin: 5px 0; .pay-with { width: 25%; height: 34px; float: left; } .input-group { width: 37%; float: left; display: block; .input-group-addon { width: 20%; float: left; padding: 8px 16px 4px 0; border: 0; background: transparent; margin-top: 3px; - + input[type="radio"] { width: auto; } } .payment-icon { width: 70%; float: left; height: 34px; display: block; img { max-width: 100%; height: 20px; width: auto; margin-top: 7px; } } } } } .product-funding-info { width: 100%; position: relative; .goal-range-number { width: 100%; height: 20px; line-height: 20px; display: none; span { display: block; float: left; } span + span { float: right; &.unlimited { font-size: 27px; } } } .achieved-amount { width: 100%; height: 20px; padding: 3px; background: rgba(204, 204, 204, 0.19); display: none; .border_radius(4px); .box_shadow(inset 0 1px 1px rgba(0, 0, 0, 0.05)); .bar { width: 4px; max-width: 100%; height: 14px; background-color: @newblue; .border_radius(2px); .box_shadow(inset 0 6px 0 rgba(255, 255, 255, 0.2)); &.no-goal { width: 50%; } } } .money-raised { width: 100%; height: 20px; line-height: 20px; } &.with-goal { .percentage { position: absolute; top: 0; right: 0; width: 25%; height: 60px; line-height: 60px; text-align: center; font-size: 22px; } .goal-range-number { padding-right: 25%; display: block; } .achieved-amount { width: 75%; display: block; } } } .widget-text { margin-top: 10px; } .supporters { width: 100%; height: auto; overflow: hidden; margin-top: 5px; padding-top: 5px; border-top: 1px solid #ddd; .supporter { width: 12.5%; height: auto; float: left; padding: 2px; clear: none; border-bottom: 0; figure { width: 100%; height: auto; img { width: 100%; height: auto; } } } } .comments { height: auto; overflow: hidden; width: 100%; margin-top: 5px; padding-top: 5px; border-top: 1px solid #ddd; .comment { position: relative; width: 100%; min-height: 42px; padding-left: 15%; figure { position: absolute; top: 0; left: 0; width: 15%; height: 100%; text-align: center; img { width: auto; height: 100%; float: left; } } .content { width: 100%; padding-left: 5%; .info { width: 100%; height: 12px; line-height: 12px; margin-bottom: 5px; } .text { width: 100%; font-size: 11px; - line-height: 11px; + line-height: 11px; } } } .comment + .comment { margin-top: 5px; } } } .widget-footer { width: 100%; height: auto; overflow: hidden; .donation-amount { padding-bottom: 10px; color: white; font-size: 14px; } .button { float: left; } .pay-secure { float: left; //padding-left: 10px; color: white; width: 100px; a { color: white; } } .powered-by { float: right; a.opendesktop-logo { display: block; background-image: url('/images/system/storeLogo.png'); height: 34px; width: 63px; background-size: contain; - background-repeat:no-repeat; + background-repeat:no-repeat; } a.pling-logo { display: block; background-image: url('../img/new/pling-logo-large.png'); height: 34px; width: 63px; background-size: contain; &.grey { background-image: url('../img/new/logo.png'); } &.icon { width: 34px; - background-image: url('../img/new/box-logo.png'); + background-image: url('../img/new/box-logo.png'); } } } } } /** preview area **/ #widget-preview { width: 40%; padding-left: 10px; float: left; } /** /preview area **/ /** in modal **/ #widget-code-modal { width: 800px; height: auto; overflow: hidden; .modal-body { height: auto; overflow: hidden; article { width: 100%; float: left; #configuration-options { ul.nav-tabs { float: left; width: 100%; background-color: #F3F3F3; border-bottom: 1px solid #e5e5e5; position: relative; - top: 0; + top: 0; li { border-bottom: 1px solid #e5e5e5; .transition(0); a { margin: 0; background-color: transparent; border: 0; color: @newblue; border-bottom: 3px solid #f3f3f3; .transition(0); } - + &.active { border-color: @newblue; a { border-color: @newblue; } } } } } } } } /** /in modal **/ /** in iframe **/ .body-external { - + .supporter-box-container { border: 0; text-align: center; #pling-widget { text-align: left; float: none; height: auto; overflow: hidden; } } } /** /in iframe **/ /*------ /WIDGET --------------------*/ /***** index-pling *******/ #mainpage { background-image: url(/images/system/1-opendesktop-bg.png); - background-repeat:no-repeat; + background-repeat:no-repeat; background-attachment:fixed; background-position:0px 0px; - background-size: 100% 100%; - width: 100% !important; + background-size: 100% 100%; + width: 100% !important; margin-top: 15px; } #mainpage .wrapper { padding-top: 100px; } #mainpage .card-wrapper { border-radius:10px; padding:5px; } #mainpage .card-wrapper { a.title { display:block; } - - + + img.logo { - height:45px; - margin-right:10px; + height:45px; + margin-right:10px; margin-bottom:5px; } .domainobj { margin: 15px; border-bottom:1px solid #ccc; } } #indeximages { - height:400px; + height:400px; width: 100%; - overflow: hidden; + overflow: hidden; } #indeximages a { cursor: default; } .commentstore { border-bottom:1px solid #ccd4d8 ; padding-top: 5px; padding-bottom: 5px; overflow: hidden; p{ margin: 0; } .userinfo img { border-radius: 50%; width: 42px; height: 42px; - float: right; - + float: right; + } - .userinfo + .userinfo { - float: right; + float: right; } .info { display: block; } } .commentstore:last-child { border-bottom:none; } /*product detail popover*/ div.profile-img-product { width: 200px; height: 160px; } img.imgpopover { max-width: 200px; max-height: 160px; display: block; margin: auto; } /*aboutme tab comments*/ #my-comments-tabs-content { font-size: 11pt; width: 1100px; .rownomargin { margin:0; } .rownopadding { padding: 0; } .category { - display: block; + display: block; font-size: smaller; } .createat { font-size: smaller; color: #888; } .productrow { padding-bottom: 5px; padding-top: 5px; border-bottom: 1px solid #ccd4d8; - + font-size: small; .project-image{ width: 50px; height: 50px; float: left; margin-right: 15px; } } .productrow:last-child { border-bottom: none; - } + } .row { margin-top: 10px; } .rating { width: 60px; } .time { font-size: smaller; } .cntComments { font-size: smaller; display: block; padding-top: 5px; - + } .productimg { width:50px; height:50px; } .commenttext{ padding-left: 20px; - + } } -.user-admin-page +.user-admin-page { .commentText { font-size: smaller; } .commentTime { font-size: smaller; padding-left: 20px; } .title { font-weight: bold; color:#37628D; - padding-top: 10px; - padding-bottom: 10px; + padding-top: 10px; + padding-bottom: 10px; } .topics{ padding-right: 20px; - + .topic-tag { display: inline-block; padding: 0.3em 0.9em; margin: 0 0.5em 0.5em 0; white-space: nowrap; background-color: #f1f8ff; border-radius: 3px; } .usertagslabelcat{ background-color: #f1f1f1; } .topic-tag-link { &:hover { text-decoration: none; background-color: #def; } - } + } .btn-link{ display: inline-block; padding: 0; font-size: inherit; color: #0366d6; text-decoration: none; white-space: nowrap; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-color: transparent; border: 0; -webkit-appearance: none; -moz-appearance: none; appearance: none; } } .my-downloadshistory-list{ width: 1100px; .totaldownloads{ margin:0; padding: 20px; text-align: right; } .smaller{ font-size: smaller; } - .header{ + .header{ border-top:1px solid #ccc; padding-top:15px; padding-bottom:15px; } - .subheader{ + .subheader{ background-color: #ddd } .paddingLeft80{ padding-left: 80px; } .marginLeft80{ margin-left: 80px; } - + button.voting{ line-height: 10px; } button.voting span{ font-size: 10px; - } + } .rating{ width: 60px !important; font-size: 10pt; } .downloadhistory-image{ width: 50px; height: 50px; - float: left; - margin-right: 15px; + float: left; + margin-right: 15px; } .nowrap{ white-space: nowrap; } } } - -.col-container + +.col-container { span.cnt { padding-right: 5px; display: inline-block; font-weight: bold; } - .stat - { + .stat + { padding-top: 15px; - padding-left: 15px; + padding-left: 15px; font-size: 12px; } .statContent - { + { padding-top: 15px; - padding-left: 15px; + padding-left: 15px; font-size: 12px; } } /** plings **/ -main#plings-page{ +main#plings-page{ .wrapper{ - width:700px; + width:700px; padding:20px; /*max-height: 700px; overflow: auto; */ .title{ - background-color:#ccc; + background-color:#ccc; height: 30px; - } + } .label{ padding-top: 10px; padding-left: 0px; } .row:not(:first-child):hover{ - background-color: #eef; + background-color: #eef; } - + .depth0 { padding-left: 0px; } .depth1 { padding-left: 20px; } .depth2 { padding-left: 40px; } .depth3 { padding-left: 60px; } .depth4 { padding-left: 80px; } .depth5 { padding-left: 100px; } .factor { padding-right: 10px; } } } /** plings END**/ /* new look test */ #product-page-content { .sidebar-left{ padding-right: 15px; padding-left: 15px; - min-width: 200px; - padding-top: 20px; + min-width: 200px; + padding-top: 20px; } .tag-element { background-clip: padding-box; background-color: #eeeeee; background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); background-repeat: repeat-x; background-size: 100% 19px; border: 1px solid #aaa; border-radius: 3px; box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); color: #333; line-height: 25px !important; margin: 3px 3px 3px 0; max-width: 100%; padding: 0 10px; position: relative; display: inline-block; } } #carouselContainer{ - .carousel-indicators { + .carousel-indicators { z-index: 31; background-color: transparent; - height: 20px; + height: 20px; bottom: -30px; & .active{ - background-color: #E2E2E2; + background-color: #E2E2E2; } li{ border: 1px solid #C4D7EF; - } + } } iframe{ border: 0px; } } /*update member page*/ #email-collapse{ .group-list { list-style: outside none none; > li:first-child { border-top: 0 none; border-top: 1px solid #ddd; } > li { border-bottom: 1px solid #e5e5e5; display: block; line-height: 30px; margin-left: -10px; padding: 5px 10px; } } - + .css-truncate-target { max-width: 300px; display: inline-block; text-overflow: ellipsis; vertical-align: top; white-space: nowrap; } .email-actions { float: right; form { display: inline; } } span.label.default { background-color: #6cc644; border-radius: 3px; color: #fff; margin-left: 4px; padding: 4px 6px; } span.label.attention { background-color: #c64f0d; border-radius: 3px; color: #fff; margin-left: 4px; padding: 4px 6px; } .btn { line-height: 20px; padding: 4px 12px; } - + } .user-admin-page { .body-wrap{ .well{ min-height: 20px; padding: 20px; margin-bottom: 20px; background-color: transparent; border: 0px; border-radius: 0px; -webkit-box-shadow: inset 0 0px 0px rgba(0,0,0,.05); box-shadow: inset 0 0px 0px rgba(0,0,0,.05); } } } .profile-menu{ li{ a{ width: 100%; } } } // grid layout 19.06 .grid-container{ padding-top: 10px; .flex-container{ font-size: 10pt !important; .explore-product-grid{ width: 200px; padding: 0px; margin: 20px; border: 1px solid #dedede; border-radius: 2px; - margin: 10px 10px 10px 10px; + margin: 10px 10px 10px 10px; position: relative; - + /*background: url(../img/app-container-bg.png) repeat-x;*/ - + figure{ /*height: 167px;*/ - + opacity: 1; display: block; transition: .5s ease; - backface-visibility: hidden; - + backface-visibility: hidden; + } - - + + .explore-product-image{ - + /* max-width: 95%; height: 167px; */ width: 170px; height: 120px; - + } .explore-product-desc{ - background: linear-gradient(#fff, #EDEDED); + background: linear-gradient(#fff, #EDEDED); padding:0px 10px 5px 10px; - border-bottom-left-radius: 2px; - border-bottom-right-radius: 2px; + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; } .explore-product-plings { - padding: 0; + padding: 0; padding-top: 5px; width: 100px; - margin:0 auto; + margin:0 auto; font-size: 10px; .rating { width: 100%; } .progress { margin-bottom: 10px; padding: 3px; opacity:0; margin-bottom: 0; height:12px; opacity:1.0; - background-color: transparent; - box-shadow: none; + background-color: transparent; + box-shadow: none; padding:2px; - + .bar { width: 4px; max-width: 100%; height: 14px; background-color: #2673b0; .border_radius(5px); .box_shadow(inset 0 6px 0 rgba(255,255,255,0.2)); &.no-goal { width: 50%; opacity: 0; } } } .collected { span { display: block; width: 100%; float: left; font-size: 12px; } } } .explore-product-details { - - + + span.version { - font-size: smaller; + font-size: smaller; padding-left: 20px; } span.title{ display: block; font-size: smaller; line-height: 1.5; } - - + + } } } } /* mobile settings */ - @media (max-width: 400px) { + @media (max-width: 400px) { #explore-content{ .GridFlex{ .sidebar-left{ flex: 0 0 100%; } - } + } } .metamenu{ height: 100%; .sitelogo{ - display:block; - width:100%; - height:30px; + display:block; + width:100%; + height:30px; font-size:20px; img.logo{ width: 30px; height: 30px; } - } - + } + } } #ratings-panel{ .bbtn{ display: inline-block; padding: 6px 12px; margin-bottom: 0; font-size: 14px; font-weight: 400; line-height: 1.42857143; text-align: center; white-space: nowrap; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-image: none; border: 1px solid #adadad; border-radius: 4px; - margin-right:10px; + margin-right:10px; } .activeRating{ border: 2px solid #2673B0; } .bbtn:focus{ color: #333; background-color: transparent; border-color: #2673B0 } } #plings-panel { .u-wrap { float: left; padding: .3em; border: .35em solid #dee0e0; border-radius: 5px; height: 14em; margin-bottom: 1em; background: #fff; width: 115px; height: 200px; margin-right: 10px; -webkit-transition: all .2s ease-out; -moz-transition: all .2s ease-out; -ms-transition: all .2s ease-out; -o-transition: all .2s ease-out; position: relative; figure img { width: 100%; border: 1px solid #dbdbdb; -webkit-border-radius: 999px; -moz-border-radius: 999px; border-radius: 999px; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } h3 { font-size: 13px; font-weight: 700; word-wrap: break-word; line-height: 20px; height: 20px; padding: 0; margin: 0; } span.small { position: absolute; bottom: 5px; left:5px; } } } - .tooltipuserplingscontainer{ - .user{ - display: block; - float: left; - text-align: center; - width: 60px; - overflow: hidden; - img{ - width:40px; - height:40px; - border:1px solid #ccc; - border-radius: 999px; - } - .caption{ - display: block; - } - } - } \ No newline at end of file +.tooltipuserplingscontainer{ + .user{ + display: block; + float: left; + text-align: center; + width: 60px; + overflow: hidden; + img{ + width:40px; + height:40px; + border:1px solid #ccc; + border-radius: 999px; + } + .caption{ + display: block; + } + } +} diff --git a/httpdocs/theme/react/app-header/app.js b/httpdocs/theme/react/app-header/app.js index 7d3a80b5c..d2d1bca03 100644 --- a/httpdocs/theme/react/app-header/app.js +++ b/httpdocs/theme/react/app-header/app.js @@ -1,386 +1,386 @@ class SiteHeader extends React.Component { constructor(props){ super(props); this.state = { baseUrl:window.json_baseurl, cat_title:window.json_cat_title, hasIdentity:window.json_hasIdentity, is_show_title:window.json_is_show_title, redirectString:window.json_redirectString, serverUrl:window.json_serverUrl, serverUri:window.json_serverUri, store:{ sName:window.json_sname, name:window.json_store_name, order:window.json_store_order, last_char_store_order:window.last_char_store_order, }, user:window.json_member, logo:window.json_logoWidth, cat_title_left:window.json_cat_title_left, tabs_left:window.tabs_left, template:window.json_template, status:"" }; this.updateDimensions = this.updateDimensions.bind(this); } componentWillMount() { this.updateDimensions(); } componentDidMount() { window.addEventListener("resize", this.updateDimensions); window.addEventListener("orientationchange",this.updateDimensions); } updateDimensions(){ const width = window.innerWidth; let device; if (width >= 910){ device = "large"; } else if (width < 910 && width >= 610){ device = "mid"; } else if (width < 610){ device = "tablet"; } this.setState({device:device}); } render(){ let userMenuDisplay, loginMenuDisplay, siteHeaderTopRightCssClass; if (this.state.user){ userMenuDisplay = ( ); siteHeaderTopRightCssClass = "w-user"; } else { loginMenuDisplay = ( ); } let logoLink = this.state.serverUrl; if (this.state.serverUri.indexOf('/s/') > -1){ logoLink += "/s/" + this.state.store.name; } let siteHeaderStoreNameDisplay; if (this.state.is_show_title === "1"){ siteHeaderStoreNameDisplay = ( ); } - let HeaderDisplay; - if (this.state.device !== "tablet"){ - HeaderDisplay = ( + /*let HeaderDisplay; + if (this.state.device !== "tablet"){*/ + const HeaderDisplay = ( ); - } else { + /*} else { HeaderDisplay = ( ) - } + }*/ return ( ) } } class SiteHeaderSearchForm extends React.Component { constructor(props){ super(props); this.state = { searchText:'' }; this.onSearchTextChange = this.onSearchTextChange.bind(this); this.onSearchFormSubmit = this.onSearchFormSubmit.bind(this); } onSearchTextChange(e){ this.setState({searchText:e.target.value}); } onSearchFormSubmit(e){ e.preventDefault(); window.location.href = this.props.baseUrl + "/search?projectSearchText=" + this.state.searchText; } render(){ return (
) } } class SiteHeaderLoginMenu extends React.Component { constructor(props){ super(props); this.state = {}; } render(){ let registerButtonCssClass, loginButtonCssClass; if (window.location.href.indexOf('/register') > -1){ registerButtonCssClass = "active"; } if (window.location.href.indexOf('/login') > -1){ loginButtonCssClass = "active"; } const menuItemCssClass = { "borderColor":this.props.template['header-nav-tabs']['border-color'], "backgroundColor":this.props.template['header-nav-tabs']['background-color'] } return ( ) } } class SiteHeaderUserMenu extends React.Component { constructor(props){ super(props); this.state = {}; this.handleClick = this.handleClick.bind(this); } componentWillMount() { document.addEventListener('mousedown',this.handleClick, false); } componentWillUnmount() { document.removeEventListener('mousedown',this.handleClick, false); } handleClick(e){ let dropdownClass = ""; if (this.node.contains(e.target)){ if (this.state.dropdownClass === "open"){ if (e.target.className === "profile-menu-toggle" || e.target.className === "profile-menu-image" ||  e.target.className === "profile-menu-username"){ dropdownClass = ""; } else { dropdownClass = "open"; } } else { dropdownClass = "open"; } } this.setState({dropdownClass:dropdownClass}); } render(){ return ( ) } } class MobileSiteHeader extends React.Component { constructor(props){ super(props); this.state = { status:"switch" }; this.showMobileUserMenu = this.showMobileUserMenu.bind(this); this.showMobileSearchForm = this.showMobileSearchForm.bind(this); this.showMobileSwitchMenu = this.showMobileSwitchMenu.bind(this); } showMobileUserMenu(){ this.setState({status:"user"}); } showMobileSearchForm(){ this.setState({status:"search"}); } showMobileSwitchMenu(){ this.setState({status:"switch"}); } render(){ const menuItemCssClass = { "borderColor":this.props.template['header-nav-tabs']['border-color'], "backgroundColor":this.props.template['header-nav-tabs']['background-color'] } const closeMenuElementDisplay = ( ); let mobileMenuDisplay; if (this.state.status === "switch"){ mobileMenuDisplay = ( ); } else if (this.state.status === "user"){ mobileMenuDisplay = (
{closeMenuElementDisplay}
) } else if (this.state.status === "search"){ mobileMenuDisplay = (
{closeMenuElementDisplay}
) } let logoElementCssClass = this.props.store.name; if (this.state.status !== "switch"){ logoElementCssClass = " mini-version"; } return(
{mobileMenuDisplay}
); } } class MobileUserContainer extends React.Component { constructor(props){ super(props); this.state = {}; } render(){ let userDisplay; if (this.props.user){ userDisplay = ( ); } else { userDisplay = ( ); } return (
{userDisplay}
) } } ReactDOM.render( , document.getElementById('site-header-container') ); diff --git a/httpdocs/theme/react/app-metaheader/app.js b/httpdocs/theme/react/app-metaheader/app.js index 47b2fe55a..fdec790df 100644 --- a/httpdocs/theme/react/app-metaheader/app.js +++ b/httpdocs/theme/react/app-metaheader/app.js @@ -1,739 +1,738 @@ class MetaHeader extends React.Component { constructor(props){ super(props); this.state = { domains:window.domains, baseUrl:window.baseUrl, blogUrl:window.blogUrl, forumUrl:window.forumUrl, loginUrl:window.loginUrl, logoutUrl:window.logoutUrl, gitlabUrl:window.gitlabUrl, sName:window.sName, user:{}, }; this.initMetaHeader = this.initMetaHeader.bind(this); this.updateDimensions = this.updateDimensions.bind(this); this.getUser = this.getUser.bind(this); } componentWillMount() { this.updateDimensions(); } componentDidMount() { this.initMetaHeader(); } componentWillUnmount(){ window.removeEventListener("resize", this.updateDimensions); window.removeEventListener("orientationchange",this.updateDimensions); } initMetaHeader(){ window.addEventListener("resize", this.updateDimensions); window.addEventListener("orientationchange",this.updateDimensions); this.getUser(); } getUser(){ const decodedCookie = decodeURIComponent(document.cookie); let ocs_data = decodedCookie.split('ocs_data=')[1]; if (ocs_data){ if (ocs_data.indexOf(';') > -1){ ocs_data = ocs_data.split(';')[0]; } const user = JSON.parse(ocs_data); this.setState({user:user}); } } - - updateDimensions(){ - const width = window.innerWidth; - let device; - if (width >= 910){ - device = "large"; - } else if (width < 910 && width >= 610){ - device = "mid"; - } else if (width < 610){ - device = "tablet"; - } - this.setState({device:device}); + updateDimensions(){ + const width = window.innerWidth; + let device; + if (width >= 910){ + device = "large"; + } else if (width < 910 && width >= 610){ + device = "mid"; + } else if (width < 610){ + device = "tablet"; } + this.setState({device:device}); + } render(){ let domainsMenuDisplay; if (this.state.device === "tablet"){ domainsMenuDisplay = ( ) } else { domainsMenuDisplay = ( ) } return ( ) } } class DomainsMenu extends React.Component { constructor(props){ super(props); this.state = { }; } render(){ let moreMenuItemDisplay; if (this.props.device !== "large"){ moreMenuItemDisplay = ( ) } return ( ) } } class DomainsDropDownMenu extends React.Component { constructor(props){ super(props); this.state = {}; this.handleClick = this.handleClick.bind(this); } componentDidMount() { let menuGroups = []; this.props.domains.forEach(function(domain,index){ if (menuGroups.indexOf(domain.menugroup) === -1){ menuGroups.push(domain.menugroup); } }); this.setState({menuGroups:menuGroups}); } componentWillMount() { document.addEventListener('mousedown',this.handleClick, false); } componentWillUnmount() { document.removeEventListener('mousedown',this.handleClick, false); } handleClick(e){ let dropdownClass = ""; if (this.node.contains(e.target)){ if (this.state.dropdownClass === "open"){ if (e.target.className === "domains-menu-link-item"){ dropdownClass = ""; } else { dropdownClass = "open"; } } else { dropdownClass = "open"; } } this.setState({dropdownClass:dropdownClass}); } render(){ let menuGroupsDisplayLeft, menuGroupsDisplayRight; if (this.state.menuGroups){ menuGroupsDisplayLeft = this.state.menuGroups.slice(0,2).map((mg,i) => ( )); menuGroupsDisplayRight = this.state.menuGroups.slice(2).map((mg,i) => ( )); } return (
  • this.node = node} id="domains-dropdown-menu" className={this.state.dropdownClass}> Themes & Apps
      • {menuGroupsDisplayLeft}
      • {menuGroupsDisplayRight}
  • ); } } class DiscussionBoardsDropDownMenu extends React.Component { constructor(props){ super(props); this.state = {}; this.handleClick = this.handleClick.bind(this); } componentWillMount() { document.addEventListener('mousedown',this.handleClick, false); } componentWillUnmount() { document.removeEventListener('mousedown',this.handleClick, false); } handleClick(e){ let dropdownClass = ""; if (this.node.contains(e.target)){ if (this.state.dropdownClass === "open"){ console.log(e.target.className); if (e.target.className === "discussion-menu-link-item"){ dropdownClass = ""; } else { dropdownClass = "open"; } } else { dropdownClass = "open"; } } this.setState({dropdownClass:dropdownClass}); } render(){ return (
  • this.node = node} id="discussion-boards" className={this.state.dropdownClass}> Discussion Boards
  • ); } } class MoreDropDownMenu extends React.Component { constructor(props){ super(props); this.state = {}; this.handleClick = this.handleClick.bind(this); } componentWillMount() { document.addEventListener('mousedown',this.handleClick, false); } componentWillUnmount() { document.removeEventListener('mousedown',this.handleClick, false); } handleClick(e){ let dropdownClass = ""; if (this.node.contains(e.target)){ if (this.state.dropdownClass === "open"){ if (e.target.className === "more-menu-link-item"){ dropdownClass = ""; } else { dropdownClass = "open"; } } else { dropdownClass = "open"; } } this.setState({dropdownClass:dropdownClass}); } render(){ let plingListUrl = "/#plingList", ocsapiContentUrl = "/#ocsapiContent", aboutContentUrl = "/#aboutContent", linkTarget = "_blank"; if (window.location.hostname === this.props.baseUrl.split('https://')[1]){ plingListUrl = "/plings"; ocsapiContentUrl = "/partials/ocsapicontent.phtml"; aboutContentUrl = "/partials/about.phtml"; linkTarget = ""; } return(
  • this.node = node} id="more-dropdown-menu" className={this.state.dropdownClass}> More
  • ) } } class DomainsMenuGroup extends React.Component { constructor(props){ super(props); this.state = {}; this.filterDomainsByMenuGroup = this.filterDomainsByMenuGroup.bind(this); } filterDomainsByMenuGroup(domain){ if (domain.menugroup === this.props.menuGroup){ return domain; } } render(){ const domainsDisplay = this.props.domains.filter(this.filterDomainsByMenuGroup).map((domain,index) => { let domainPrefix = ""; if (domain.menuhref.indexOf('https://') === -1 && domain.menuhref.indexOf('http://') === -1){ domainPrefix += "http://"; } return (
  • {domain.name}
  • ); }); return (
  • {this.props.menuGroup}
      {domainsDisplay}
  • ) } } class UserMenu extends React.Component { constructor(props){ super(props); this.state = {}; } render(){ let userDropdownDisplay, userAppsContextDisplay; if (this.props.user && this.props.user.member_id){ userDropdownDisplay = ( ); userAppsContextDisplay = ( ) } else { userDropdownDisplay = (
  • Login
  • ) } let userMenuContainerDisplay; if (this.props.device === "large"){ let plingListUrl = "/#plingList", ocsapiContentUrl = "/#ocsapiContent", aboutContentUrl = "/#aboutContent", linkTarget = "_blank"; if (window.location.hostname === this.props.baseUrl.split('https://')[1]){ plingListUrl = "/plings"; ocsapiContentUrl = "/partials/ocsapicontent.phtml"; aboutContentUrl = "/partials/about.phtml"; linkTarget = ""; } userMenuContainerDisplay = ( ); } else { userMenuContainerDisplay = (
      {userAppsContextDisplay} {userDropdownDisplay}
    ); } return (
    {userMenuContainerDisplay}
    ) } } class UserContextMenuContainer extends React.Component { constructor(props){ super(props); this.state = { gitlabLink:window.gitlabUrl+"/dashboard/issues?assignee_id=" }; this.handleClick = this.handleClick.bind(this); } componentWillMount() { document.addEventListener('mousedown',this.handleClick, false); } componentWillUnmount() { document.removeEventListener('mousedown',this.handleClick, false); } componentDidMount() { const self = this; $.ajax({url: window.gitlabUrl+"/api/v4/users?username="+this.props.user.username,cache: false}) .done(function(response){ const gitlabLink = self.state.gitlabLink + response[0].id; self.setState({gitlabLink:gitlabLink,loading:false}); }); } handleClick(e){ let dropdownClass = ""; if (this.node.contains(e.target)){ if (this.state.dropdownClass === "open"){ if (e.target.className === "th-icon" || e.target.className === "btn btn-default dropdown-toggle"){ dropdownClass = ""; } else { dropdownClass = "open"; } } else { dropdownClass = "open"; } } this.setState({dropdownClass:dropdownClass}); } render(){ return (
  • this.node = node} id="user-context-menu-container">
  • ) } } class UserLoginMenuContainer extends React.Component { constructor(props){ super(props); this.state = {}; this.handleClick = this.handleClick.bind(this); } componentWillMount() { document.addEventListener('mousedown',this.handleClick, false); } componentWillUnmount() { document.removeEventListener('mousedown',this.handleClick, false); } handleClick(e){ let dropdownClass = ""; if (this.node.contains(e.target)){ if (this.state.dropdownClass === "open"){ if (e.target.className === "th-icon" || e.target.className === "btn btn-default dropdown-toggle"){ dropdownClass = ""; } else { dropdownClass = "open"; } } else { dropdownClass = "open"; } } this.setState({dropdownClass:dropdownClass}) } render(){ return (
  • this.node = node}>
  • ) } } /** MOBILE SPECIFIC **/ class MobileLeftMenu extends React.Component { constructor(props){ super(props); this.state = { overlayClass:"" }; this.toggleLeftSideOverlay = this.toggleLeftSideOverlay.bind(this); this.handleClick = this.handleClick.bind(this); } componentWillMount() { window.addEventListener('mousedown',this.handleClick, false); window.addEventListener('touchend', this.handleClick, false); } componentWillUnmount() { window.removeEventListener('mousedown',this.handleClick, false); window.addEventListener('touchend', this.handleClick, false); } toggleLeftSideOverlay(){ let overlayClass = "open"; if (this.state.overlayClass === "open") { overlayClass = ""; } this.setState({overlayClass:overlayClass}); } handleClick(e){ let overlayClass = ""; if (this.node.contains(e.target)){ if (this.state.overlayClass === "open"){ if (e.target.id === "left-side-overlay" || e.target.id === "menu-toggle-item"){ overlayClass = ""; } else { overlayClass = "open"; } } else { overlayClass = "open"; } } this.setState({overlayClass:overlayClass}); } render(){ return (
    this.node = node} id="metaheader-left-mobile" className={this.state.overlayClass}>
    ); } } class MobileLeftSidePanel extends React.Component { constructor(props){ super(props); this.state = {}; } componentDidMount() { let menuGroups = []; this.props.domains.forEach(function(domain,index){ if (menuGroups.indexOf(domain.menugroup) === -1){ menuGroups.push(domain.menugroup); } }); this.setState({menuGroups:menuGroups}); } render(){ let panelMenuGroupsDisplay; if (this.state.menuGroups){ panelMenuGroupsDisplay = this.state.menuGroups.map((mg,i) => ( )); } let plingListUrl = "/#plingList", ocsapiContentUrl = "/#ocsapiContent", aboutContentUrl = "/#aboutContent", linkTarget = "_blank"; if (window.location.hostname === this.props.baseUrl.split('https://')[1]){ plingListUrl = "/plings"; ocsapiContentUrl = "/partials/ocsapicontent.phtml"; aboutContentUrl = "/partials/about.phtml"; linkTarget = ""; } return ( ) } } ReactDOM.render( , document.getElementById('metaheader') ); diff --git a/httpdocs/theme/react/assets/css/header.css b/httpdocs/theme/react/assets/css/header.css index 15ac7b645..d75f0e473 100644 --- a/httpdocs/theme/react/assets/css/header.css +++ b/httpdocs/theme/react/assets/css/header.css @@ -1 +1 @@ -#site-header-container{font-family:Arial,sans-serif}#site-header{padding:0 80px;font-size:14px}#site-header ul{list-style-type:none;padding:0;margin:0}#site-header #site-header-wrapper{position:relative;width:100%;float:left;height:100%}#site-header #site-header-wrapper #site-header-logo-container{position:absolute;overflow:hidden}#site-header #site-header-wrapper #site-header-logo-container>a{width:100%;display:block}#site-header #site-header-wrapper #site-header-logo-container>a img{width:100%}#site-header #site-header-wrapper #site-header-store-name-container{float:left;height:100%;padding:50px 0 0 55px;font-size:24px;position:absolute}#site-header #site-header-wrapper #site-header-store-name-container>a{color:white}#site-header #site-header-wrapper #site-header-store-name-container>a:hover{color:#337ab7}#site-header #site-header-wrapper #site-header-right{float:right;height:100%}#site-header #site-header-wrapper #site-header-right #site-header-right-top{height:40px;width:100%;padding-right:5px}#site-header #site-header-wrapper #site-header-right #site-header-search-form{float:left;width:100%;max-width:16em}#site-header #site-header-wrapper #site-header-right #site-header-search-form #search-form{margin:6.5px 0}#site-header #site-header-wrapper #site-header-right #search-form{height:25px;padding:0;margin:6.5px 15px;line-height:25px;position:relative}#site-header #site-header-wrapper #site-header-right #search-form input[type="text"]{width:100%;min-width:16em;height:25px;padding:0;border:1px solid #fff;margin-bottom:-1px;padding-right:30px;text-indent:5px;color:#6a7686;float:left;border-radius:6px;box-shadow:none}#site-header #site-header-wrapper #site-header-right #search-form>a{top:2px;right:0;display:block;width:25px;height:25px;background-image:url(/theme/flatui/img/icon-search-input-2.png);background-position:center center;position:absolute;cursor:pointer}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container{float:right;margin-right:6px;margin-left:6px}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle{position:relative;height:40px;float:right;cursor:pointer;line-height:40px}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle a.profile-menu-toggle{display:block;width:100%;height:100%;padding-left:50px;padding-right:15px}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle img{position:absolute;top:5px;left:10px;height:30px;width:30px;border-radius:100%}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle span{color:white}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle:hover span{color:black}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle ul{display:none;width:165px;margin-left:0;position:absolute;top:40px;border:none;font-size:14px;color:#7f8c8d;font-weight:400;padding:0;z-index:10000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle ul .dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap;width:175px;height:12px;background-image:url(../img/bg_sheet.png);background-position:-385px 0}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle ul li{text-align:left;display:block;width:100%;background:#ecf0f1;margin:0;padding:0;height:40px;border-bottom:1px solid #d6d7d9}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle ul li:first-of-type{-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle ul li:last-of-type{-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle ul li a{float:left;display:block;padding:0 20px;color:#6a7686;text-align:left;height:40px;line-height:40px;width:100%}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle.open ul{display:block}#site-header #site-header-wrapper #site-header-right #site-header-right-bottom{height:52px;width:100%}#site-header #site-header-wrapper #site-header-right #site-header-right-bottom #site-header-login-menu{width:100%;float:left;height:100%}#site-header #site-header-wrapper #site-header-right #site-header-right-bottom #site-header-login-menu ul{position:absolute;bottom:0;display:inline-table;list-style-type:none;margin:0;padding:0;z-index:999;right:0;width:175px}#site-header #site-header-wrapper #site-header-right #site-header-right-bottom #site-header-login-menu ul li{background-color:#609dca;border-color:#a3acfd;border-image:none;border-radius:5px 5px 0 0;border-style:solid solid none;border-width:2px 2px 0;height:24px;line-height:24px;margin-right:2px;float:left}#site-header #site-header-wrapper #site-header-right #site-header-right-bottom #site-header-login-menu ul li a{float:left;display:block;height:inherit;line-height:inherit;padding:0 20px;font-size:13px;color:white}#site-header #site-header-wrapper #site-header-right #site-header-right-bottom #site-header-login-menu ul li.active{background:#60bcff none repeat scroll 0 0}@media (min-width:612px) and (max-width:720px){#site-header{padding:0 50px 0 10px}}@media (max-width:610px){#mobile-site-header{height:50px}#site-header-container{height:50px}#site-header-container #site-header{height:50px !important;padding:0;background-size:contain}#mobile-site-header{height:50px;padding:5px;padding-right:10px}#mobile-site-header #mobile-site-header-logo{height:40px;width:auto;float:left}#mobile-site-header #mobile-site-header-logo>a{width:auto;height:100%}#mobile-site-header #mobile-site-header-logo>a>img{max-height:40px}#mobile-site-header #mobile-site-header-logo.mini-version{width:40px;overflow:hidden}#mobile-site-header #mobile-site-header-logo.mini-version.Android{width:24px;height:27px}#mobile-site-header #mobile-site-header-logo.mini-version.Books{width:38px}#mobile-site-header #mobile-site-header-logo.KFCE-Pling-CC{width:100px !important;height:32px}#mobile-site-header #mobile-site-header-menus-container{float:right;height:40px}#mobile-site-header #mobile-site-header-menus-container #switch-menu,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu{height:40px;padding:5px;float:right;padding-right:3px}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-item,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-item,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-item{display:block;height:30px;width:30px;position:relative;line-height:30px;float:left;color:white;cursor:pointer;border:2px solid;border-radius:5px}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-item>span,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-item>span,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-item>span{color:white;position:absolute;top:50%;left:50%;margin:-6px 0 0 -7px}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-item+.menu-item,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-item+.menu-item,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-item+.menu-item{margin-left:5px}#mobile-site-header #mobile-site-header-menus-container #switch-menu #switch-menu-seperator,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu #switch-menu-seperator,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu #switch-menu-seperator{display:block;float:left;height:20px;border-right:1px solid black;border-left:1px solid black;margin:10px;display:none}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper{float:left;height:30px;line-height:30px;padding:0 5px}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-search-form,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-search-form,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-search-form{width:240px}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #search-form,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #search-form,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #search-form{height:27px;padding:0;margin:1.5px 0;line-height:27px;position:relative;margin-right:60px}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #search-form input[type="text"],#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #search-form input[type="text"],#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #search-form input[type="text"]{width:100%;height:27px;padding:0;border:1px solid #fff;margin-bottom:-1px;padding-right:30px;text-indent:5px;color:#6a7686;float:left;border-radius:5px;box-shadow:none;font-size:16px}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #search-form>a,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #search-form>a,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #search-form>a{top:2px;right:0;display:block;width:25px;height:25px;background-image:url(/theme/flatui/img/icon-search-input-2.png);background-position:center center;position:absolute;cursor:pointer}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-login-menu,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-login-menu,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-login-menu{width:100%;float:left;height:100%}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-login-menu ul,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-login-menu ul,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-login-menu ul{position:relative;bottom:0;display:inline-table;list-style-type:none;margin:0;padding:0;z-index:999;right:0;width:185px}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-login-menu ul li,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-login-menu ul li,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-login-menu ul li{border-image:none;border-radius:5px;border-style:solid;border-width:2px;height:30px;line-height:26px;margin-right:5px;float:left}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-login-menu ul li a,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-login-menu ul li a,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-login-menu ul li a{float:left;display:block;height:inherit;line-height:inherit;padding:0 20px;font-size:13px;color:white}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-login-menu ul li.active,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-login-menu ul li.active,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-login-menu ul li.active{background:#60bcff none repeat scroll 0 0}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-user-menu-container,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-user-menu-container,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-user-menu-container{float:right;margin-right:6px;margin-left:6px;margin-top:-5px}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle{position:relative;height:40px;float:right;cursor:pointer;line-height:40px}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle a.profile-menu-toggle,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle a.profile-menu-toggle,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle a.profile-menu-toggle{display:block;width:100%;height:100%;padding-left:50px;padding-right:15px}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle img,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle img,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle img{position:absolute;top:5px;left:10px;height:30px;width:30px;border-radius:100%}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle span,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle span,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle span{color:white}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle:hover span,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle:hover span,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle:hover span{color:black}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul{display:none;width:165px;margin-left:0;position:absolute;top:40px;border:none;font-size:14px;color:#7f8c8d;font-weight:400;padding:0;z-index:10000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul .dropdown-header,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul .dropdown-header,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul .dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap;width:175px;height:12px;background-image:url(../img/bg_sheet.png);background-position:-385px 0}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul li,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul li,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul li{text-align:left;display:block;width:100%;background:#ecf0f1;margin:0;padding:0;height:40px;border-bottom:1px solid #d6d7d9}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul li:first-of-type,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul li:first-of-type,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul li:first-of-type{-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul li:last-of-type,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul li:last-of-type,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul li:last-of-type{-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul li a,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul li a,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle ul li a{float:left;display:block;padding:0 20px;color:#6a7686;text-align:left;height:40px;line-height:40px;width:100%}#mobile-site-header #mobile-site-header-menus-container #switch-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle.open ul,#mobile-site-header #mobile-site-header-menus-container #mobile-user-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle.open ul,#mobile-site-header #mobile-site-header-menus-container #mobile-search-menu .menu-content-wrapper #site-header-user-menu-container #user-menu-toggle.open ul{display:block}} \ No newline at end of file +#site-header-container{font-family:Arial,sans-serif}#site-header{padding:0 80px;font-size:14px}#site-header ul{list-style-type:none;padding:0;margin:0}#site-header #site-header-wrapper{position:relative;width:100%;float:left;height:100%}#site-header #site-header-wrapper #site-header-logo-container{position:absolute;overflow:hidden}#site-header #site-header-wrapper #site-header-logo-container>a{width:100%;display:block}#site-header #site-header-wrapper #site-header-logo-container>a img{width:100%}#site-header #site-header-wrapper #site-header-store-name-container{float:left;height:100%;padding:50px 0 0 55px;font-size:24px;position:absolute}#site-header #site-header-wrapper #site-header-store-name-container>a{color:white}#site-header #site-header-wrapper #site-header-store-name-container>a:hover{color:#337ab7}#site-header #site-header-wrapper #site-header-right{float:right;height:100%}#site-header #site-header-wrapper #site-header-right #site-header-right-top{height:40px;width:100%;padding-right:5px}#site-header #site-header-wrapper #site-header-right #site-header-search-form{float:left;width:100%;max-width:16em}#site-header #site-header-wrapper #site-header-right #site-header-search-form #search-form{margin:6.5px 0}#site-header #site-header-wrapper #site-header-right #search-form{height:25px;padding:0;margin:6.5px 15px;line-height:25px;position:relative}#site-header #site-header-wrapper #site-header-right #search-form input[type="text"]{width:100%;min-width:16em;height:25px;padding:0;border:1px solid #fff;margin-bottom:-1px;padding-right:30px;text-indent:5px;color:#6a7686;float:left;border-radius:6px;box-shadow:none}#site-header #site-header-wrapper #site-header-right #search-form>a{top:2px;right:0;display:block;width:25px;height:25px;background-image:url(/theme/flatui/img/icon-search-input-2.png);background-position:center center;position:absolute;cursor:pointer}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container{float:right;margin-right:6px;margin-left:6px}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle{position:relative;height:40px;float:right;cursor:pointer;line-height:40px}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle a.profile-menu-toggle{display:block;width:100%;height:100%;padding-left:50px;padding-right:15px}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle img{position:absolute;top:5px;left:10px;height:30px;width:30px;border-radius:100%}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle span{color:white}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle:hover span{color:black}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle ul{display:none;width:165px;margin-left:0;position:absolute;top:40px;border:none;font-size:14px;color:#7f8c8d;font-weight:400;padding:0;z-index:10000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle ul .dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap;width:175px;height:12px;background-image:url(../img/bg_sheet.png);background-position:-385px 0}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle ul li{text-align:left;display:block;width:100%;background:#ecf0f1;margin:0;padding:0;height:40px;border-bottom:1px solid #d6d7d9}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle ul li:first-of-type{-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle ul li:last-of-type{-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle ul li a{float:left;display:block;padding:0 20px;color:#6a7686;text-align:left;height:40px;line-height:40px;width:100%}#site-header #site-header-wrapper #site-header-right #site-header-user-menu-container #user-menu-toggle.open ul{display:block}#site-header #site-header-wrapper #site-header-right #site-header-right-bottom{height:52px;width:100%}#site-header #site-header-wrapper #site-header-right #site-header-right-bottom #site-header-login-menu{width:100%;float:left;height:100%}#site-header #site-header-wrapper #site-header-right #site-header-right-bottom #site-header-login-menu ul{position:absolute;bottom:0;display:inline-table;list-style-type:none;margin:0;padding:0;z-index:999;right:0;width:175px}#site-header #site-header-wrapper #site-header-right #site-header-right-bottom #site-header-login-menu ul li{background-color:#609dca;border-color:#a3acfd;border-image:none;border-radius:5px 5px 0 0;border-style:solid solid none;border-width:2px 2px 0;height:24px;line-height:24px;margin-right:2px;float:left}#site-header #site-header-wrapper #site-header-right #site-header-right-bottom #site-header-login-menu ul li a{float:left;display:block;height:inherit;line-height:inherit;padding:0 20px;font-size:13px;color:white}#site-header #site-header-wrapper #site-header-right #site-header-right-bottom #site-header-login-menu ul li.active{background:#60bcff none repeat scroll 0 0}@media (max-width:767px){#site-header{height:180px !important;padding:0 5px !important}#site-header #site-header-wrapper{padding:0 !important}#site-header #site-header-wrapper #site-header-logo-container{margin:0 auto;position:relative;max-height:90px !important}#site-header #site-header-wrapper #site-header-store-name-container{width:100%;text-align:center;padding:15px 0;height:auto}#site-header #site-header-wrapper #site-header-right{position:absolute;bottom:0;left:0;width:100%;height:40px}#site-header #site-header-wrapper #site-header-right #site-header-right-top{padding-right:185px;width:100%;padding-left:10px}#site-header #site-header-wrapper #site-header-right #site-header-right-top #site-header-search-form{width:100%;max-width:100%}#site-header #site-header-wrapper #site-header-right #site-header-right-top #site-header-search-form input[type="text"]{min-width:100%;font-size:16px}#site-header #site-header-wrapper #site-header-right #site-header-right-top ul#site-header-user-menu-container{position:absolute;top:0;right:0}#site-header #site-header-wrapper #site-header-right #user-profile-menu{left:-34px}#site-header #site-header-wrapper #site-header-right #user-profile-menu .dropdown-header{background-position:-351px 0 !important}} \ No newline at end of file diff --git a/httpdocs/theme/react/assets/css/header.css.map b/httpdocs/theme/react/assets/css/header.css.map index d5334080b..51ad8bd41 100644 --- a/httpdocs/theme/react/assets/css/header.css.map +++ b/httpdocs/theme/react/assets/css/header.css.map @@ -1 +1 @@ -{"version":3,"sources":["header.less"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"sources":["header.less"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/httpdocs/theme/react/assets/less/header.less b/httpdocs/theme/react/assets/less/header.less index 9c0f7a679..92adece29 100644 --- a/httpdocs/theme/react/assets/less/header.less +++ b/httpdocs/theme/react/assets/less/header.less @@ -1,664 +1,665 @@ out: ../css/header.css, sourcemap: true, compress: true @import "elements.less"; #site-header-container { font-family: Arial,sans-serif; } #site-header { padding: 0 80px; font-size: 14px; ul { list-style-type: none; padding: 0; margin: 0; } #site-header-wrapper { position: relative; width: 100%; float: left; height: 100%; #site-header-logo-container { position: absolute; overflow: hidden; > a { width: 100%; display: block; img { width: 100%; } } } #site-header-store-name-container { float: left; height: 100%; padding: 50px 0 0 55px; font-size: 24px; position: absolute; > a { color: white; &:hover { color: #337ab7; } } } #site-header-right { float: right; height: 100%; #site-header-right-top { height: 40px; width: 100%; padding-right: 5px; } #site-header-search-form { float: left; width: 100%; max-width: 16em; #search-form { margin: 6.5px 0; } } #search-form { height: 25px; padding: 0; margin: 6.5px 15px; line-height: 25px; position: relative; input[type="text"]{ width: 100%; min-width: 16em; height: 25px; padding: 0; border: 1px solid #fff; margin-bottom: -1px; padding-right: 30px; text-indent: 5px; color: #6a7686; float: left; border-radius: 6px; box-shadow: none; } > a { top: 2px; right: 0; display: block; width: 25px; height: 25px; background-image: url(/theme/flatui/img/icon-search-input-2.png); background-position: center center; position: absolute; cursor: pointer; } } #site-header-user-menu-container { float: right; margin-right: 6px; margin-left: 6px; #user-menu-toggle { position: relative; height: 40px; float: right; cursor: pointer; line-height: 40px; a.profile-menu-toggle { display: block; width: 100%; height: 100%; padding-left: 50px; padding-right: 15px; } img { position: absolute; top: 5px; left: 10px; height: 30px; width: 30px; border-radius: 100%; } span { color:white; } &:hover { span { color: black; } } ul { display: none; width: 165px; margin-left: 0; position: absolute; top: 40px; border: none; font-size: 14px; color: #7f8c8d; font-weight: 400; padding: 0; z-index: 10000; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; .dropdown-header { display: block; padding: 3px 20px; font-size: 12px; line-height: 1.42857143; color: #777; white-space: nowrap; width: 175px; height: 12px; background-image: url(../img/bg_sheet.png); background-position: -385px 0; } li { text-align: left; display: block; width: 100%; background: #ecf0f1; margin: 0; padding: 0; height: 40px; border-bottom: 1px solid #d6d7d9; &:first-of-type { -webkit-border-radius: 5px 5px 0 0; -moz-border-radius: 5px 5px 0 0; border-radius: 5px 5px 0 0; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } &:last-of-type { -webkit-border-radius: 0 0 5px 5px; -moz-border-radius: 0 0 5px 5px; border-radius: 0 0 5px 5px; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } a { float: left; display: block; padding: 0 20px; color: #6a7686; text-align: left; height: 40px; line-height: 40px; width: 100%; } } } &.open { ul { display: block; } } } } #site-header-right-bottom { height: 52px; width: 100%; #site-header-login-menu { width: 100%; float: left; height: 100%; ul { position: absolute; bottom: 0px; display: inline-table; list-style-type: none; margin: 0; padding: 0; z-index: 999; right: 0; width: 175px; li { background-color: #609dca; border-color: #a3acfd; border-image: none; border-radius: 5px 5px 0 0; border-style: solid solid none; border-width: 2px 2px 0; height: 24px; line-height: 24px; margin-right: 2px; float: left; a { float: left; display: block; height: inherit; line-height: inherit; padding: 0 20px; font-size: 13px; color: white; } &.active { background: #60bcff none repeat scroll 0 0; } } } } } } } } -/* + @media (max-width:767px) { #site-header { height: 180px !important; padding: 0 5px !important; #site-header-wrapper { padding: 0 !important; #site-header-logo-container { margin: 0 auto; position: relative; max-height: 90px!important; } #site-header-store-name-container { width: 100%; text-align: center; padding: 15px 0; height: auto; } #site-header-right { position: absolute; bottom: 0; left: 0; width: 100%; height: 40px; #site-header-right-top { padding-right: 185px; width: 100%; padding-left: 10px; #site-header-search-form { width: 100%; max-width: 100%; input[type="text"]{ min-width: 100%; font-size: 16px; } } ul#site-header-user-menu-container { position: absolute; top: 0; right: 0; } } #user-profile-menu { left: -34px; .dropdown-header { background-position: -351px 0 !important; } } } } } } -*/ +/* @media (min-width:612px) and (max-width:720px){ #site-header { padding: 0 50px 0 10px; } } @media (max-width: 610px){ #mobile-site-header { height: 50px; } #site-header-container { height: 50px; #site-header { height: 50px !important; padding: 0; background-size: contain; } } #mobile-site-header { height: 50px; padding: 5px; padding-right: 10px; #mobile-site-header-logo { height: 40px; width: auto; float: left; > a { width: auto; height: 100%; > img { max-height: 40px; } } &.mini-version { width: 40px; overflow: hidden; &.Android { width: 24px; height: 27px; } &.Books { width: 38px; } } &.KFCE-Pling-CC { width: 100px !important; height: 32px; } } #mobile-site-header-menus-container { float: right; height: 40px; #switch-menu, #mobile-user-menu, #mobile-search-menu { height: 40px; padding: 5px; float: right; padding-right: 3px; .menu-item { display: block; height: 30px; width: 30px; position: relative; line-height: 30px; float: left; color: white; cursor: pointer; border: 2px solid; border-radius: 5px; > span { color: white; position: absolute; top: 50%; left: 50%; margin: -6px 0 0 -7px; } } .menu-item + .menu-item { margin-left: 5px; } #switch-menu-seperator { display: block; float: left; height: 20px; border-right: 1px solid black; border-left: 1px solid black; margin: 10px; display: none; } .menu-content-wrapper { float: left; height: 30px; line-height: 30px; padding: 0 5px; #site-header-search-form { width: 240px; } #search-form { height: 27px; padding: 0; margin: 1.5px 0; line-height: 27px; position: relative; margin-right: 60px; input[type="text"]{ width: 100%; height: 27px; padding: 0; border: 1px solid #fff; margin-bottom: -1px; padding-right: 30px; text-indent: 5px; color: #6a7686; float: left; border-radius: 5px; box-shadow: none; font-size: 16px; } > a { top: 2px; right: 0; display: block; width: 25px; height: 25px; background-image: url(/theme/flatui/img/icon-search-input-2.png); background-position: center center; position: absolute; cursor: pointer; } } #site-header-login-menu { width: 100%; float: left; height: 100%; ul { position: relative; bottom: 0; display: inline-table; list-style-type: none; margin: 0; padding: 0; z-index: 999; right: 0; width: 185px; li { border-image: none; border-radius: 5px; border-style: solid; border-width: 2px; height: 30px; line-height: 26px; margin-right: 5px; float: left; a { float: left; display: block; height: inherit; line-height: inherit; padding: 0 20px; font-size: 13px; color: white; } &.active { background: #60bcff none repeat scroll 0 0; } } } } #site-header-user-menu-container { float: right; margin-right: 6px; margin-left: 6px; margin-top: -5px; #user-menu-toggle { position: relative; height: 40px; float: right; cursor: pointer; line-height: 40px; a.profile-menu-toggle { display: block; width: 100%; height: 100%; padding-left: 50px; padding-right: 15px; } img { position: absolute; top: 5px; left: 10px; height: 30px; width: 30px; border-radius: 100%; } span { color:white; } &:hover { span { color: black; } } ul { display: none; width: 165px; margin-left: 0; position: absolute; top: 40px; border: none; font-size: 14px; color: #7f8c8d; font-weight: 400; padding: 0; z-index: 10000; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; .dropdown-header { display: block; padding: 3px 20px; font-size: 12px; line-height: 1.42857143; color: #777; white-space: nowrap; width: 175px; height: 12px; background-image: url(../img/bg_sheet.png); background-position: -385px 0; } li { text-align: left; display: block; width: 100%; background: #ecf0f1; margin: 0; padding: 0; height: 40px; border-bottom: 1px solid #d6d7d9; &:first-of-type { -webkit-border-radius: 5px 5px 0 0; -moz-border-radius: 5px 5px 0 0; border-radius: 5px 5px 0 0; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } &:last-of-type { -webkit-border-radius: 0 0 5px 5px; -moz-border-radius: 0 0 5px 5px; border-radius: 0 0 5px 5px; -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } a { float: left; display: block; padding: 0 20px; color: #6a7686; text-align: left; height: 40px; line-height: 40px; width: 100%; } } } &.open { ul { display: block; } } } } } } } } } +*/ diff --git a/httpdocs/theme/react/header.js b/httpdocs/theme/react/header.js index 7e6bd5748..eaf0d36a8 100644 --- a/httpdocs/theme/react/header.js +++ b/httpdocs/theme/react/header.js @@ -1,497 +1,499 @@ window.appHelpers = function () { function getEnv(domain) { let env; let lastDotSplit = this.splitByLastDot(domain); if (lastDotSplit.indexOf('/') > -1) { lastDotSplit = lastDotSplit.split('/')[0]; } if (lastDotSplit === 'com' || lastDotSplit === 'org') { env = 'live'; } else { env = 'test'; } return env; } function splitByLastDot(text) { var index = text.lastIndexOf('.'); return text.slice(index + 1); } return { getEnv, splitByLastDot }; }(); class SiteHeader extends React.Component { constructor(props) { super(props); this.state = { baseUrl: window.json_baseurl, cat_title: window.json_cat_title, hasIdentity: window.json_hasIdentity, is_show_title: window.json_is_show_title, redirectString: window.json_redirectString, serverUrl: window.json_serverUrl, serverUri: window.json_serverUri, store: { sName: window.json_sname, name: window.json_store_name, order: window.json_store_order, last_char_store_order: window.last_char_store_order }, user: window.json_member, logo: window.json_logoWidth, cat_title_left: window.json_cat_title_left, tabs_left: window.tabs_left, template: window.json_template, status: "" }; this.updateDimensions = this.updateDimensions.bind(this); } componentWillMount() { this.updateDimensions(); } componentDidMount() { window.addEventListener("resize", this.updateDimensions); window.addEventListener("orientationchange", this.updateDimensions); } updateDimensions() { const width = window.innerWidth; let device; if (width >= 910) { device = "large"; } else if (width < 910 && width >= 610) { device = "mid"; } else if (width < 610) { device = "tablet"; } this.setState({ device: device }); } render() { let userMenuDisplay, loginMenuDisplay, siteHeaderTopRightCssClass; if (this.state.user) { userMenuDisplay = React.createElement(SiteHeaderUserMenu, { serverUrl: this.state.serverUrl, baseUrl: this.state.baseUrl, user: this.state.user }); siteHeaderTopRightCssClass = "w-user"; } else { loginMenuDisplay = React.createElement(SiteHeaderLoginMenu, { baseUrl: this.state.baseUrl, redirectString: this.state.redirectString, template: this.state.template }); } let logoLink = this.state.serverUrl; if (this.state.serverUri.indexOf('/s/') > -1) { logoLink += "/s/" + this.state.store.name; } let siteHeaderStoreNameDisplay; if (this.state.is_show_title === "1") { siteHeaderStoreNameDisplay = React.createElement( "div", { id: "site-header-store-name-container" }, React.createElement( "a", { href: logoLink }, this.state.store.name ) ); } - let HeaderDisplay; - if (this.state.device !== "tablet") { - HeaderDisplay = React.createElement( - "section", - { id: "site-header-wrapper", style: { "paddingLeft": this.state.template['header-logo']['width'] } }, + /*let HeaderDisplay; + if (this.state.device !== "tablet"){*/ + const HeaderDisplay = React.createElement( + "section", + { id: "site-header-wrapper", style: { "paddingLeft": this.state.template['header-logo']['width'] } }, + React.createElement( + "div", + { id: "siter-header-left" }, React.createElement( "div", - { id: "siter-header-left" }, + { id: "site-header-logo-container", style: this.state.template['header-logo'] }, React.createElement( - "div", - { id: "site-header-logo-container", style: this.state.template['header-logo'] }, - React.createElement( - "a", - { href: logoLink }, - React.createElement("img", { src: this.state.template['header-logo']['image-src'] }) - ) - ), - siteHeaderStoreNameDisplay + "a", + { href: logoLink }, + React.createElement("img", { src: this.state.template['header-logo']['image-src'] }) + ) ), + siteHeaderStoreNameDisplay + ), + React.createElement( + "div", + { id: "site-header-right" }, React.createElement( "div", - { id: "site-header-right" }, - React.createElement( - "div", - { id: "site-header-right-top", className: siteHeaderTopRightCssClass }, - React.createElement(SiteHeaderSearchForm, { - baseUrl: this.state.baseUrl - }), - userMenuDisplay - ), - React.createElement( - "div", - { id: "site-header-right-bottom" }, - loginMenuDisplay - ) + { id: "site-header-right-top", className: siteHeaderTopRightCssClass }, + React.createElement(SiteHeaderSearchForm, { + baseUrl: this.state.baseUrl + }), + userMenuDisplay + ), + React.createElement( + "div", + { id: "site-header-right-bottom" }, + loginMenuDisplay ) - ); - } else { - HeaderDisplay = React.createElement(MobileSiteHeader, { - logoLink: logoLink, - template: this.state.template, - user: this.state.user, - baseUrl: this.state.baseUrl, - store: this.state.store, - redirectString: this.state.redirectString - }); - } + ) + ); + /*} else { + HeaderDisplay = ( + + ) + }*/ return React.createElement( "section", { id: "site-header", style: this.state.template.header }, HeaderDisplay ); } } class SiteHeaderSearchForm extends React.Component { constructor(props) { super(props); this.state = { searchText: '' }; this.onSearchTextChange = this.onSearchTextChange.bind(this); this.onSearchFormSubmit = this.onSearchFormSubmit.bind(this); } onSearchTextChange(e) { this.setState({ searchText: e.target.value }); } onSearchFormSubmit(e) { e.preventDefault(); window.location.href = this.props.baseUrl + "/search?projectSearchText=" + this.state.searchText; } render() { return React.createElement( "div", { id: "site-header-search-form" }, React.createElement( "form", { id: "search-form", onSubmit: this.onSearchFormSubmit }, React.createElement("input", { onChange: this.onSearchTextChange, value: this.state.searchText, type: "text", name: "projectSearchText" }), React.createElement("a", { onClick: this.onSearchFormSubmit }) ) ); } } class SiteHeaderLoginMenu extends React.Component { constructor(props) { super(props); this.state = {}; } render() { let registerButtonCssClass, loginButtonCssClass; if (window.location.href.indexOf('/register') > -1) { registerButtonCssClass = "active"; } if (window.location.href.indexOf('/login') > -1) { loginButtonCssClass = "active"; } const menuItemCssClass = { "borderColor": this.props.template['header-nav-tabs']['border-color'], "backgroundColor": this.props.template['header-nav-tabs']['background-color'] }; return React.createElement( "div", { id: "site-header-login-menu" }, React.createElement( "ul", null, React.createElement( "li", { style: menuItemCssClass, className: registerButtonCssClass }, React.createElement( "a", { href: this.props.baseUrl + "/register" }, "Register" ) ), React.createElement( "li", { style: menuItemCssClass, className: loginButtonCssClass }, React.createElement( "a", { href: this.props.baseUrl + "/login" + this.props.redirectString }, "Login" ) ) ) ); } } class SiteHeaderUserMenu extends React.Component { constructor(props) { super(props); this.state = {}; this.handleClick = this.handleClick.bind(this); } componentWillMount() { document.addEventListener('mousedown', this.handleClick, false); } componentWillUnmount() { document.removeEventListener('mousedown', this.handleClick, false); } handleClick(e) { let dropdownClass = ""; if (this.node.contains(e.target)) { if (this.state.dropdownClass === "open") { if (e.target.className === "profile-menu-toggle" || e.target.className === "profile-menu-image" || e.target.className === "profile-menu-username") { dropdownClass = ""; } else { dropdownClass = "open"; } } else { dropdownClass = "open"; } } this.setState({ dropdownClass: dropdownClass }); } render() { return React.createElement( "ul", { id: "site-header-user-menu-container" }, React.createElement( "li", { ref: node => this.node = node, id: "user-menu-toggle", className: this.state.dropdownClass }, React.createElement( "a", { className: "profile-menu-toggle" }, React.createElement("img", { className: "profile-menu-image", src: window.json_member_avatar }), React.createElement( "span", { className: "profile-menu-username" }, this.props.user.username ) ), React.createElement( "ul", { id: "user-profile-menu" }, React.createElement("div", { className: "dropdown-header" }), React.createElement( "li", null, React.createElement( "a", { href: "/product/add" }, "Add Product" ) ), React.createElement( "li", null, React.createElement( "a", { href: this.props.baseUrl + "/u/" + this.props.user.username + "/products" }, "Products" ) ), React.createElement( "li", null, React.createElement( "a", { href: this.props.baseUrl + "/u/" + this.props.user.username + "/plings" }, "Plings" ) ), React.createElement( "li", null, React.createElement( "a", { href: "/settings" }, "Settings" ) ), React.createElement( "li", null, React.createElement( "a", { href: "/logout" }, "Logout" ) ) ) ) ); } } class MobileSiteHeader extends React.Component { constructor(props) { super(props); this.state = { status: "switch" }; this.showMobileUserMenu = this.showMobileUserMenu.bind(this); this.showMobileSearchForm = this.showMobileSearchForm.bind(this); this.showMobileSwitchMenu = this.showMobileSwitchMenu.bind(this); } showMobileUserMenu() { this.setState({ status: "user" }); } showMobileSearchForm() { this.setState({ status: "search" }); } showMobileSwitchMenu() { this.setState({ status: "switch" }); } render() { const menuItemCssClass = { "borderColor": this.props.template['header-nav-tabs']['border-color'], "backgroundColor": this.props.template['header-nav-tabs']['background-color'] }; const closeMenuElementDisplay = React.createElement( "a", { className: "menu-item", onClick: this.showMobileSwitchMenu }, React.createElement("span", { className: "glyphicon glyphicon-remove" }) ); let mobileMenuDisplay; if (this.state.status === "switch") { mobileMenuDisplay = React.createElement( "div", { id: "switch-menu" }, React.createElement( "a", { className: "menu-item", onClick: this.showMobileSearchForm, id: "user-menu-switch" }, React.createElement("span", { className: "glyphicon glyphicon-search" }) ), React.createElement( "a", { className: "menu-item", onClick: this.showMobileUserMenu, id: "search-menu-switch" }, React.createElement("span", { className: "glyphicon glyphicon-option-horizontal" }) ) ); } else if (this.state.status === "user") { mobileMenuDisplay = React.createElement( "div", { id: "mobile-user-menu" }, React.createElement( "div", { className: "menu-content-wrapper" }, React.createElement(MobileUserContainer, { user: this.props.user, baseUrl: this.props.baseUrl, template: this.props.template, redirectString: this.props.redirectString }) ), closeMenuElementDisplay ); } else if (this.state.status === "search") { mobileMenuDisplay = React.createElement( "div", { id: "mobile-search-menu" }, React.createElement( "div", { className: "menu-content-wrapper" }, React.createElement(SiteHeaderSearchForm, { baseUrl: this.props.baseUrl }) ), closeMenuElementDisplay ); } let logoElementCssClass = this.props.store.name; if (this.state.status !== "switch") { logoElementCssClass = " mini-version"; } return React.createElement( "section", { id: "mobile-site-header" }, React.createElement( "div", { id: "mobile-site-header-logo", className: logoElementCssClass }, React.createElement( "a", { href: this.props.logoLink }, React.createElement("img", { src: this.props.template['header-logo']['image-src'] }) ) ), React.createElement( "div", { id: "mobile-site-header-menus-container" }, mobileMenuDisplay ) ); } } class MobileUserContainer extends React.Component { constructor(props) { super(props); this.state = {}; } render() { let userDisplay; if (this.props.user) { userDisplay = React.createElement(SiteHeaderUserMenu, { user: this.props.user }); } else { userDisplay = React.createElement(SiteHeaderLoginMenu, { baseUrl: this.props.baseUrl, template: this.props.template, redirectString: this.props.redirectString }); } return React.createElement( "div", { id: "mobile-user-container" }, userDisplay ); } } ReactDOM.render(React.createElement(SiteHeader, null), document.getElementById('site-header-container'));