diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 1cdc7633..54c75b23 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -7,39 +7,17 @@ - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -227,7 +205,7 @@ - + 1602059851601 @@ -355,7 +333,14 @@ - @@ -366,7 +351,19 @@ - + + + @@ -395,7 +392,8 @@ - @@ -410,10 +408,10 @@ - + - + @@ -487,10 +485,10 @@ - + - + diff --git a/modules/lgcookieslaw/Readme.md b/modules/lgcookieslaw/Readme.md new file mode 100644 index 00000000..7fc0291d --- /dev/null +++ b/modules/lgcookieslaw/Readme.md @@ -0,0 +1,11 @@ +ENGLISH +Go to the "readme" folder and open the "readme_en.pdf" file + +FRANÇAIS +Allez dans le dossier "readme" et ouvrez le fichier "readme_fr.pdf" + +ESPAÑOL +Ve a la carpeta "readme" y abre el archivo "readme_es.pdf" + +ITALIANO +Vai alla cartella "readme" e aprire il file " readme_it.pdf " \ No newline at end of file diff --git a/modules/lgcookieslaw/backward_compatibility/Context.php b/modules/lgcookieslaw/backward_compatibility/Context.php new file mode 100644 index 00000000..5f1f3604 --- /dev/null +++ b/modules/lgcookieslaw/backward_compatibility/Context.php @@ -0,0 +1,347 @@ + +* @copyright 2007-2014 PrestaShop SA +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +if ((bool)Configuration::get('PS_MOBILE_DEVICE')) + require_once(_PS_MODULE_DIR_ . '/mobile_theme/Mobile_Detect.php'); + +// Retro 1.3, 'class_exists' cause problem with autoload... +if (version_compare(_PS_VERSION_, '1.4', '<')) +{ + // Not exist for 1.3 + class Shop extends ObjectModel + { + public $id = 1; + public $id_shop_group = 1; + + public function __construct() + { + } + + + public static function getShops() + { + return array( + array('id_shop' => 1, 'name' => 'Default shop') + ); + } + + public static function getCurrentShop() + { + return 1; + } + } + + class Logger + { + public static function AddLog($message, $severity = 2) + { + $fp = fopen(dirname(__FILE__).'/../logs.txt', 'a+'); + fwrite($fp, '['.(int)$severity.'] '.Tools::safeOutput($message)); + fclose($fp); + } + } + +} + +// Not exist for 1.3 and 1.4 +class Context +{ + /** + * @var Context + */ + protected static $instance; + + /** + * @var Cart + */ + public $cart; + + /** + * @var Customer + */ + public $customer; + + /** + * @var Cookie + */ + public $cookie; + + /** + * @var Link + */ + public $link; + + /** + * @var Country + */ + public $country; + + /** + * @var Employee + */ + public $employee; + + /** + * @var Controller + */ + public $controller; + + /** + * @var Language + */ + public $language; + + /** + * @var Currency + */ + public $currency; + + /** + * @var AdminTab + */ + public $tab; + + /** + * @var Shop + */ + public $shop; + + /** + * @var Smarty + */ + public $smarty; + + /** + * @ var Mobile Detect + */ + public $mobile_detect; + + /** + * @var boolean|string mobile device of the customer + */ + protected $mobile_device; + + public function __construct() + { + global $cookie, $cart, $smarty, $link; + + $this->tab = null; + + $this->cookie = $cookie; + $this->cart = $cart; + $this->smarty = $smarty; + $this->link = $link; + + $this->controller = new ControllerBackwardModule(); + if (is_object($cookie)) + { + $this->currency = new Currency((int)$cookie->id_currency); + $this->language = new Language((int)$cookie->id_lang); + $this->country = new Country((int)$cookie->id_country); + $this->customer = new CustomerBackwardModule((int)$cookie->id_customer); + $this->employee = new Employee((int)$cookie->id_employee); + } + else + { + $this->currency = null; + $this->language = null; + $this->country = null; + $this->customer = null; + $this->employee = null; + } + + $this->shop = new ShopBackwardModule(); + + if ((bool)Configuration::get('PS_MOBILE_DEVICE')) + $this->mobile_detect = new Mobile_Detect(); + } + + public function getMobileDevice() + { + if (is_null($this->mobile_device)) + { + $this->mobile_device = false; + if ($this->checkMobileContext()) + { + switch ((int)Configuration::get('PS_MOBILE_DEVICE')) + { + case 0: // Only for mobile device + if ($this->mobile_detect->isMobile() && !$this->mobile_detect->isTablet()) + $this->mobile_device = true; + break; + case 1: // Only for touchpads + if ($this->mobile_detect->isTablet() && !$this->mobile_detect->isMobile()) + $this->mobile_device = true; + break; + case 2: // For touchpad or mobile devices + if ($this->mobile_detect->isMobile() || $this->mobile_detect->isTablet()) + $this->mobile_device = true; + break; + } + } + } + + return $this->mobile_device; + } + + protected function checkMobileContext() + { + return isset($_SERVER['HTTP_USER_AGENT']) + && (bool)Configuration::get('PS_MOBILE_DEVICE') + && !Context::getContext()->cookie->no_mobile; + } + + /** + * Get a singleton context + * + * @return Context + */ + public static function getContext() + { + if (!isset(self::$instance)) + self::$instance = new Context(); + return self::$instance; + } + + /** + * Clone current context + * + * @return Context + */ + public function cloneContext() + { + return clone($this); + } + + /** + * @return int Shop context type (Shop::CONTEXT_ALL, etc.) + */ + public static function shop() + { + if (!self::$instance->shop->getContextType()) + return ShopBackwardModule::CONTEXT_ALL; + return self::$instance->shop->getContextType(); + } +} + +/** + * Class Shop for Backward compatibility + */ +class ShopBackwardModule extends Shop +{ + const CONTEXT_ALL = 1; + + public $id = 1; + public $id_shop_group = 1; + + + public function getContextType() + { + return ShopBackwardModule::CONTEXT_ALL; + } + + // Simulate shop for 1.3 / 1.4 + public function getID() + { + return 1; + } + + /** + * Get shop theme name + * + * @return string + */ + public function getTheme() + { + return _THEME_NAME_; + } + + public function isFeatureActive() + { + return false; + } +} + +/** + * Class Controller for a Backward compatibility + * Allow to use method declared in 1.5 + */ +class ControllerBackwardModule +{ + /** + * @param $js_uri + * @return void + */ + public function addJS($js_uri) + { + Tools::addJS($js_uri); + } + + /** + * @param $css_uri + * @param string $css_media_type + * @return void + */ + public function addCSS($css_uri, $css_media_type = 'all') + { + Tools::addCSS($css_uri, $css_media_type); + } + + public function addJquery() + { + if (_PS_VERSION_ < '1.5') + $this->addJS(_PS_JS_DIR_.'jquery/jquery-1.4.4.min.js'); + elseif (_PS_VERSION_ >= '1.5') + $this->addJS(_PS_JS_DIR_.'jquery/jquery-1.7.2.min.js'); + } + +} + +/** + * Class Customer for a Backward compatibility + * Allow to use method declared in 1.5 + */ +class CustomerBackwardModule extends Customer +{ + public $logged = false; + /** + * Check customer informations and return customer validity + * + * @since 1.5.0 + * @param boolean $with_guest + * @return boolean customer validity + */ + public function isLogged($with_guest = false) + { + if (!$with_guest && $this->is_guest == 1) + return false; + + /* Customer is valid only if it can be load and if object password is the same as database one */ + if ($this->logged == 1 && $this->id && Validate::isUnsignedId($this->id) && Customer::checkPassword($this->id, $this->passwd)) + return true; + return false; + } +} diff --git a/modules/lgcookieslaw/backward_compatibility/Display.php b/modules/lgcookieslaw/backward_compatibility/Display.php new file mode 100644 index 00000000..309e8579 --- /dev/null +++ b/modules/lgcookieslaw/backward_compatibility/Display.php @@ -0,0 +1,48 @@ + +* @copyright 2007-2014 PrestaShop SA +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +/** + * Class allow to display tpl on the FO + */ +class BWDisplay extends FrontController +{ + // Assign template, on 1.4 create it else assign for 1.5 + public function setTemplate($template) + { + if (_PS_VERSION_ >= '1.5') + parent::setTemplate($template); + else + $this->template = $template; + } + + // Overload displayContent for 1.4 + public function displayContent() + { + parent::displayContent(); + + echo Context::getContext()->smarty->fetch($this->template); + } +} diff --git a/modules/lgcookieslaw/backward_compatibility/backward.ini b/modules/lgcookieslaw/backward_compatibility/backward.ini new file mode 100644 index 00000000..6520fb7a --- /dev/null +++ b/modules/lgcookieslaw/backward_compatibility/backward.ini @@ -0,0 +1 @@ +version = 0.4 \ No newline at end of file diff --git a/modules/lgcookieslaw/backward_compatibility/backward.php b/modules/lgcookieslaw/backward_compatibility/backward.php new file mode 100644 index 00000000..21f9eb41 --- /dev/null +++ b/modules/lgcookieslaw/backward_compatibility/backward.php @@ -0,0 +1,55 @@ + +* @copyright 2007-2014 PrestaShop SA +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +/** + * Backward function compatibility + * Need to be called for each module in 1.4 + */ + +// Get out if the context is already defined +if (!in_array('Context', get_declared_classes())) + require_once(dirname(__FILE__).'/Context.php'); + +// Get out if the Display (BWDisplay to avoid any conflict)) is already defined +if (!in_array('BWDisplay', get_declared_classes())) + require_once(dirname(__FILE__).'/Display.php'); + +// If not under an object we don't have to set the context +if (!isset($this)) + return; +else if (isset($this->context)) +{ + // If we are under an 1.5 version and backoffice, we have to set some backward variable + if (_PS_VERSION_ >= '1.5' && isset($this->context->employee->id) && $this->context->employee->id && isset(AdminController::$currentIndex) && !empty(AdminController::$currentIndex)) + { + global $currentIndex; + $currentIndex = AdminController::$currentIndex; + } + return; +} + +$this->context = Context::getContext(); +$this->smarty = $this->context->smarty; diff --git a/modules/lgcookieslaw/backward_compatibility/index.php b/modules/lgcookieslaw/backward_compatibility/index.php new file mode 100644 index 00000000..b856f563 --- /dev/null +++ b/modules/lgcookieslaw/backward_compatibility/index.php @@ -0,0 +1,35 @@ + +* @copyright 2007-2014 PrestaShop SA +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/controllers/front/disallow.php b/modules/lgcookieslaw/controllers/front/disallow.php new file mode 100644 index 00000000..abe32c34 --- /dev/null +++ b/modules/lgcookieslaw/controllers/front/disallow.php @@ -0,0 +1,42 @@ +=')) { + $this->setTemplate('module:lgcookieslaw/views/templates/front/disallow_1_7.tpl'); + } else { + $this->setTemplate('disallow.tpl'); + } + $ok = 0; + if (md5(_COOKIE_KEY_.$this->module->name) == Tools::getValue('token', '')) { + $ok = 1; + } + $cookies = array( + $this->context->cookie->getName(), + 'PHPSESSID', + ); + $this->context->smarty->assign( + array( + 'lgcookieslaw_safe_cookies' => $cookies, + 'lgcookieslaw_token_ok' => $ok, + ) + ); + //Tools::dieObject($this->context->cookie); + } +} diff --git a/modules/lgcookieslaw/controllers/front/index.php b/modules/lgcookieslaw/controllers/front/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/controllers/front/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/controllers/index.php b/modules/lgcookieslaw/controllers/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/controllers/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/index.php b/modules/lgcookieslaw/index.php new file mode 100644 index 00000000..2e358b17 --- /dev/null +++ b/modules/lgcookieslaw/index.php @@ -0,0 +1,106 @@ + + + +* @copyright 2007-2012 PrestaShop SA + + +* @version Release: $Revision: 14011 $ + + +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + + +* International Registered Trademark & Property of PrestaShop SA + + +*/ + + + + + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); + + +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + + + + + +header("Cache-Control: no-store, no-cache, must-revalidate"); + + +header("Cache-Control: post-check=0, pre-check=0", false); + + +header("Pragma: no-cache"); + + + + + +header("Location: ../"); + + +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/lgcookieslaw.php b/modules/lgcookieslaw/lgcookieslaw.php new file mode 100644 index 00000000..d6394f70 --- /dev/null +++ b/modules/lgcookieslaw/lgcookieslaw.php @@ -0,0 +1,1428 @@ +name = 'lgcookieslaw'; + $this->tab = 'front_office_features'; + $this->version = '1.4.22'; + $this->author = 'Línea Gráfica'; + $this->need_instance = 0; + $this->module_key = '56c109696b8e3185bc40d38d855f7332'; + $this->author_address = '0x30052019eD7528f284fd035BdA14B6eC3A4a1ffB'; + + if (substr_count(_PS_VERSION_, '1.6') > 0) { + $this->bootstrap = true; + } else { + $this->bootstrap = false; + } + + parent::__construct(); + + $this->displayName = $this->l('EU Cookie Law (Notification Banner + Cookie Blocker)'); + $this->description = $this->l('Display a cookie banner and block cookies before getting the user consent.'); + + /* Backward compatibility */ + if (_PS_VERSION_ < '1.5') { + require(_PS_MODULE_DIR_.$this->name.'/backward_compatibility/backward.php'); + } + } + + public function install() + { + $messages = array( + 'en' => array( + 'accept' => 'I accept', + 'moreinfo' => 'More information', + 'message' => + 'Our webstore '. + 'uses cookies to offer a better user experience and we recommend you to accept their '. + 'use to fully enjoy your navigation.', + 'required' => '
    +
  • Necessary to navigate this site and use its functions.
  • +
  • Identify you as a user and store your preferences such as language and currency.
  • +
  • Customize your experience based on your browsing.
  • +
', + 'additional' => '
    +
  • Third-party cookies for analytical purposes.
  • +
  • Show personalized recommendations based on your browsing on other sites.
  • +
  • Show custom campaigns on other websites.
  • +
', + ), + 'es' => array( + 'accept' => 'Acepto', + 'moreinfo' => 'Más información', + 'message' => + 'Nuestra '. + 'tienda usa cookies para mejorar la experiencia de usuario y le recomendamos '. + 'aceptar su uso para aprovechar plenamente la navegación.', + 'required' => '
    +
  • Necesarias para navegar en este sitio y utilizar sus funciones.
  • +
  • Identificarle como usuario y almacenar sus preferencias como idioma y moneda.
  • +
  • Personalizar su experiencia en base con su navegación.
  • +
', + 'additional' => '
    +
  • Cookies de terceros con propósitos analíticos.
  • +
  • Mostrar recomendaciones personalizadas basadas en su navegación en otros sitios.
  • +
  • Mostrar campañas personalizadas en otras sitios web.
  • +
', + ), + 'fr' => array( + 'accept' => 'J\'accepte', + 'moreinfo' => 'Plus d\'informations', + 'message' => + 'Notre boutique '. + 'utilise des cookies pour améliorer l\'expérience utilisateur et nous vous recommandons '. + 'd\'accepter leur utilisation pour profiter pleinement de votre navigation.', + 'required' => '
    +
  • Nécessaire pour naviguer sur ce site et utiliser ses fonctions.
  • +
  • Vous identifier en tant qu\'utilisateur et enregistrer vos préférences telles que la langue et la devise.
  • +
  • Personnalisez votre expérience en fonction de votre navigation.
  • +
', + 'additional' => '
    +
  • Cookies tiers à des fins d\'analyse.
  • +
  • Afficher des recommandations personnalisées en fonction de votre navigation sur d\'autres sites
  • +
  • Afficher des campagnes personnalisées sur d\'autres sites Web
  • +
', + ), + 'it' => array( + 'accept' => 'Accetto', + 'moreinfo' => 'Piú info', + 'message' => + 'Our webstore '. + 'uses cookies to offer a better user experience and we recommend you to accept their '. + 'use to fully enjoy your navigation.', + 'required' => '
    +
  • Necessario per navigare in questo sito e utilizzare le sue funzioni.
  • +
  • Identificarti come utente e memorizzare le tue preferenze come lingua e valuta.
  • +
  • Personalizza la tua esperienza in base alla tua navigazione.
  • +
', + 'additional' => '
    +
  • Cookie di terze parti per scopi analitici.
  • +
  • Mostra consigli personalizzati basati sulla tua navigazione su altri siti.
  • +
  • Mostra campagne personalizzate su altri siti web.
  • +
', + ), + ); + + if (!parent::install() + || !$this->registerHook('top') + || !$this->registerHook('displayMobileTop') + || !$this->registerHook('header') + || !$this->registerHook('backofficeHeader') + || !$this->registerHook('displayCustomerAccount') + ) { + return false; + } + + Configuration::updateValue('PS_LGCOOKIES_TIMELIFE', '31536000'); + Configuration::updateValue('PS_LGCOOKIES_NAME', '__lglaw'); + Configuration::updateValue('PS_LGCOOKIES_DIVCOLOR', '#707070'); + Configuration::updateValue('PS_LGCOOKIES_POSITION', '2'); + Configuration::updateValue('PS_LGCOOKIES_OPACITY', '0.7'); + Configuration::updateValue('PS_LGCOOKIES_TESTMODE', '1'); + Configuration::updateValue('PS_LGCOOKIES_RELOAD', '0'); + Configuration::updateValue('PS_LGCOOKIES_HIDDEN', '0'); + + Configuration::updateValue('PS_LGCOOKIES_SHADOWCOLOR', '#707070'); + Configuration::updateValue('PS_LGCOOKIES_FONTCOLOR', '#FFFFFF'); + Configuration::updateValue('PS_LGCOOKIES_CMS', '1'); + Configuration::updateValue('PS_LGCOOKIES_NAVIGATION_BTN', '5'); + Configuration::updateValue('PS_LGCOOKIES_CMS_TARGET', '1'); + Configuration::updateValue('PS_LGCOOKIES_POSITION', '2'); + Configuration::updateValue('PS_LGCOOKIES_SHOW_CLOSE', '1'); + Configuration::updateValue('PS_LGCOOKIES_BTN1_FONT_COLOR', '#FFFFFF'); + Configuration::updateValue('PS_LGCOOKIES_BTN1_BG_COLOR', '#8BC954'); + Configuration::updateValue('PS_LGCOOKIES_BTN2_FONT_COLOR', '#FFFFFF'); + Configuration::updateValue('PS_LGCOOKIES_BTN2_BG_COLOR', '#5BC0DE'); + + Configuration::updateValue('PS_LGCOOKIES_NAVIGATION', '0'); + Configuration::updateValue('PS_LGCOOKIES_IPTESTMODE', ''.$_SERVER['REMOTE_ADDR'].''); + Configuration::updateValue( + 'PS_LGCOOKIES_BOTS', + 'Teoma,alexa,froogle,Gigabot,inktomi,looksmart,URL_Spider_SQL,Firefly,NationalDirectory,'. + 'AskJeeves,TECNOSEEK,InfoSeek,WebFindBot,girafabot,crawler,www.galaxy.com,Googlebot,Scooter,'. + 'TechnoratiSnoop,Rankivabot,Mediapartners-Google, Sogouwebspider,WebAltaCrawler,TweetmemeBot,'. + 'Butterfly,Twitturls,Me.dium,Twiceler' + ); + // db tables + $query = 'CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'lgcookieslaw` ( + `id_module` int(11) NOT NULL, + UNIQUE KEY `id_module` (`id_module`) + ) ENGINE='.(defined('ENGINE_TYPE') ? ENGINE_TYPE : 'Innodb'); + if (!Db::getInstance()->Execute($query)) { + return false; + } + $query = 'CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'lgcookieslaw_lang` ( + `id_lang` int(11) NOT NULL, + `button1` text NOT NULL, + `button2` text NOT NULL, + `content` text NOT NULL, + `required` text NOT NULL, + `additional` text NOT NULL, + UNIQUE KEY `id_lang` (`id_lang`) + ) ENGINE='.(defined('ENGINE_TYPE') ? ENGINE_TYPE : 'Innodb').' CHARSET=utf8'; + if (!Db::getInstance()->Execute($query)) { + return false; + } + // main langs, english by default + $languages = Language::getLanguages(); + foreach ($languages as $language) { + if (isset($messages[$language['iso_code']])) { + $message = $messages[$language['iso_code']]; + } else { + $message = $messages['en']; + } + + Db::getInstance()->Execute( + 'INSERT INTO `'._DB_PREFIX_.'lgcookieslaw_lang` VALUES ('. + (int)$language['id_lang'].', '. + '\''.pSQL($message['accept']).'\', '. + '\''.pSQL($message['moreinfo']).'\', '. + '\''.pSQL($message['message'], 'html').'\', '. + '\''.pSQL($message['required'], 'html').'\', '. + '\''.pSQL($message['additional'], 'html').'\' '. + ')' + ); + } + + $this->saveCss(); + + return true; + } + + public function uninstall() + { + Db::getInstance()->Execute('DROP TABLE IF EXISTS `'._DB_PREFIX_.'lgcookieslaw`'); + Db::getInstance()->Execute('DROP TABLE IF EXISTS `'._DB_PREFIX_.'lgcookieslaw_lang`'); + return parent::uninstall(); + } + + private function cleanBots($bots) + { + $bots = str_replace(' ', '', $bots); + return $bots; + } + + private function getCMSList() + { + $cms = Db::getInstance()->ExecuteS( + 'SELECT * '. + 'FROM '._DB_PREFIX_.'cms_lang '. + 'WHERE id_lang = '.(int)(Configuration::get('PS_LANG_DEFAULT')) + ); + return $cms; + } + + private function isBot($agente) + { + $bots = Configuration::get('PS_LGCOOKIES_BOTS'); + $botlist = explode(',', $bots); + foreach ($botlist as $bot) { + if (strpos($agente, $bot) !== false) { + return true; + } + } + + return false; + } + + private function getModuleList() + { + $modules = Db::getInstance()->ExecuteS('SELECT * FROM '._DB_PREFIX_.'module'); + foreach ($modules as &$module) { + $module['checked'] = (int)$this->checkModule($module['id_module']); + } + + return $modules; + } + + private function checkModule($id_module) + { + $checkmodule = Db::getInstance()->getValue( + 'SELECT id_module '. + 'FROM '._DB_PREFIX_.'lgcookieslaw '. + 'WHERE id_module = '.(int)$id_module + ); + if ($checkmodule) { + return true; + } else { + return false; + } + } + + private function getContentLang($id_lang, $field) + { + $content = Db::getInstance()->getValue( + 'SELECT '.$field.' '. + 'FROM '._DB_PREFIX_.'lgcookieslaw_lang '. + 'WHERE id_lang = '.(int)$id_lang + ); + return $content; + } + + private function formatBootstrap($text) + { + $text = str_replace('
', '
', $text); + $text = str_replace( + '
', + '
', + $text + ); + $text = str_replace('
', '
', $text); + $text = str_replace('', '

', $text); + $text = str_replace('', '

', $text); + return $text; + } + + public function installOverrides() + { + $path = _PS_MODULE_DIR_.$this->name. + DIRECTORY_SEPARATOR.'override'. + DIRECTORY_SEPARATOR.'classes'. + DIRECTORY_SEPARATOR; + if (version_compare(_PS_VERSION_, '1.7.0', '>=')) { + copy($path.'Hook1700.php', $path.'Hook.php'); + } elseif (version_compare(_PS_VERSION_, '1.6.0.10', '>')) { + copy($path.'Hook16011.php', $path.'Hook.php'); + } elseif (version_compare(_PS_VERSION_, '1.6.0.5', '>')) { + copy($path.'Hook16010.php', $path.'Hook.php'); + } else { + copy($path.'Hook15.php', $path.'Hook.php'); + } + return parent::installOverrides(); + } + +// private function getP() +// { +// $default_lang = $this->context->language->id; +// $lang = Language::getIsoById($default_lang); +// $pl = array('es','fr','it'); +// if (!in_array($lang, $pl)) { +// $lang = 'en'; +// } +// $this->context->controller->addCSS(_MODULE_DIR_.$this->name.'/views/css/publi/style.css'); +// $base = ((!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') ? +// 'https://'.$this->context->shop->domain_ssl : +// 'http://'.$this->context->shop->domain); +// if (version_compare(_PS_VERSION_, '1.5.0', '>')) { +// $uri = $base.$this->context->shop->getBaseURI(); +// } else { +// $uri = ((!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') ? +// 'https://'._PS_SHOP_DOMAIN_SSL_DOMAIN_: +// 'http://'._PS_SHOP_DOMAIN_).__PS_BASE_URI__; +// } +// $path = _PS_MODULE_DIR_.$this->name +// .DIRECTORY_SEPARATOR.'views' +// .DIRECTORY_SEPARATOR.'publi' +// .DIRECTORY_SEPARATOR.$lang +// .DIRECTORY_SEPARATOR.'index.php'; +// $object = Tools::file_get_contents($path); +// $object = str_replace('src="/modules/', 'src="'.$uri.'modules/', $object); +// +// return $object; +// } + + private function getP($template) + { + $iso_langs = array('es', 'en', 'fr', 'it', 'de'); + $current_iso_lang = $this->context->language->iso_code; + $iso = (in_array($current_iso_lang, $iso_langs)) ? $current_iso_lang : 'en'; + + $this->context->smarty->assign( + array( + 'lgcookieslaw_iso' => $iso, + 'base_url' => _MODULE_DIR_. $this->name . DIRECTORY_SEPARATOR, + ) + ); + + return $this->context->smarty->fetch( + _PS_MODULE_DIR_ . $this->name + . DIRECTORY_SEPARATOR . 'views' + . DIRECTORY_SEPARATOR . 'templates' + . DIRECTORY_SEPARATOR . 'admin' + . DIRECTORY_SEPARATOR . '_p_' . $template . '.tpl' + ); + } + + + private function warningA() + { + if (!file_exists(_PS_ROOT_DIR_.'/override/classes/Hook.php')) { + $warningA = $this->displayError( + $this->l('The Hook.php override is missing.'). + ' '.$this->l('Please reset the module or copy the override manually on your FTP.') + ); + return $warningA; + } + } + + private function warningB() + { + if ((int)Configuration::get('PS_DISABLE_OVERRIDES') > 0) { + $tokenP = Tools::getAdminTokenLite('AdminPerformance'); + + $w = $this->getLinkTag( + 'index.php?tab=AdminPerformance&token='.$tokenP, + 'here', + '_blank' + ); + + $warningB = $this->displayError( + $this->l('The overrides are currently disabled on your store.'). + ' '.$this->l('Please change the configuration'). + ' '.$w + ); + return $warningB; + } + } + + private function warningC() + { + if ((int)Configuration::get('PS_DISABLE_NON_NATIVE_MODULE') > 0) { + $tokenP = Tools::getAdminTokenLite('AdminPerformance'); + + $w = $this->getLinkTag( + 'index.php?tab=AdminPerformance&token='.$tokenP, + 'here', + '_blank' + ); + + $warningC = $this->displayError( + $this->l('Non PrestaShop modules are currently disabled on your store.'). + ' '.$this->l('Please change the configuration'). + ' '.$w + ); + return $warningC; + } + } + + private function warningD() + { + if ((int)Configuration::get('PS_LGCOOKIES_TESTMODE') > 0) { + $warningD = $this->displayError( + $this->l('The preview mode of the module is enabled.'). + ' '.$this->l('Don\'t forget to disable it once you have finished configuring the banner.') + ); + return $warningD; + } + } + + private function warningE() + { + if ((int)Configuration::get('PS_LGCOOKIES_NAVIGATION') > 0 + and (int)Configuration::get('PS_LGCOOKIES_NAVIGATION_BTN') > 1 + ) { + $warningE = $this->displayError( + $this->l('The mode "Accept cookies through navigation" should be enabled'). + ' '.$this->l('only if the option "Banner without buttons" is selected.') + ); + return $warningE; + } + } + + private function warningF() + { + if ((int)Configuration::get('PS_LGCOOKIES_NAVIGATION') == 0 + and (int)Configuration::get('PS_LGCOOKIES_NAVIGATION_BTN') == 1 + ) { + $warningF = $this->displayError( + $this->l('The option "Banner without buttons" should be selected'). + ' '.$this->l('only if the mode "Accept cookies through navigation" is enabled.') + ); + return $warningF; + } + } + + private function warningGDPRKeepBrowsing() + { + $w = $this->l( + 'Due to the changes on Europen Union General Data Protection Rules that aplyes on 18th, May 2018, ' + ); + $w .= $this->l('If yuo enable this option, you will breaking Europen Union laws. '); + $w .= $this->l('Please if your shop is on European Union Territory, disable this option. '); + $w .= $this->l('We will not assume any damage, '); + $w .= $this->l('or conflict caused directly or indirectly as a consequence of have this option enabled. '); + $w .= $this->l('You can get more info in next link: '); + if ((int)Configuration::get('PS_LGCOOKIES_NAVIGATION') == 1) { + $languages = array( + 'BG', 'ES', 'CS', 'DA', 'DE', 'ET', 'EL', 'EN', 'FR', 'GA', 'HR', 'IT', 'LV', 'LT', + 'HU', 'MT', 'NL', 'PL', 'PT', 'RO', 'SK', 'SL', 'FI', 'SV', + ); + + $lang_iso = $this->context->language->iso_code; + $lang = 'EN'; + if (in_array($lang_iso, $languages)) { + $lang = $lang_iso; + } + + $url = 'http://eur-lex.europa.eu/legal-content/'.$lang.'/TXT/HTML/?uri=CELEX:32016R0679&from=EN'; + + $w .= $this->getLinkTag( + $url, + 'European Union General Data Protection Rules law', + '_blank', + 'European Union General Data Protection Rules law' + ); + + return $this->displayError($w); + } + } + + public function getLinkTag($href, $message, $target = null, $title = null) + { + $this->context->smarty->assign( + array( + 'href' => $href, + 'target' => $target, + 'title' => $title, + 'message' => $message, + ) + ); + + return $this->context->smarty->fetch( + _PS_MODULE_DIR_.$this->name. + DIRECTORY_SEPARATOR.'views'. + DIRECTORY_SEPARATOR.'templates'. + DIRECTORY_SEPARATOR.'admin'. + DIRECTORY_SEPARATOR.'message_link.tpl' + ); + } + + public function getContent() + { + $this->postProcess(); + $this->context->controller->addJqueryPlugin('ui.tooltip', null, true); + $this->fields_form = array(); + $this->fields_form[0]['form']['tabs'] = array( + 'config' => $this->l('General settings'), + 'banner' => $this->l('Banner settings'), + 'buttons' => $this->l('Button settings'), + 'modules' => $this->l('Modules blocked'), + ); + $field_type = 'switch'; + + $urll = $this->context->link->getModuleLink( + $this->name, + 'disallow', + array( + 'token' => md5(_COOKIE_KEY_.$this->name) + ), + true + ); + $this->context->smarty->assign( + array( + 'href' => $urll, + 'target' => '_blank', + 'title' => 'European Union General Data Protection Rules law', + 'message' => $urll, + ) + ); + + $w = $this->context->smarty->fetch( + _PS_MODULE_DIR_.$this->name. + DIRECTORY_SEPARATOR.'views'. + DIRECTORY_SEPARATOR.'templates'. + DIRECTORY_SEPARATOR.'admin'. + DIRECTORY_SEPARATOR.'message_link.tpl' + ); + + $t1 = $this->l('With this option your banner styles set initially as disabled:none then show by javascript. '); + $this->fields_form[0]['form']['input'] = array( + array( + 'label' => $this->l('IMPORTANT:'), + 'tab' => 'config', + 'desc' => + $this->l( + 'Don´t forget to disable the preview mode once you have finished configuring the banner.' + ), + 'type' => 'free', + 'name' => 'important', + ), + array( + 'label' => $this->l('Disallow url'), + 'tab' => 'config', + 'desc' => $w.' '. + $this->l('This link will grant the right of revoke their consent to your customers.'). + $this->l('You can paste this url on your CMS.'). + $this->l('Ypur users will be able to clean all cookies except Prestashop ones.'), + 'type' => 'free', + 'name' => 'important', + ), + array( + 'type' => 'switch', //$field_type, + 'label' => $this->l('Add revoke consent button'), + 'name' => 'PS_LGCOOKIES_DISALLOW', + 'tab' => 'config', + 'required' => false, + 'desc' => + $this->l('Enable this option to add a button on customers acount to revoke cookie consent.'). + ' '.$this->l('It will lcean all cookies except Prestashop ones,'), + 'class' => 't', + 'is_bool' => true, + 'values' => array( + array( + 'id' => 'PS_LGCOOKIES_DISALLOW_on', + 'value' => 1, + 'label' => $this->l('Yes') + ), + array( + 'id' => 'PS_LGCOOKIES_DISALLOW_off', + 'value' => 0, + 'label' => $this->l('No') + ) + ), + ), + array( + 'type' => 'switch', //$field_type, + 'label' => $this->l('Reload the page after accepting cookies'), + 'name' => 'PS_LGCOOKIES_RELOAD', + 'tab' => 'config', + 'required' => false, + 'desc' => + $this->l('Enable this option if you wish reload the page after a customer accepts cookies.'), + 'class' => 't', + 'is_bool' => true, + 'values' => array( + array( + 'id' => 'PS_LGCOOKIES_RELOAD_on', + 'value' => 1, + 'label' => $this->l('Yes') + ), + array( + 'id' => 'PS_LGCOOKIES_RELOAD_off', + 'value' => 0, + 'label' => $this->l('No') + ) + ), + ), + array( + 'type' => 'switch', //$field_type, + 'label' => $this->l('Preview mode:'), + 'name' => 'PS_LGCOOKIES_TESTMODE', + 'tab' => 'config', + 'required' => false, + 'desc' => + $this->l('Enable this option to preview the cookie banner in your front-office').' '. + $this->l('without bothering your customers (when the preview mode is enabled,').' '. + $this->l('the banner doesn´t disappear, the module doesn´t block cookies').' '. + $this->l('and only the person using the IP below is able to see the cookie banner).'), + 'class' => 't', + 'is_bool' => true, + 'values' => array( + array( + 'id' => 'PS_LGCOOKIES_TESTMODE_on', + 'value' => 1, + 'label' => $this->l('Yes') + ), + array( + 'id' => 'PS_LGCOOKIES_TESTMODE_off', + 'value' => 0, + 'label' => $this->l('No') + ) + ), + ), + array( + 'type' => 'switch', //$field_type, + 'label' => $this->l('Cache modules compatibility'), + 'name' => 'PS_LGCOOKIES_HIDDEN', + 'tab' => 'config', + 'required' => false, + 'desc' => + $t1. + $this->l('This can be usefull if your site use some cache module. '). + $this->l('Do not active this option if your accept button hide the banner, '). + $this->l('this option may not comply with the law.'), + 'class' => 't', + 'is_bool' => true, + 'values' => array( + array( + 'id' => 'PS_LGCOOKIES_HIDDEN_on', + 'value' => 1, + 'label' => $this->l('Yes') + ), + array( + 'id' => 'PS_LGCOOKIES_HIDDEN_off', + 'value' => 0, + 'label' => $this->l('No') + ) + ), + ), + array( + 'type' => 'ip', + 'label' => $this->l('IP for the preview mode:'), + 'name' => 'PS_LGCOOKIES_IPTESTMODE', + 'tab' => 'config', + 'required' => false, + 'desc' => + $this->l('Click on the button "Add IP" to be the only person').' '. + $this->l('able to see the banner (if the preview mode is enabled).'), + ), + array( + 'type' => 'text', + 'label' => $this->l('Cookie lifetime (seconds):'), + 'name' => 'PS_LGCOOKIES_TIMELIFE', + 'tab' => 'config', + 'required' => false, + 'desc' => + $this->l('Set the duration during which the user consent will be saved (1 year = 31536000s).'), + ), + array( + 'type' => 'hidden', + 'label' => $this->l('Cookie lifetime (seconds):'), + 'name' => 'PS_LGCOOKIES_SEL_TAB', + 'tab' => 'config', + 'required' => false, + 'desc' => + $this->l('Set the duration during which the user consent will be saved (1 year = 31536000s).'), + ), + array( + 'type' => 'text', + 'label' => $this->l('Cookie name:'), + 'name' => 'PS_LGCOOKIES_NAME', + 'tab' => 'config', + 'required' => false, + 'desc' => + $this->l('Choose the name of the cookie used by our module to remember user consent'). + ' '.$this->l('(don´t use any space).'), + ), + array( + 'type' => 'textarea', + 'label' => $this->l('SEO protection:'), + 'name' => 'PS_LGCOOKIES_BOTS', + 'tab' => 'config', + 'required' => false, + 'cols' => '10', + 'rows' => '5', + 'desc' => + $this->l('The module will prevent the search engine bots above').' '. + $this->l('from seeing the cookie warning banner when they crawl your website.'), + ), + array( + 'type' => 'free', + 'tab' => 'config', + 'label' => ' ', + 'name' => 'help1', + ), + array( + 'type' => 'free', + 'tab' => 'config', + 'label' => ' ', + 'name' => 'help5', + ), + array( + 'type' => 'select', + 'label' => $this->l('Banner position:'), + 'name' => 'PS_LGCOOKIES_POSITION', + 'tab' => 'banner', + 'required' => false, + 'desc' => $this->l('Choose the position of the warning banner (top or bottom of the page).'), + 'options' => array( + 'query' => array( + array('id' => '1', 'name' => $this->l('Top')), + array('id' => '2', 'name' => $this->l('Bottom')), + ), + 'id' => 'id', + 'name' => 'name', + + ), + ), + array( + 'type' => 'color', + 'label' => $this->l('Background color:'), + 'name' => 'PS_LGCOOKIES_DIVCOLOR', + 'tab' => 'banner', + 'required' => false, + ), + array( + 'type' => 'select', + 'label' => $this->l('Background opacity:'), + 'name' => 'PS_LGCOOKIES_OPACITY', + 'tab' => 'banner', + 'required' => false, + 'desc' => $this->l('Choose the opacity of the background color (1 is opaque, 0 is transparent).'), + 'options' => array( + 'query' => array( + array('id' => '1', 'name' => '1'), + array('id' => '0.9', 'name' => '0.9'), + array('id' => '0.8', 'name' => '0.8'), + array('id' => '0.7', 'name' => '0.7'), + array('id' => '0.6', 'name' => '0.6'), + array('id' => '0.5', 'name' => '0.5'), + array('id' => '0.4', 'name' => '0.4'), + array('id' => '0.3', 'name' => '0.3'), + array('id' => '0.2', 'name' => '0.2'), + array('id' => '0.1', 'name' => '0.1'), + array('id' => '0', 'name' => '0'), + ), + 'id' => 'id', + 'name' => 'name', + + ), + ), + array( + 'type' => 'color', + 'label' => $this->l('Shadow color:'), + 'name' => 'PS_LGCOOKIES_SHADOWCOLOR', + 'tab' => 'banner', + 'required' => false, + ), + array( + 'type' => 'color', + 'label' => $this->l('Font color:'), + 'name' => 'PS_LGCOOKIES_FONTCOLOR', + 'tab' => 'banner', + 'required' => false, + ), + array( + 'type' => 'textarea', + 'label' => $this->l('Banner message:'), + 'name' => 'content', + 'autoload_rte' => 'true', + 'lang' => 'true', + 'tab' => 'banner', + 'required' => false, + 'cols' => '10', + 'rows' => '5', + 'desc' => + $this->l('Example: "Our webstore uses cookies to offer a better user experience').' '. + $this->l('and we recommend you to accept their use to fully enjoy your navigation."'), + ), + array( + 'type' => 'textarea', + 'label' => $this->l('Required cookies block:'), + 'name' => 'required', + 'autoload_rte' => 'true', + 'lang' => 'true', + 'tab' => 'banner', + 'required' => false, + 'cols' => '10', + 'rows' => '5', + ), + array( + 'type' => 'textarea', + 'label' => $this->l('Additional cookies block:'), + 'name' => 'additional', + 'autoload_rte' => 'true', + 'lang' => 'true', + 'tab' => 'banner', + 'required' => false, + 'cols' => '10', + 'rows' => '5', + ), + array( + 'type' => 'free', + 'tab' => 'banner', + 'label' => ' ', + 'name' => 'help2', + ), + array( + 'type' => 'free', + 'tab' => 'banner', + 'label' => ' ', + 'name' => 'help5', + ), + /* + array( + 'type' => 'select', + 'label' => $this->l('Button position:'), + 'name' => 'PS_LGCOOKIES_NAVIGATION_BTN', + 'tab' => 'buttons', + 'required' => false, + 'desc' => + $this->l('Choose the position of the "I accept" and "More information" buttons inside the banner.'), + 'class' => 't', + 'options' => array( + 'query' => array( + array('id' => '1', 'name' => $this->l('Banner without buttons')), + array('id' => '2', 'name' => $this->l('Buttons above the text')), + array('id' => '3', 'name' => $this->l('Buttons below the text')), + array('id' => '4', 'name' => $this->l('Buttons to the left of the text')), + array('id' => '5', 'name' => $this->l('Buttons to the right of the text')), + + ), + 'id' => 'id', + 'name' => 'name', + ), + ), + array( + 'type' => $field_type, + 'label' => $this->l('Accept cookies through navigation:'), + 'name' => 'PS_LGCOOKIES_NAVIGATION', + 'tab' => 'buttons', + 'required' => false, + 'desc' => + $this->l('Disable this option is you want the banner to disappear').' '. + $this->l('only when users click on the "I accept" button (banner with buttons).').' '. + $this->l('And enable this option is you want the banner to disappear automatically').' '. + $this->l('when users keep browsing your website (banner without buttons).').' '. + $this->l('This option does not comply with European data protection law.'), + 'class' => 't', + 'is_bool' => true, + 'values' => array( + array( + 'id' => 'PS_LGCOOKIES_NAVIGATION_on', + 'value' => 1, + 'label' => $this->l('Yes') + ), + array( + 'id' => 'PS_LGCOOKIES_NAVIGATION_off', + 'value' => 0, + 'label' => $this->l('No') + ) + ), + ), + */ + array( + 'type' => 'text', + 'lang' => 'true', + 'label' => $this->l('Title of the button 1 "I accept":'), + 'name' => 'button1', + 'tab' => 'buttons', + 'required' => false, + ), + array( + 'type' => 'color', + 'label' => $this->l('Button 1 background color:'), + 'name' => 'PS_LGCOOKIES_BTN1_BG_COLOR', + 'tab' => 'buttons', + 'required' => false, + ), + array( + 'type' => 'color', + 'label' => $this->l('Button 1 font color:'), + 'name' => 'PS_LGCOOKIES_BTN1_FONT_COLOR', + 'tab' => 'buttons', + 'required' => false, + ), + array( + 'type' => 'text', + 'lang' => 'true', + 'label' => $this->l('Title of the button 2 "More information":'), + 'name' => 'button2', + 'tab' => 'buttons', + 'required' => false, + ), + /* + array( + 'type' => 'color', + 'label' => $this->l('Button 2 background color:'), + 'name' => 'PS_LGCOOKIES_BTN2_BG_COLOR', + 'tab' => 'buttons', + 'required' => false, + ), + array( + 'type' => 'color', + 'label' => $this->l('Button 2 font color:'), + 'name' => 'PS_LGCOOKIES_BTN2_FONT_COLOR', + 'tab' => 'buttons', + 'required' => false, + ), + */ + array( + 'type' => 'select', + 'label' => $this->l('Link of the button 2 "More information":'), + 'name' => 'PS_LGCOOKIES_CMS', + 'tab' => 'buttons', + 'required' => false, + 'desc' => + $this->l('When you click on the "More information" button,').' '. + $this->l('it will take you to CMS page you have selected.'), + 'options' => array( + 'query' => CMSCore::getCMSPages($this->context->language->id), + 'id' => 'id_cms', + 'name' => 'meta_title', + ), + ), + array( + 'type' => $field_type, + 'label' => $this->l('Open the link in a new window:'), + 'name' => 'PS_LGCOOKIES_CMS_TARGET', + 'tab' => 'buttons', + 'required' => false, + 'desc' => + $this->l('When you click on the "More information" button,').' '. + $this->l('the CMS page will be opened in a new or the same window of your browser.'), + 'is_bool' => true, + 'values' => array( + array( + 'id' => 'PS_LGCOOKIES_CMS_TARGET_on', + 'value' => 1, + 'label' => $this->l('Yes') + ), + array( + 'id' => 'PS_LGCOOKIES_CMS_TARGET_off', + 'value' => 0, + 'label' => $this->l('No') + ) + ), + ), + /* + array( + 'type' => $field_type, + 'label' => $this->l('Button to close the banner:'), + 'name' => 'PS_LGCOOKIES_SHOW_CLOSE', + 'tab' => 'buttons', + 'required' => false, + 'desc' => $this->l('Display a button to close the cookies banner.'), + 'is_bool' => true, + 'values' => array( + array( + 'id' => 'PS_LGCOOKIES_SHOW_CLOSE_on', + 'value' => 1, + 'label' => $this->l('Yes') + ), + array( + 'id' => 'PS_LGCOOKIES_SHOW_CLOSE_off', + 'value' => 0, + 'label' => $this->l('No') + ) + ), + ), + */ + array( + 'type' => 'free', + 'tab' => 'buttons', + 'name' => 'help3', + 'label' => ' ', + ), + array( + 'type' => 'free', + 'tab' => 'buttons', + 'label' => ' ', + 'name' => 'help5', + ), + array( + 'type' => 'free', + 'label' => $this->l('Block cookies:'), + 'name' => 'PS_BANNER_LIST', + 'tab' => 'modules', + 'desc' => + $this->l('Here is the list of all the modules installed on your store.').' '. + $this->l('Tick the modules that you want to disable until users give their consent.'), + ), + array( + 'type' => 'free', + 'tab' => 'modules', + 'label' => ' ', + 'name' => 'help4', + ), + array( + 'type' => 'free', + 'tab' => 'modules', + 'label' => ' ', + 'name' => 'help5', + ), + ); + $this->fields_form[0]['form']['submit'] = array( + 'title' => $this->l('Save'), + 'name' => 'submitForm', + + ); + $config_params = array(); + $config_params['tabs'] = $this->fields_form[0]['form']['tabs']; + $form = new HelperForm($this); + if (version_compare(_PS_VERSION_, '1.6.0', '<')) { + $this->context->controller->addJS(_MODULE_DIR_.$this->name.'/views/js/bootstrap.js'); + $this->context->controller->addJS(_MODULE_DIR_.$this->name.'/views/js/admin15.js'); + $this->context->controller->addCSS(_MODULE_DIR_.$this->name.'/views/css/admin15.css'); + $ps15 = true; + } else { + $ps15 = false; + } + $form->tpl_vars = $config_params; + $form->show_toolbar = true; + $form->module = $this; + $form->fields_value = $this->getConfigFormValues(); + $form->name_controller = 'lgcookieslaw'; + $form->identifier = $this->identifier; + $form->token = Tools::getAdminTokenLite('AdminModules'); + $form->currentIndex = AdminController::$currentIndex.'&configure='.$this->name; + $form->allow_employee_form_lang = $this->context->language->id; + $languages = Language::getLanguages(); + $language_exists = false; + foreach ($languages as &$lang) { + $lang['is_default'] = (int)($lang['id_lang'] == $this->context->language->id); + if ($lang['is_default']) { + $language_exists = true; + } + } + $form->default_form_language = $language_exists + ? $this->context->language->id + : (int)Configuration::get('PS_LANG_DEFAULT'); + + + $form->languages = $languages; + $form->toolbar_scroll = true; + $form->title = $this->displayName; + $form->submit_action = 'submitForm'; + $form->toolbar_btn = array( + 'back' => + array( + 'href' => + AdminController::$currentIndex.'&configure='.$this->name. + '&token='.Tools::getAdminTokenLite('AdminModules'), + 'desc' => $this->l('Back to the list') + ) + ); + $params = array(); + $params['link'] = $this->context->link; + $params['current_id_lang'] = $this->context->language->id; + $params['ps15'] = $ps15; + $params['ssl'] = (int)Configuration::get('PS_SSL_ENABLED_EVERYWHERE'); + $this->context->smarty->assign($params); + $content = + $this->context->smarty->fetch( + _PS_MODULE_DIR_.$this->name.DIRECTORY_SEPARATOR.'views'.DIRECTORY_SEPARATOR. + 'templates'.DIRECTORY_SEPARATOR.'admin'.DIRECTORY_SEPARATOR.'configure.tpl' + ); + + $advise = $this->context->smarty->fetch( + _PS_MODULE_DIR_.$this->name.DIRECTORY_SEPARATOR.'views'.DIRECTORY_SEPARATOR. + 'templates'.DIRECTORY_SEPARATOR.'admin'.DIRECTORY_SEPARATOR.'advise.tpl' + ); + + return + $this->getP('top') . + $advise. + $this->warningA(). + $this->warningB(). + $this->warningC(). + $this->warningD(). + $this->warningE(). + $this->warningF(). + $this->warningGDPRKeepBrowsing(). + $content. + $form->generateForm($this->fields_form). + $this->getP('bottom'); + } + + public function postProcess() + { + if (Tools::getIsset('submitForm')) { + $fields = array( + 'PS_LGCOOKIES_TESTMODE', + 'PS_LGCOOKIES_IPTESTMODE', + 'PS_LGCOOKIES_TIMELIFE', + 'PS_LGCOOKIES_NAME', + 'PS_LGCOOKIES_NAVIGATION', + 'PS_LGCOOKIES_BOTS', + 'PS_LGCOOKIES_CMS', + 'PS_LGCOOKIES_OPACITY', + 'PS_LGCOOKIES_DIVCOLOR', + 'PS_LGCOOKIES_SHADOWCOLOR', + 'PS_LGCOOKIES_FONTCOLOR', + 'PS_LGCOOKIES_NAVIGATION_BTN', + 'PS_LGCOOKIES_CMS_TARGET', + 'PS_LGCOOKIES_POSITION', + 'PS_LGCOOKIES_SHOW_CLOSE', + 'PS_LGCOOKIES_BTN1_FONT_COLOR', + 'PS_LGCOOKIES_BTN1_BG_COLOR', + 'PS_LGCOOKIES_BTN2_FONT_COLOR', + 'PS_LGCOOKIES_BTN2_BG_COLOR', + 'PS_LGCOOKIES_HIDDEN', + ); + $res = true; + foreach ($fields as $field) { + $res &= Configuration::updateValue($field, Tools::getValue($field, '')); + } + $res &= Configuration::updateValue( + 'PS_LGCOOKIES_DISALLOW', + (int)Tools::getValue('PS_LGCOOKIES_DISALLOW', 0) + ); + $res &= Configuration::updateValue( + 'PS_LGCOOKIES_RELOAD', + (int)Tools::getValue('PS_LGCOOKIES_RELOAD', 0) + ); + $res &= Configuration::updateValue( + 'PS_LGCOOKIES_SEL_TAB', + (int)Tools::getValue('PS_LGCOOKIES_SEL_TAB', 0) + ); + foreach (Language::getLanguages() as $lang) { + Db::getInstance()->Execute( + 'REPLACE INTO '._DB_PREFIX_.'lgcookieslaw_lang VALUES '. + '('.(int)$lang['id_lang'].', \''.pSQL(Tools::getValue('button1_'.(int)$lang['id_lang'])).'\', '. + '"'.pSQL(Tools::getValue('button2_'.(int)$lang['id_lang'])).'", '. + '"'.pSQL(Tools::getValue('content_'.(int)$lang['id_lang']), 'html').'", '. + '"'.pSQL(Tools::getValue('required_'.(int)$lang['id_lang']), 'html').'", '. + '"'.pSQL(Tools::getValue('additional_'.(int)$lang['id_lang']), 'html').'")' + ); + } + + // module list update + Db::getInstance()->Execute('TRUNCATE TABLE '._DB_PREFIX_.'lgcookieslaw'); + foreach ($this->getModuleList() as $modulos) { + if (Tools::getIsset('module'.$modulos['id_module'])) { + Db::getInstance()->Execute( + 'INSERT INTO '._DB_PREFIX_.'lgcookieslaw '. + 'VALUES ('.pSQL($modulos['id_module']).')' + ); + } + } + + $this->saveCss(); + } + } + + public function saveCss() + { + if (Configuration::get('PS_LGCOOKIES_POSITION') == 1) { + $position = 'top:0'; + } elseif (Configuration::get('PS_LGCOOKIES_POSITION') == 2) { + $position = 'bottom:0'; + } + list($r, $g, $b) = sscanf(Configuration::get('PS_LGCOOKIES_DIVCOLOR'), '#%02x%02x%02x'); + $bgcolor = $r.','.$g.','.$b.','.Configuration::get('PS_LGCOOKIES_OPACITY'); + $this->context->smarty->assign(array( + 'bgcolor' => $bgcolor, + 'fontcolor' => Configuration::get('PS_LGCOOKIES_FONTCOLOR'), + 'btn1_bgcolor' => Configuration::get('PS_LGCOOKIES_BTN1_BG_COLOR'), + 'btn1_fontcolor' => Configuration::get('PS_LGCOOKIES_BTN1_FONT_COLOR'), + 'btn2_bgcolor' => Configuration::get('PS_LGCOOKIES_BTN2_BG_COLOR'), + 'btn2_fontcolor' => Configuration::get('PS_LGCOOKIES_BTN2_FONT_COLOR'), + 'shadowcolor' => Configuration::get('PS_LGCOOKIES_SHADOWCOLOR'), + 'position' => $position, + 'opacity' => 'opacity:' . Configuration::get('PS_LGCOOKIES_OPACITY'), + 'buttons_position' => Configuration::get('PS_LGCOOKIES_NAVIGATION_BTN'), + 'show_close' => Configuration::get('PS_LGCOOKIES_SHOW_CLOSE'), + 'path_module' => _MODULE_DIR_ . $this->name, + 'nombre_cookie' => Configuration::get('PS_LGCOOKIES_NAME'), + 'tiempo_cookie' => Configuration::get('PS_LGCOOKIES_TIMELIFE'), + 'lgcookieslaw_reload' => Configuration::get('PS_LGCOOKIES_RELOAD'), + 'hidden' => Configuration::get('PS_LGCOOKIES_HIDDEN'), + )); + /* + if (version_compare(_PS_VERSION_, '1.7.0', '>=')) { + $rendered_template = $this->display(__FILE__, '/views/templates/hook/cookieslaw_header_1_7.tpl'); + } elseif (version_compare(_PS_VERSION_, '1.6', '>')) { + $rendered_template = $this->display(__FILE__, '/views/templates/hook/cookieslaw_header_1_6.tpl'); + } elseif (version_compare(_PS_VERSION_, '1.5', '>')) { + $rendered_template = $this->display(__FILE__, '/views/templates/hook/cookieslaw_header_1_5.tpl'); + } else { + $rendered_template = $this->display(__FILE__, '/views/templates/hook/cookieslaw_header.tpl'); + } + */ + $rendered_template = $this->display(__FILE__, '/views/templates/hook/style.tpl'); + + $path = _PS_MODULE_DIR_.$this->name.DIRECTORY_SEPARATOR.'views'.DIRECTORY_SEPARATOR. + 'css'.DIRECTORY_SEPARATOR.'lgcookieslaw.css'; + $fp = fopen($path, 'w'); + fwrite($fp, $rendered_template); + fclose($fp); + } + + public function getConfigFormValues() + { + $fields = array( + 'PS_LGCOOKIES_TESTMODE', + 'PS_LGCOOKIES_IPTESTMODE', + 'PS_LGCOOKIES_TIMELIFE', + 'PS_LGCOOKIES_NAME', + 'PS_LGCOOKIES_NAVIGATION', + 'PS_LGCOOKIES_NAVIGATION2', + 'PS_LGCOOKIES_BOTS', + 'PS_LGCOOKIES_SHADOWCOLOR', + 'PS_LGCOOKIES_FONTCOLOR', + 'PS_LGCOOKIES_CMS', + 'PS_LGCOOKIES_OPACITY', + 'PS_LGCOOKIES_DIVCOLOR', + 'PS_LGCOOKIES_NAVIGATION_BTN', + 'PS_LGCOOKIES_CMS_TARGET', + 'PS_LGCOOKIES_POSITION', + 'PS_LGCOOKIES_SHOW_CLOSE', + 'PS_LGCOOKIES_BTN1_FONT_COLOR', + 'PS_LGCOOKIES_BTN1_BG_COLOR', + 'PS_LGCOOKIES_BTN2_FONT_COLOR', + 'PS_LGCOOKIES_BTN2_BG_COLOR', + 'PS_LGCOOKIES_SEL_TAB', + 'PS_LGCOOKIES_DISALLOW', + 'PS_LGCOOKIES_RELOAD', + 'PS_LGCOOKIES_HIDDEN', + ); + $out = Configuration::getMultiple($fields); + $fields_lang = array('button1', 'button2', 'content', 'required', 'additional'); + foreach ($fields_lang as $field) { + foreach (Language::getLanguages() as $lang) { + $out[$field][$lang['id_lang']] = $this->getContentLang($lang['id_lang'], $field); + } + } + $out['PS_LGCOOKIES_SEL_TAB'] = (int)Configuration::get('PS_LGCOOKIES_SEL_TAB'); + + $this->context->smarty->assign('module_list', $this->getModuleList()); + $out['PS_BANNER_LIST'] = $this->context->smarty->fetch( + _PS_MODULE_DIR_.$this->name.DIRECTORY_SEPARATOR.'views'.DIRECTORY_SEPARATOR. + 'templates'.DIRECTORY_SEPARATOR.'admin'.DIRECTORY_SEPARATOR.'_configure'.DIRECTORY_SEPARATOR. + 'helpers'.DIRECTORY_SEPARATOR.'form'.DIRECTORY_SEPARATOR.'check_module_list.tpl' + ); + + $out['help1'] = + ' + '.$this->l('Read this page for more information'). + ''; + $out['help2'] = + ' + '.$this->l('Read this page for more information'). + ''; + $out['help3'] = + ' + '.$this->l('Read this page for more information'). + ''; + $out['help4'] = + ' + '.$this->l('Read this page for more information'). + ''; + $out['important'] = ''; + $out['help5'] = + ' + '.$this->l('FAQ: SEE THE COMMON ERRORS'). + ''; + $out['important'] = ''; + return $out; + } + + public function hookdisplayMobileTop($params) + { + return $this->hookTop($params); + } + + public function hookTop($params) + { + $link = new Link(); + $this->context->smarty->assign(array( + 'cookie_message' => $this->getContentLang($this->context->cookie->id_lang, 'content'), + 'cookie_required' => $this->getContentLang($this->context->cookie->id_lang, 'required'), + 'cookie_additional' => $this->getContentLang($this->context->cookie->id_lang, 'additional'), + 'button1' => $this->getContentLang($this->context->cookie->id_lang, 'button1'), + 'button2' => $this->getContentLang($this->context->cookie->id_lang, 'button2'), + 'cms_link' => $link->getCMSLink(Configuration::get('PS_LGCOOKIES_CMS')), + 'cms_target' => Configuration::get('PS_LGCOOKIES_CMS_TARGET'), + 'target' => Configuration::get('PS_LGCOOKIES_CMS'), + 'buttons_position' => Configuration::get('PS_LGCOOKIES_NAVIGATION_BTN'), + 'show_close' => Configuration::get('PS_LGCOOKIES_SHOW_CLOSE'), + 'hidden' => Configuration::get('PS_LGCOOKIES_HIDDEN'), + 'path_module' => _MODULE_DIR_ . $this->name, + )); + + if (Configuration::get('PS_LGCOOKIES_TESTMODE') == 1) { + if (Configuration::get('PS_LGCOOKIES_IPTESTMODE') == $_SERVER['REMOTE_ADDR']) { + return $this->display(__FILE__, '/views/templates/hook/cookieslaw.tpl'); + } + } else { + if (!$this->isBot($_SERVER['HTTP_USER_AGENT'])) { + if (Tools::isSubmit('aceptocookies')) { + setcookie( + Configuration::get('PS_LGCOOKIES_NAME'), + '1', + time() + (int)Configuration::get('PS_LGCOOKIES_TIMELIFE'), + '/' + ); + //Tools::redirect($_SERVER['REQUEST_URI']); + echo ''; + die(); + } + if (Configuration::get('PS_LGCOOKIES_NAVIGATION') == 1) { + if (!isset($_COOKIE[Configuration::get('PS_LGCOOKIES_NAME')])) { + $url_actual = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; + $url_actual = "$_SERVER[REQUEST_SCHEME]://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; + $url_actual = parse_url($url_actual); + + if (!isset($_SERVER['HTTP_REFERER'])) { + $url_referer = $url_actual; + } else { + $url_referer = parse_url($_SERVER['HTTP_REFERER']); + } + } + if ($url_actual['host'] == $url_referer['host']) { + if ($url_actual['host'] == $url_referer['host'] && $url_actual['path'] != $url_referer['path']) { + if (!isset($_COOKIE[Configuration::get('PS_LGCOOKIES_NAME')])) { + setcookie( + Configuration::get('PS_LGCOOKIES_NAME'), + '1', + time() + (int)Configuration::get('PS_LGCOOKIES_TIMELIFE'), + '/' + ); + } + } + } + + if (!isset($_COOKIE[Configuration::get('PS_LGCOOKIES_NAME')])) { + return $this->display(__FILE__, '/views/templates/hook/cookieslaw.tpl'); + } + } else { + if (!isset($_COOKIE[Configuration::get('PS_LGCOOKIES_NAME')])) { + return $this->display(__FILE__, '/views/templates/hook/cookieslaw.tpl'); + } + } + } + } + } + + public function hookBackOfficeHeader() + { + if ($this->context->controller instanceof AdminController + && pSQL(Tools::getValue('configure')) == $this->name + ) { + $this->context->controller->addCSS($this->_path . '/views/css/publi/lgpubli.css'); + } + } + + public function hookDisplayHeader($params) + { + $this->context->controller->addJqueryPlugin('fancybox'); + $this->context->controller->addCSS(_MODULE_DIR_.$this->name.'/views/css/front.css'); + $this->context->controller->addCSS(_MODULE_DIR_.$this->name.'/views/css/lgcookieslaw.css'); + $this->context->controller->addJS(_MODULE_DIR_.$this->name.'/views/js/front.js'); + + Media::addJsDef( + array( + 'lgcookieslaw_cookie_name' => Configuration::get('PS_LGCOOKIES_NAME'), + 'lgcookieslaw_session_time' => Configuration::get('PS_LGCOOKIES_TIMELIFE'), + ) + ); + } + + public function hookDisplayCustomerAccount($params) + { + if (Configuration::get('PS_LGCOOKIES_DISALLOW')) { + $version = '15'; + if (version_compare(_PS_VERSION_, '1.6.0', '>=') && version_compare(_PS_VERSION_, '1.7.0', '<')) { + $version = '16'; + } elseif (version_compare(_PS_VERSION_, '1.7.0', '>=')) { + $version = '17'; + } + $lgcookieslaw_image_path = $this->getPathUri(); + $lgcookieslaw_disallow_url = $this->context->link->getModuleLink( + $this->name, + 'disallow', + array( + 'token' => md5(_COOKIE_KEY_.$this->name) + ), + true + ); + $this->context->smarty->assign( + array( + 'lgcookieslaw_disallow_url' => $lgcookieslaw_disallow_url, + 'lgcookieslaw_image_path' => $lgcookieslaw_image_path + .'/views/img/account_button_icon_'.$version.'.png', + ) + ); + return $this->display(__FILE__, 'views/templates/front/account_button_'.$version.'.tpl'); + } + } +} diff --git a/modules/lgcookieslaw/licences/index.php b/modules/lgcookieslaw/licences/index.php new file mode 100644 index 00000000..dab9caa9 --- /dev/null +++ b/modules/lgcookieslaw/licences/index.php @@ -0,0 +1,34 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/licences/licence_en.pdf b/modules/lgcookieslaw/licences/licence_en.pdf new file mode 100644 index 00000000..937a51a9 Binary files /dev/null and b/modules/lgcookieslaw/licences/licence_en.pdf differ diff --git a/modules/lgcookieslaw/licences/licence_es.pdf b/modules/lgcookieslaw/licences/licence_es.pdf new file mode 100644 index 00000000..04b97bc9 Binary files /dev/null and b/modules/lgcookieslaw/licences/licence_es.pdf differ diff --git a/modules/lgcookieslaw/licences/licence_fr.pdf b/modules/lgcookieslaw/licences/licence_fr.pdf new file mode 100644 index 00000000..d26cbb2b Binary files /dev/null and b/modules/lgcookieslaw/licences/licence_fr.pdf differ diff --git a/modules/lgcookieslaw/logo.gif b/modules/lgcookieslaw/logo.gif new file mode 100644 index 00000000..4cccaa7b Binary files /dev/null and b/modules/lgcookieslaw/logo.gif differ diff --git a/modules/lgcookieslaw/logo.png b/modules/lgcookieslaw/logo.png new file mode 100644 index 00000000..201df845 Binary files /dev/null and b/modules/lgcookieslaw/logo.png differ diff --git a/modules/lgcookieslaw/override/classes/Hook.php b/modules/lgcookieslaw/override/classes/Hook.php new file mode 100644 index 00000000..7e0f0026 --- /dev/null +++ b/modules/lgcookieslaw/override/classes/Hook.php @@ -0,0 +1,292 @@ + + * @copyright 2007-2016 PrestaShop SA + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +class Hook extends HookCore +{ + /** + * Get list of modules we can execute per hook + * + * @since 1.5.0 + * @param string $hook_name Get list of modules for this hook if given + * @return array + */ + public static function getHookModuleExecList($hook_name = null) + { + $context = Context::getContext(); + $cache_id = 'hook_module_exec_list_'.(isset($context->shop->id) ? + '_'.$context->shop->id : '').((isset($context->customer)) ? '_'.$context->customer->id : + ''); + if (!Cache::isStored($cache_id) + || $hook_name == 'displayPayment' + || $hook_name == 'displayPaymentEU' + || $hook_name == 'paymentOptions' + || $hook_name == 'displayBackOfficeHeader' + ) { + $frontend = true; + $groups = array(); + $use_groups = Group::isFeatureActive(); + if (isset($context->employee)) { + $frontend = false; + } else { + // Get groups list + if ($use_groups) { + if (isset($context->customer) && $context->customer->isLogged()) { + $groups = $context->customer->getGroups(); + } elseif (isset($context->customer) && $context->customer->isLogged(true)) { + $groups = array((int)Configuration::get('PS_GUEST_GROUP')); + } else { + $groups = array((int)Configuration::get('PS_UNIDENTIFIED_GROUP')); + } + } + } + + // CARLOS: Agrego la condicion de que el modulo este activo, cuando se desactiva no debe hacer nada. + // Agregamos a la condición de que sea en el frontend para evitar que bloquee modulos en backend + if (Module::isInstalled('lgcookieslaw') && Module::isEnabled('lgcookieslaw') && $frontend) { + $cookieslaw = null; + // CARLOS: Se realizan 160 consultas por segundo porque no se ha optimizado bien la forma de onsultar + // el modulo. La cambiamos para obtener en una consulta la lista de modulos a excluir y con un + // in_array comprobar si es de los que hay que excluir. + + // Obtenemos todos los modulos a excluir + $cookieslaw = Db::getInstance()->executeS( + 'SELECT id_module '. + 'FROM '._DB_PREFIX_.'lgcookieslaw;' + ); + + // Intercambiamso claves por valor para luego consultar por la id del hook + if (!is_null($cookieslaw) && !empty($cookieslaw)) { + $modules = array(); + foreach ($cookieslaw as $module) { + $modules[] = $module['id_module']; + } + $cookieslaw = $modules; + unset($modules); + } + } + + // SQL Request + $sql = new DbQuery(); + $sql->select('h.`name` as hook, m.`id_module`, h.`id_hook`, m.`name` as module'); + $sql->from('module', 'm'); + if ($hook_name != 'displayBackOfficeHeader') { + $sql->join( + Shop::addSqlAssociation( + 'module', + 'm', + true, + 'module_shop.enable_device & '.(int)Context::getContext()->getDevice() + ) + ); + $sql->innerJoin('module_shop', 'ms', 'ms.`id_module` = m.`id_module`'); + } + $sql->innerJoin('hook_module', 'hm', 'hm.`id_module` = m.`id_module`'); + $sql->innerJoin('hook', 'h', 'hm.`id_hook` = h.`id_hook`'); + if ($hook_name != 'paymentOptions') { + $sql->where('h.`name` != "paymentOptions"'); + } elseif ($frontend) { // For payment modules, we check that they are available in the contextual country + if (Validate::isLoadedObject($context->country)) { + $sql->where( + '('. + ' ('. + ' h.`name` = "displayPayment" '. + ' OR h.`name` = "displayPaymentEU" '. + ' OR h.`name` = "paymentOptions"'. + ' )'. + ' AND ('. + ' SELECT `id_country` '. + ' FROM `'._DB_PREFIX_.'module_country` mc '. + ' WHERE mc.`id_module` = m.`id_module` '. + ' AND `id_country` = '.(int)$context->country->id. + ' AND `id_shop` = '.(int)$context->shop->id. + ' LIMIT 1'. + ' ) = '.(int)$context->country->id. + ')' + ); + } + if (Validate::isLoadedObject($context->currency)) { + $sql->where( + '('. + ' ('. + ' h.`name` = "displayPayment" '. + ' OR h.`name` = "displayPaymentEU" '. + ' OR h.`name` = "paymentOptions"'. + ' ) '. + ' AND ('. + ' SELECT `id_currency` '. + ' FROM `'._DB_PREFIX_.'module_currency` mcr '. + ' WHERE mcr.`id_module` = m.`id_module` '. + ' AND `id_currency` IN ('.(int)$context->currency->id.', -1, -2) '. + ' LIMIT 1'. + ' ) IN ('.(int)$context->currency->id.', -1, -2)'. + ')' + ); + } + if (Validate::isLoadedObject($context->cart)) { + $carrier = new Carrier($context->cart->id_carrier); + if (Validate::isLoadedObject($carrier)) { + $sql->where( + '('. + ' ('. + ' h.`name` = "displayPayment" '. + ' OR h.`name` = "displayPaymentEU" '. + ' OR h.`name` = "paymentOptions"'. + ' ) '. + ' AND ('. + ' SELECT `id_reference` '. + ' FROM `'._DB_PREFIX_.'module_carrier` mcar '. + ' WHERE mcar.`id_module` = m.`id_module` '. + ' AND `id_reference` = '.(int)$carrier->id_reference. + ' AND `id_shop` = '.(int)$context->shop->id.' '. + ' LIMIT 1'. + ' ) = '.(int)$carrier->id_reference. + ')' + ); + } + } + } + if (Validate::isLoadedObject($context->shop)) { + $sql->where('hm.`id_shop` = '.(int)$context->shop->id); + } + + if ($frontend) { + if ($use_groups) { + $sql->leftJoin('module_group', 'mg', 'mg.`id_module` = m.`id_module`'); + if (Validate::isLoadedObject($context->shop)) { + $sql->where( + 'mg.id_shop = ' + .( + (int)$context->shop->id).(count($groups) ? + ' AND mg.`id_group` IN ('.implode(', ', $groups).')' : + '' + ) + ); + } elseif (count($groups)) { + $sql->where('mg.`id_group` IN ('.implode(', ', $groups).')'); + } + } + } + + $sql->groupBy('hm.id_hook, hm.id_module'); + $sql->orderBy('hm.`position`'); + + $list = array(); + if ($result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql)) { + foreach ($result as $row) { + $row['hook'] = Tools::strtolower($row['hook']); + if (!isset($list[$row['hook']])) { + $list[$row['hook']] = array(); + } + + // CARLOS: Agrego la condicion de que el modulo este activo, cuando se desactiva no debe hacer nada + if (Module::isInstalled('lgcookieslaw') && Module::isEnabled('lgcookieslaw')) { + if (Tools::getValue('controller') == 'cms' + && Tools::getValue('id_cms', 0) == (int)Configuration::get('PS_LGCOOKIES_CMS') + ) { + $cms_page = true; + } else { + $cms_page = false; + } + + if (!Configuration::get('PS_LGCOOKIES_TESTMODE') == 1 || $cms_page) { + if (!isset($_COOKIE[Configuration::get('PS_LGCOOKIES_NAME')]) || + $cms_page || + $_COOKIE[Configuration::get('PS_LGCOOKIES_NAME')] != 1 + ) { + if (!isset($cookieslaw) + || is_null($cookieslaw) + || empty($cookieslaw) + || !in_array($row['id_module'], $cookieslaw) + ) { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + ); + } + } else { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + ); + } + } else { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + ); + } + } else { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + ); + } + } + } + if ($hook_name != 'displayPayment' + && $hook_name != 'displayPaymentEU' + && $hook_name != 'paymentOptions' + && $hook_name != 'displayBackOfficeHeader' + ) { + Cache::store($cache_id, $list); + // @todo remove this in 1.6, we keep it in 1.5 for backward compatibility + self::$_hook_modules_cache_exec = $list; + } + } else { + $list = Cache::retrieve($cache_id); + } + + // If hook_name is given, just get list of modules for this hook + if ($hook_name) { + $retro_hook_name = Tools::strtolower(Hook::getRetroHookName($hook_name)); + $hook_name = Tools::strtolower($hook_name); + + $return = array(); + $inserted_modules = array(); + if (isset($list[$hook_name])) { + $return = $list[$hook_name]; + } + foreach ($return as $module) { + $inserted_modules[] = $module['id_module']; + } + if (isset($list[$retro_hook_name])) { + foreach ($list[$retro_hook_name] as $retro_module_call) { + if (!in_array($retro_module_call['id_module'], $inserted_modules)) { + $return[] = $retro_module_call; + } + } + } + + return (count($return) > 0 ? $return : false); + } else { + return $list; + } + } +} diff --git a/modules/lgcookieslaw/override/classes/Hook15.php b/modules/lgcookieslaw/override/classes/Hook15.php new file mode 100644 index 00000000..4e39f849 --- /dev/null +++ b/modules/lgcookieslaw/override/classes/Hook15.php @@ -0,0 +1,224 @@ + + * @copyright 2007-2013 PrestaShop SA + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +class Hook extends HookCore +{ + public static function getHookModuleExecList($hook_name = null) + { + $context = Context::getContext(); + $cache_id = 'hook_module_exec_list_'; + $cache_id .= isset($context->shop->id) ? '_'.$context->shop->id : ''; + $cache_id .= isset($context->customer) ? '_'.$context->customer->id : ''; + if (!Cache::isStored($cache_id) || $hook_name == 'displayPayment') { + $frontend = true; + $groups = array(); + if (isset($context->employee)) { + $shop_list = array((int)$context->shop->id); + $frontend = false; + } else { + // Get shops and groups list + $shop_list = Shop::getContextListShopID(); + if (isset($context->customer) && $context->customer->isLogged()) { + $groups = $context->customer->getGroups(); + } elseif (isset($context->customer) && $context->customer->isLogged(true)) { + $groups = array((int)Configuration::get('PS_GUEST_GROUP')); + } else { + $groups = array((int)Configuration::get('PS_UNIDENTIFIED_GROUP')); + } + } + + // CARLOS: Agrego la condicion de que el modulo este activo, cuando se desactiva no debe hacer nada. + // Agregamos a la condición de que sea en el frontend para evitar que bloquee modulos en backend + if (Module::isInstalled('lgcookieslaw') && Module::isEnabled('lgcookieslaw') && $frontend) { + // CARLOS: Se realizan 160 consultas por segundo porque no se ha optimizado bien la forma de onsultar + // el modulo. La cambiamos para obtener en una consulta la lista de modulos a excluir y con un + // in_array comprobar si es de los que hay que excluir. + + // Obtenemos todos los modulos a excluir + $cookieslaw = Db::getInstance()->executeS( + 'SELECT id_module '. + 'FROM '._DB_PREFIX_.'lgcookieslaw;' + ); + + // Intercambiamso claves por valor para luego consultar por la id del hook + if (!is_null($cookieslaw) && !empty($cookieslaw)) { + $modules = array(); + foreach ($cookieslaw as $module) { + $modules[] = $module['id_module']; + } + $cookieslaw = $modules; + unset($modules); + } + } + + // SQL Request + $sql = new DbQuery(); + $sql->select('h.`name` as hook, m.`id_module`, h.`id_hook`, m.`name` as module, h.`live_edit`'); + $sql->from('module', 'm'); + $sql->innerJoin('hook_module', 'hm', 'hm.`id_module` = m.`id_module`'); + $sql->innerJoin('hook', 'h', 'hm.`id_hook` = h.`id_hook`'); + $sql->where( + '(SELECT COUNT(*) '. + 'FROM '._DB_PREFIX_.'module_shop ms '. + 'WHERE ms.id_module = m.id_module'. + ' AND ms.id_shop IN ('.implode(', ', $shop_list).')) = '.count($shop_list) + ); + if ($hook_name != 'displayPayment') { + $sql->where('h.name != "displayPayment"'); + } elseif ($frontend) { // For payment modules, we check that they are available in the contextual country + if (version_compare(_PS_VERSION_, '1.5.4.0', '>')) { + $sql->where(Module::getPaypalIgnore()); // Prestashop 1.5.x versions + } + if (Validate::isLoadedObject($context->country)) { + $sql->where( + '(h.name = "displayPayment" AND ('. + 'SELECT id_country '. + 'FROM '._DB_PREFIX_.'module_country mc '. + 'WHERE mc.id_module = m.id_module'. + ' AND id_country = '.(int)$context->country->id. + ' AND id_shop = '.(int)$context->shop->id. + ' LIMIT 1) = '.(int)$context->country->id.')' + ); + } + if (Validate::isLoadedObject($context->currency)) { + $sql->where( + '(h.name = "displayPayment" AND ('. + 'SELECT id_currency '. + 'FROM '._DB_PREFIX_.'module_currency mcr '. + 'WHERE mcr.id_module = m.id_module'. + ' AND id_currency IN ('.(int)$context->currency->id.', -1, -2)'. + ' LIMIT 1) IN ('.(int)$context->currency->id.', -1, -2))' + ); + } + } + if (Validate::isLoadedObject($context->shop)) { + $sql->where('hm.id_shop = '.(int)$context->shop->id); + } + + if ($frontend) { + $sql->leftJoin('module_group', 'mg', 'mg.`id_module` = m.`id_module`'); + $sql->where('mg.`id_group` IN ('.implode(', ', $groups).')'); + $sql->groupBy('hm.id_hook, hm.id_module'); + } + + $sql->orderBy('hm.`position`'); + + $list = array(); + if ($result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql)) { + foreach ($result as $row) { + $row['hook'] = Tools::strtolower($row['hook']); + if (!isset($list[$row['hook']])) { + $list[$row['hook']] = array(); + } + // lgcookieslaw START + + // CARLOS: Agrego la condicion de que el modulo este activo, cuando se desactiva no debe hacer nada + if (Module::isInstalled('lgcookieslaw') && Module::isEnabled('lgcookieslaw')) { + if (Tools::getValue('controller') == 'cms' + && Tools::getValue('id_cms', 0) == (int)Configuration::get('PS_LGCOOKIES_CMS') + ) { + $cms_page = true; + } else { + $cms_page = false; + } + + if (!Configuration::get('PS_LGCOOKIES_TESTMODE') == 1 || $cms_page) { + if (!isset($_COOKIE[Configuration::get('PS_LGCOOKIES_NAME')]) || $cms_page) { + if (!isset($cookieslaw) + || is_null($cookieslaw) + || empty($cookieslaw) + || !in_array($row['id_module'], $cookieslaw) + ) { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + 'live_edit' => $row['live_edit'], + ); + } + } else { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + 'live_edit' => $row['live_edit'], + ); + } + } else { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + 'live_edit' => $row['live_edit'], + ); + } + } else { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + 'live_edit' => $row['live_edit'], + ); + } + // lgcookieslaw END + } + } + if ($hook_name != 'displayPayment') { + Cache::store($cache_id, $list); + // @todo remove this in 1.6, we keep it in 1.5 for retrocompatibility + self::$_hook_modules_cache_exec = $list; + } + } else { + $list = Cache::retrieve($cache_id); + } + + // If hook_name is given, just get list of modules for this hook + if ($hook_name) { + $retro_hook_name = Hook::getRetroHookName($hook_name); + $hook_name = Tools::strtolower($hook_name); + + $return = array(); + $inserted_modules = array(); + if (isset($list[$hook_name])) { + $return = $list[$hook_name]; + } + foreach ($return as $module) { + $inserted_modules[] = $module['id_module']; + } + if (isset($list[$retro_hook_name])) { + foreach ($list[$retro_hook_name] as $retro_module_call) { + if (!in_array($retro_module_call['id_module'], $inserted_modules)) { + $return[] = $retro_module_call; + } + } + } + + return (count($return) > 0 ? $return : false); + } else { + return $list; + } + } +} diff --git a/modules/lgcookieslaw/override/classes/Hook16010.php b/modules/lgcookieslaw/override/classes/Hook16010.php new file mode 100644 index 00000000..e704e0fe --- /dev/null +++ b/modules/lgcookieslaw/override/classes/Hook16010.php @@ -0,0 +1,238 @@ + + * @copyright 2007-2013 PrestaShop SA + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +class Hook extends HookCore +{ + public static function getHookModuleExecList($hook_name = null) + { + + $context = Context::getContext(); + $cache_id = 'hook_module_exec_list_'; + $cache_id .= isset($context->shop->id) ? '_'.$context->shop->id : ''; + $cache_id .= isset($context->customer) ? '_'.$context->customer->id : ''; + if (!Cache::isStored($cache_id) || $hook_name == 'displayPayment') { + $frontend = true; + $groups = array(); + if (isset($context->employee)) { + $shop_list = array((int)$context->shop->id); + $frontend = false; + } else { + // Get shops and groups list + $shop_list = Shop::getContextListShopID(); + if (isset($context->customer) && $context->customer->isLogged()) { + $groups = $context->customer->getGroups(); + } elseif (isset($context->customer) && $context->customer->isLogged(true)) { + $groups = array((int)Configuration::get('PS_GUEST_GROUP')); + } else { + $groups = array((int)Configuration::get('PS_UNIDENTIFIED_GROUP')); + } + } + + // CARLOS: Agrego la condicion de que el modulo este activo, cuando se desactiva no debe hacer nada. + // Agregamos a la condición de que sea en el frontend para evitar que bloquee modulos en backend + $cookieslaw = null; + if (Module::isInstalled('lgcookieslaw') && Module::isEnabled('lgcookieslaw') && $frontend) { + // CARLOS: Se realizan 160 consultas por segundo porque no se ha optimizado bien la forma de onsultar + // el modulo. La cambiamos para obtener en una consulta la lista de modulos a excluir y con un + // in_array comprobar si es de los que hay que excluir. + + // Obtenemos todos los modulos a excluir + $cookieslaw = Db::getInstance()->executeS( + 'SELECT id_module '. + 'FROM '._DB_PREFIX_.'lgcookieslaw;' + ); + + // Intercambiamso claves por valor para luego consultar por la id del hook + if (!is_null($cookieslaw) && !empty($cookieslaw)) { + $modules = array(); + foreach ($cookieslaw as $module) { + $modules[] = $module['id_module']; + } + $cookieslaw = $modules; + unset($modules); + } + } + + // SQL Request + $sql = new DbQuery(); + $sql->select('h.`name` as hook, m.`id_module`, h.`id_hook`, m.`name` as module, h.`live_edit`'); + $sql->from('module', 'm'); + if ($hook_name != 'displayBackOfficeHeader') { + $sql->join( + Shop::addSqlAssociation( + 'module', + 'm', + true, + 'module_shop.enable_device & '.(int)Context::getContext()->getDevice() + ) + ); + $sql->innerJoin('module_shop', 'ms', 'ms.`id_module` = m.`id_module`'); + } + $sql->innerJoin('hook_module', 'hm', 'hm.`id_module` = m.`id_module`'); + $sql->innerJoin('hook', 'h', 'hm.`id_hook` = h.`id_hook`'); + $sql->where( + '(SELECT COUNT(*) '. + 'FROM '._DB_PREFIX_.'module_shop ms '. + 'WHERE ms.id_module = m.id_module'. + ' AND ms.id_shop IN ('.implode(', ', $shop_list).')) = '.count($shop_list) + ); + if ($hook_name != 'displayPayment') { + $sql->where('h.name != "displayPayment"'); + } elseif ($frontend) { // For payment modules, we check that they are available in the contextual country + $sql->where(Module::getPaypalIgnore()); + if (Validate::isLoadedObject($context->country)) { + $sql->where( + '(h.name = "displayPayment" AND ('. + 'SELECT id_country '. + 'FROM '._DB_PREFIX_.'module_country mc '. + 'WHERE mc.id_module = m.id_module'. + ' AND id_country = '.(int)$context->country->id. + ' AND id_shop = '.(int)$context->shop->id. + ' LIMIT 1) = '.(int)$context->country->id.')' + ); + } + if (Validate::isLoadedObject($context->currency)) { + $sql->where( + '(h.name = "displayPayment" AND ('. + 'SELECT id_currency '. + 'FROM '._DB_PREFIX_.'module_currency mcr '. + 'WHERE mcr.id_module = m.id_module'. + ' AND id_currency IN ('.(int)$context->currency->id.', -1, -2)'. + ' LIMIT 1) IN ('.(int)$context->currency->id.', -1, -2))' + ); + } + } + if (Validate::isLoadedObject($context->shop)) { + $sql->where('hm.id_shop = '.(int)$context->shop->id); + } + + if ($frontend) { + $sql->leftJoin('module_group', 'mg', 'mg.`id_module` = m.`id_module`'); + $sql->where('mg.`id_group` IN ('.implode(', ', $groups).')'); + $sql->groupBy('hm.id_hook, hm.id_module'); + } + + $sql->orderBy('hm.`position`'); + + $list = array(); + if ($result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql)) { + foreach ($result as $row) { + $row['hook'] = Tools::strtolower($row['hook']); + if (!isset($list[$row['hook']])) { + $list[$row['hook']] = array(); + } + // lgcookieslaw START + + // CARLOS: Agrego la condicion de que el modulo este activo, cuando se desactiva no debe hacer nada + if (Module::isInstalled('lgcookieslaw') && Module::isEnabled('lgcookieslaw')) { + if (Tools::getValue('controller') == 'cms' + && Tools::getValue('id_cms', 0) == (int)Configuration::get('PS_LGCOOKIES_CMS') + ) { + $cms_page = true; + } else { + $cms_page = false; + } + + if (!Configuration::get('PS_LGCOOKIES_TESTMODE') == 1 || $cms_page) { + if (!isset($_COOKIE[Configuration::get('PS_LGCOOKIES_NAME')]) || + $cms_page || + $_COOKIE[Configuration::get('PS_LGCOOKIES_NAME')] != 1 + ) { + if (!isset($cookieslaw) + || is_null($cookieslaw) + || empty($cookieslaw) + || !in_array($row['id_module'], $cookieslaw) + ) { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + 'live_edit' => $row['live_edit'], + ); + } + } else { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + 'live_edit' => $row['live_edit'], + ); + } + } else { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + 'live_edit' => $row['live_edit'], + ); + } + } else { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + 'live_edit' => $row['live_edit'], + ); + } + // lgcookieslaw END + } + } + if ($hook_name != 'displayPayment') { + Cache::store($cache_id, $list); + // @todo remove this in 1.6, we keep it in 1.5 for retrocompatibility + self::$_hook_modules_cache_exec = $list; + } + } else { + $list = Cache::retrieve($cache_id); + } + + // If hook_name is given, just get list of modules for this hook + if ($hook_name) { + $retro_hook_name = Hook::getRetroHookName($hook_name); + $hook_name = Tools::strtolower($hook_name); + + $return = array(); + $inserted_modules = array(); + if (isset($list[$hook_name])) { + $return = $list[$hook_name]; + } + foreach ($return as $module) { + $inserted_modules[] = $module['id_module']; + } + if (isset($list[$retro_hook_name])) { + foreach ($list[$retro_hook_name] as $retro_module_call) { + if (!in_array($retro_module_call['id_module'], $inserted_modules)) { + $return[] = $retro_module_call; + } + } + } + + return (count($return) > 0 ? $return : false); + } else { + return $list; + } + } +} diff --git a/modules/lgcookieslaw/override/classes/Hook16011.php b/modules/lgcookieslaw/override/classes/Hook16011.php new file mode 100644 index 00000000..0a5346a4 --- /dev/null +++ b/modules/lgcookieslaw/override/classes/Hook16011.php @@ -0,0 +1,236 @@ + + * @copyright 2007-2013 PrestaShop SA + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +class Hook extends HookCore +{ + public static function getHookModuleExecList($hook_name = null) + { + $context = Context::getContext(); + $cache_id = 'hook_module_exec_list_'; + $cache_id .= isset($context->shop->id) ? '_'.$context->shop->id : ''; + $cache_id .= isset($context->customer) ? '_'.$context->customer->id : ''; + if (!Cache::isStored($cache_id) || $hook_name == 'displayPayment' || $hook_name == 'displayBackOfficeHeader') { + $frontend = true; + $groups = array(); + $use_groups = Group::isFeatureActive(); + if (isset($context->employee)) { + $frontend = false; + } else { + // Get groups list + if ($use_groups) { + if (isset($context->customer) && $context->customer->isLogged()) { + $groups = $context->customer->getGroups(); + } elseif (isset($context->customer) && $context->customer->isLogged(true)) { + $groups = array((int)Configuration::get('PS_GUEST_GROUP')); + } else { + $groups = array((int)Configuration::get('PS_UNIDENTIFIED_GROUP')); + } + } + } + + // CARLOS: Agrego la condicion de que el modulo este activo, cuando se desactiva no debe hacer nada. + // Agregamos a la condición de que sea en el frontend para evitar que bloquee modulos en backend + if (Module::isInstalled('lgcookieslaw') && Module::isEnabled('lgcookieslaw')) { + $cookieslaw = null; + // CARLOS: Se realizan 160 consultas por segundo porque no se ha optimizado bien la forma de onsultar + // el modulo. La cambiamos para obtener en una consulta la lista de modulos a excluir y con un + // in_array comprobar si es de los que hay que excluir. + + // Obtenemos todos los modulos a excluir + $cookieslaw = Db::getInstance()->executeS( + 'SELECT id_module '. + 'FROM '._DB_PREFIX_.'lgcookieslaw;' + ); + + // Intercambiamso claves por valor para luego consultar por la id del hook + if (!is_null($cookieslaw) && !empty($cookieslaw)) { + $modules = array(); + foreach ($cookieslaw as $module) { + $modules[] = $module['id_module']; + } + $cookieslaw = $modules; + unset($modules); + } + } + + // SQL Request + $sql = new DbQuery(); + $sql->select('h.`name` as hook, m.`id_module`, h.`id_hook`, m.`name` as module, h.`live_edit`'); + $sql->from('module', 'm'); + if ($hook_name != 'displayBackOfficeHeader') { + $sql->join( + Shop::addSqlAssociation( + 'module', + 'm', + true, + 'module_shop.enable_device & '.(int)Context::getContext()->getDevice() + ) + ); + $sql->innerJoin('module_shop', 'ms', 'ms.`id_module` = m.`id_module`'); + } + $sql->innerJoin('hook_module', 'hm', 'hm.`id_module` = m.`id_module`'); + $sql->innerJoin('hook', 'h', 'hm.`id_hook` = h.`id_hook`'); + if ($hook_name != 'displayPayment') { + $sql->where('h.name != "displayPayment"'); + } elseif ($frontend) { + if (Validate::isLoadedObject($context->country)) { + $sql->where( + '(h.name = "displayPayment" AND ('. + 'SELECT id_country FROM '._DB_PREFIX_.'module_country mc '. + 'WHERE mc.id_module = m.id_module '. + 'AND id_country = '.(int)$context->country->id.' '. + 'AND id_shop = '.(int)$context->shop->id.' LIMIT 1'. + ') = '.(int)$context->country->id.')' + ); + } + if (Validate::isLoadedObject($context->currency)) { + $sql->where( + '(h.name = "displayPayment" AND ('. + 'SELECT id_currency FROM '._DB_PREFIX_.'module_currency mcr '. + 'WHERE mcr.id_module = m.id_module '. + 'AND id_currency IN ('.(int)$context->currency->id.', -1, -2) LIMIT 1'. + ') IN ('.(int)$context->currency->id.', -1, -2))' + ); + } + } + if (Validate::isLoadedObject($context->shop)) { + $sql->where('hm.id_shop = '.(int)$context->shop->id); + } + + if ($frontend) { + if ($use_groups) { + $sql->leftJoin('module_group', 'mg', 'mg.`id_module` = m.`id_module`'); + if (Validate::isLoadedObject($context->shop)) { + $sql->where( + 'mg.id_shop = '.((int)$context->shop->id).(count($groups) + ? ' AND mg.`id_group` IN ('.implode(', ', $groups).')' : '') + ); + } elseif (count($groups)) { + $sql->where('mg.`id_group` IN ('.implode(', ', $groups).')'); + } + } + } + + $sql->groupBy('hm.id_hook, hm.id_module'); + $sql->orderBy('hm.`position`'); + + $list = array(); + if ($result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql)) { + foreach ($result as $row) { + $row['hook'] = Tools::strtolower($row['hook']); + if (!isset($list[$row['hook']])) { + $list[$row['hook']] = array(); + } + + // CARLOS: Agrego la condicion de que el modulo este activo, cuando se desactiva no debe hacer nada + if (Module::isInstalled('lgcookieslaw') && Module::isEnabled('lgcookieslaw')) { + if (Tools::getValue('controller') == 'cms' + && Tools::getValue('id_cms', 0) == (int)Configuration::get('PS_LGCOOKIES_CMS') + ) { + $cms_page = true; + } else { + $cms_page = false; + } + + if (!Configuration::get('PS_LGCOOKIES_TESTMODE') == 1 || $cms_page) { + if (!isset($_COOKIE[Configuration::get('PS_LGCOOKIES_NAME')]) || + $cms_page || + $_COOKIE[Configuration::get('PS_LGCOOKIES_NAME')] != 1 + ) { + if (!isset($cookieslaw) + || is_null($cookieslaw) + || empty($cookieslaw) + || !in_array($row['id_module'], $cookieslaw) + ) { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + 'live_edit' => $row['live_edit'], + ); + } + } else { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + 'live_edit' => $row['live_edit'], + ); + } + } else { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + 'live_edit' => $row['live_edit'], + ); + } + } else { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + 'live_edit' => $row['live_edit'], + ); + } + } + } + if ($hook_name != 'displayPayment' && $hook_name != 'displayBackOfficeHeader') { + Cache::store($cache_id, $list); + // @todo remove this in 1.6, we keep it in 1.5 for backward compatibility + self::$_hook_modules_cache_exec = $list; + } + } else { + $list = Cache::retrieve($cache_id); + } + + // If hook_name is given, just get list of modules for this hook + if ($hook_name) { + $retro_hook_name = Tools::strtolower(Hook::getRetroHookName($hook_name)); + $hook_name = Tools::strtolower($hook_name); + + $return = array(); + $inserted_modules = array(); + if (isset($list[$hook_name])) { + $return = $list[$hook_name]; + } + foreach ($return as $module) { + $inserted_modules[] = $module['id_module']; + } + if (isset($list[$retro_hook_name])) { + foreach ($list[$retro_hook_name] as $retro_module_call) { + if (!in_array($retro_module_call['id_module'], $inserted_modules)) { + $return[] = $retro_module_call; + } + } + } + + return (count($return) > 0 ? $return : false); + } else { + return $list; + } + } +} diff --git a/modules/lgcookieslaw/override/classes/Hook1700.php b/modules/lgcookieslaw/override/classes/Hook1700.php new file mode 100644 index 00000000..7e0f0026 --- /dev/null +++ b/modules/lgcookieslaw/override/classes/Hook1700.php @@ -0,0 +1,292 @@ + + * @copyright 2007-2016 PrestaShop SA + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + * International Registered Trademark & Property of PrestaShop SA + */ + +class Hook extends HookCore +{ + /** + * Get list of modules we can execute per hook + * + * @since 1.5.0 + * @param string $hook_name Get list of modules for this hook if given + * @return array + */ + public static function getHookModuleExecList($hook_name = null) + { + $context = Context::getContext(); + $cache_id = 'hook_module_exec_list_'.(isset($context->shop->id) ? + '_'.$context->shop->id : '').((isset($context->customer)) ? '_'.$context->customer->id : + ''); + if (!Cache::isStored($cache_id) + || $hook_name == 'displayPayment' + || $hook_name == 'displayPaymentEU' + || $hook_name == 'paymentOptions' + || $hook_name == 'displayBackOfficeHeader' + ) { + $frontend = true; + $groups = array(); + $use_groups = Group::isFeatureActive(); + if (isset($context->employee)) { + $frontend = false; + } else { + // Get groups list + if ($use_groups) { + if (isset($context->customer) && $context->customer->isLogged()) { + $groups = $context->customer->getGroups(); + } elseif (isset($context->customer) && $context->customer->isLogged(true)) { + $groups = array((int)Configuration::get('PS_GUEST_GROUP')); + } else { + $groups = array((int)Configuration::get('PS_UNIDENTIFIED_GROUP')); + } + } + } + + // CARLOS: Agrego la condicion de que el modulo este activo, cuando se desactiva no debe hacer nada. + // Agregamos a la condición de que sea en el frontend para evitar que bloquee modulos en backend + if (Module::isInstalled('lgcookieslaw') && Module::isEnabled('lgcookieslaw') && $frontend) { + $cookieslaw = null; + // CARLOS: Se realizan 160 consultas por segundo porque no se ha optimizado bien la forma de onsultar + // el modulo. La cambiamos para obtener en una consulta la lista de modulos a excluir y con un + // in_array comprobar si es de los que hay que excluir. + + // Obtenemos todos los modulos a excluir + $cookieslaw = Db::getInstance()->executeS( + 'SELECT id_module '. + 'FROM '._DB_PREFIX_.'lgcookieslaw;' + ); + + // Intercambiamso claves por valor para luego consultar por la id del hook + if (!is_null($cookieslaw) && !empty($cookieslaw)) { + $modules = array(); + foreach ($cookieslaw as $module) { + $modules[] = $module['id_module']; + } + $cookieslaw = $modules; + unset($modules); + } + } + + // SQL Request + $sql = new DbQuery(); + $sql->select('h.`name` as hook, m.`id_module`, h.`id_hook`, m.`name` as module'); + $sql->from('module', 'm'); + if ($hook_name != 'displayBackOfficeHeader') { + $sql->join( + Shop::addSqlAssociation( + 'module', + 'm', + true, + 'module_shop.enable_device & '.(int)Context::getContext()->getDevice() + ) + ); + $sql->innerJoin('module_shop', 'ms', 'ms.`id_module` = m.`id_module`'); + } + $sql->innerJoin('hook_module', 'hm', 'hm.`id_module` = m.`id_module`'); + $sql->innerJoin('hook', 'h', 'hm.`id_hook` = h.`id_hook`'); + if ($hook_name != 'paymentOptions') { + $sql->where('h.`name` != "paymentOptions"'); + } elseif ($frontend) { // For payment modules, we check that they are available in the contextual country + if (Validate::isLoadedObject($context->country)) { + $sql->where( + '('. + ' ('. + ' h.`name` = "displayPayment" '. + ' OR h.`name` = "displayPaymentEU" '. + ' OR h.`name` = "paymentOptions"'. + ' )'. + ' AND ('. + ' SELECT `id_country` '. + ' FROM `'._DB_PREFIX_.'module_country` mc '. + ' WHERE mc.`id_module` = m.`id_module` '. + ' AND `id_country` = '.(int)$context->country->id. + ' AND `id_shop` = '.(int)$context->shop->id. + ' LIMIT 1'. + ' ) = '.(int)$context->country->id. + ')' + ); + } + if (Validate::isLoadedObject($context->currency)) { + $sql->where( + '('. + ' ('. + ' h.`name` = "displayPayment" '. + ' OR h.`name` = "displayPaymentEU" '. + ' OR h.`name` = "paymentOptions"'. + ' ) '. + ' AND ('. + ' SELECT `id_currency` '. + ' FROM `'._DB_PREFIX_.'module_currency` mcr '. + ' WHERE mcr.`id_module` = m.`id_module` '. + ' AND `id_currency` IN ('.(int)$context->currency->id.', -1, -2) '. + ' LIMIT 1'. + ' ) IN ('.(int)$context->currency->id.', -1, -2)'. + ')' + ); + } + if (Validate::isLoadedObject($context->cart)) { + $carrier = new Carrier($context->cart->id_carrier); + if (Validate::isLoadedObject($carrier)) { + $sql->where( + '('. + ' ('. + ' h.`name` = "displayPayment" '. + ' OR h.`name` = "displayPaymentEU" '. + ' OR h.`name` = "paymentOptions"'. + ' ) '. + ' AND ('. + ' SELECT `id_reference` '. + ' FROM `'._DB_PREFIX_.'module_carrier` mcar '. + ' WHERE mcar.`id_module` = m.`id_module` '. + ' AND `id_reference` = '.(int)$carrier->id_reference. + ' AND `id_shop` = '.(int)$context->shop->id.' '. + ' LIMIT 1'. + ' ) = '.(int)$carrier->id_reference. + ')' + ); + } + } + } + if (Validate::isLoadedObject($context->shop)) { + $sql->where('hm.`id_shop` = '.(int)$context->shop->id); + } + + if ($frontend) { + if ($use_groups) { + $sql->leftJoin('module_group', 'mg', 'mg.`id_module` = m.`id_module`'); + if (Validate::isLoadedObject($context->shop)) { + $sql->where( + 'mg.id_shop = ' + .( + (int)$context->shop->id).(count($groups) ? + ' AND mg.`id_group` IN ('.implode(', ', $groups).')' : + '' + ) + ); + } elseif (count($groups)) { + $sql->where('mg.`id_group` IN ('.implode(', ', $groups).')'); + } + } + } + + $sql->groupBy('hm.id_hook, hm.id_module'); + $sql->orderBy('hm.`position`'); + + $list = array(); + if ($result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql)) { + foreach ($result as $row) { + $row['hook'] = Tools::strtolower($row['hook']); + if (!isset($list[$row['hook']])) { + $list[$row['hook']] = array(); + } + + // CARLOS: Agrego la condicion de que el modulo este activo, cuando se desactiva no debe hacer nada + if (Module::isInstalled('lgcookieslaw') && Module::isEnabled('lgcookieslaw')) { + if (Tools::getValue('controller') == 'cms' + && Tools::getValue('id_cms', 0) == (int)Configuration::get('PS_LGCOOKIES_CMS') + ) { + $cms_page = true; + } else { + $cms_page = false; + } + + if (!Configuration::get('PS_LGCOOKIES_TESTMODE') == 1 || $cms_page) { + if (!isset($_COOKIE[Configuration::get('PS_LGCOOKIES_NAME')]) || + $cms_page || + $_COOKIE[Configuration::get('PS_LGCOOKIES_NAME')] != 1 + ) { + if (!isset($cookieslaw) + || is_null($cookieslaw) + || empty($cookieslaw) + || !in_array($row['id_module'], $cookieslaw) + ) { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + ); + } + } else { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + ); + } + } else { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + ); + } + } else { + $list[$row['hook']][] = array( + 'id_hook' => $row['id_hook'], + 'module' => $row['module'], + 'id_module' => $row['id_module'], + ); + } + } + } + if ($hook_name != 'displayPayment' + && $hook_name != 'displayPaymentEU' + && $hook_name != 'paymentOptions' + && $hook_name != 'displayBackOfficeHeader' + ) { + Cache::store($cache_id, $list); + // @todo remove this in 1.6, we keep it in 1.5 for backward compatibility + self::$_hook_modules_cache_exec = $list; + } + } else { + $list = Cache::retrieve($cache_id); + } + + // If hook_name is given, just get list of modules for this hook + if ($hook_name) { + $retro_hook_name = Tools::strtolower(Hook::getRetroHookName($hook_name)); + $hook_name = Tools::strtolower($hook_name); + + $return = array(); + $inserted_modules = array(); + if (isset($list[$hook_name])) { + $return = $list[$hook_name]; + } + foreach ($return as $module) { + $inserted_modules[] = $module['id_module']; + } + if (isset($list[$retro_hook_name])) { + foreach ($list[$retro_hook_name] as $retro_module_call) { + if (!in_array($retro_module_call['id_module'], $inserted_modules)) { + $return[] = $retro_module_call; + } + } + } + + return (count($return) > 0 ? $return : false); + } else { + return $list; + } + } +} diff --git a/modules/lgcookieslaw/override/classes/index.php b/modules/lgcookieslaw/override/classes/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/override/classes/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/override/index.php b/modules/lgcookieslaw/override/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/override/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/readme/index.php b/modules/lgcookieslaw/readme/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/readme/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/readme/readme_de.pdf b/modules/lgcookieslaw/readme/readme_de.pdf new file mode 100644 index 00000000..45257fcb Binary files /dev/null and b/modules/lgcookieslaw/readme/readme_de.pdf differ diff --git a/modules/lgcookieslaw/readme/readme_en.pdf b/modules/lgcookieslaw/readme/readme_en.pdf new file mode 100644 index 00000000..08bf5a7b Binary files /dev/null and b/modules/lgcookieslaw/readme/readme_en.pdf differ diff --git a/modules/lgcookieslaw/readme/readme_es.pdf b/modules/lgcookieslaw/readme/readme_es.pdf new file mode 100644 index 00000000..365c4f70 Binary files /dev/null and b/modules/lgcookieslaw/readme/readme_es.pdf differ diff --git a/modules/lgcookieslaw/readme/readme_fr.pdf b/modules/lgcookieslaw/readme/readme_fr.pdf new file mode 100644 index 00000000..437b2492 Binary files /dev/null and b/modules/lgcookieslaw/readme/readme_fr.pdf differ diff --git a/modules/lgcookieslaw/readme/readme_it.pdf b/modules/lgcookieslaw/readme/readme_it.pdf new file mode 100644 index 00000000..65c003e8 Binary files /dev/null and b/modules/lgcookieslaw/readme/readme_it.pdf differ diff --git a/modules/lgcookieslaw/readme/readme_pt.pdf b/modules/lgcookieslaw/readme/readme_pt.pdf new file mode 100644 index 00000000..cd2b9eb4 Binary files /dev/null and b/modules/lgcookieslaw/readme/readme_pt.pdf differ diff --git a/modules/lgcookieslaw/translations/de.php b/modules/lgcookieslaw/translations/de.php new file mode 100644 index 00000000..0ef4e18d --- /dev/null +++ b/modules/lgcookieslaw/translations/de.php @@ -0,0 +1,158 @@ +lgcookieslaw_22c7d5a25303111ee4d06c403cc597ca'] = 'EU-Cookie-Gesetz (Benachrichtigungs-Banner + Cookie-Blocker)'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5469626d2e768c6944316d0068c2fd81'] = 'Zeigen Sie ein Cookie-Banner an und blockieren Sie Cookies, bevor Sie den Benutzer zustimmen.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8ff9e90b056525c1363429d65e25395a'] = 'Die Hook.php-Override fehlt.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3550f654b97f366150bcd41af018082b'] = 'Bitte setzen Sie das Modul zurück oder kopieren Sie das Override manuell auf Ihren FTP.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9a6aa8054d2b7234c96b3a0ca0747589'] = 'Die Overrides sind derzeit in Ihrem Shop deaktiviert.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f289716452e91c7dde7c17683e95d291'] = 'Bitte ändern Sie die Konfiguration'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0d07c8b056dc01496d884eee9f3d6a9b'] = 'Nicht-PrestaShop-Module sind derzeit in Ihrem Shop deaktiviert.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_098069b86d3f121b6e50c40302c12d2a'] = 'Der Vorschau-Modus des Moduls ist aktiviert.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83794efdec9fd14bad765b006386a088'] = 'Vergessen Sie nicht, es zu deaktivieren, sobald Sie das Banner beendet haben.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e03d8ff435ef9e4c0bb95f7708d2a231'] = 'Der Modus \"Cookies über Navigation akzeptieren\" sollte aktiviert sein'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8e94d3d3cdee15b2e07a9633fd353041'] = 'Nur wenn die Option \"Banner ohne Tasten\" ausgewählt ist.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8c72a2546be6761c8972cb7d4a4130b2'] = 'Die Option \"Banner ohne Tasten\" sollte ausgewählt werden'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6fd94ce33a53d7103b8e1b6077b5e918'] = 'Nur wenn der Modus \"Cookies über Navigation akzeptieren\" aktiviert ist.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0cbb9d66b25062cd16fdb208b86aae56'] = 'Wenn Sie diese Option aktivieren, werden Sie die EU-Rechtsvorschriften verletzen.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8151b861b3b6f3236be5e1d8a86abfab'] = 'Bitte deaktivieren Sie diese Option, wenn sich Ihr Shop in einem EU-Gebiet befindet.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0a568c54bdfabd16ed212ec7166e67a1'] = 'Wir werden keinen Schaden annehmen,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_039280edf6e1d4c7042af74c4aa8a62a'] = 'oder Konflikte, die direkt oder indirekt als Konsequenz der Aktivierung dieser Option verursacht werden.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2296d5907cb69bfae96af109ccbf3aba'] = 'Weitere Informationen erhalten Sie im nächsten Link:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_de62775a71fc2bf7a13d7530ae24a7ed'] = 'Allgemeine Einstellungen'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7b00b7df5bd166ce4bd95da0edf447ec'] = 'Bannereinstellungen'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d1d1673ac47fe9e8c78297f7079c82e5'] = 'Tasteneinstellungen'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af0da26df79a3d1ed0a4bc244f614357'] = 'Module blockiert'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_16d6ee46a35489df9978e1144272a424'] = 'Mit dieser Option werden Ihre Bannerstile anfangs als deaktiviert festgelegt: Keiner wird dann durch Javascript angezeigt.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9013b630235e2a5c48b7357e23e1bd2f'] = ' WICHTIG:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8d570d082e307db98ed8973cf836faf2'] = 'URL nicht zulassen'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_da2077f36f21ce29abcb324854cc79a6'] = 'Dieser Link gewährt Ihren Kunden das Recht, ihre Zustimmung zu widerrufen.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b4cec33fa984f519379c0587f20937ea'] = 'Sie können diese URL auf Ihrem CMS einfügen.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_65098d7fb3ed993b5564637a7b09e6a9'] = 'Ypur-Benutzer können alle Cookies außer Prestashop-Cookies löschen.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_1ba2fa63eac0306abc7ee7f8d829c0fa'] = 'Fügen Sie die Schaltfläche zum Widerrufen der Zustimmung hinzu'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3da3089ee5548150a4fa51495b064112'] = 'Aktivieren Sie diese Option, um eine Schaltfläche auf Kundenkonto hinzuzufügen, um die Cookie-Zustimmung zu widerrufen.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8dbaf6e244693537706a205d622b08a2'] = 'Es wird alle Cookies außer Prestashop lcean,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_93cba07454f06a4a960172bbd6e2a435'] = 'Ja'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nein'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f592604db5521d1ac01054b0d2f91dba'] = 'Laden Sie die Seite neu, nachdem Sie Cookies akzeptiert haben'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f23783d7694dc0f1b32d3302ad26ef7c'] = 'Aktivieren Sie diese Option, wenn Sie die Seite neu laden möchten, nachdem ein Kunde Cookies akzeptiert.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2495702bb8485a5ad36161464627df0a'] = 'Vorschau Modus:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_daa528fe10e74996b39c3f06f71d5d7e'] = 'Aktivieren Sie diese Option, um eine Vorschau des Cookie-Banners in Ihrem Front-Office anzuzeigen'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8702d236740cafe52c15d99dcc5c4f0c'] = 'Ohne Ihre Kunden zu stören (wenn der Vorschau-Modus aktiviert ist,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f9c8ce2d05f254b00fab1f6e5bec34c'] = 'Der Banner verschwindet nicht, das Modul blockiert keine Cookies'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4dd88e1b515a398b1bcfe3228ea21014'] = 'Und nur die Person mit der IP unten ist in der Lage, die Cookie-Banner zu sehen).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_98008891b2901f27bf015d5056583b68'] = 'Kompatibilität der Cache-Module'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f42878da478af31dd70566a8d2c622a0'] = 'Dies kann nützlich sein, wenn Ihre Site ein Cache-Modul verwendet.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8f0ac7e09455426d7787bf7f2228ac08'] = 'Aktivieren Sie diese Option nicht, wenn Sie mit der Schaltfläche \"Akzeptieren\" das Banner ausblenden.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8fa771e6ca6c44627c39350de410de03'] = 'Diese Option entspricht möglicherweise nicht dem Gesetz.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d80ce1aa74cca030905ef792552b5871'] = 'IP für den Vorschaumodus:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fc5b34783a5161a721cfa8df37dfedd2'] = 'Klicken Sie auf die Schaltfläche \"IP hinzufügen\", um die einzige Person zu sein'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_20764450c02e94b7d24fcc5dad112420'] = 'In der Lage, das Banner zu sehen (wenn der Vorschau-Modus aktiviert ist).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_33d709f7f373a48edf15aa7d687d86e5'] = 'Cookie Lebensdauer (Sekunden):'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_36cb27c4656dc3c2e3da77e28e78c673'] = 'Legen Sie die Dauer fest, innerhalb derer die Einwilligung des Benutzers gespeichert wird (1 Jahr = 31536000s).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_974b8d9930b62c71c64dfd0c0ba79f46'] = 'Name des Keks:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_391fb23ba6d478d1c3cb62793d5168a7'] = 'Wählen Sie den Namen des von unserem Modul verwendeten Cookies, um sich an die Zustimmung des Nutzers zu erinnern'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ba75d65a1c35eef6f303ea9585a844c0'] = '(Keinen Platz verwenden).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d4e697fb8b41241a86e254e32917373b'] = 'SEO-Schutz:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_cc53798ade2a279e58e278ef4c6899e8'] = 'Das Modul verhindert die Suchmaschinen-Bots oben'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7e59b74b98acd4b59d92ca3752b59905'] = 'Vom Sehen der Cookie Warnung Banner, wenn sie Ihre Website crawlen.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af62349c43fee1adf1109073982da102'] = 'Bannerposition:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83a5556a13599977856b83652c9f5323'] = 'Wählen Sie die Position des Warnbanners (oben oder unten auf der Seite).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'Oben'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2ad9d63b69c4a10a5cc9cad923133bc4'] = 'Boden'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e429ae5efafd0db7c52dd19710bddc00'] = 'Hintergrundfarbe:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6ac8ee08a448f3edda61fde78247ca7e'] = 'Hintergrund-Deckkraft:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_87ca5ab523d6ca4ace074af8304d908a'] = 'Wähle die Deckkraft der Hintergrundfarbe (1 ist opak, 0 ist transparent).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d398391ffa393415691f6f53d6c1f711'] = 'Schattenfarbe:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e019305e9bd7cedcdae8c05acab5751b'] = 'Schriftfarbe:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_684791bc6a17eadbfc38fb6a9e98e99a'] = 'Banner-Nachricht:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4ef558167373f89b25d44f116988298b'] = 'Beispiel: \"Unser Webstore verwendet Cookies, um eine bessere Benutzererfahrung zu bieten'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f63a1275bb927e64d79d83b4e704be75'] = 'Und wir empfehlen Ihnen, ihre Benutzung zu akzeptieren, um Ihre Navigation voll zu genießen. \"'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_93db13b2f29eacb637c940848c836596'] = 'Bloque cookies obligatorias:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_12558bfff0ed42a75d5b14750bd46170'] = 'Bloque cookies de terceros:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0058d6648f64bf0ccbd1b2255855f5be'] = 'Knopfposition:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa169f04e827072c6350486b26f41c5b'] = 'Wählen Sie die Position der Schaltflächen \"Ich akzeptiere\" und \"Weitere Informationen\" im Banner.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5dcf5f9169521205b87ee8836fe45024'] = 'Banner ohne Knöpfe'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5f9143ff96d91f300e747a1fc2b1fb90'] = 'Knöpfe über dem Text'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f5fb55f1e5a7ebfb5e1c718beb64d16'] = 'Knöpfe unter dem Text'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_91bc5b5a8bb879a88d78fc9f61546707'] = 'Knöpfe links vom Text'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_1f11d0e349ba438c7bc4d0470b4701c1'] = 'Knöpfe rechts neben dem Text'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a8369373489574320fa1a4589e38e6f0'] = 'Cookies per Navigation annehmen:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e6cadf3a12183170a3b6794c17ae2002'] = 'Deaktivieren Sie diese Option ist, dass das Banner verschwinden soll'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8f8600305f0971a3b69a890b9507e2d7'] = 'Nur wenn Benutzer auf die Schaltfläche \"Ich akzeptiere\" klicken (Banner mit Tasten).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b8597bbcd6be3306ab787599a343c656'] = 'Und aktivieren Sie diese Option, wenn Sie möchten, dass das Banner automatisch verschwindet'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5928ede8ae83c2c56511e9cb23e03c76'] = 'Wenn Benutzer Ihre Internetseite durchsuchen (Banner ohne Knöpfe).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aad201cc3395ac6e9f6f37592f745d6d'] = 'Diese Option entspricht nicht dem europäischen Datenschutzrecht.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_61c73c1144e87ab1be9ab8d1e04cba88'] = 'Titel der Schaltfläche 1 \"Ich akzeptiere\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa08b3ef328e128e6314138c82473ada'] = 'Button 1 Hintergrundfarbe:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e14914c7e65bc03dc91ff20cb3d4cb9b'] = 'Button 1 Schriftfarbe:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9f6d6a70b4c2c2014fb8fd33d21e9393'] = 'Titel der Schaltfläche 2 \"Weitere Informationen\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2c6e8ed8481c6d4db218050545f16167'] = 'Button 2 Hintergrundfarbe:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ea09b79f50ec96c21182341533466bb7'] = 'Button 2 Schriftfarbe:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_721687f3b0c0779ea0d2d6f0d48e4a41'] = 'Link der Schaltfläche 2 \"Weitere Informationen\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_53b47d8e95ba51f5c809361e0958d61a'] = 'Wenn Sie auf die Schaltfläche \"Weitere Informationen\" klicken,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5a7d13a9aba8159044f36758a42d2715'] = 'Es wird dich auf die CMS-Seite bringen, die du ausgewählt hast.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_244eb5881c3e5fe1c49a6ad6bf75f206'] = 'Öffnet den Link in einem neuen Fenster:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_376c4702df252d88378ade28f5ea105e'] = 'Die CMS-Seite wird in einem neuen oder selben Fenster Ihres Browsers geöffnet.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3780718d5d5290ecdaa24b3bd320cc5f'] = 'Button zum Schließen der Banner:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c1268b39cc106988c1723d9cb6b10171'] = 'Zeigen Sie eine Schaltfläche an, um das Cookies-Banner zu schließen.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f494e3d960591309c6b680df9ee71760'] = 'Block Cookies:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fe1406191777b7f273235abc91f54894'] = 'Hier ist die Liste aller auf Ihrem Laden installierten Module.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3909171d57367040df5af6ef6fb458eb'] = 'Markiere die Module, die du deaktivieren möchtest, bis die Benutzer ihre Zustimmung geben.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c9cc8cce247e49bae79f15173ce97354'] = 'Sparen'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_07fc7dc79c8046bb36d97b4332dab1ca'] = 'Zurück zur Liste'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9cfefed8fb9497baa5cd519d7d2bb5d7'] = 'de'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a28ed6a8ee921f71252d2a49545e7d6e'] = 'Lesen Sie diese Seite für weitere Informationen'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_810c687f20666a14bfac5d7d9769fc21'] = 'FAQ: SIEHE DIE GEMEINSAMEN FEHLER'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_1_7_5c8cb6026154ec70517f5fc2b3ea17c2'] = 'Alle Cookies mit Ausnahme von Prestashop-Session-Cookies wurden gelöscht'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_1_7_0fc30646d5cf22910283967bf24ebf66'] = 'Ungültige Anfrage'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_16_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Widerrufe meine Zustimmung zu Cookies'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_17_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Widerruf meine Zustimmung zur Annahme von Cookies von Drittanbietern'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_15_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Widerruf meine Zustimmung zur Annahme von Cookies von Drittanbietern'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_5c8cb6026154ec70517f5fc2b3ea17c2'] = 'Alle Cookies mit Ausnahme von Prestashop-Session-Cookies wurden gelöscht'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_0fc30646d5cf22910283967bf24ebf66'] = 'Ungültige Anfrage'; +$_MODULE['<{lgcookieslaw}prestashop>advise_538b4ebaf535c9f70c16f2a97441f6b5'] = 'Wir übernehmen keine Verantwortung in Bezug auf die Tatsache, dass Sie sicherstellen müssen, dass Ihr Shop keine Drittanbieter-Cookies in irgendeiner Weise installiert, unser Modul wird jedes installierte Modul blockieren, das auch einen Cookie auf dem Kundencomputer installiert, ist aber nicht verantwortlich Third-Party-Code, der auf Ihrem Theme oder einem anderen Formular installiert wurde, das ohne Zustimmung des Kunden ein Cookie auslösen könnte.'; +$_MODULE['<{lgcookieslaw}prestashop>form_2efd89b3ccc76b0b03a34196fc6d1c8b'] = 'Tag hinzufügen'; +$_MODULE['<{lgcookieslaw}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'Ja'; +$_MODULE['<{lgcookieslaw}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nein'; +$_MODULE['<{lgcookieslaw}prestashop>form_26ce1315d2bff025e8fb8a0c6259e58c'] = 'Passwort ändern...'; +$_MODULE['<{lgcookieslaw}prestashop>form_d9c2d86a66aa5a45326c3757f3a272cc'] = 'Aktuelles Passwort'; +$_MODULE['<{lgcookieslaw}prestashop>form_3544848f820b9d94a3f3871a382cf138'] = 'Neues Kennwort'; +$_MODULE['<{lgcookieslaw}prestashop>form_4c231e0da3eaaa6a9752174f7f9cfb31'] = 'Bestätige das Passwort'; +$_MODULE['<{lgcookieslaw}prestashop>form_2871afea416378d2772937c4d67d6c2c'] = 'Generiere Passwort'; +$_MODULE['<{lgcookieslaw}prestashop>form_ed400dc4c641d6e5672616ac56a669ec'] = 'Schicken Sie mir dieses neue Passwort per Email'; +$_MODULE['<{lgcookieslaw}prestashop>form_ea4788705e6873b424c65e91c2846b19'] = 'Stornieren'; +$_MODULE['<{lgcookieslaw}prestashop>form_4bbb8f967da6d1a610596d7257179c2b'] = 'Ungültig'; +$_MODULE['<{lgcookieslaw}prestashop>form_26b63f278101527e06a5547719568bb5'] = 'Okay'; +$_MODULE['<{lgcookieslaw}prestashop>form_0c6ad70beb3a7e76c3fc7adab7c46acc'] = 'Gut'; +$_MODULE['<{lgcookieslaw}prestashop>form_b8dc7c80939667637db7ac31ece215b9'] = 'Fabelhaft'; +$_MODULE['<{lgcookieslaw}prestashop>form_01e8202cf69f19ea7cf3a80f7673066a'] = 'Ungültige Passwortbestätigung'; +$_MODULE['<{lgcookieslaw}prestashop>form_86f5978d9b80124f509bdb71786e929e'] = 'Januar'; +$_MODULE['<{lgcookieslaw}prestashop>form_659e59f062c75f81259d22786d6c44aa'] = 'Februar'; +$_MODULE['<{lgcookieslaw}prestashop>form_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'März'; +$_MODULE['<{lgcookieslaw}prestashop>form_3fcf026bbfffb63fb24b8de9d0446949'] = 'April'; +$_MODULE['<{lgcookieslaw}prestashop>form_195fbb57ffe7449796d23466085ce6d8'] = 'May'; +$_MODULE['<{lgcookieslaw}prestashop>form_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Juni'; +$_MODULE['<{lgcookieslaw}prestashop>form_1b539f6f34e8503c97f6d3421346b63c'] = 'Juli'; +$_MODULE['<{lgcookieslaw}prestashop>form_41ba70891fb6f39327d8ccb9b1dafb84'] = 'August'; +$_MODULE['<{lgcookieslaw}prestashop>form_cc5d90569e1c8313c2b1c2aab1401174'] = 'September'; +$_MODULE['<{lgcookieslaw}prestashop>form_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Oktober'; +$_MODULE['<{lgcookieslaw}prestashop>form_7e823b37564da492ca1629b4732289a8'] = 'November'; +$_MODULE['<{lgcookieslaw}prestashop>form_82331503174acbae012b2004f6431fa5'] = 'Dezember'; +$_MODULE['<{lgcookieslaw}prestashop>form_03dfb5b36313c028aacc5dddd428a8a4'] = 'IP hinzufügen'; +$_MODULE['<{lgcookieslaw}prestashop>form_1e1cc9bdeb2f29f5480106aec7e9bc48'] = 'Jetzt'; +$_MODULE['<{lgcookieslaw}prestashop>form_f92965e2c8a7afb3c1b9a5c09a263636'] = 'Erledigt'; +$_MODULE['<{lgcookieslaw}prestashop>form_3964fd83339fec5014c831822005653a'] = 'Wählen Sie Zeit'; +$_MODULE['<{lgcookieslaw}prestashop>form_a76d4ef5f3f6a672bbfab2865563e530'] = 'Zeit'; +$_MODULE['<{lgcookieslaw}prestashop>form_b55e509c697e4cca0e1d160a7806698f'] = 'Stunde'; +$_MODULE['<{lgcookieslaw}prestashop>form_62902641c38f3a4a8eb3212454360e24'] = 'Minute'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_6789674b365e4ff58e922a1945b3fdd0'] = 'Cookies verwalten'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_0abcd89a0c6d61aac7d59bb39fb2f824'] = 'Cookie-Management'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_da22c93ccb398c72070f4000cc7b59a1'] = 'Personalisierung'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nicht'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_93cba07454f06a4a960172bbd6e2a435'] = 'Ja'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_1e90f6df7f70f4e192179fde6197c8de'] = 'Funktional (obligatorisch)'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_6fe5b84371a37746cac4b1fb635ae4ae'] = 'Dies sind technische Cookies, die für die grundlegende Nutzung der Website unerlässlich sind.'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_ea4788705e6873b424c65e91c2846b19'] = 'Stornieren'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_d88ad2dc74e43a70afd10645cf8002a6'] = 'Akzeptieren und weiter'; diff --git a/modules/lgcookieslaw/translations/en.php b/modules/lgcookieslaw/translations/en.php new file mode 100644 index 00000000..1139b45d --- /dev/null +++ b/modules/lgcookieslaw/translations/en.php @@ -0,0 +1,147 @@ +lgcookieslaw_22c7d5a25303111ee4d06c403cc597ca'] = 'EU Cookie Law (Notification Banner + Cookie Blocker)'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5469626d2e768c6944316d0068c2fd81'] = 'Display a cookie banner and block cookies before getting the user consent.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8ff9e90b056525c1363429d65e25395a'] = 'The Hook.php override is missing.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3550f654b97f366150bcd41af018082b'] = 'Please reset the module or copy the override manually on your FTP.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9a6aa8054d2b7234c96b3a0ca0747589'] = 'The overrides are currently disabled on your store.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f289716452e91c7dde7c17683e95d291'] = 'Please change the configuration'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0d07c8b056dc01496d884eee9f3d6a9b'] = 'Non PrestaShop modules are currently disabled on your store.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_098069b86d3f121b6e50c40302c12d2a'] = 'The preview mode of the module is enabled.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83794efdec9fd14bad765b006386a088'] = 'Don\'t forget to disable it once you have finished configuring the banner.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e03d8ff435ef9e4c0bb95f7708d2a231'] = 'The mode \"Accept cookies through navigation\" should be enabled'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8e94d3d3cdee15b2e07a9633fd353041'] = 'only if the option \"Banner without buttons\" is selected.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8c72a2546be6761c8972cb7d4a4130b2'] = 'The option \"Banner without buttons\" should be selected'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6fd94ce33a53d7103b8e1b6077b5e918'] = 'only if the mode \"Accept cookies through navigation\" is enabled.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0cbb9d66b25062cd16fdb208b86aae56'] = 'If yuo enable this option, you will breaking Europen Union laws.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8151b861b3b6f3236be5e1d8a86abfab'] = 'Please if your shop is on European Union Territory, disable this option.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0a568c54bdfabd16ed212ec7166e67a1'] = 'We will not assume any damage,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_039280edf6e1d4c7042af74c4aa8a62a'] = 'or conflict caused directly or indirectly as a consequence of have this option enabled.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2296d5907cb69bfae96af109ccbf3aba'] = 'You can get more info in next link:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_de62775a71fc2bf7a13d7530ae24a7ed'] = 'General settings'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7b00b7df5bd166ce4bd95da0edf447ec'] = 'Banner settings'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d1d1673ac47fe9e8c78297f7079c82e5'] = 'Button settings'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af0da26df79a3d1ed0a4bc244f614357'] = 'Modules blocked'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_16d6ee46a35489df9978e1144272a424'] = 'With this option your banner styles set initially as disabled:none then show by javascript.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9013b630235e2a5c48b7357e23e1bd2f'] = 'IMPORTANT:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8d570d082e307db98ed8973cf836faf2'] = 'Disallow url'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_da2077f36f21ce29abcb324854cc79a6'] = 'This link will grant the right of revoke their consent to your customers.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b4cec33fa984f519379c0587f20937ea'] = 'You can paste this url on your CMS.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_65098d7fb3ed993b5564637a7b09e6a9'] = 'Ypur users will be able to clean all cookies except Prestashop ones.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_1ba2fa63eac0306abc7ee7f8d829c0fa'] = 'Add revoke consent button'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3da3089ee5548150a4fa51495b064112'] = 'Enable this option to add a button on customers acount to revoke cookie consent.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8dbaf6e244693537706a205d622b08a2'] = 'It will lcean all cookies except Prestashop ones,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_93cba07454f06a4a960172bbd6e2a435'] = 'Yes'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f592604db5521d1ac01054b0d2f91dba'] = 'Reload the page after accepting cookies'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f23783d7694dc0f1b32d3302ad26ef7c'] = 'Enable this option if you wish reload the page after a customer accepts cookies.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2495702bb8485a5ad36161464627df0a'] = 'Preview mode:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_daa528fe10e74996b39c3f06f71d5d7e'] = 'Enable this option to preview the cookie banner in your front-office'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8702d236740cafe52c15d99dcc5c4f0c'] = 'without bothering your customers (when the preview mode is enabled,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f9c8ce2d05f254b00fab1f6e5bec34c'] = 'the banner doesn´t disappear, the module doesn´t block cookies'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4dd88e1b515a398b1bcfe3228ea21014'] = 'and only the person using the IP below is able to see the cookie banner).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_98008891b2901f27bf015d5056583b68'] = 'Cache modules compatibility'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f42878da478af31dd70566a8d2c622a0'] = 'This can be usefull if your site use some cache module.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8f0ac7e09455426d7787bf7f2228ac08'] = 'Do not active this option if your accept button hide the banner,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8fa771e6ca6c44627c39350de410de03'] = 'this option may not comply with the law.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d80ce1aa74cca030905ef792552b5871'] = 'IP for the preview mode:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fc5b34783a5161a721cfa8df37dfedd2'] = 'Click on the button \"Add IP\" to be the only person'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_20764450c02e94b7d24fcc5dad112420'] = 'able to see the banner (if the preview mode is enabled).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_33d709f7f373a48edf15aa7d687d86e5'] = 'Cookie lifetime (seconds):'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_36cb27c4656dc3c2e3da77e28e78c673'] = 'Set the duration during which the user consent will be saved (1 year = 31536000s).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_974b8d9930b62c71c64dfd0c0ba79f46'] = 'Cookie name:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_391fb23ba6d478d1c3cb62793d5168a7'] = 'Choose the name of the cookie used by our module to remember user consent'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ba75d65a1c35eef6f303ea9585a844c0'] = '(don´t use any space).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d4e697fb8b41241a86e254e32917373b'] = 'SEO protection:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_cc53798ade2a279e58e278ef4c6899e8'] = 'The module will prevent the search engine bots above'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7e59b74b98acd4b59d92ca3752b59905'] = 'from seeing the cookie warning banner when they crawl your website.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af62349c43fee1adf1109073982da102'] = 'Banner position:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83a5556a13599977856b83652c9f5323'] = 'Choose the position of the warning banner (top or bottom of the page).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'Top'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2ad9d63b69c4a10a5cc9cad923133bc4'] = 'Bottom'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e429ae5efafd0db7c52dd19710bddc00'] = 'Background color:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6ac8ee08a448f3edda61fde78247ca7e'] = 'Background opacity:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_87ca5ab523d6ca4ace074af8304d908a'] = 'Choose the opacity of the background color (1 is opaque, 0 is transparent).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d398391ffa393415691f6f53d6c1f711'] = 'Shadow color:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e019305e9bd7cedcdae8c05acab5751b'] = 'Font color:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_684791bc6a17eadbfc38fb6a9e98e99a'] = 'Banner message:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4ef558167373f89b25d44f116988298b'] = 'Example: \"Our webstore uses cookies to offer a better user experience'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f63a1275bb927e64d79d83b4e704be75'] = 'and we recommend you to accept their use to fully enjoy your navigation.\"'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0058d6648f64bf0ccbd1b2255855f5be'] = 'Button position:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa169f04e827072c6350486b26f41c5b'] = 'Choose the position of the \"I accept\" and \"More information\" buttons inside the banner.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5dcf5f9169521205b87ee8836fe45024'] = 'Banner without buttons'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5f9143ff96d91f300e747a1fc2b1fb90'] = 'Buttons above the text'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f5fb55f1e5a7ebfb5e1c718beb64d16'] = 'Buttons below the text'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_91bc5b5a8bb879a88d78fc9f61546707'] = 'Buttons to the left of the text'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_1f11d0e349ba438c7bc4d0470b4701c1'] = 'Buttons to the right of the text'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a8369373489574320fa1a4589e38e6f0'] = 'Accept cookies through navigation:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e6cadf3a12183170a3b6794c17ae2002'] = 'Disable this option is you want the banner to disappear'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8f8600305f0971a3b69a890b9507e2d7'] = 'only when users click on the \"I accept\" button (banner with buttons).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b8597bbcd6be3306ab787599a343c656'] = 'And enable this option is you want the banner to disappear automatically'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5928ede8ae83c2c56511e9cb23e03c76'] = 'when users keep browsing your website (banner without buttons).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aad201cc3395ac6e9f6f37592f745d6d'] = 'This option does not comply with European data protection law.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_61c73c1144e87ab1be9ab8d1e04cba88'] = 'Title of the button 1 \"I accept\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa08b3ef328e128e6314138c82473ada'] = 'Button 1 background color:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e14914c7e65bc03dc91ff20cb3d4cb9b'] = 'Button 1 font color:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9f6d6a70b4c2c2014fb8fd33d21e9393'] = 'Title of the button 2 \"More information\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2c6e8ed8481c6d4db218050545f16167'] = 'Button 2 background color:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ea09b79f50ec96c21182341533466bb7'] = 'Button 2 font color:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_721687f3b0c0779ea0d2d6f0d48e4a41'] = 'Link of the button 2 \"More information\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_53b47d8e95ba51f5c809361e0958d61a'] = 'When you click on the \"More information\" button,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5a7d13a9aba8159044f36758a42d2715'] = 'it will take you to CMS page you have selected.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_244eb5881c3e5fe1c49a6ad6bf75f206'] = 'Open the link in a new window:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_376c4702df252d88378ade28f5ea105e'] = 'the CMS page will be opened in a new or the same window of your browser.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3780718d5d5290ecdaa24b3bd320cc5f'] = 'Button to close the banner:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c1268b39cc106988c1723d9cb6b10171'] = 'Display a button to close the cookies banner.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f494e3d960591309c6b680df9ee71760'] = 'Block cookies:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fe1406191777b7f273235abc91f54894'] = 'Here is the list of all the modules installed on your store.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3909171d57367040df5af6ef6fb458eb'] = 'Tick the modules that you want to disable until users give their consent.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c9cc8cce247e49bae79f15173ce97354'] = 'Save'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_07fc7dc79c8046bb36d97b4332dab1ca'] = 'Back to the list'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9cfefed8fb9497baa5cd519d7d2bb5d7'] = 'en'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a28ed6a8ee921f71252d2a49545e7d6e'] = 'Read this page for more information'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_810c687f20666a14bfac5d7d9769fc21'] = 'FAQ: SEE THE COMMON ERRORS'; +$_MODULE['<{lgcookieslaw}prestashop>advise_538b4ebaf535c9f70c16f2a97441f6b5'] = 'Keep in mind that the user / owner of the e-commerce where the module is installed is solely responsible for the legal texts that must be entered, such as the notice and explanation of the purpose of third-party cookies. Línea Gráfica will in no case be responsible for the damages that may be caused by activating options that do not comply with the RGPD'; +$_MODULE['<{lgcookieslaw}prestashop>form_2efd89b3ccc76b0b03a34196fc6d1c8b'] = 'Add tag'; +$_MODULE['<{lgcookieslaw}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'Yes'; +$_MODULE['<{lgcookieslaw}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; +$_MODULE['<{lgcookieslaw}prestashop>form_26ce1315d2bff025e8fb8a0c6259e58c'] = 'Change password...'; +$_MODULE['<{lgcookieslaw}prestashop>form_d9c2d86a66aa5a45326c3757f3a272cc'] = 'Current password'; +$_MODULE['<{lgcookieslaw}prestashop>form_3544848f820b9d94a3f3871a382cf138'] = 'New password'; +$_MODULE['<{lgcookieslaw}prestashop>form_4c231e0da3eaaa6a9752174f7f9cfb31'] = 'Confirm password'; +$_MODULE['<{lgcookieslaw}prestashop>form_2871afea416378d2772937c4d67d6c2c'] = 'Generate password'; +$_MODULE['<{lgcookieslaw}prestashop>form_ed400dc4c641d6e5672616ac56a669ec'] = 'Send me this new password by Email'; +$_MODULE['<{lgcookieslaw}prestashop>form_ea4788705e6873b424c65e91c2846b19'] = 'Cancel'; +$_MODULE['<{lgcookieslaw}prestashop>form_4bbb8f967da6d1a610596d7257179c2b'] = 'Invalid'; +$_MODULE['<{lgcookieslaw}prestashop>form_26b63f278101527e06a5547719568bb5'] = 'Okay'; +$_MODULE['<{lgcookieslaw}prestashop>form_0c6ad70beb3a7e76c3fc7adab7c46acc'] = 'Good'; +$_MODULE['<{lgcookieslaw}prestashop>form_b8dc7c80939667637db7ac31ece215b9'] = 'Fabulous'; +$_MODULE['<{lgcookieslaw}prestashop>form_01e8202cf69f19ea7cf3a80f7673066a'] = 'Invalid password confirmation'; +$_MODULE['<{lgcookieslaw}prestashop>form_86f5978d9b80124f509bdb71786e929e'] = 'January'; +$_MODULE['<{lgcookieslaw}prestashop>form_659e59f062c75f81259d22786d6c44aa'] = 'February'; +$_MODULE['<{lgcookieslaw}prestashop>form_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'March'; +$_MODULE['<{lgcookieslaw}prestashop>form_3fcf026bbfffb63fb24b8de9d0446949'] = 'April'; +$_MODULE['<{lgcookieslaw}prestashop>form_195fbb57ffe7449796d23466085ce6d8'] = 'May'; +$_MODULE['<{lgcookieslaw}prestashop>form_688937ccaf2a2b0c45a1c9bbba09698d'] = 'June'; +$_MODULE['<{lgcookieslaw}prestashop>form_1b539f6f34e8503c97f6d3421346b63c'] = 'July'; +$_MODULE['<{lgcookieslaw}prestashop>form_41ba70891fb6f39327d8ccb9b1dafb84'] = 'August'; +$_MODULE['<{lgcookieslaw}prestashop>form_cc5d90569e1c8313c2b1c2aab1401174'] = 'September'; +$_MODULE['<{lgcookieslaw}prestashop>form_eca60ae8611369fe28a02e2ab8c5d12e'] = 'October'; +$_MODULE['<{lgcookieslaw}prestashop>form_7e823b37564da492ca1629b4732289a8'] = 'November'; +$_MODULE['<{lgcookieslaw}prestashop>form_82331503174acbae012b2004f6431fa5'] = 'December'; +$_MODULE['<{lgcookieslaw}prestashop>form_03dfb5b36313c028aacc5dddd428a8a4'] = 'Add IP'; +$_MODULE['<{lgcookieslaw}prestashop>form_1e1cc9bdeb2f29f5480106aec7e9bc48'] = 'Now'; +$_MODULE['<{lgcookieslaw}prestashop>form_f92965e2c8a7afb3c1b9a5c09a263636'] = 'Done'; +$_MODULE['<{lgcookieslaw}prestashop>form_3964fd83339fec5014c831822005653a'] = 'Choose Time'; +$_MODULE['<{lgcookieslaw}prestashop>form_a76d4ef5f3f6a672bbfab2865563e530'] = 'Time'; +$_MODULE['<{lgcookieslaw}prestashop>form_b55e509c697e4cca0e1d160a7806698f'] = 'Hour'; +$_MODULE['<{lgcookieslaw}prestashop>form_62902641c38f3a4a8eb3212454360e24'] = 'Minute'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_15_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Revoke my consent to accept third-party cookies'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_16_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Revoke my consent to cookies'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_17_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Revoke my consent to accept third-party cookies'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_5c8cb6026154ec70517f5fc2b3ea17c2'] = 'All cookies except Prestashop session cookies have been deleted'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_0fc30646d5cf22910283967bf24ebf66'] = 'Invalid request'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_1_7_5c8cb6026154ec70517f5fc2b3ea17c2'] = 'All cookies except Prestashop session cookies have been deleted'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_1_7_0fc30646d5cf22910283967bf24ebf66'] = 'Invalid request'; diff --git a/modules/lgcookieslaw/translations/es.php b/modules/lgcookieslaw/translations/es.php new file mode 100644 index 00000000..1f28b7d4 --- /dev/null +++ b/modules/lgcookieslaw/translations/es.php @@ -0,0 +1,158 @@ +lgcookieslaw_22c7d5a25303111ee4d06c403cc597ca'] = 'Ley Europea de Cookies (Aviso + Bloqueador de Cookie)'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5469626d2e768c6944316d0068c2fd81'] = 'Añade un banner de cookies y desactiva las cookies hasta que obtengas el consentimiento de los usuarios.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8ff9e90b056525c1363429d65e25395a'] = 'Falta la sobrecarga Hook.php.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3550f654b97f366150bcd41af018082b'] = 'Reinicia por favor el módulo o copia la sobrecarga a mano en tu FTP.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9a6aa8054d2b7234c96b3a0ca0747589'] = 'Las sobrecargas están desactivadas en tu tienda.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f289716452e91c7dde7c17683e95d291'] = 'Cambia por favor la configuración'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0d07c8b056dc01496d884eee9f3d6a9b'] = 'Los módulos no nativos están desactivados en tu tienda.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_098069b86d3f121b6e50c40302c12d2a'] = 'El modo previsualización del módulo está activado.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83794efdec9fd14bad765b006386a088'] = 'No te olvides de desactivarlo una vez que hayas terminado configurar el banner.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e03d8ff435ef9e4c0bb95f7708d2a231'] = 'Se debe activar el modo \"Aceptar cookies mediante navegación\"'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8e94d3d3cdee15b2e07a9633fd353041'] = 'sólo si la opción \"Banner sin botones\" está seleccionada.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8c72a2546be6761c8972cb7d4a4130b2'] = 'Se debe seleccionar la opción \"Banner sin botones\"'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6fd94ce33a53d7103b8e1b6077b5e918'] = 'sólo si el modo \"Aceptar cookies mediante navegación\" está activado.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0cbb9d66b25062cd16fdb208b86aae56'] = 'si habilita esta opción no estará cumpliendo con la ley de la Unión Europea'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8151b861b3b6f3236be5e1d8a86abfab'] = 'Si su tienda se encuentra en territorio de la Unión Europea, deshabilite esta opción.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0a568c54bdfabd16ed212ec7166e67a1'] = 'No asumiremos ninguna responsabilidad'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_039280edf6e1d4c7042af74c4aa8a62a'] = 'sobre daño o conflicto causado directa o indirectamente como consecuencia de tener habilitada esta opción.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2296d5907cb69bfae96af109ccbf3aba'] = 'Puede usted obtener más información en el siguiente enlace'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_de62775a71fc2bf7a13d7530ae24a7ed'] = 'Configuración general'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7b00b7df5bd166ce4bd95da0edf447ec'] = 'Configuración del banner'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d1d1673ac47fe9e8c78297f7079c82e5'] = 'Configuración de los botones'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af0da26df79a3d1ed0a4bc244f614357'] = 'Módulos bloqueados'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_16d6ee46a35489df9978e1144272a424'] = 'Con esta opción su banner tendrá un estilo coulto display:none y se mostrará por javascript.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9013b630235e2a5c48b7357e23e1bd2f'] = 'IMPORTANTE:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8d570d082e307db98ed8973cf836faf2'] = 'Deshabilitar url'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_da2077f36f21ce29abcb324854cc79a6'] = 'Este enlace otorgará el derecho de revocar su consentimiento a sus clientes.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b4cec33fa984f519379c0587f20937ea'] = 'Puede pegar esta url en su CMS.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_65098d7fb3ed993b5564637a7b09e6a9'] = 'Los usuarios de Ypur podrán limpiar todas las cookies excepto las de Prestashop.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_1ba2fa63eac0306abc7ee7f8d829c0fa'] = 'Añadir revocar botón de consentimiento'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3da3089ee5548150a4fa51495b064112'] = 'Habilite esta opción para agregar un botón en la cuenta de clientes para revocar el consentimiento de cookies.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8dbaf6e244693537706a205d622b08a2'] = 'Detectará todas las cookies excepto las de Prestashop,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_93cba07454f06a4a960172bbd6e2a435'] = 'Sí'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f592604db5521d1ac01054b0d2f91dba'] = 'Recargar la página tras aceptar las cookies'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f23783d7694dc0f1b32d3302ad26ef7c'] = 'Active esta opción si quiere que la página se recargue cuando el lciente acepte las cookies.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2495702bb8485a5ad36161464627df0a'] = 'Modo previsualización:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_daa528fe10e74996b39c3f06f71d5d7e'] = 'Activa esta opción para previsualizar el banner de cookie en tu front-office'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8702d236740cafe52c15d99dcc5c4f0c'] = 'sin molestar a tus clientes (cuando el modo previsualización está activado,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f9c8ce2d05f254b00fab1f6e5bec34c'] = 'no desaparece el banner, el módulo no bloquea las cookies'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4dd88e1b515a398b1bcfe3228ea21014'] = 'y sólo la persona que utiliza la IP abajo puede ver el banner).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_98008891b2901f27bf015d5056583b68'] = 'Modo de compatibilidad con caché'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f42878da478af31dd70566a8d2c622a0'] = 'Puede ser útil si usa un módulo para gestionar su caché.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8f0ac7e09455426d7787bf7f2228ac08'] = 'No active esta opción si su botón de aceptar oculta el baner.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8fa771e6ca6c44627c39350de410de03'] = 'esta opción puede no cumplir con la ley.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d80ce1aa74cca030905ef792552b5871'] = 'IP para el modo previsualización:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fc5b34783a5161a721cfa8df37dfedd2'] = 'Haz clic en el botón \"Añadir IP\" para ser la única persona'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_20764450c02e94b7d24fcc5dad112420'] = 'capaz de ver el banner (si el módulo previsualización está activado).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_33d709f7f373a48edf15aa7d687d86e5'] = 'Tiempo de vida (segundos):'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_36cb27c4656dc3c2e3da77e28e78c673'] = 'Configura la duración durante la cual se guarda el consentimiento del usuario (1 año = 31536000s).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_974b8d9930b62c71c64dfd0c0ba79f46'] = 'Nombre de la cookie:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_391fb23ba6d478d1c3cb62793d5168a7'] = 'Elige el nombre de la cookie utilizada por nuestro módulo para acordarse del consentimiento del usuario'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ba75d65a1c35eef6f303ea9585a844c0'] = '(no utiliza ningún espacio).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d4e697fb8b41241a86e254e32917373b'] = 'Protección de tu SEO:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_cc53798ade2a279e58e278ef4c6899e8'] = 'El módulo impide que los bots de los buscadores'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7e59b74b98acd4b59d92ca3752b59905'] = 'vean el banner de cookies cuando rastrean tu tienda.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af62349c43fee1adf1109073982da102'] = 'Posición del banner:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83a5556a13599977856b83652c9f5323'] = 'Elige la posición del banner de aviso (arriba o abajo de la página).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'Arriba'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2ad9d63b69c4a10a5cc9cad923133bc4'] = 'Abajo'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e429ae5efafd0db7c52dd19710bddc00'] = 'Color de fondo:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6ac8ee08a448f3edda61fde78247ca7e'] = 'Opacidad del fondo:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_87ca5ab523d6ca4ace074af8304d908a'] = 'Elige la opacidad del color de fondo (1 para opaco, 0 para transparente).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d398391ffa393415691f6f53d6c1f711'] = 'Color de la sombra:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e019305e9bd7cedcdae8c05acab5751b'] = 'Color de la fuente:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_684791bc6a17eadbfc38fb6a9e98e99a'] = 'Mensaje del banner:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4ef558167373f89b25d44f116988298b'] = 'Ejemplo: \"Nuestra tienda usa cookies para mejorar la experiencia de usuario'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f63a1275bb927e64d79d83b4e704be75'] = 'y le recomendamos aceptar su uso para aprovechar plenamente la navegación.\"'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_93db13b2f29eacb637c940848c836596'] = 'Bloque cookies obligatorias:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_12558bfff0ed42a75d5b14750bd46170'] = 'Bloque cookies de terceros:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0058d6648f64bf0ccbd1b2255855f5be'] = 'Posición del banner:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa169f04e827072c6350486b26f41c5b'] = 'Elige la posición de los botones \"Acepto\" y \"Más información\" dentro del banner.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5dcf5f9169521205b87ee8836fe45024'] = 'Banner sin botones'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5f9143ff96d91f300e747a1fc2b1fb90'] = 'Botones arriba del texto'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f5fb55f1e5a7ebfb5e1c718beb64d16'] = 'Botones abajo del texto'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_91bc5b5a8bb879a88d78fc9f61546707'] = 'Botones a la izquierda del texto'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_1f11d0e349ba438c7bc4d0470b4701c1'] = 'Botones a la derecha del texto'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a8369373489574320fa1a4589e38e6f0'] = 'Aceptar cookies mediante navegación:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e6cadf3a12183170a3b6794c17ae2002'] = 'Desactiva esta opción si quieres que el banner desaparezca'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8f8600305f0971a3b69a890b9507e2d7'] = 'sólo cuando el usuario hace clic en el botón \"Acepto\" (banner con botones).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b8597bbcd6be3306ab787599a343c656'] = 'Activa esta opción si quieres que el banner desaparezca automáticamente'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5928ede8ae83c2c56511e9cb23e03c76'] = 'cuando el usuario sigue navegando a través de tu tienda (banner sin botones).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aad201cc3395ac6e9f6f37592f745d6d'] = 'Esta opción no cumple con la ley europea de protección de datos.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_61c73c1144e87ab1be9ab8d1e04cba88'] = 'Título del botón 1 \"Acepto\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa08b3ef328e128e6314138c82473ada'] = 'Color de fondo del botón 1:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e14914c7e65bc03dc91ff20cb3d4cb9b'] = 'Color de la fuente del botón 1:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9f6d6a70b4c2c2014fb8fd33d21e9393'] = 'Título del botón 2 \"Más información\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2c6e8ed8481c6d4db218050545f16167'] = 'Color de fondo del botón 2:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ea09b79f50ec96c21182341533466bb7'] = 'Color de la fuente del botón 2:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_721687f3b0c0779ea0d2d6f0d48e4a41'] = 'Enlace del botón 2 \"Más información\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_53b47d8e95ba51f5c809361e0958d61a'] = 'Cuando haz clic en el botón \"Más información\",'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5a7d13a9aba8159044f36758a42d2715'] = 'te lleva a la página CMS que has eligido.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_244eb5881c3e5fe1c49a6ad6bf75f206'] = 'Abrir el enlace en una nueva ventana:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_376c4702df252d88378ade28f5ea105e'] = 'se abre la página CMS en una nueva o la misma ventana de tu navegador.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3780718d5d5290ecdaa24b3bd320cc5f'] = 'Botón para cerrar el banner:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c1268b39cc106988c1723d9cb6b10171'] = 'Mostrar un botón para cerrar el banner de cookies.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f494e3d960591309c6b680df9ee71760'] = 'Bloquear cookies:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fe1406191777b7f273235abc91f54894'] = 'Aquí está la lista de los módulos instalados en tu tienda.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3909171d57367040df5af6ef6fb458eb'] = 'Marca los módulos que quieres desactivar hasta que el usuario dé su consetimiento.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_07fc7dc79c8046bb36d97b4332dab1ca'] = 'Volver a la lista'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9cfefed8fb9497baa5cd519d7d2bb5d7'] = 'es'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a28ed6a8ee921f71252d2a49545e7d6e'] = 'Leer esta página para más información'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_810c687f20666a14bfac5d7d9769fc21'] = 'FAQ: VER LOS ERRORES FRECUENTES'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_1_7_5c8cb6026154ec70517f5fc2b3ea17c2'] = 'Todas las cookies excepto las cookies de sesión de Prestashop han sido eliminadas'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_1_7_0fc30646d5cf22910283967bf24ebf66'] = 'Petición no válida'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_16_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Revocar mi consentimiento a las cookies'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_17_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Revocar mi consentimiento a aceptar cookies de terceros'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_15_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Revocar mi consentimiento a aceptar cookies de terceros'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_5c8cb6026154ec70517f5fc2b3ea17c2'] = 'Todas las cookies excepto las cookies de sesión de Prestashop han sido eliminadas'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_0fc30646d5cf22910283967bf24ebf66'] = 'Petición no válida'; +$_MODULE['<{lgcookieslaw}prestashop>advise_538b4ebaf535c9f70c16f2a97441f6b5'] = 'Tenga en cuenta que el usuario/propietario del e-commerce donde se instala el módulo es el único responsable de los textos legales que debe introducir, como por ejemplo el aviso y la explicación del propósito de las cookies de terceros. Línea Gráfica en ningún caso será responsable de los daños o perjuicios que pueda causar activar opciones que no cumplan con la RGPD'; +$_MODULE['<{lgcookieslaw}prestashop>form_2efd89b3ccc76b0b03a34196fc6d1c8b'] = 'Añadir etiqueta'; +$_MODULE['<{lgcookieslaw}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'Sí'; +$_MODULE['<{lgcookieslaw}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; +$_MODULE['<{lgcookieslaw}prestashop>form_26ce1315d2bff025e8fb8a0c6259e58c'] = 'Cambia la contraseña...'; +$_MODULE['<{lgcookieslaw}prestashop>form_d9c2d86a66aa5a45326c3757f3a272cc'] = 'Contraseña actual'; +$_MODULE['<{lgcookieslaw}prestashop>form_3544848f820b9d94a3f3871a382cf138'] = 'Nueva contraseña'; +$_MODULE['<{lgcookieslaw}prestashop>form_4c231e0da3eaaa6a9752174f7f9cfb31'] = 'Confirmar contraseña'; +$_MODULE['<{lgcookieslaw}prestashop>form_2871afea416378d2772937c4d67d6c2c'] = 'Generar contraseña'; +$_MODULE['<{lgcookieslaw}prestashop>form_ed400dc4c641d6e5672616ac56a669ec'] = 'Enviarme esta nueva contraseña por correo electrónico'; +$_MODULE['<{lgcookieslaw}prestashop>form_ea4788705e6873b424c65e91c2846b19'] = 'Cancelar'; +$_MODULE['<{lgcookieslaw}prestashop>form_4bbb8f967da6d1a610596d7257179c2b'] = 'Inválido'; +$_MODULE['<{lgcookieslaw}prestashop>form_26b63f278101527e06a5547719568bb5'] = 'Bueno'; +$_MODULE['<{lgcookieslaw}prestashop>form_0c6ad70beb3a7e76c3fc7adab7c46acc'] = 'Bueno'; +$_MODULE['<{lgcookieslaw}prestashop>form_b8dc7c80939667637db7ac31ece215b9'] = 'Fabuloso'; +$_MODULE['<{lgcookieslaw}prestashop>form_01e8202cf69f19ea7cf3a80f7673066a'] = 'Confirmación de contraseña inválida'; +$_MODULE['<{lgcookieslaw}prestashop>form_86f5978d9b80124f509bdb71786e929e'] = 'enero'; +$_MODULE['<{lgcookieslaw}prestashop>form_659e59f062c75f81259d22786d6c44aa'] = 'febrero'; +$_MODULE['<{lgcookieslaw}prestashop>form_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'marzo'; +$_MODULE['<{lgcookieslaw}prestashop>form_3fcf026bbfffb63fb24b8de9d0446949'] = 'abril'; +$_MODULE['<{lgcookieslaw}prestashop>form_195fbb57ffe7449796d23466085ce6d8'] = 'Mayo'; +$_MODULE['<{lgcookieslaw}prestashop>form_688937ccaf2a2b0c45a1c9bbba09698d'] = 'junio'; +$_MODULE['<{lgcookieslaw}prestashop>form_1b539f6f34e8503c97f6d3421346b63c'] = 'julio'; +$_MODULE['<{lgcookieslaw}prestashop>form_41ba70891fb6f39327d8ccb9b1dafb84'] = 'agosto'; +$_MODULE['<{lgcookieslaw}prestashop>form_cc5d90569e1c8313c2b1c2aab1401174'] = 'septiembre'; +$_MODULE['<{lgcookieslaw}prestashop>form_eca60ae8611369fe28a02e2ab8c5d12e'] = 'octubre'; +$_MODULE['<{lgcookieslaw}prestashop>form_7e823b37564da492ca1629b4732289a8'] = 'noviembre'; +$_MODULE['<{lgcookieslaw}prestashop>form_82331503174acbae012b2004f6431fa5'] = 'diciembre'; +$_MODULE['<{lgcookieslaw}prestashop>form_03dfb5b36313c028aacc5dddd428a8a4'] = 'Añadir IP'; +$_MODULE['<{lgcookieslaw}prestashop>form_1e1cc9bdeb2f29f5480106aec7e9bc48'] = 'Ahora'; +$_MODULE['<{lgcookieslaw}prestashop>form_f92965e2c8a7afb3c1b9a5c09a263636'] = 'Hecho'; +$_MODULE['<{lgcookieslaw}prestashop>form_3964fd83339fec5014c831822005653a'] = 'Elige el tiempo'; +$_MODULE['<{lgcookieslaw}prestashop>form_a76d4ef5f3f6a672bbfab2865563e530'] = 'Hora'; +$_MODULE['<{lgcookieslaw}prestashop>form_b55e509c697e4cca0e1d160a7806698f'] = 'Hora'; +$_MODULE['<{lgcookieslaw}prestashop>form_62902641c38f3a4a8eb3212454360e24'] = 'Minuto'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_6789674b365e4ff58e922a1945b3fdd0'] = 'Gestionar cookies'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_0abcd89a0c6d61aac7d59bb39fb2f824'] = 'Gestión de cookies'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_da22c93ccb398c72070f4000cc7b59a1'] = 'Personalización'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_93cba07454f06a4a960172bbd6e2a435'] = 'Sí'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_1e90f6df7f70f4e192179fde6197c8de'] = 'Funcionales (obligatorio)'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_6fe5b84371a37746cac4b1fb635ae4ae'] = 'Estas son cookies técnicas y son esenciales para el usó básico del sitio.'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_ea4788705e6873b424c65e91c2846b19'] = 'Cancelar'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_d88ad2dc74e43a70afd10645cf8002a6'] = 'Aceptar y continuar'; diff --git a/modules/lgcookieslaw/translations/fr.php b/modules/lgcookieslaw/translations/fr.php new file mode 100644 index 00000000..a3d59742 --- /dev/null +++ b/modules/lgcookieslaw/translations/fr.php @@ -0,0 +1,158 @@ +lgcookieslaw_22c7d5a25303111ee4d06c403cc597ca'] = 'Directive Européenne des Cookies (Bandeau + Bloqueur)'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5469626d2e768c6944316d0068c2fd81'] = 'Affichez un bandeau de cookies et bloquer les cookies jusqu\'à l\'obtention du consentement des visiteurs.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8ff9e90b056525c1363429d65e25395a'] = 'L\'override Hook.php est manquant.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3550f654b97f366150bcd41af018082b'] = 'Veuillez réinitialiser le module ou copier l\'override manuellement sur votre FTP.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9a6aa8054d2b7234c96b3a0ca0747589'] = 'Les overrides sont actuellement désactivés sur votre boutique.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f289716452e91c7dde7c17683e95d291'] = 'Veuillez s\'il vous plaît modifier la configuration'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0d07c8b056dc01496d884eee9f3d6a9b'] = 'Les modules non-développés par PrestaShop sont actuellement désactivés sur votre boutique.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_098069b86d3f121b6e50c40302c12d2a'] = 'Le mode prévisualisation du module est activé.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83794efdec9fd14bad765b006386a088'] = 'N\'oubliez pas de le désactiver une fois que vous avez terminé de configurer le bandeau.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e03d8ff435ef9e4c0bb95f7708d2a231'] = 'Le mode \"Accepter les cookies à travers la navigation\" doit être activé'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8e94d3d3cdee15b2e07a9633fd353041'] = 'uniquement si l\'option \"Bandeau sans bouton\" est sélectionnée.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8c72a2546be6761c8972cb7d4a4130b2'] = 'L\'option \"Bandeau sans bouton\" doit être sélectionnée'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6fd94ce33a53d7103b8e1b6077b5e918'] = 'uniquement si le mode \"Accepter les cookies à travers la navigation\" est activé.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0cbb9d66b25062cd16fdb208b86aae56'] = 'Si vous activez cette option, vous violerez les lois européennes.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8151b861b3b6f3236be5e1d8a86abfab'] = 'S\'il vous plaît, si votre boutique est sur le territoire de l\'Union européenne, désactivez cette option.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0a568c54bdfabd16ed212ec7166e67a1'] = 'Nous n\'assumerons aucun dommage,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_039280edf6e1d4c7042af74c4aa8a62a'] = 'ou conflit provoqué directement ou indirectement par l\'activation de cette option.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2296d5907cb69bfae96af109ccbf3aba'] = 'Vous pouvez obtenir plus d\'informations dans le lien suivant:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_de62775a71fc2bf7a13d7530ae24a7ed'] = 'Configuration générale'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7b00b7df5bd166ce4bd95da0edf447ec'] = 'Configuration bandeau'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d1d1673ac47fe9e8c78297f7079c82e5'] = 'Configuration boutons'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af0da26df79a3d1ed0a4bc244f614357'] = 'Modules bloqués'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_16d6ee46a35489df9978e1144272a424'] = 'Avec cette option, vos styles de bannière sont initialement désactivés: aucun puis affiché en javascript.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9013b630235e2a5c48b7357e23e1bd2f'] = 'IMPORTANT :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8d570d082e307db98ed8973cf836faf2'] = 'Interdire l\'URL'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_da2077f36f21ce29abcb324854cc79a6'] = 'Ce lien vous accordera le droit de révoquer leur consentement à vos clients.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b4cec33fa984f519379c0587f20937ea'] = 'Vous pouvez coller cette URL sur votre CMS.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_65098d7fb3ed993b5564637a7b09e6a9'] = 'Les utilisateurs de Ypur pourront nettoyer tous les cookies sauf ceux de Prestashop.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_1ba2fa63eac0306abc7ee7f8d829c0fa'] = 'Ajouter révoquer le bouton de consentement'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3da3089ee5548150a4fa51495b064112'] = 'Activez cette option pour ajouter un bouton sur le compte des clients afin de révoquer le consentement des cookies.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8dbaf6e244693537706a205d622b08a2'] = 'Il y aura tous les cookies sauf ceux de Prestashop,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_93cba07454f06a4a960172bbd6e2a435'] = 'Oui'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f592604db5521d1ac01054b0d2f91dba'] = 'Recharger la page après avoir accepté les cookies'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f23783d7694dc0f1b32d3302ad26ef7c'] = 'Activez cette option si vous souhaitez recharger la page après qu\'un client a accepté les cookies.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2495702bb8485a5ad36161464627df0a'] = 'Mode prévisualisation :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_daa528fe10e74996b39c3f06f71d5d7e'] = 'Activez cette option si vous voulez prévisualiser le bandeau dans votre front-office'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8702d236740cafe52c15d99dcc5c4f0c'] = 'sans déranger vos clients (lorsque le mode prévisualisation est activé,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f9c8ce2d05f254b00fab1f6e5bec34c'] = 'le bandeau ne disparaît pas, les cookies ne sont pas bloqués'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4dd88e1b515a398b1bcfe3228ea21014'] = 'et seule la personne utilisant l´IP ci-dessus peut voir le bandeau).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_98008891b2901f27bf015d5056583b68'] = 'Compatibilité des modules de cache'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f42878da478af31dd70566a8d2c622a0'] = 'Cela peut être utile si votre site utilise un module de cache.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8f0ac7e09455426d7787bf7f2228ac08'] = 'N\'activez pas cette option si votre bouton d\'acceptation masque la bannière,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8fa771e6ca6c44627c39350de410de03'] = 'cette option peut ne pas être conforme à la loi.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d80ce1aa74cca030905ef792552b5871'] = 'IP pour le mode prévisualisation :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fc5b34783a5161a721cfa8df37dfedd2'] = 'Cliquez sur le bouton \"Ajouter IP\" pour être la seule personne'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_20764450c02e94b7d24fcc5dad112420'] = 'à pouvoir voir le bandeau (si le mode prévisualisation est activé).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_33d709f7f373a48edf15aa7d687d86e5'] = 'Durée de vie (secondes) :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_36cb27c4656dc3c2e3da77e28e78c673'] = 'Configurez la durée pendant laquelle le consentement des utilisateurs sera conservé (1 an = 31536000s).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_974b8d9930b62c71c64dfd0c0ba79f46'] = 'Nom du cookie :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_391fb23ba6d478d1c3cb62793d5168a7'] = 'Choisissez le nom du cookie utilisé par notre module pour se souvenir du consentement des utilisateurs'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ba75d65a1c35eef6f303ea9585a844c0'] = '(n´utilisez pas d´espace).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d4e697fb8b41241a86e254e32917373b'] = 'Protection de votre SEO :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_cc53798ade2a279e58e278ef4c6899e8'] = 'Le module empêchera les robots des moteurs de recherche ci-dessus'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7e59b74b98acd4b59d92ca3752b59905'] = 'de voir le bandeau de cookies lorsqu´ils visitent votre boutique.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af62349c43fee1adf1109073982da102'] = 'Position du bandeau :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83a5556a13599977856b83652c9f5323'] = 'Choisissez la position du bandeau d´avertissement (haut ou bas de la page).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'Haut'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2ad9d63b69c4a10a5cc9cad923133bc4'] = 'Bas'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e429ae5efafd0db7c52dd19710bddc00'] = 'Couleur de fond :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6ac8ee08a448f3edda61fde78247ca7e'] = 'Opacité du fond :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_87ca5ab523d6ca4ace074af8304d908a'] = 'Choisissez le taux d´opacité de la couleur de fond (1 pour opaque, 0 pour transparent)'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d398391ffa393415691f6f53d6c1f711'] = 'Couleur de l´ombre :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e019305e9bd7cedcdae8c05acab5751b'] = 'Couleur de la police :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_684791bc6a17eadbfc38fb6a9e98e99a'] = 'Message du bandeau :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4ef558167373f89b25d44f116988298b'] = 'Exemple: \"Notre boutique utilise des cookies pour améliorer l´expérience utilisateur '; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f63a1275bb927e64d79d83b4e704be75'] = 'et nous vous recommandons d´accepter leur utilisation pour profiter pleinement de votre navigation.\"'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_93db13b2f29eacb637c940848c836596'] = 'Bloque cookies obligatorias:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_12558bfff0ed42a75d5b14750bd46170'] = 'Bloque cookies de terceros:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0058d6648f64bf0ccbd1b2255855f5be'] = 'Position des boutons :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa169f04e827072c6350486b26f41c5b'] = 'Choisissez la position des boutons \"J´accepte\" et \"Plus d´informations\" à l´intérieur du bandeau.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5dcf5f9169521205b87ee8836fe45024'] = 'Bandeau sans bouton'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5f9143ff96d91f300e747a1fc2b1fb90'] = 'Boutons au-dessus du texte'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f5fb55f1e5a7ebfb5e1c718beb64d16'] = 'Boutons en-dessous du texte'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_91bc5b5a8bb879a88d78fc9f61546707'] = 'Boutons à gauche du texte'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_1f11d0e349ba438c7bc4d0470b4701c1'] = 'Boutons à droite du texte'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a8369373489574320fa1a4589e38e6f0'] = 'Accepter les cookies via la navigation:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e6cadf3a12183170a3b6794c17ae2002'] = 'Désactivez cette option si vous voulez que le bandeau disparaisse'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8f8600305f0971a3b69a890b9507e2d7'] = 'uniquement quand les utilisateurs cliquent sur le bouton \"J´accepte\" (bandeau avec boutons).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b8597bbcd6be3306ab787599a343c656'] = 'Activez cette option si vous voulez que le bandeau disparaisse automatiquement'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5928ede8ae83c2c56511e9cb23e03c76'] = 'quand les utilisateurs continuent leur navigation sur votre boutique (bandeau sans boutons).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aad201cc3395ac6e9f6f37592f745d6d'] = 'Cette option n\'est pas conforme à la loi européenne sur la protection des données.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_61c73c1144e87ab1be9ab8d1e04cba88'] = 'Titre du bouton 1 \"J´accepte\" :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa08b3ef328e128e6314138c82473ada'] = 'Couleur de fond du bouton 1 :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e14914c7e65bc03dc91ff20cb3d4cb9b'] = 'Couleur de la police du bouton 1 :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9f6d6a70b4c2c2014fb8fd33d21e9393'] = 'Titre du bouton 2 \"Plus d´informations\" :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2c6e8ed8481c6d4db218050545f16167'] = 'Couleur de fond du bouton 2 :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ea09b79f50ec96c21182341533466bb7'] = 'Couleur de la police du bouton 2 :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_721687f3b0c0779ea0d2d6f0d48e4a41'] = 'Lien du bouton 2 \"Plus d´informations\" :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_53b47d8e95ba51f5c809361e0958d61a'] = 'Lorsque vous cliquez sur le bouton \"Plus d´informations\",'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5a7d13a9aba8159044f36758a42d2715'] = 'vous serez envoyé sur la page CMS sélectionnée.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_244eb5881c3e5fe1c49a6ad6bf75f206'] = 'Ouvrir le lien dans une nouvelle fenêtre :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_376c4702df252d88378ade28f5ea105e'] = 'la page CMS sera ouverte dans une nouvelle ou la même fenêtre de votre navigateur.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3780718d5d5290ecdaa24b3bd320cc5f'] = 'Bouton pour fermer le bandeau :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c1268b39cc106988c1723d9cb6b10171'] = 'Afficher un bouton pour pouvoir fermer le bandeau.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f494e3d960591309c6b680df9ee71760'] = 'Bloquer les cookies :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fe1406191777b7f273235abc91f54894'] = 'Voici la liste de tous les modules installés sur votre boutique.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3909171d57367040df5af6ef6fb458eb'] = 'Cochez les modules que vous voulez désactiver jusqu´à ce que les utilisateurs donnent leur consentement.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_07fc7dc79c8046bb36d97b4332dab1ca'] = 'Retour à la liste'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9cfefed8fb9497baa5cd519d7d2bb5d7'] = 'fr'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a28ed6a8ee921f71252d2a49545e7d6e'] = 'Lire cette page pour plus d\'informations'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_810c687f20666a14bfac5d7d9769fc21'] = 'FAQ : VOIR LES ERREURS FRÉQUENTES'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_1_7_5c8cb6026154ec70517f5fc2b3ea17c2'] = 'Tous les cookies sauf les cookies de session Prestashop ont été supprimés'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_1_7_0fc30646d5cf22910283967bf24ebf66'] = 'Requête invalide'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_16_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Révoquer mon consentement aux cookies'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_17_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Révoquer mon consentement à accepter les cookies de tiers'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_15_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Révoquer mon consentement à accepter les cookies de tiers'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_5c8cb6026154ec70517f5fc2b3ea17c2'] = 'Tous les cookies sauf les cookies de session Prestashop ont été supprimés'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_0fc30646d5cf22910283967bf24ebf66'] = 'Requête invalide'; +$_MODULE['<{lgcookieslaw}prestashop>advise_538b4ebaf535c9f70c16f2a97441f6b5'] = 'Gardez à l\'esprit que l\'utilisateur / propriétaire du commerce électronique sur lequel le module est installé est seul responsable des textes juridiques qui doivent être saisis, tels que la notification et l\'explication de la finalité des cookies tiers. Línea Gráfica ne sera en aucun cas responsable des dommages pouvant être causés par l\'activation d\'options non conformes au RGPD'; +$_MODULE['<{lgcookieslaw}prestashop>form_2efd89b3ccc76b0b03a34196fc6d1c8b'] = 'Ajouter une étiquette'; +$_MODULE['<{lgcookieslaw}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'Oui'; +$_MODULE['<{lgcookieslaw}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non'; +$_MODULE['<{lgcookieslaw}prestashop>form_26ce1315d2bff025e8fb8a0c6259e58c'] = 'Changer le mot de passe...'; +$_MODULE['<{lgcookieslaw}prestashop>form_d9c2d86a66aa5a45326c3757f3a272cc'] = 'Mot de passe actuel'; +$_MODULE['<{lgcookieslaw}prestashop>form_3544848f820b9d94a3f3871a382cf138'] = 'Nouveau mot de passe'; +$_MODULE['<{lgcookieslaw}prestashop>form_4c231e0da3eaaa6a9752174f7f9cfb31'] = 'Confirmez le mot de passe'; +$_MODULE['<{lgcookieslaw}prestashop>form_2871afea416378d2772937c4d67d6c2c'] = 'Créer un mot de passe'; +$_MODULE['<{lgcookieslaw}prestashop>form_ed400dc4c641d6e5672616ac56a669ec'] = 'Envoyez-moi ce nouveau mot de passe par Email'; +$_MODULE['<{lgcookieslaw}prestashop>form_ea4788705e6873b424c65e91c2846b19'] = 'Annuler'; +$_MODULE['<{lgcookieslaw}prestashop>form_4bbb8f967da6d1a610596d7257179c2b'] = 'Invalide'; +$_MODULE['<{lgcookieslaw}prestashop>form_26b63f278101527e06a5547719568bb5'] = 'd\'accord'; +$_MODULE['<{lgcookieslaw}prestashop>form_0c6ad70beb3a7e76c3fc7adab7c46acc'] = 'Bien'; +$_MODULE['<{lgcookieslaw}prestashop>form_b8dc7c80939667637db7ac31ece215b9'] = 'Fabuleux'; +$_MODULE['<{lgcookieslaw}prestashop>form_01e8202cf69f19ea7cf3a80f7673066a'] = 'Confirmation de mot de passe invalide'; +$_MODULE['<{lgcookieslaw}prestashop>form_86f5978d9b80124f509bdb71786e929e'] = 'janvier'; +$_MODULE['<{lgcookieslaw}prestashop>form_659e59f062c75f81259d22786d6c44aa'] = 'février'; +$_MODULE['<{lgcookieslaw}prestashop>form_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Mars'; +$_MODULE['<{lgcookieslaw}prestashop>form_3fcf026bbfffb63fb24b8de9d0446949'] = 'avril'; +$_MODULE['<{lgcookieslaw}prestashop>form_195fbb57ffe7449796d23466085ce6d8'] = 'Mai'; +$_MODULE['<{lgcookieslaw}prestashop>form_688937ccaf2a2b0c45a1c9bbba09698d'] = 'juin'; +$_MODULE['<{lgcookieslaw}prestashop>form_1b539f6f34e8503c97f6d3421346b63c'] = 'juillet'; +$_MODULE['<{lgcookieslaw}prestashop>form_41ba70891fb6f39327d8ccb9b1dafb84'] = 'août'; +$_MODULE['<{lgcookieslaw}prestashop>form_cc5d90569e1c8313c2b1c2aab1401174'] = 'septembre'; +$_MODULE['<{lgcookieslaw}prestashop>form_eca60ae8611369fe28a02e2ab8c5d12e'] = 'octobre'; +$_MODULE['<{lgcookieslaw}prestashop>form_7e823b37564da492ca1629b4732289a8'] = 'novembre'; +$_MODULE['<{lgcookieslaw}prestashop>form_82331503174acbae012b2004f6431fa5'] = 'décembre'; +$_MODULE['<{lgcookieslaw}prestashop>form_03dfb5b36313c028aacc5dddd428a8a4'] = 'Ajouter une adresse IP'; +$_MODULE['<{lgcookieslaw}prestashop>form_1e1cc9bdeb2f29f5480106aec7e9bc48'] = 'À présent'; +$_MODULE['<{lgcookieslaw}prestashop>form_f92965e2c8a7afb3c1b9a5c09a263636'] = 'Terminé'; +$_MODULE['<{lgcookieslaw}prestashop>form_3964fd83339fec5014c831822005653a'] = 'Choisissez l\'heure'; +$_MODULE['<{lgcookieslaw}prestashop>form_a76d4ef5f3f6a672bbfab2865563e530'] = 'Temps'; +$_MODULE['<{lgcookieslaw}prestashop>form_b55e509c697e4cca0e1d160a7806698f'] = 'Heure'; +$_MODULE['<{lgcookieslaw}prestashop>form_62902641c38f3a4a8eb3212454360e24'] = 'Minute'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_6789674b365e4ff58e922a1945b3fdd0'] = 'Personnalisation'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_0abcd89a0c6d61aac7d59bb39fb2f824'] = 'Configuration des cookies'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_da22c93ccb398c72070f4000cc7b59a1'] = 'Personnalisation'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_93cba07454f06a4a960172bbd6e2a435'] = 'Oui'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_1e90f6df7f70f4e192179fde6197c8de'] = 'Fonctionnel (obligatoire)'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_6fe5b84371a37746cac4b1fb635ae4ae'] = 'Ce sont des cookies techniques et ils sont essentiels pour l\'utilisation basique de ce site.'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_ea4788705e6873b424c65e91c2846b19'] = 'Annuler'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_d88ad2dc74e43a70afd10645cf8002a6'] = 'Acceptez et continuez'; diff --git a/modules/lgcookieslaw/translations/gb.php b/modules/lgcookieslaw/translations/gb.php new file mode 100644 index 00000000..32ce33ce --- /dev/null +++ b/modules/lgcookieslaw/translations/gb.php @@ -0,0 +1,147 @@ +lgcookieslaw_22c7d5a25303111ee4d06c403cc597ca'] = 'EU Cookie Law (Notification Banner + Cookie Blocker)'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5469626d2e768c6944316d0068c2fd81'] = 'Display a cookie banner and block cookies before getting the user consent.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8ff9e90b056525c1363429d65e25395a'] = 'The Hook.php override is missing.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3550f654b97f366150bcd41af018082b'] = 'Please reset the module or copy the override manually on your FTP.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9a6aa8054d2b7234c96b3a0ca0747589'] = 'The overrides are currently disabled on your store.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f289716452e91c7dde7c17683e95d291'] = 'Please change the configuration'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0d07c8b056dc01496d884eee9f3d6a9b'] = 'Non PrestaShop modules are currently disabled on your store.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_098069b86d3f121b6e50c40302c12d2a'] = 'The preview mode of the module is enabled.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83794efdec9fd14bad765b006386a088'] = 'Don\'t forget to disable it once you have finished configuring the banner.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e03d8ff435ef9e4c0bb95f7708d2a231'] = 'The mode \"Accept cookies through navigation\" should be enabled'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8e94d3d3cdee15b2e07a9633fd353041'] = 'only if the option \"Banner without buttons\" is selected.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8c72a2546be6761c8972cb7d4a4130b2'] = 'The option \"Banner without buttons\" should be selected'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6fd94ce33a53d7103b8e1b6077b5e918'] = 'only if the mode \"Accept cookies through navigation\" is enabled.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0cbb9d66b25062cd16fdb208b86aae56'] = 'If you enable this option, you will breaking Europen Union laws.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8151b861b3b6f3236be5e1d8a86abfab'] = 'Please if your shop is on European Union Territory, disable this option.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0a568c54bdfabd16ed212ec7166e67a1'] = 'We will not assume any damage,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_039280edf6e1d4c7042af74c4aa8a62a'] = 'or conflict caused directly or indirectly as a consequence of have this option enabled.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2296d5907cb69bfae96af109ccbf3aba'] = 'You can get more info in next link:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_de62775a71fc2bf7a13d7530ae24a7ed'] = 'General settings'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7b00b7df5bd166ce4bd95da0edf447ec'] = 'Banner settings'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d1d1673ac47fe9e8c78297f7079c82e5'] = 'Button settings'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af0da26df79a3d1ed0a4bc244f614357'] = 'Modules blocked'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_16d6ee46a35489df9978e1144272a424'] = 'With this option your banner styles set initially as disabled:none then show by javascript.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9013b630235e2a5c48b7357e23e1bd2f'] = 'IMPORTANT:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8d570d082e307db98ed8973cf836faf2'] = 'Disallow url'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_da2077f36f21ce29abcb324854cc79a6'] = 'This link will grant the right of revoke their consent to your customers.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b4cec33fa984f519379c0587f20937ea'] = 'You can paste this url on your CMS.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_65098d7fb3ed993b5564637a7b09e6a9'] = 'Ypur users will be able to clean all cookies except Prestashop ones.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_1ba2fa63eac0306abc7ee7f8d829c0fa'] = 'Add revoke consent button'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3da3089ee5548150a4fa51495b064112'] = 'Enable this option to add a button on customers acount to revoke cookie consent.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8dbaf6e244693537706a205d622b08a2'] = 'It will lcean all cookies except Prestashop ones,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_93cba07454f06a4a960172bbd6e2a435'] = 'Yes'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f592604db5521d1ac01054b0d2f91dba'] = 'Reload the page after accepting cookies'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f23783d7694dc0f1b32d3302ad26ef7c'] = 'Enable this option if you wish reload the page after a customer accepts cookies.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2495702bb8485a5ad36161464627df0a'] = 'Preview mode:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_daa528fe10e74996b39c3f06f71d5d7e'] = 'Enable this option to preview the cookie banner in your front-office'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8702d236740cafe52c15d99dcc5c4f0c'] = 'without bothering your customers (when the preview mode is enabled,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f9c8ce2d05f254b00fab1f6e5bec34c'] = 'the banner doesn´t disappear, the module doesn´t block cookies'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4dd88e1b515a398b1bcfe3228ea21014'] = 'and only the person using the IP below is able to see the cookie banner).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_98008891b2901f27bf015d5056583b68'] = 'Cache modules compatibility'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f42878da478af31dd70566a8d2c622a0'] = 'This can be usefull if your site use some cache module.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8f0ac7e09455426d7787bf7f2228ac08'] = 'Do not active this option if your accept button hide the banner,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8fa771e6ca6c44627c39350de410de03'] = 'this option may not comply with the law.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d80ce1aa74cca030905ef792552b5871'] = 'IP for the preview mode:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fc5b34783a5161a721cfa8df37dfedd2'] = 'Click on the button \"Add IP\" to be the only person'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_20764450c02e94b7d24fcc5dad112420'] = 'able to see the banner (if the preview mode is enabled).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_33d709f7f373a48edf15aa7d687d86e5'] = 'Cookie lifetime (seconds):'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_36cb27c4656dc3c2e3da77e28e78c673'] = 'Set the duration during which the user consent will be saved (1 year = 31536000s).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_974b8d9930b62c71c64dfd0c0ba79f46'] = 'Cookie name:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_391fb23ba6d478d1c3cb62793d5168a7'] = 'Choose the name of the cookie used by our module to remember user consent'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ba75d65a1c35eef6f303ea9585a844c0'] = '(don´t use any space).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d4e697fb8b41241a86e254e32917373b'] = 'SEO protection:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_cc53798ade2a279e58e278ef4c6899e8'] = 'The module will prevent the search engine bots above'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7e59b74b98acd4b59d92ca3752b59905'] = 'from seeing the cookie warning banner when they crawl your website.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af62349c43fee1adf1109073982da102'] = 'Banner position:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83a5556a13599977856b83652c9f5323'] = 'Choose the position of the warning banner (top or bottom of the page).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'Top'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2ad9d63b69c4a10a5cc9cad923133bc4'] = 'Bottom'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e429ae5efafd0db7c52dd19710bddc00'] = 'Background color:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6ac8ee08a448f3edda61fde78247ca7e'] = 'Background opacity:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_87ca5ab523d6ca4ace074af8304d908a'] = 'Choose the opacity of the background color (1 is opaque, 0 is transparent).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d398391ffa393415691f6f53d6c1f711'] = 'Shadow color:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e019305e9bd7cedcdae8c05acab5751b'] = 'Font color:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_684791bc6a17eadbfc38fb6a9e98e99a'] = 'Banner message:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4ef558167373f89b25d44f116988298b'] = 'Example: \"Our webstore uses cookies to offer a better user experience'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f63a1275bb927e64d79d83b4e704be75'] = 'and we recommend you to accept their use to fully enjoy your navigation.\"'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0058d6648f64bf0ccbd1b2255855f5be'] = 'Button position:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa169f04e827072c6350486b26f41c5b'] = 'Choose the position of the \"I accept\" and \"More information\" buttons inside the banner.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5dcf5f9169521205b87ee8836fe45024'] = 'Banner without buttons'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5f9143ff96d91f300e747a1fc2b1fb90'] = 'Buttons above the text'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f5fb55f1e5a7ebfb5e1c718beb64d16'] = 'Buttons below the text'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_91bc5b5a8bb879a88d78fc9f61546707'] = 'Buttons to the left of the text'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_1f11d0e349ba438c7bc4d0470b4701c1'] = 'Buttons to the right of the text'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a8369373489574320fa1a4589e38e6f0'] = 'Accept cookies through navigation:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e6cadf3a12183170a3b6794c17ae2002'] = 'Disable this option is you want the banner to disappear'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8f8600305f0971a3b69a890b9507e2d7'] = 'only when users click on the \"I accept\" button (banner with buttons).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b8597bbcd6be3306ab787599a343c656'] = 'And enable this option is you want the banner to disappear automatically'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5928ede8ae83c2c56511e9cb23e03c76'] = 'when users keep browsing your website (banner without buttons).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aad201cc3395ac6e9f6f37592f745d6d'] = 'This option does not comply with European data protection law.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_61c73c1144e87ab1be9ab8d1e04cba88'] = 'Title of the button 1 \"I accept\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa08b3ef328e128e6314138c82473ada'] = 'Button 1 background color:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e14914c7e65bc03dc91ff20cb3d4cb9b'] = 'Button 1 font color:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9f6d6a70b4c2c2014fb8fd33d21e9393'] = 'Title of the button 2 \"More information\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2c6e8ed8481c6d4db218050545f16167'] = 'Button 2 background color:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ea09b79f50ec96c21182341533466bb7'] = 'Button 2 font color:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_721687f3b0c0779ea0d2d6f0d48e4a41'] = 'Link of the button 2 \"More information\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_53b47d8e95ba51f5c809361e0958d61a'] = 'When you click on the \"More information\" button,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5a7d13a9aba8159044f36758a42d2715'] = 'it will take you to CMS page you have selected.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_244eb5881c3e5fe1c49a6ad6bf75f206'] = 'Open the link in a new window:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_376c4702df252d88378ade28f5ea105e'] = 'the CMS page will be opened in a new or the same window of your browser.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3780718d5d5290ecdaa24b3bd320cc5f'] = 'Button to close the banner:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c1268b39cc106988c1723d9cb6b10171'] = 'Display a button to close the cookies banner.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f494e3d960591309c6b680df9ee71760'] = 'Block cookies:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fe1406191777b7f273235abc91f54894'] = 'Here is the list of all the modules installed on your store.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3909171d57367040df5af6ef6fb458eb'] = 'Tick the modules that you want to disable until users give their consent.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c9cc8cce247e49bae79f15173ce97354'] = 'Save'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_07fc7dc79c8046bb36d97b4332dab1ca'] = 'Back to the list'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9cfefed8fb9497baa5cd519d7d2bb5d7'] = 'en'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a28ed6a8ee921f71252d2a49545e7d6e'] = 'Read this page for more information'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_810c687f20666a14bfac5d7d9769fc21'] = 'FAQ: SEE THE COMMON ERRORS'; +$_MODULE['<{lgcookieslaw}prestashop>advise_538b4ebaf535c9f70c16f2a97441f6b5'] = 'Keep in mind that the user / owner of the e-commerce where the module is installed is solely responsible for the legal texts that must be entered, such as the notice and explanation of the purpose of third-party cookies. Línea Gráfica will in no case be responsible for the damages that may be caused by activating options that do not comply with the RGPD'; +$_MODULE['<{lgcookieslaw}prestashop>form_2efd89b3ccc76b0b03a34196fc6d1c8b'] = 'Add tag'; +$_MODULE['<{lgcookieslaw}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'Yes'; +$_MODULE['<{lgcookieslaw}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; +$_MODULE['<{lgcookieslaw}prestashop>form_26ce1315d2bff025e8fb8a0c6259e58c'] = 'Change password...'; +$_MODULE['<{lgcookieslaw}prestashop>form_d9c2d86a66aa5a45326c3757f3a272cc'] = 'Current password'; +$_MODULE['<{lgcookieslaw}prestashop>form_3544848f820b9d94a3f3871a382cf138'] = 'New password'; +$_MODULE['<{lgcookieslaw}prestashop>form_4c231e0da3eaaa6a9752174f7f9cfb31'] = 'Confirm password'; +$_MODULE['<{lgcookieslaw}prestashop>form_2871afea416378d2772937c4d67d6c2c'] = 'Generate password'; +$_MODULE['<{lgcookieslaw}prestashop>form_ed400dc4c641d6e5672616ac56a669ec'] = 'Send me this new password by Email'; +$_MODULE['<{lgcookieslaw}prestashop>form_ea4788705e6873b424c65e91c2846b19'] = 'Cancel'; +$_MODULE['<{lgcookieslaw}prestashop>form_4bbb8f967da6d1a610596d7257179c2b'] = 'Invalid'; +$_MODULE['<{lgcookieslaw}prestashop>form_26b63f278101527e06a5547719568bb5'] = 'Okay'; +$_MODULE['<{lgcookieslaw}prestashop>form_0c6ad70beb3a7e76c3fc7adab7c46acc'] = 'Good'; +$_MODULE['<{lgcookieslaw}prestashop>form_b8dc7c80939667637db7ac31ece215b9'] = 'Fabulous'; +$_MODULE['<{lgcookieslaw}prestashop>form_01e8202cf69f19ea7cf3a80f7673066a'] = 'Invalid password confirmation'; +$_MODULE['<{lgcookieslaw}prestashop>form_86f5978d9b80124f509bdb71786e929e'] = 'January'; +$_MODULE['<{lgcookieslaw}prestashop>form_659e59f062c75f81259d22786d6c44aa'] = 'February'; +$_MODULE['<{lgcookieslaw}prestashop>form_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'March'; +$_MODULE['<{lgcookieslaw}prestashop>form_3fcf026bbfffb63fb24b8de9d0446949'] = 'April'; +$_MODULE['<{lgcookieslaw}prestashop>form_195fbb57ffe7449796d23466085ce6d8'] = 'May'; +$_MODULE['<{lgcookieslaw}prestashop>form_688937ccaf2a2b0c45a1c9bbba09698d'] = 'June'; +$_MODULE['<{lgcookieslaw}prestashop>form_1b539f6f34e8503c97f6d3421346b63c'] = 'July'; +$_MODULE['<{lgcookieslaw}prestashop>form_41ba70891fb6f39327d8ccb9b1dafb84'] = 'August'; +$_MODULE['<{lgcookieslaw}prestashop>form_cc5d90569e1c8313c2b1c2aab1401174'] = 'September'; +$_MODULE['<{lgcookieslaw}prestashop>form_eca60ae8611369fe28a02e2ab8c5d12e'] = 'October'; +$_MODULE['<{lgcookieslaw}prestashop>form_7e823b37564da492ca1629b4732289a8'] = 'November'; +$_MODULE['<{lgcookieslaw}prestashop>form_82331503174acbae012b2004f6431fa5'] = 'December'; +$_MODULE['<{lgcookieslaw}prestashop>form_03dfb5b36313c028aacc5dddd428a8a4'] = 'Add IP'; +$_MODULE['<{lgcookieslaw}prestashop>form_1e1cc9bdeb2f29f5480106aec7e9bc48'] = 'Now'; +$_MODULE['<{lgcookieslaw}prestashop>form_f92965e2c8a7afb3c1b9a5c09a263636'] = 'Done'; +$_MODULE['<{lgcookieslaw}prestashop>form_3964fd83339fec5014c831822005653a'] = 'Choose Time'; +$_MODULE['<{lgcookieslaw}prestashop>form_a76d4ef5f3f6a672bbfab2865563e530'] = 'Time'; +$_MODULE['<{lgcookieslaw}prestashop>form_b55e509c697e4cca0e1d160a7806698f'] = 'Hour'; +$_MODULE['<{lgcookieslaw}prestashop>form_62902641c38f3a4a8eb3212454360e24'] = 'Minute'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_15_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Revocar mi consentimiento a aceptar cookies de terceros'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_16_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Revoke my consent to cookies'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_17_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Revocar mi consentimiento a aceptar cookies de terceros'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_5c8cb6026154ec70517f5fc2b3ea17c2'] = 'Todas las cookies excepto las cookies de sesión de Prestashop han sido eliminadas'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_0fc30646d5cf22910283967bf24ebf66'] = 'Petición no válida'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_1_7_5c8cb6026154ec70517f5fc2b3ea17c2'] = 'Todas las cookies excepto las cookies de sesión de Prestashop han sido eliminadas'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_1_7_0fc30646d5cf22910283967bf24ebf66'] = 'Petición no válida'; diff --git a/modules/lgcookieslaw/translations/index.php b/modules/lgcookieslaw/translations/index.php new file mode 100644 index 00000000..2e358b17 --- /dev/null +++ b/modules/lgcookieslaw/translations/index.php @@ -0,0 +1,106 @@ + + + +* @copyright 2007-2012 PrestaShop SA + + +* @version Release: $Revision: 14011 $ + + +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + + +* International Registered Trademark & Property of PrestaShop SA + + +*/ + + + + + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); + + +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + + + + + +header("Cache-Control: no-store, no-cache, must-revalidate"); + + +header("Cache-Control: post-check=0, pre-check=0", false); + + +header("Pragma: no-cache"); + + + + + +header("Location: ../"); + + +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/translations/it.php b/modules/lgcookieslaw/translations/it.php new file mode 100644 index 00000000..f530ef89 --- /dev/null +++ b/modules/lgcookieslaw/translations/it.php @@ -0,0 +1,158 @@ +lgcookieslaw_22c7d5a25303111ee4d06c403cc597ca'] = 'Legge Europea sui Cookies (Avviso + Blocker del cookie)'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5469626d2e768c6944316d0068c2fd81'] = 'Implementa un banner di cookies e blocca i cookies prima di ottenere il consenso degli utenti.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8ff9e90b056525c1363429d65e25395a'] = 'L\'override Hook.php è mancante.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3550f654b97f366150bcd41af018082b'] = 'Si prega di reimpostare il modulo o copiare l\'override manualmente sul FTP.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9a6aa8054d2b7234c96b3a0ca0747589'] = 'I override sono disattivati nel tuo negozio.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f289716452e91c7dde7c17683e95d291'] = 'Si prega di modificare la configurazione'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0d07c8b056dc01496d884eee9f3d6a9b'] = 'I moduli non-native sono disattivati ​​nel tuo negozio.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_098069b86d3f121b6e50c40302c12d2a'] = 'Il modo anteprima del modulo è attivato.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83794efdec9fd14bad765b006386a088'] = 'Una volta terminato di configurare il banner, non dimenticare di disattivare il modo anteprima.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e03d8ff435ef9e4c0bb95f7708d2a231'] = 'Il modo \"Accettare cookies attraverso la navigazione\" deve essere attivato'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8e94d3d3cdee15b2e07a9633fd353041'] = 'solo se è selezionata l\'opzione \"Banner senza tasti\".'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8c72a2546be6761c8972cb7d4a4130b2'] = 'L\'opzione \"Banner senza tasti\" deve essere selezionata'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6fd94ce33a53d7103b8e1b6077b5e918'] = 'solo se il modo \"Accettare cookies attraverso la navigazione\" è attivato.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0cbb9d66b25062cd16fdb208b86aae56'] = 'Se abilitate questa opzione, violerete le leggi dell\'Unione europea.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8151b861b3b6f3236be5e1d8a86abfab'] = 'Per favore, se il tuo negozio è in territorio dell\'Unione Europea, disabilita questa opzione.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0a568c54bdfabd16ed212ec7166e67a1'] = 'Non assumeremo alcun danno,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_039280edf6e1d4c7042af74c4aa8a62a'] = 'o conflitto causato direttamente o indirettamente come conseguenza dell\'abilitazione di questa opzione.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2296d5907cb69bfae96af109ccbf3aba'] = 'Puoi ottenere maggiori informazioni nel prossimo link:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_de62775a71fc2bf7a13d7530ae24a7ed'] = 'Configurazione generale'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7b00b7df5bd166ce4bd95da0edf447ec'] = 'Configurazione del banner'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d1d1673ac47fe9e8c78297f7079c82e5'] = 'Configurazione dei tasti'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af0da26df79a3d1ed0a4bc244f614357'] = 'Moduli bloccati'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_16d6ee46a35489df9978e1144272a424'] = 'Con questa opzione i tuoi stili di banner vengono inizialmente impostati come disabilitati: nessuno quindi mostrato da javascript.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9013b630235e2a5c48b7357e23e1bd2f'] = 'IMPORTANTE:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8d570d082e307db98ed8973cf836faf2'] = 'Non consentire l\'url'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_da2077f36f21ce29abcb324854cc79a6'] = 'Questo link garantirà il diritto di revocare il consenso ai tuoi clienti.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b4cec33fa984f519379c0587f20937ea'] = 'Puoi incollare questo URL sul tuo CMS.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_65098d7fb3ed993b5564637a7b09e6a9'] = 'Gli utenti di Ypur saranno in grado di pulire tutti i cookie tranne quelli di Prestashop.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_1ba2fa63eac0306abc7ee7f8d829c0fa'] = 'Aggiungi il pulsante di revoca del consenso'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3da3089ee5548150a4fa51495b064112'] = 'Abilita questa opzione per aggiungere un pulsante ai clienti per revocare il consenso sui cookie.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8dbaf6e244693537706a205d622b08a2'] = 'Rilascerà tutti i cookie ad eccezione di Prestashop,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_93cba07454f06a4a960172bbd6e2a435'] = 'Sì'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f592604db5521d1ac01054b0d2f91dba'] = 'Ricarica la pagina dopo aver accettato i cookie'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f23783d7694dc0f1b32d3302ad26ef7c'] = 'Abilita questa opzione se desideri ricaricare la pagina dopo che un cliente accetta i cookie.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2495702bb8485a5ad36161464627df0a'] = 'Modo anteprima:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_daa528fe10e74996b39c3f06f71d5d7e'] = 'Attiva questa opzione per visualizzare in anteprima il banner sul tuo front-office'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8702d236740cafe52c15d99dcc5c4f0c'] = 'senza disturbare i clienti (cuando il modo anteprima é attivo,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f9c8ce2d05f254b00fab1f6e5bec34c'] = 'il banner non scompare, il modulo non blocca i cookie'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4dd88e1b515a398b1bcfe3228ea21014'] = 'e solo la persona che usa questo IP puó vedere il banner di avviso).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_98008891b2901f27bf015d5056583b68'] = 'Compatibilità con i moduli cache'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f42878da478af31dd70566a8d2c622a0'] = 'Questo può essere utile se il tuo sito utilizza qualche modulo di cache.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8f0ac7e09455426d7787bf7f2228ac08'] = 'Non attivare questa opzione se il tuo pulsante di accettazione nasconde il banner,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8fa771e6ca6c44627c39350de410de03'] = 'questa opzione potrebbe non essere conforme alla legge.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d80ce1aa74cca030905ef792552b5871'] = 'IP per il modo anteprima:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fc5b34783a5161a721cfa8df37dfedd2'] = 'Fai click in \"Aggiungere IP\" di essere l´unica persona '; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_20764450c02e94b7d24fcc5dad112420'] = 'che usa questo IP puó vedere il banner di avviso.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_33d709f7f373a48edf15aa7d687d86e5'] = 'Tempo di vita (secondi):'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_36cb27c4656dc3c2e3da77e28e78c673'] = 'Imposta la durata del periodo durante il quale si salverá il consenso dell´utente (1 anno = 31536000s).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_974b8d9930b62c71c64dfd0c0ba79f46'] = 'Nome del cookie :'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_391fb23ba6d478d1c3cb62793d5168a7'] = 'Dai un nome al cookie usato dal nostro modulo per salvare il consenso dell´utente'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ba75d65a1c35eef6f303ea9585a844c0'] = '(nessuno spazio).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d4e697fb8b41241a86e254e32917373b'] = 'Protezione del SEO:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_cc53798ade2a279e58e278ef4c6899e8'] = 'Il modulo impedisce che i bots del motore di ricerca'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7e59b74b98acd4b59d92ca3752b59905'] = 'vedano il banner di avviso quando scansionano il tuo negozio.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af62349c43fee1adf1109073982da102'] = 'Posizione del banner:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83a5556a13599977856b83652c9f5323'] = 'Imposta la posizione del banner di avviso (in alto o in basso nella pagina).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'In alto'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2ad9d63b69c4a10a5cc9cad923133bc4'] = 'In basso'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e429ae5efafd0db7c52dd19710bddc00'] = 'Colore dello sfondo:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6ac8ee08a448f3edda61fde78247ca7e'] = 'Opacitá dello sfondo:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_87ca5ab523d6ca4ace074af8304d908a'] = 'Scegli l´opacità del colore di sfondo (1 è opaco, 0 è trasparente).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d398391ffa393415691f6f53d6c1f711'] = 'Colore dell´ombra:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e019305e9bd7cedcdae8c05acab5751b'] = 'Colore del testo:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_684791bc6a17eadbfc38fb6a9e98e99a'] = 'Messaggio del banner:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4ef558167373f89b25d44f116988298b'] = 'Esempio: \"Il nostro negozio online fa uso di cookies per migliorare l´esperienza dell´utente'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f63a1275bb927e64d79d83b4e704be75'] = 'e raccomandiamo di accettarne l´utilizzo per sfruttare a pieno la navigazione.\"'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_93db13b2f29eacb637c940848c836596'] = 'Bloque cookies obligatorias:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_12558bfff0ed42a75d5b14750bd46170'] = 'Bloque cookies de terceros:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0058d6648f64bf0ccbd1b2255855f5be'] = 'Posizione dei tasti:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa169f04e827072c6350486b26f41c5b'] = 'Scegli la posizione dei tasti \"Accetto\" e \"Piú info\" all´interno del banner.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5dcf5f9169521205b87ee8836fe45024'] = 'Banner senza tasti'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5f9143ff96d91f300e747a1fc2b1fb90'] = 'Tasti sopra il testo'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f5fb55f1e5a7ebfb5e1c718beb64d16'] = 'Tasti sotto il testo'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_91bc5b5a8bb879a88d78fc9f61546707'] = 'Tasti alla sinistra del testo'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_1f11d0e349ba438c7bc4d0470b4701c1'] = 'Tasti alla destra del testo'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a8369373489574320fa1a4589e38e6f0'] = 'Accettare cookies attraverso la navigazione:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e6cadf3a12183170a3b6794c17ae2002'] = 'Disattiva questa opzione se vuoi che il banner scompaia'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8f8600305f0971a3b69a890b9507e2d7'] = 'solo quando l´utente faccia click sul tasto \"Accetto\" (banner con tasti).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b8597bbcd6be3306ab787599a343c656'] = 'Attiva questa opzione se vuoi che il banner scompaia automaticamente'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5928ede8ae83c2c56511e9cb23e03c76'] = 'quando l´utente continua a navigare nel tuo negozio online (banner senza tasti).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aad201cc3395ac6e9f6f37592f745d6d'] = 'Questa opzione non è conforme alla legge europea sulla protezione dei dati.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_61c73c1144e87ab1be9ab8d1e04cba88'] = 'Titolo del tasto 1 \"Accetto\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa08b3ef328e128e6314138c82473ada'] = 'Colore dello sfondo del tasto 1:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e14914c7e65bc03dc91ff20cb3d4cb9b'] = 'Colore dello testo del tasto 1:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9f6d6a70b4c2c2014fb8fd33d21e9393'] = 'Titolo del tasto \"Piú info\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2c6e8ed8481c6d4db218050545f16167'] = 'Colore dello sfondo del tasto 2:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ea09b79f50ec96c21182341533466bb7'] = 'Colore dello testo del tasto 2:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_721687f3b0c0779ea0d2d6f0d48e4a41'] = 'Link del tasto \"Piú Info\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_53b47d8e95ba51f5c809361e0958d61a'] = 'Quando fai click sul tasto \"Piú Info\",'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5a7d13a9aba8159044f36758a42d2715'] = 'ti porta alla pagina CMS che hai impostato.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_244eb5881c3e5fe1c49a6ad6bf75f206'] = 'Apri il link in una nuova finestra:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_376c4702df252d88378ade28f5ea105e'] = 'si apre la pagina CMS in una nuova e stessa finestra del browser.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3780718d5d5290ecdaa24b3bd320cc5f'] = 'Tasto per chiudere il banner:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c1268b39cc106988c1723d9cb6b10171'] = 'Aggiungere un tasto per chiudere la bandiera del cookie.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f494e3d960591309c6b680df9ee71760'] = 'Bloccare i cookie:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fe1406191777b7f273235abc91f54894'] = 'Qui é riportata la lista dei moduli installati nel tuo negozio.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3909171d57367040df5af6ef6fb458eb'] = 'Contrassegna i moduli che vuoi disattivare fino a che l´utente dia il suo consenso.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c9cc8cce247e49bae79f15173ce97354'] = 'Salvar'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_07fc7dc79c8046bb36d97b4332dab1ca'] = 'Torna alla lista'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9cfefed8fb9497baa5cd519d7d2bb5d7'] = 'it'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a28ed6a8ee921f71252d2a49545e7d6e'] = 'Leggere questa pagina per maggiori informazioni'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_810c687f20666a14bfac5d7d9769fc21'] = 'FAQ: VEDERE GLI ERRORI FREQUENTI'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_1_7_5c8cb6026154ec70517f5fc2b3ea17c2'] = 'Tutti i tuoi cookie tranne quelli di sessione Prestashop sono stati cancellati'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_1_7_0fc30646d5cf22910283967bf24ebf66'] = 'Brutta richiesta'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_16_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Revoca il consenso ai cookie'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_17_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Revoca il mio consenso ad accettare i cookie di terze parti'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_15_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Revoca il mio consenso ad accettare i cookie di terze parti'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_5c8cb6026154ec70517f5fc2b3ea17c2'] = 'Tutti i tuoi cookie tranne quelli di sessione Prestashop sono stati cancellati'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_0fc30646d5cf22910283967bf24ebf66'] = 'Brutta richiesta'; +$_MODULE['<{lgcookieslaw}prestashop>advise_538b4ebaf535c9f70c16f2a97441f6b5'] = 'Tieni presente che l\'utente / titolare dell\'e-commerce in cui è installato il modulo è l\'unico responsabile dei testi legali che devono essere inseriti, come l\'avviso e la spiegazione delle finalità dei cookie di terze parti. Línea Gráfica non sarà in alcun caso responsabile per eventuali danni che potrebbero essere causati dall\'attivazione di opzioni non conformi al RGPD'; +$_MODULE['<{lgcookieslaw}prestashop>form_2efd89b3ccc76b0b03a34196fc6d1c8b'] = 'Aggiungi Tag'; +$_MODULE['<{lgcookieslaw}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'sì'; +$_MODULE['<{lgcookieslaw}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'non'; +$_MODULE['<{lgcookieslaw}prestashop>form_26ce1315d2bff025e8fb8a0c6259e58c'] = 'Cambia la password...'; +$_MODULE['<{lgcookieslaw}prestashop>form_d9c2d86a66aa5a45326c3757f3a272cc'] = 'Password attuale'; +$_MODULE['<{lgcookieslaw}prestashop>form_3544848f820b9d94a3f3871a382cf138'] = 'Nuova password'; +$_MODULE['<{lgcookieslaw}prestashop>form_4c231e0da3eaaa6a9752174f7f9cfb31'] = 'Conferma password'; +$_MODULE['<{lgcookieslaw}prestashop>form_2871afea416378d2772937c4d67d6c2c'] = 'Genera password'; +$_MODULE['<{lgcookieslaw}prestashop>form_ed400dc4c641d6e5672616ac56a669ec'] = 'Inviami questa nuova password tramite e-mail'; +$_MODULE['<{lgcookieslaw}prestashop>form_ea4788705e6873b424c65e91c2846b19'] = 'Annulla'; +$_MODULE['<{lgcookieslaw}prestashop>form_4bbb8f967da6d1a610596d7257179c2b'] = 'Non valido'; +$_MODULE['<{lgcookieslaw}prestashop>form_26b63f278101527e06a5547719568bb5'] = 'Va bene'; +$_MODULE['<{lgcookieslaw}prestashop>form_0c6ad70beb3a7e76c3fc7adab7c46acc'] = 'Buona'; +$_MODULE['<{lgcookieslaw}prestashop>form_b8dc7c80939667637db7ac31ece215b9'] = 'Favoloso'; +$_MODULE['<{lgcookieslaw}prestashop>form_01e8202cf69f19ea7cf3a80f7673066a'] = 'Conferma password non valida'; +$_MODULE['<{lgcookieslaw}prestashop>form_86f5978d9b80124f509bdb71786e929e'] = 'gennaio'; +$_MODULE['<{lgcookieslaw}prestashop>form_659e59f062c75f81259d22786d6c44aa'] = 'febbraio'; +$_MODULE['<{lgcookieslaw}prestashop>form_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'marzo'; +$_MODULE['<{lgcookieslaw}prestashop>form_3fcf026bbfffb63fb24b8de9d0446949'] = 'aprile'; +$_MODULE['<{lgcookieslaw}prestashop>form_195fbb57ffe7449796d23466085ce6d8'] = 'potrebbe'; +$_MODULE['<{lgcookieslaw}prestashop>form_688937ccaf2a2b0c45a1c9bbba09698d'] = 'giugno'; +$_MODULE['<{lgcookieslaw}prestashop>form_1b539f6f34e8503c97f6d3421346b63c'] = 'luglio'; +$_MODULE['<{lgcookieslaw}prestashop>form_41ba70891fb6f39327d8ccb9b1dafb84'] = 'agosto'; +$_MODULE['<{lgcookieslaw}prestashop>form_cc5d90569e1c8313c2b1c2aab1401174'] = 'settembre'; +$_MODULE['<{lgcookieslaw}prestashop>form_eca60ae8611369fe28a02e2ab8c5d12e'] = 'ottobre'; +$_MODULE['<{lgcookieslaw}prestashop>form_7e823b37564da492ca1629b4732289a8'] = 'novembre'; +$_MODULE['<{lgcookieslaw}prestashop>form_82331503174acbae012b2004f6431fa5'] = 'dicembre'; +$_MODULE['<{lgcookieslaw}prestashop>form_03dfb5b36313c028aacc5dddd428a8a4'] = 'Aggiungi IP'; +$_MODULE['<{lgcookieslaw}prestashop>form_1e1cc9bdeb2f29f5480106aec7e9bc48'] = 'Adesso'; +$_MODULE['<{lgcookieslaw}prestashop>form_f92965e2c8a7afb3c1b9a5c09a263636'] = 'Fatto'; +$_MODULE['<{lgcookieslaw}prestashop>form_3964fd83339fec5014c831822005653a'] = 'Scegli il tempo'; +$_MODULE['<{lgcookieslaw}prestashop>form_a76d4ef5f3f6a672bbfab2865563e530'] = 'Tempo'; +$_MODULE['<{lgcookieslaw}prestashop>form_b55e509c697e4cca0e1d160a7806698f'] = 'Ora'; +$_MODULE['<{lgcookieslaw}prestashop>form_62902641c38f3a4a8eb3212454360e24'] = 'minuto'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_6789674b365e4ff58e922a1945b3fdd0'] = 'Gestisci i cookie'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_0abcd89a0c6d61aac7d59bb39fb2f824'] = 'Gestione dei cookie'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_da22c93ccb398c72070f4000cc7b59a1'] = 'Personalizzazione'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_93cba07454f06a4a960172bbd6e2a435'] = 'Sì'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_1e90f6df7f70f4e192179fde6197c8de'] = 'Funzionale (obbligatorio)'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_6fe5b84371a37746cac4b1fb635ae4ae'] = 'Si tratta di cookie tecnici e sono indispensabili per l\'utilizzo di base del sito.'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_ea4788705e6873b424c65e91c2846b19'] = 'Annulla'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_d88ad2dc74e43a70afd10645cf8002a6'] = 'Accetta e continua'; diff --git a/modules/lgcookieslaw/translations/nl.php b/modules/lgcookieslaw/translations/nl.php new file mode 100644 index 00000000..067cb3a9 --- /dev/null +++ b/modules/lgcookieslaw/translations/nl.php @@ -0,0 +1,147 @@ +lgcookieslaw_22c7d5a25303111ee4d06c403cc597ca'] = 'EU Cookie Law (Notification Banner + Cookie Blocker)'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5469626d2e768c6944316d0068c2fd81'] = 'Toon een koekje banner en cookies te blokkeren voor het verkrijgen van de toestemming van de gebruiker.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8ff9e90b056525c1363429d65e25395a'] = 'De Hook.php override ontbreekt.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3550f654b97f366150bcd41af018082b'] = 'Reset de module of handmatig te kopiëren de override op uw FTP.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9a6aa8054d2b7234c96b3a0ca0747589'] = 'De overrides zijn momenteel uitgeschakeld op uw winkel.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f289716452e91c7dde7c17683e95d291'] = 'Wijzig de configuratie'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0d07c8b056dc01496d884eee9f3d6a9b'] = 'Niet PrestaShop modules zijn momenteel uitgeschakeld op uw winkel.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_098069b86d3f121b6e50c40302c12d2a'] = 'De preview-modus van de module is ingeschakeld.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83794efdec9fd14bad765b006386a088'] = 'Vergeet niet om het uit te schakelen als je eenmaal klaar bent met het configureren van de banner.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e03d8ff435ef9e4c0bb95f7708d2a231'] = 'De mode \"Accepteer cookies door middel van navigatie\" moet worden ingeschakeld'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8e94d3d3cdee15b2e07a9633fd353041'] = 'alleen als de optie \"Banner zonder knoppen\" is geselecteerd.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8c72a2546be6761c8972cb7d4a4130b2'] = 'De optie \"Banner zonder knopen\" moet worden geselecteerd'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6fd94ce33a53d7103b8e1b6077b5e918'] = 'alleen als de modus \"cookies door middel van navigatie Accept\" is ingeschakeld.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0cbb9d66b25062cd16fdb208b86aae56'] = 'Als u deze optie inschakelt, overtreedt u de EU-wetgeving.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8151b861b3b6f3236be5e1d8a86abfab'] = 'Als uw winkel zich in het gebied van de Europese Unie bevindt, schakelt u deze optie uit.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0a568c54bdfabd16ed212ec7166e67a1'] = 'We nemen geen schade aan,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_039280edf6e1d4c7042af74c4aa8a62a'] = 'of conflicten die direct of indirect zijn veroorzaakt als gevolg van het inschakelen van deze optie.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2296d5907cb69bfae96af109ccbf3aba'] = 'U kunt meer informatie krijgen in de volgende link:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_de62775a71fc2bf7a13d7530ae24a7ed'] = 'Algemene instellingen'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7b00b7df5bd166ce4bd95da0edf447ec'] = 'Banner instellingen'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d1d1673ac47fe9e8c78297f7079c82e5'] = 'Knopinstellingen'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af0da26df79a3d1ed0a4bc244f614357'] = 'Modules geblokkeerd'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_16d6ee46a35489df9978e1144272a424'] = 'Met deze optie worden uw bannerstijlen aanvankelijk als uitgeschakeld ingesteld: geen dan weergegeven met javascript.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9013b630235e2a5c48b7357e23e1bd2f'] = ' BELANGRIJK:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8d570d082e307db98ed8973cf836faf2'] = 'Deshabilitar url'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_da2077f36f21ce29abcb324854cc79a6'] = 'Deze link geeft het recht om hun toestemming aan uw klanten in te trekken.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b4cec33fa984f519379c0587f20937ea'] = 'U kunt deze URL in uw CMS plakken.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_65098d7fb3ed993b5564637a7b09e6a9'] = 'Uw gebruikers kunnen alle cookies opschonen behalve Prestashop-cookies.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_1ba2fa63eac0306abc7ee7f8d829c0fa'] = 'Intrekknop voor intrekking toevoegen'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3da3089ee5548150a4fa51495b064112'] = 'Schakel deze optie in om een knop toe te voegen aan het klantenaccount om de toestemming voor cookies in te trekken.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8dbaf6e244693537706a205d622b08a2'] = 'Detectará todas las cookies excepto las de Prestashop,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_93cba07454f06a4a960172bbd6e2a435'] = 'Ja'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nee'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f592604db5521d1ac01054b0d2f91dba'] = 'Herlaad de pagina na het accepteren van cookies'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f23783d7694dc0f1b32d3302ad26ef7c'] = 'Schakel deze optie in als u de pagina opnieuw wilt laden nadat een klant cookies heeft geaccepteerd.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2495702bb8485a5ad36161464627df0a'] = 'Preview-modus:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_daa528fe10e74996b39c3f06f71d5d7e'] = 'Activeer deze optie om een ​​voorbeeld van de cookie-banner in uw front-office'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8702d236740cafe52c15d99dcc5c4f0c'] = 'zonder de moeite uw klanten (wanneer de preview-modus is ingeschakeld,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f9c8ce2d05f254b00fab1f6e5bec34c'] = 'de banner gewoon thuisblijven verdwijnen, de module gewoon thuisblijven blok cookies'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4dd88e1b515a398b1bcfe3228ea21014'] = 'en alleen de persoon met behulp van de onderstaande IP in staat is om het cookie banner te zien).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_98008891b2901f27bf015d5056583b68'] = 'Compatibiliteit met cachemodules'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f42878da478af31dd70566a8d2c622a0'] = 'Dit kan handig zijn als uw site een cachemodule gebruikt.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8f0ac7e09455426d7787bf7f2228ac08'] = 'Activeer deze optie niet als uw acceptatieknop de banner verbergt,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8fa771e6ca6c44627c39350de410de03'] = 'deze optie is mogelijk niet in overeenstemming met de wet.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d80ce1aa74cca030905ef792552b5871'] = 'IP voor de preview-modus:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fc5b34783a5161a721cfa8df37dfedd2'] = 'Click on the button \"Add IP\" to be the only person'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_20764450c02e94b7d24fcc5dad112420'] = 'in staat om de banner te zien (als de preview-modus is ingeschakeld).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_33d709f7f373a48edf15aa7d687d86e5'] = 'Cookie levensduur (seconden):'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_36cb27c4656dc3c2e3da77e28e78c673'] = 'Stel de duur gedurende welke de toestemming van de gebruiker wordt opgeslagen (1 jaar = 31536000s).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_974b8d9930b62c71c64dfd0c0ba79f46'] = 'Cookie naam:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_391fb23ba6d478d1c3cb62793d5168a7'] = 'Kies de naam van de cookie gebruikt door onze module om toestemming van de gebruiker te onthouden'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ba75d65a1c35eef6f303ea9585a844c0'] = '(gebruik geen spatie).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d4e697fb8b41241a86e254e32917373b'] = 'SEO bescherming:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_cc53798ade2a279e58e278ef4c6899e8'] = 'De module zal boven voorkomen dat de zoekmachine bots'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7e59b74b98acd4b59d92ca3752b59905'] = 'het zien van de cookie-waarschuwing banner als ze uw website te doorzoeken.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af62349c43fee1adf1109073982da102'] = 'Banner positie:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83a5556a13599977856b83652c9f5323'] = 'Kies de positie van de waarschuwing banner (boven- of onderkant van de pagina).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'Top'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2ad9d63b69c4a10a5cc9cad923133bc4'] = 'Bodem'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e429ae5efafd0db7c52dd19710bddc00'] = 'Achtergrond kleur:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6ac8ee08a448f3edda61fde78247ca7e'] = 'Transparantie achtergrond:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_87ca5ab523d6ca4ace074af8304d908a'] = 'Kies de transparantie van de achtergrondkleur (1 ondoorzichtig is, 0 is transparant).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d398391ffa393415691f6f53d6c1f711'] = 'Shadow kleur:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e019305e9bd7cedcdae8c05acab5751b'] = 'Font kleur:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_684791bc6a17eadbfc38fb6a9e98e99a'] = 'Banner bericht:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4ef558167373f89b25d44f116988298b'] = 'Voorbeeld: \"Onze webwinkel maakt gebruik van cookies om een ​​betere gebruikerservaring te bieden'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f63a1275bb927e64d79d83b4e704be75'] = 'en we raden u aan om het gebruik ervan te accepteren om uw navigatie ten volle te genieten.\"'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0058d6648f64bf0ccbd1b2255855f5be'] = 'Button positie:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa169f04e827072c6350486b26f41c5b'] = 'Kies de positie van de \"Ik ga akkoord\" en \"Meer informatie\" knoppen in de banner.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5dcf5f9169521205b87ee8836fe45024'] = 'Banner zonder knoppen'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5f9143ff96d91f300e747a1fc2b1fb90'] = 'Knoppen boven de tekst'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f5fb55f1e5a7ebfb5e1c718beb64d16'] = 'Knoppen onder de tekst'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_91bc5b5a8bb879a88d78fc9f61546707'] = 'Knoppen aan de linkerkant van de tekst'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_1f11d0e349ba438c7bc4d0470b4701c1'] = 'Knoppen aan de rechterkant van de tekst'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a8369373489574320fa1a4589e38e6f0'] = 'Cookies accepteren door middel van navigatie:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e6cadf3a12183170a3b6794c17ae2002'] = 'Schakel deze optie uit is u wilt dat de banner te verdwijnen'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8f8600305f0971a3b69a890b9507e2d7'] = 'alleen wanneer gebruikers klikken op de \"Ik ga akkoord\" knop (banner met knoppen).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b8597bbcd6be3306ab787599a343c656'] = 'En schakel deze optie is dat je wilt dat de banner automatisch verdwijnen'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5928ede8ae83c2c56511e9cb23e03c76'] = 'wanneer gebruikers houden doorbladeren van uw website (banner zonder knoppen).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aad201cc3395ac6e9f6f37592f745d6d'] = 'Esta opción no cumple con la ley europea de protección de datos.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_61c73c1144e87ab1be9ab8d1e04cba88'] = 'Titel van de knop 1 \"Ik aanvaard\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa08b3ef328e128e6314138c82473ada'] = 'Knop 1 achtergrondkleur:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e14914c7e65bc03dc91ff20cb3d4cb9b'] = 'Knop 1 font color:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9f6d6a70b4c2c2014fb8fd33d21e9393'] = 'Titel van de toets 2 \"Meer informatie\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2c6e8ed8481c6d4db218050545f16167'] = 'Knop 2 achtergrondkleur:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ea09b79f50ec96c21182341533466bb7'] = 'Knop 2 font color:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_721687f3b0c0779ea0d2d6f0d48e4a41'] = 'Link van de toets 2 \"Meer informatie\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_53b47d8e95ba51f5c809361e0958d61a'] = 'Wanneer u klikt op de \"Meer informatie\" knop,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5a7d13a9aba8159044f36758a42d2715'] = 'het zal je u hebt geselecteerd naar CMS pagina.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_244eb5881c3e5fe1c49a6ad6bf75f206'] = 'Open de link in een nieuw venster:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_376c4702df252d88378ade28f5ea105e'] = 'de CMS pagina wordt geopend in een nieuw of hetzelfde venster van uw browser.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3780718d5d5290ecdaa24b3bd320cc5f'] = 'Knop om de banner te sluiten:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c1268b39cc106988c1723d9cb6b10171'] = 'Toon een knop om de cookies banner te sluiten.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f494e3d960591309c6b680df9ee71760'] = 'Cookies blokkeren:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fe1406191777b7f273235abc91f54894'] = 'Hier is de lijst van alle modules op uw winkel geïnstalleerd.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3909171d57367040df5af6ef6fb458eb'] = 'Vink de modules die u wilt uitschakelen, totdat gebruikers hun toestemming te geven.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c9cc8cce247e49bae79f15173ce97354'] = 'Besparen'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_07fc7dc79c8046bb36d97b4332dab1ca'] = 'Terug naar de lijst'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9cfefed8fb9497baa5cd519d7d2bb5d7'] = 'nl'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a28ed6a8ee921f71252d2a49545e7d6e'] = 'Lees deze pagina voor meer informatie'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_810c687f20666a14bfac5d7d9769fc21'] = 'FAQ: ZIE DE GEMEENSCHAPPELIJKE FOUTEN'; +$_MODULE['<{lgcookieslaw}prestashop>advise_538b4ebaf535c9f70c16f2a97441f6b5'] = 'Houd er rekening mee dat de gebruiker / eigenaar van de e-commerce waar de module is geïnstalleerd als enige verantwoordelijk is voor de juridische teksten die moeten worden ingevoerd, zoals de kennisgeving en uitleg van het doel van cookies van derden. Línea Gráfica is in geen geval verantwoordelijk voor enige schade die kan worden veroorzaakt door het activeren van opties die niet voldoen aan de RGPD'; +$_MODULE['<{lgcookieslaw}prestashop>form_2efd89b3ccc76b0b03a34196fc6d1c8b'] = 'Tag toe te voegen'; +$_MODULE['<{lgcookieslaw}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'Ja'; +$_MODULE['<{lgcookieslaw}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nee'; +$_MODULE['<{lgcookieslaw}prestashop>form_26ce1315d2bff025e8fb8a0c6259e58c'] = 'Verander wachtwoord...'; +$_MODULE['<{lgcookieslaw}prestashop>form_d9c2d86a66aa5a45326c3757f3a272cc'] = 'Huidig ​​wachtwoord'; +$_MODULE['<{lgcookieslaw}prestashop>form_3544848f820b9d94a3f3871a382cf138'] = 'Nieuw paswoord'; +$_MODULE['<{lgcookieslaw}prestashop>form_4c231e0da3eaaa6a9752174f7f9cfb31'] = 'Bevestig wachtwoord'; +$_MODULE['<{lgcookieslaw}prestashop>form_2871afea416378d2772937c4d67d6c2c'] = 'Genereer wachtwoord'; +$_MODULE['<{lgcookieslaw}prestashop>form_ed400dc4c641d6e5672616ac56a669ec'] = 'Stuur me dit nieuwe wachtwoord via e-mail'; +$_MODULE['<{lgcookieslaw}prestashop>form_ea4788705e6873b424c65e91c2846b19'] = 'Annuleer'; +$_MODULE['<{lgcookieslaw}prestashop>form_4bbb8f967da6d1a610596d7257179c2b'] = 'Ongeldig'; +$_MODULE['<{lgcookieslaw}prestashop>form_26b63f278101527e06a5547719568bb5'] = 'Oke'; +$_MODULE['<{lgcookieslaw}prestashop>form_0c6ad70beb3a7e76c3fc7adab7c46acc'] = 'Goed'; +$_MODULE['<{lgcookieslaw}prestashop>form_b8dc7c80939667637db7ac31ece215b9'] = 'Fabelachtig'; +$_MODULE['<{lgcookieslaw}prestashop>form_01e8202cf69f19ea7cf3a80f7673066a'] = 'Ongeldig wachtwoord bevestiging'; +$_MODULE['<{lgcookieslaw}prestashop>form_86f5978d9b80124f509bdb71786e929e'] = 'Januari'; +$_MODULE['<{lgcookieslaw}prestashop>form_659e59f062c75f81259d22786d6c44aa'] = 'Februari'; +$_MODULE['<{lgcookieslaw}prestashop>form_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Maart'; +$_MODULE['<{lgcookieslaw}prestashop>form_3fcf026bbfffb63fb24b8de9d0446949'] = 'April'; +$_MODULE['<{lgcookieslaw}prestashop>form_195fbb57ffe7449796d23466085ce6d8'] = 'Mei'; +$_MODULE['<{lgcookieslaw}prestashop>form_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Juni'; +$_MODULE['<{lgcookieslaw}prestashop>form_1b539f6f34e8503c97f6d3421346b63c'] = 'Juli'; +$_MODULE['<{lgcookieslaw}prestashop>form_41ba70891fb6f39327d8ccb9b1dafb84'] = 'Augustus'; +$_MODULE['<{lgcookieslaw}prestashop>form_cc5d90569e1c8313c2b1c2aab1401174'] = 'September'; +$_MODULE['<{lgcookieslaw}prestashop>form_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Oktober'; +$_MODULE['<{lgcookieslaw}prestashop>form_7e823b37564da492ca1629b4732289a8'] = 'November'; +$_MODULE['<{lgcookieslaw}prestashop>form_82331503174acbae012b2004f6431fa5'] = 'December'; +$_MODULE['<{lgcookieslaw}prestashop>form_03dfb5b36313c028aacc5dddd428a8a4'] = 'Voeg IP'; +$_MODULE['<{lgcookieslaw}prestashop>form_1e1cc9bdeb2f29f5480106aec7e9bc48'] = 'Nu'; +$_MODULE['<{lgcookieslaw}prestashop>form_f92965e2c8a7afb3c1b9a5c09a263636'] = 'Gedaan'; +$_MODULE['<{lgcookieslaw}prestashop>form_3964fd83339fec5014c831822005653a'] = 'Kies Tijd'; +$_MODULE['<{lgcookieslaw}prestashop>form_a76d4ef5f3f6a672bbfab2865563e530'] = 'Tijd'; +$_MODULE['<{lgcookieslaw}prestashop>form_b55e509c697e4cca0e1d160a7806698f'] = 'Uur'; +$_MODULE['<{lgcookieslaw}prestashop>form_62902641c38f3a4a8eb3212454360e24'] = 'Minuut'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_15_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Herroep mijn toestemming om cookies van derden te accepteren'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_16_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Herroep mijn toestemming voor cookies'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_17_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Herroep mijn toestemming om cookies van derden te accepteren'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_5c8cb6026154ec70517f5fc2b3ea17c2'] = 'Alle cookies behalve sessiecookies van Prestashop zijn verwijderd'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_0fc30646d5cf22910283967bf24ebf66'] = 'Ongeldig verzoek'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_1_7_5c8cb6026154ec70517f5fc2b3ea17c2'] = 'Alle cookies behalve sessiecookies van Prestashop zijn verwijderd'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_1_7_0fc30646d5cf22910283967bf24ebf66'] = 'Ongeldig verzoek'; diff --git a/modules/lgcookieslaw/translations/pl.php b/modules/lgcookieslaw/translations/pl.php new file mode 100644 index 00000000..c549eba0 --- /dev/null +++ b/modules/lgcookieslaw/translations/pl.php @@ -0,0 +1,121 @@ +lgcookieslaw_22c7d5a25303111ee4d06c403cc597ca'] = 'Prawo Cookie UE (Banner powiadomienia + Blokada Cookie)'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5469626d2e768c6944316d0068c2fd81'] = 'Wyświetl plik cookie i blokuj pliki cookie przed uzyskaniem zgody użytkownika.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8ff9e90b056525c1363429d65e25395a'] = 'Brak nadpisywania Hook.php.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3550f654b97f366150bcd41af018082b'] = 'Zresetuj moduł lub skopiuj ręcznie na swoim FTP.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9a6aa8054d2b7234c96b3a0ca0747589'] = 'Zastępowanie jest obecnie wyłączone w Twoim sklepie.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f289716452e91c7dde7c17683e95d291'] = 'Proszę zmienić konfigurację'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6c92285fa6d3e827b198d120ea3ac674'] = 'tutaj'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0d07c8b056dc01496d884eee9f3d6a9b'] = 'Moduły niebędące PrestaShop są obecnie wyłączone w Twoim sklepie.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_098069b86d3f121b6e50c40302c12d2a'] = 'Tryb podglądu modułu jest włączony.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83794efdec9fd14bad765b006386a088'] = 'Nie zapomnij wyłączyć tej konfiguracji po zakończeniu konfigurowania banera.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e03d8ff435ef9e4c0bb95f7708d2a231'] = 'Należy włączyć tryb \"Akceptacja plików cookie przez nawigację\"'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8e94d3d3cdee15b2e07a9633fd353041'] = 'tylko w przypadku wybrania opcji \"Baner bez przycisków\".'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8c72a2546be6761c8972cb7d4a4130b2'] = 'Należy wybrać opcję \"Baner bez przycisków\"'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6fd94ce33a53d7103b8e1b6077b5e918'] = 'tylko w trybie włączonym \"Accept cookies through navigation\".'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_de62775a71fc2bf7a13d7530ae24a7ed'] = 'Ustawienia główne'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7b00b7df5bd166ce4bd95da0edf447ec'] = 'Ustawienia banerów'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d1d1673ac47fe9e8c78297f7079c82e5'] = 'Ustawienia przycisku'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af0da26df79a3d1ed0a4bc244f614357'] = 'Moduły zablokowane'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9013b630235e2a5c48b7357e23e1bd2f'] = 'WAŻNY:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b7efee9ca6ef7509f5848bf3402d1592'] = 'Nie zapomnij wyłączyć trybu podglądu po zakończeniu konfigurowania banera.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2495702bb8485a5ad36161464627df0a'] = 'Tryb podglądu:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_daa528fe10e74996b39c3f06f71d5d7e'] = 'Włącz tę opcję, aby wyświetlić podgląd baneru cookie w głównym biurze'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8702d236740cafe52c15d99dcc5c4f0c'] = 'bez przeszkadzania klientom (gdy włączony jest tryb podglądu,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f9c8ce2d05f254b00fab1f6e5bec34c'] = 'baner nie znika, moduł nie blokuje plików cookie'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4dd88e1b515a398b1bcfe3228ea21014'] = 'a tylko osoba korzystająca z adresu IP jest w stanie zobaczyć transparent cookie).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_93cba07454f06a4a960172bbd6e2a435'] = 'Tak'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nie'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d80ce1aa74cca030905ef792552b5871'] = 'IP dla trybu podglądu:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fc5b34783a5161a721cfa8df37dfedd2'] = 'Kliknij na przycisk \"Dodaj adres IP\", aby być jedyną osobą'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_20764450c02e94b7d24fcc5dad112420'] = 'która mogła zobaczyć baner (jeśli jest włączony tryb podglądu).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_33d709f7f373a48edf15aa7d687d86e5'] = 'Żywotność (w sekundach):'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_36cb27c4656dc3c2e3da77e28e78c673'] = 'Ustaw czas, w którym zostanie zapisana zgoda użytkownika (1 rok = 31536000s).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_974b8d9930b62c71c64dfd0c0ba79f46'] = 'Nazwa pliku cookie:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_391fb23ba6d478d1c3cb62793d5168a7'] = 'Wybierz nazwę pliku cookie wykorzystywanego przez nasz moduł do zapamiętania zgody użytkownika'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ba75d65a1c35eef6f303ea9585a844c0'] = '(nie używaj miejsca).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d4e697fb8b41241a86e254e32917373b'] = 'Ochrona SEO:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_cc53798ade2a279e58e278ef4c6899e8'] = 'Moduł uniemożliwi bots wyszukiwarki powyżej'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7e59b74b98acd4b59d92ca3752b59905'] = 'z wyświetlaniem baneru ostrzegawczego na temat plików cookie, gdy indeksują Twoją witrynę.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af62349c43fee1adf1109073982da102'] = 'Pozycja w banerze:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83a5556a13599977856b83652c9f5323'] = 'Wybierz pozycję banera ostrzegawczego (na górze lub na dole strony).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'Top'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2ad9d63b69c4a10a5cc9cad923133bc4'] = 'Dolny'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e429ae5efafd0db7c52dd19710bddc00'] = 'Kolor tła:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6ac8ee08a448f3edda61fde78247ca7e'] = 'Przejrzystość tła:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_87ca5ab523d6ca4ace074af8304d908a'] = 'Wybierz nieprzejrzystość koloru tła (1 jest nieprzezroczysta, 0 jest przezroczysta).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d398391ffa393415691f6f53d6c1f711'] = 'Kolor cienia:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e019305e9bd7cedcdae8c05acab5751b'] = 'Kolor czcionki:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_684791bc6a17eadbfc38fb6a9e98e99a'] = 'Wiadomość w banerze:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4ef558167373f89b25d44f116988298b'] = 'Przykład: \"Nasza sklep internetowy korzysta z plików cookie, aby zapewnić lepsze wrażenia użytkowników'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f63a1275bb927e64d79d83b4e704be75'] = 'a my polecamy zaakceptowanie ich użycia, aby w pełni cieszyć się nawigacją \".'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0058d6648f64bf0ccbd1b2255855f5be'] = 'Położenie przycisku:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa169f04e827072c6350486b26f41c5b'] = 'Wybierz pozycję przycisków \"Akceptuję\" i \"Więcej informacji\" wewnątrz banera.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5dcf5f9169521205b87ee8836fe45024'] = 'Baner bez przycisków'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5f9143ff96d91f300e747a1fc2b1fb90'] = 'Przyciski nad tekstem'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f5fb55f1e5a7ebfb5e1c718beb64d16'] = 'Przyciski poniżej tekstu'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_91bc5b5a8bb879a88d78fc9f61546707'] = 'Przyciski po lewej stronie tekstu'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_1f11d0e349ba438c7bc4d0470b4701c1'] = 'Przyciski po prawej stronie tekstu'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a8369373489574320fa1a4589e38e6f0'] = 'Akceptuj ciasteczka przez nawigację:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e6cadf3a12183170a3b6794c17ae2002'] = 'Wyłącz tę opcję, aby baner zniknął'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8f8600305f0971a3b69a890b9507e2d7'] = 'tylko wtedy, gdy użytkownik kliknie przycisk \"Akceptuję\" (baner z przyciskami).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b8597bbcd6be3306ab787599a343c656'] = 'włącz tę opcję, aby baner automatycznie zniknął'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5928ede8ae83c2c56511e9cb23e03c76'] = 'kiedy użytkownicy przeglądają Twoją witrynę (baner bez przycisków).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_61c73c1144e87ab1be9ab8d1e04cba88'] = 'Title of the button 1 \"I accept\": '; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa08b3ef328e128e6314138c82473ada'] = 'Kolor tła przycisku 1:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e14914c7e65bc03dc91ff20cb3d4cb9b'] = 'Przycisk 1 kolor czcionki:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9f6d6a70b4c2c2014fb8fd33d21e9393'] = 'Tytuł przycisku 2 \"Więcej informacji\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2c6e8ed8481c6d4db218050545f16167'] = 'Kolor tła przycisku 2:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ea09b79f50ec96c21182341533466bb7'] = 'Przycisk 2 kolor czcionki:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_721687f3b0c0779ea0d2d6f0d48e4a41'] = 'Link przycisku 2 \"Więcej informacji\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_53b47d8e95ba51f5c809361e0958d61a'] = 'Po kliknięciu przycisku \"Więcej informacji\"'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5a7d13a9aba8159044f36758a42d2715'] = 'przeniesie Cię na stronę CMS.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_244eb5881c3e5fe1c49a6ad6bf75f206'] = 'Otwórz łącze w nowym oknie:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_376c4702df252d88378ade28f5ea105e'] = 'strona CMS zostanie otwarta w nowym lub tym samym oknie przeglądarki.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3780718d5d5290ecdaa24b3bd320cc5f'] = 'Button to close the banner:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c1268b39cc106988c1723d9cb6b10171'] = 'Display a button to close the cookies banner.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f494e3d960591309c6b680df9ee71760'] = 'Blokuj pliki cookie:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fe1406191777b7f273235abc91f54894'] = 'Poniżej znajduje się lista wszystkich modułów zainstalowanych w Twoim sklepie.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3909171d57367040df5af6ef6fb458eb'] = 'Zaznacz moduły, które chcesz wyłączyć, dopóki użytkownicy nie wyrażą zgody.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c9cc8cce247e49bae79f15173ce97354'] = 'Zapisać'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_07fc7dc79c8046bb36d97b4332dab1ca'] = 'Powrót do listy'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9cfefed8fb9497baa5cd519d7d2bb5d7'] = 'pl'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a28ed6a8ee921f71252d2a49545e7d6e'] = 'Przeczytaj tę stronę, aby uzyskać więcej informacji'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_810c687f20666a14bfac5d7d9769fc21'] = 'FAQ: WYRAŻA WŁAŚCIE BŁĘDÓW'; +$_MODULE['<{lgcookieslaw}prestashop>form_2efd89b3ccc76b0b03a34196fc6d1c8b'] = 'Dodaj znacznik'; +$_MODULE['<{lgcookieslaw}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'Tak'; +$_MODULE['<{lgcookieslaw}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nie'; +$_MODULE['<{lgcookieslaw}prestashop>form_26ce1315d2bff025e8fb8a0c6259e58c'] = 'Zmień hasło...'; +$_MODULE['<{lgcookieslaw}prestashop>form_d9c2d86a66aa5a45326c3757f3a272cc'] = 'Aktualne hasło'; +$_MODULE['<{lgcookieslaw}prestashop>form_3544848f820b9d94a3f3871a382cf138'] = 'Nowe hasło'; +$_MODULE['<{lgcookieslaw}prestashop>form_4c231e0da3eaaa6a9752174f7f9cfb31'] = 'Potwierdź hasło'; +$_MODULE['<{lgcookieslaw}prestashop>form_2871afea416378d2772937c4d67d6c2c'] = 'Wygeneruj hasło'; +$_MODULE['<{lgcookieslaw}prestashop>form_ed400dc4c641d6e5672616ac56a669ec'] = 'Wyślij mi nowe hasło przez e-mail'; +$_MODULE['<{lgcookieslaw}prestashop>form_ea4788705e6873b424c65e91c2846b19'] = 'Anuluj'; +$_MODULE['<{lgcookieslaw}prestashop>form_4bbb8f967da6d1a610596d7257179c2b'] = 'Nieważny'; +$_MODULE['<{lgcookieslaw}prestashop>form_26b63f278101527e06a5547719568bb5'] = 'W porządku'; +$_MODULE['<{lgcookieslaw}prestashop>form_0c6ad70beb3a7e76c3fc7adab7c46acc'] = 'Dobry'; +$_MODULE['<{lgcookieslaw}prestashop>form_b8dc7c80939667637db7ac31ece215b9'] = 'Fantastyczny'; +$_MODULE['<{lgcookieslaw}prestashop>form_01e8202cf69f19ea7cf3a80f7673066a'] = 'Nieprawidłowe potwierdzenie hasła'; +$_MODULE['<{lgcookieslaw}prestashop>form_86f5978d9b80124f509bdb71786e929e'] = 'Styczeń'; +$_MODULE['<{lgcookieslaw}prestashop>form_659e59f062c75f81259d22786d6c44aa'] = 'Luty'; +$_MODULE['<{lgcookieslaw}prestashop>form_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Marsz'; +$_MODULE['<{lgcookieslaw}prestashop>form_3fcf026bbfffb63fb24b8de9d0446949'] = 'Kwiecień'; +$_MODULE['<{lgcookieslaw}prestashop>form_195fbb57ffe7449796d23466085ce6d8'] = 'Może'; +$_MODULE['<{lgcookieslaw}prestashop>form_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Czerwiec'; +$_MODULE['<{lgcookieslaw}prestashop>form_1b539f6f34e8503c97f6d3421346b63c'] = 'Lipiec'; +$_MODULE['<{lgcookieslaw}prestashop>form_41ba70891fb6f39327d8ccb9b1dafb84'] = 'Sierpień'; +$_MODULE['<{lgcookieslaw}prestashop>form_cc5d90569e1c8313c2b1c2aab1401174'] = 'Wrzesień'; +$_MODULE['<{lgcookieslaw}prestashop>form_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Październik'; +$_MODULE['<{lgcookieslaw}prestashop>form_7e823b37564da492ca1629b4732289a8'] = 'Listopad'; +$_MODULE['<{lgcookieslaw}prestashop>form_82331503174acbae012b2004f6431fa5'] = 'Grudzień'; +$_MODULE['<{lgcookieslaw}prestashop>form_03dfb5b36313c028aacc5dddd428a8a4'] = 'Dodaj adres IP'; +$_MODULE['<{lgcookieslaw}prestashop>form_1e1cc9bdeb2f29f5480106aec7e9bc48'] = 'Teraz'; +$_MODULE['<{lgcookieslaw}prestashop>form_f92965e2c8a7afb3c1b9a5c09a263636'] = 'Gotowe'; +$_MODULE['<{lgcookieslaw}prestashop>form_3964fd83339fec5014c831822005653a'] = 'Wybierz czas'; +$_MODULE['<{lgcookieslaw}prestashop>form_a76d4ef5f3f6a672bbfab2865563e530'] = 'Czas'; +$_MODULE['<{lgcookieslaw}prestashop>form_b55e509c697e4cca0e1d160a7806698f'] = 'Godzina'; +$_MODULE['<{lgcookieslaw}prestashop>form_62902641c38f3a4a8eb3212454360e24'] = 'Chwila'; diff --git a/modules/lgcookieslaw/translations/pt.php b/modules/lgcookieslaw/translations/pt.php new file mode 100644 index 00000000..77d15d62 --- /dev/null +++ b/modules/lgcookieslaw/translations/pt.php @@ -0,0 +1,158 @@ +lgcookieslaw_22c7d5a25303111ee4d06c403cc597ca'] = 'Lei de Cookie da UE (Banner de Notificação + Bloqueador de Cookies)'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5469626d2e768c6944316d0068c2fd81'] = 'Exibir um cookie banner e bloquear cookies antes de obter o consentimento do usuário.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8ff9e90b056525c1363429d65e25395a'] = 'A substituição Hook.php está ausente.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3550f654b97f366150bcd41af018082b'] = 'Redefinir o módulo ou copiar a substituição manualmente em seu FTP.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9a6aa8054d2b7234c96b3a0ca0747589'] = 'As substituições estão desativadas na sua loja.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f289716452e91c7dde7c17683e95d291'] = 'Altere a configuração'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0d07c8b056dc01496d884eee9f3d6a9b'] = 'Os módulos não PrestaShop estão desativados na sua loja.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_098069b86d3f121b6e50c40302c12d2a'] = 'O modo de visualização do módulo está ativado.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83794efdec9fd14bad765b006386a088'] = 'Não se esqueça de desabilitá-la quando tiver terminado de configurar o banner.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e03d8ff435ef9e4c0bb95f7708d2a231'] = 'O modo \"Aceitar cookies através da navegação\" deve ser ativado'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8e94d3d3cdee15b2e07a9633fd353041'] = 'somente se a opção \"Banner sem botões\" estiver selecionada.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8c72a2546be6761c8972cb7d4a4130b2'] = 'A opção \"Banner sem botões\" deve ser selecionada'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6fd94ce33a53d7103b8e1b6077b5e918'] = 'somente se o modo \"Aceitar cookies através da navegação\" estiver ativado.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0cbb9d66b25062cd16fdb208b86aae56'] = 'Se você ativar esta opção, violará as leis da União Europeia.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8151b861b3b6f3236be5e1d8a86abfab'] = 'Por favor, se a sua loja está no Território da União Europeia, desative esta opção.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0a568c54bdfabd16ed212ec7166e67a1'] = 'Nós não vamos assumir nenhum dano,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_039280edf6e1d4c7042af74c4aa8a62a'] = 'ou conflito causado direta ou indiretamente como consequência de ter esta opção ativada.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2296d5907cb69bfae96af109ccbf3aba'] = 'Você pode obter mais informações no próximo link:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_de62775a71fc2bf7a13d7530ae24a7ed'] = 'Configurações Gerais'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7b00b7df5bd166ce4bd95da0edf447ec'] = 'Configurações de banner'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d1d1673ac47fe9e8c78297f7079c82e5'] = 'Configurações do botão'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af0da26df79a3d1ed0a4bc244f614357'] = 'Módulos bloqueados'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_16d6ee46a35489df9978e1144272a424'] = 'Com essa opção, seus estilos de banner são definidos inicialmente como desativados: nenhum, depois, mostrado por javascript.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9013b630235e2a5c48b7357e23e1bd2f'] = 'IMPORTANTE:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8d570d082e307db98ed8973cf836faf2'] = 'Deshabilitar url'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_da2077f36f21ce29abcb324854cc79a6'] = 'Este link concede o direito de revogar seu consentimento para seus clientes.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b4cec33fa984f519379c0587f20937ea'] = 'Você pode colar esse URL no seu CMS.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_65098d7fb3ed993b5564637a7b09e6a9'] = 'Seus usuários poderão limpar todos os cookies, exceto os do Prestashop.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_1ba2fa63eac0306abc7ee7f8d829c0fa'] = 'Adicionar botão de consentimento de revogação'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3da3089ee5548150a4fa51495b064112'] = 'Ative esta opção para adicionar um botão na conta do cliente para revogar o consentimento do cookie.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8dbaf6e244693537706a205d622b08a2'] = 'Ele limpará todos os cookies, exceto os do Prestashop,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_93cba07454f06a4a960172bbd6e2a435'] = 'Si'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Não'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f592604db5521d1ac01054b0d2f91dba'] = 'Recarregue a página depois de aceitar cookies'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f23783d7694dc0f1b32d3302ad26ef7c'] = 'Ative esta opção se você deseja recarregar a página depois que um cliente aceitar cookies.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2495702bb8485a5ad36161464627df0a'] = 'Modo de pré-visualização:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_daa528fe10e74996b39c3f06f71d5d7e'] = 'Active esta opção para pré-visualizar o banner de cookie no seu front-office'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8702d236740cafe52c15d99dcc5c4f0c'] = 'sem incomodar seus clientes (quando o modo de visualização está habilitado,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f9c8ce2d05f254b00fab1f6e5bec34c'] = 'o banner não desaparece, o módulo não bloqueia cookies'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4dd88e1b515a398b1bcfe3228ea21014'] = 'e somente a pessoa que usa o IP abaixo é capaz de ver o banner do cookie).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_98008891b2901f27bf015d5056583b68'] = 'Compatibilidade de módulos de cache'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f42878da478af31dd70566a8d2c622a0'] = 'Isso pode ser útil se seu site usar algum módulo de cache.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8f0ac7e09455426d7787bf7f2228ac08'] = 'Não active esta opção se o seu botão aceitar ocultar o banner,'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8fa771e6ca6c44627c39350de410de03'] = 'essa opção pode não estar de acordo com a lei.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d80ce1aa74cca030905ef792552b5871'] = 'IP para o modo de visualização:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fc5b34783a5161a721cfa8df37dfedd2'] = 'Clique no botão \"Adicionar IP\" para ser a única pessoa'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_20764450c02e94b7d24fcc5dad112420'] = 'capaz de ver o banner (se o modo de visualização estiver ativado).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_33d709f7f373a48edf15aa7d687d86e5'] = 'Tempo de vida do cookie (segundos):'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_36cb27c4656dc3c2e3da77e28e78c673'] = 'Defina a duração durante a qual o consentimento do usuário será salvo (1 ano = 31536000s).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_974b8d9930b62c71c64dfd0c0ba79f46'] = 'Nome do cookie:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_391fb23ba6d478d1c3cb62793d5168a7'] = 'Escolha o nome do cookie usado por nosso módulo para lembrar o consentimento do usuário'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ba75d65a1c35eef6f303ea9585a844c0'] = '(não use qualquer espaço).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d4e697fb8b41241a86e254e32917373b'] = 'Proteção SEO:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_cc53798ade2a279e58e278ef4c6899e8'] = 'O módulo impedirá que os motores de busca acima'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_7e59b74b98acd4b59d92ca3752b59905'] = 'de ver o cookie aviso banner quando rastrear seu site.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_af62349c43fee1adf1109073982da102'] = 'Posição da bandeira:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_83a5556a13599977856b83652c9f5323'] = 'Escolha a posição do banner de aviso (parte superior ou inferior da página).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'Topo'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2ad9d63b69c4a10a5cc9cad923133bc4'] = 'Inferior'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e429ae5efafd0db7c52dd19710bddc00'] = 'Cor de fundo:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_6ac8ee08a448f3edda61fde78247ca7e'] = 'Opacidade de fundo:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_87ca5ab523d6ca4ace074af8304d908a'] = 'Escolha a opacidade da cor de fundo (1 é opaco, 0 é transparente).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_d398391ffa393415691f6f53d6c1f711'] = 'Cor da sombra:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e019305e9bd7cedcdae8c05acab5751b'] = 'Cor da fonte:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_684791bc6a17eadbfc38fb6a9e98e99a'] = 'Mensagem do banner:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_4ef558167373f89b25d44f116988298b'] = 'Exemplo: \"Nosso webstore usa cookies para oferecer uma melhor experiência ao usuário'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f63a1275bb927e64d79d83b4e704be75'] = 'e recomendamos que você aceite seu uso para desfrutar plenamente a sua navegação. \"'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_93db13b2f29eacb637c940848c836596'] = 'Bloque cookies obligatorias:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_12558bfff0ed42a75d5b14750bd46170'] = 'Bloque cookies de terceros:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_0058d6648f64bf0ccbd1b2255855f5be'] = 'Posição do botão:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa169f04e827072c6350486b26f41c5b'] = 'Escolha a posição dos botões \"Aceito\" e \"Mais informações\" dentro do banner.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5dcf5f9169521205b87ee8836fe45024'] = 'Banner sem botões'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5f9143ff96d91f300e747a1fc2b1fb90'] = 'Botões acima do texto'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3f5fb55f1e5a7ebfb5e1c718beb64d16'] = 'Botões abaixo do texto'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_91bc5b5a8bb879a88d78fc9f61546707'] = 'Botões à esquerda do texto'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_1f11d0e349ba438c7bc4d0470b4701c1'] = 'Botões à direita do texto'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a8369373489574320fa1a4589e38e6f0'] = 'Aceitar cookies através da navegação:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e6cadf3a12183170a3b6794c17ae2002'] = 'Desativar esta opção é que você deseja que o banner para desaparecer'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_8f8600305f0971a3b69a890b9507e2d7'] = 'somente quando os usuários clicarem no botão \"Aceito\" (banner com botões).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_b8597bbcd6be3306ab787599a343c656'] = 'E habilitar esta opção é que você deseja que o banner para desaparecer automaticamente'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5928ede8ae83c2c56511e9cb23e03c76'] = 'quando os usuários continuam a navegar no seu site (banner sem botões).'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aad201cc3395ac6e9f6f37592f745d6d'] = 'Esta opción no cumple con la ley europea de protección de datos.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_61c73c1144e87ab1be9ab8d1e04cba88'] = 'Título do botão 1 \"Aceito\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_aa08b3ef328e128e6314138c82473ada'] = 'Botão 1 cor do fundo:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_e14914c7e65bc03dc91ff20cb3d4cb9b'] = 'Cor da pia batismal do botão 1:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9f6d6a70b4c2c2014fb8fd33d21e9393'] = 'Título do botão 2 \"Mais informações\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_2c6e8ed8481c6d4db218050545f16167'] = 'Cor do fundo do botão 2:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_ea09b79f50ec96c21182341533466bb7'] = 'Cor da pia batismal do botão 2:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_721687f3b0c0779ea0d2d6f0d48e4a41'] = 'Link do botão 2 \"Mais informações\":'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_53b47d8e95ba51f5c809361e0958d61a'] = 'Quando você clica no botão \"Mais informações\"'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_5a7d13a9aba8159044f36758a42d2715'] = 'ele irá levá-lo para a página CMS que você selecionou.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_244eb5881c3e5fe1c49a6ad6bf75f206'] = 'Abra o link em uma nova janela:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_376c4702df252d88378ade28f5ea105e'] = 'a página do CMS será aberta em uma nova ou na mesma janela do seu navegador.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3780718d5d5290ecdaa24b3bd320cc5f'] = 'Botão para fechar o banner:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c1268b39cc106988c1723d9cb6b10171'] = 'Exiba um botão para fechar o banner de cookies.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_f494e3d960591309c6b680df9ee71760'] = 'Bloquear cookies:'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_fe1406191777b7f273235abc91f54894'] = 'Aqui está a lista de todos os módulos instalados em sua loja.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_3909171d57367040df5af6ef6fb458eb'] = 'Marque os módulos que deseja desativar até que os usuários dêem seu consentimento.'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_c9cc8cce247e49bae79f15173ce97354'] = 'Salvar'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_07fc7dc79c8046bb36d97b4332dab1ca'] = 'Voltar à lista'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_9cfefed8fb9497baa5cd519d7d2bb5d7'] = 'pt'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_a28ed6a8ee921f71252d2a49545e7d6e'] = 'Leia esta página para mais informações'; +$_MODULE['<{lgcookieslaw}prestashop>lgcookieslaw_810c687f20666a14bfac5d7d9769fc21'] = 'FAQ: VER OS ERROS COMUNS'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_1_7_5c8cb6026154ec70517f5fc2b3ea17c2'] = 'Todos os cookies, exceto os cookies de sessão do Prestashop, foram excluídos'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_1_7_0fc30646d5cf22910283967bf24ebf66'] = 'Pedido inválido'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_16_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Revogar meu consentimento para cookies'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_17_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Revogar meu consentimento para aceitar cookies de terceiros'; +$_MODULE['<{lgcookieslaw}prestashop>account_button_15_9e9ba0524c4a22637a9cc8f0b8776752'] = 'Revogar meu consentimento para aceitar cookies de terceiros'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_5c8cb6026154ec70517f5fc2b3ea17c2'] = 'Todos os cookies, exceto os cookies de sessão do Prestashop, foram excluídos'; +$_MODULE['<{lgcookieslaw}prestashop>disallow_0fc30646d5cf22910283967bf24ebf66'] = 'Pedido inválido'; +$_MODULE['<{lgcookieslaw}prestashop>advise_538b4ebaf535c9f70c16f2a97441f6b5'] = 'Lembramos que o usuário / proprietário do e-commerce onde o módulo está instalado é o único responsável pelos textos legais que devem ser inseridos, como o aviso e explicação da finalidade dos cookies de terceiros. A Línea Gráfica em nenhuma hipótese será responsável por quaisquer danos que possam ser causados ​​pela ativação de opções que não cumpram o RGPD'; +$_MODULE['<{lgcookieslaw}prestashop>form_2efd89b3ccc76b0b03a34196fc6d1c8b'] = 'Adicionar etiqueta'; +$_MODULE['<{lgcookieslaw}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'Si'; +$_MODULE['<{lgcookieslaw}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Não'; +$_MODULE['<{lgcookieslaw}prestashop>form_26ce1315d2bff025e8fb8a0c6259e58c'] = 'Mudar senha...'; +$_MODULE['<{lgcookieslaw}prestashop>form_d9c2d86a66aa5a45326c3757f3a272cc'] = 'Senha atual'; +$_MODULE['<{lgcookieslaw}prestashop>form_3544848f820b9d94a3f3871a382cf138'] = 'Nova senha'; +$_MODULE['<{lgcookieslaw}prestashop>form_4c231e0da3eaaa6a9752174f7f9cfb31'] = 'Confirme a Senha'; +$_MODULE['<{lgcookieslaw}prestashop>form_2871afea416378d2772937c4d67d6c2c'] = 'Gerar senha'; +$_MODULE['<{lgcookieslaw}prestashop>form_ed400dc4c641d6e5672616ac56a669ec'] = 'Envie-me esta nova senha por e-mail'; +$_MODULE['<{lgcookieslaw}prestashop>form_ea4788705e6873b424c65e91c2846b19'] = 'Cancelar'; +$_MODULE['<{lgcookieslaw}prestashop>form_4bbb8f967da6d1a610596d7257179c2b'] = 'Inválido'; +$_MODULE['<{lgcookieslaw}prestashop>form_26b63f278101527e06a5547719568bb5'] = 'OK'; +$_MODULE['<{lgcookieslaw}prestashop>form_0c6ad70beb3a7e76c3fc7adab7c46acc'] = 'Boa'; +$_MODULE['<{lgcookieslaw}prestashop>form_b8dc7c80939667637db7ac31ece215b9'] = 'Fabuloso'; +$_MODULE['<{lgcookieslaw}prestashop>form_01e8202cf69f19ea7cf3a80f7673066a'] = 'Confirmação de senha inválida'; +$_MODULE['<{lgcookieslaw}prestashop>form_86f5978d9b80124f509bdb71786e929e'] = 'Janeiro'; +$_MODULE['<{lgcookieslaw}prestashop>form_659e59f062c75f81259d22786d6c44aa'] = 'Fevereiro'; +$_MODULE['<{lgcookieslaw}prestashop>form_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Março'; +$_MODULE['<{lgcookieslaw}prestashop>form_3fcf026bbfffb63fb24b8de9d0446949'] = 'Abril'; +$_MODULE['<{lgcookieslaw}prestashop>form_195fbb57ffe7449796d23466085ce6d8'] = 'Maio'; +$_MODULE['<{lgcookieslaw}prestashop>form_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Junho'; +$_MODULE['<{lgcookieslaw}prestashop>form_1b539f6f34e8503c97f6d3421346b63c'] = 'Julho'; +$_MODULE['<{lgcookieslaw}prestashop>form_41ba70891fb6f39327d8ccb9b1dafb84'] = 'Agosto'; +$_MODULE['<{lgcookieslaw}prestashop>form_cc5d90569e1c8313c2b1c2aab1401174'] = 'Setembro'; +$_MODULE['<{lgcookieslaw}prestashop>form_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Outubro'; +$_MODULE['<{lgcookieslaw}prestashop>form_7e823b37564da492ca1629b4732289a8'] = 'Novembro'; +$_MODULE['<{lgcookieslaw}prestashop>form_82331503174acbae012b2004f6431fa5'] = 'Dezembro'; +$_MODULE['<{lgcookieslaw}prestashop>form_03dfb5b36313c028aacc5dddd428a8a4'] = 'Adicionar IP'; +$_MODULE['<{lgcookieslaw}prestashop>form_1e1cc9bdeb2f29f5480106aec7e9bc48'] = 'Agora'; +$_MODULE['<{lgcookieslaw}prestashop>form_f92965e2c8a7afb3c1b9a5c09a263636'] = 'Feito'; +$_MODULE['<{lgcookieslaw}prestashop>form_3964fd83339fec5014c831822005653a'] = 'Escolha o tempo'; +$_MODULE['<{lgcookieslaw}prestashop>form_a76d4ef5f3f6a672bbfab2865563e530'] = 'Tempo'; +$_MODULE['<{lgcookieslaw}prestashop>form_b55e509c697e4cca0e1d160a7806698f'] = 'Hora'; +$_MODULE['<{lgcookieslaw}prestashop>form_62902641c38f3a4a8eb3212454360e24'] = 'Minuto'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_6789674b365e4ff58e922a1945b3fdd0'] = 'Personalizar cookies'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_0abcd89a0c6d61aac7d59bb39fb2f824'] = 'Configuração de cookies'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_da22c93ccb398c72070f4000cc7b59a1'] = 'Costumização'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Não'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_93cba07454f06a4a960172bbd6e2a435'] = 'Sim'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_1e90f6df7f70f4e192179fde6197c8de'] = 'Funcional (obrigatório)'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_6fe5b84371a37746cac4b1fb635ae4ae'] = 'Estes são cookies técnicos e essenciais para o uso básico deste site.'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_ea4788705e6873b424c65e91c2846b19'] = 'Cancelar'; +$_MODULE['<{lgcookieslaw}prestashop>cookieslaw_d88ad2dc74e43a70afd10645cf8002a6'] = 'Aceitar e continuar'; diff --git a/modules/lgcookieslaw/upgrade/Upgrade-1.4.0.php b/modules/lgcookieslaw/upgrade/Upgrade-1.4.0.php new file mode 100644 index 00000000..82215efd --- /dev/null +++ b/modules/lgcookieslaw/upgrade/Upgrade-1.4.0.php @@ -0,0 +1,17 @@ +registerHook('top'); + $module->registerHook('header'); + return true; +} diff --git a/modules/lgcookieslaw/upgrade/index.php b/modules/lgcookieslaw/upgrade/index.php new file mode 100644 index 00000000..2e358b17 --- /dev/null +++ b/modules/lgcookieslaw/upgrade/index.php @@ -0,0 +1,106 @@ + + + +* @copyright 2007-2012 PrestaShop SA + + +* @version Release: $Revision: 14011 $ + + +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) + + +* International Registered Trademark & Property of PrestaShop SA + + +*/ + + + + + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); + + +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + + + + + +header("Cache-Control: no-store, no-cache, must-revalidate"); + + +header("Cache-Control: post-check=0, pre-check=0", false); + + +header("Pragma: no-cache"); + + + + + +header("Location: ../"); + + +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/upgrade/upgrade-1.4.12.php b/modules/lgcookieslaw/upgrade/upgrade-1.4.12.php new file mode 100644 index 00000000..1f4e4cd7 --- /dev/null +++ b/modules/lgcookieslaw/upgrade/upgrade-1.4.12.php @@ -0,0 +1,16 @@ +registerHook('displayCustomerAccount'); + return true; +} diff --git a/modules/lgcookieslaw/upgrade/upgrade-1.4.14.php b/modules/lgcookieslaw/upgrade/upgrade-1.4.14.php new file mode 100644 index 00000000..383ace67 --- /dev/null +++ b/modules/lgcookieslaw/upgrade/upgrade-1.4.14.php @@ -0,0 +1,16 @@ +registerHook('displayMobileTop'); + return true; +} diff --git a/modules/lgcookieslaw/upgrade/upgrade-1.4.16.php b/modules/lgcookieslaw/upgrade/upgrade-1.4.16.php new file mode 100644 index 00000000..c5384ff3 --- /dev/null +++ b/modules/lgcookieslaw/upgrade/upgrade-1.4.16.php @@ -0,0 +1,16 @@ +registerHook('displayBackofficeHeader'); + return true; +} diff --git a/modules/lgcookieslaw/upgrade/upgrade-1.4.21.php b/modules/lgcookieslaw/upgrade/upgrade-1.4.21.php new file mode 100644 index 00000000..4c3b7cf8 --- /dev/null +++ b/modules/lgcookieslaw/upgrade/upgrade-1.4.21.php @@ -0,0 +1,87 @@ +execute($q); + } + $messages = array( + 'en' => array( + 'required' => '
    +
  • Necessary to navigate this site and use its functions.
  • +
  • Identify you as a user and store your preferences such as language and currency.
  • +
  • Customize your experience based on your browsing.
  • +
', + 'additional' => '
    +
  • Third-party cookies for analytical purposes.
  • +
  • Show personalized recommendations based on your browsing on other sites.
  • +
  • Show custom campaigns on other websites.
  • +
', + ), + 'es' => array( + 'required' => '
    +
  • Necesarias para navegar en este sitio y utilizar sus funciones.
  • +
  • Identificarle como usuario y almacenar sus preferencias como idioma y moneda.
  • +
  • Personalizar su experiencia en base con su navegación.
  • +
', + 'additional' => '
    +
  • Cookies de terceros con propósitos analíticos.
  • +
  • Mostrar recomendaciones personalizadas basadas en su navegación en otros sitios.
  • +
  • Mostrar campañas personalizadas en otras sitios web.
  • +
', + ), + 'fr' => array( + 'required' => '
    +
  • Nécessaire pour naviguer sur ce site et utiliser ses fonctions.
  • +
  • Vous identifier en tant qu\'utilisateur et enregistrer vos préférences telles que la langue et la devise.
  • +
  • Personnalisez votre expérience en fonction de votre navigation.
  • +
', + 'additional' => '
    +
  • Cookies tiers à des fins d\'analyse.
  • +
  • Afficher des recommandations personnalisées en fonction de votre navigation sur d\'autres sites
  • +
  • Afficher des campagnes personnalisées sur d\'autres sites Web
  • +
', + ), + 'it' => array( + 'required' => '
    +
  • Necessario per navigare in questo sito e utilizzare le sue funzioni.
  • +
  • Identificarti come utente e memorizzare le tue preferenze come lingua e valuta.
  • +
  • Personalizza la tua esperienza in base alla tua navigazione.
  • +
', + 'additional' => '
    +
  • Cookie di terze parti per scopi analitici.
  • +
  • Mostra consigli personalizzati basati sulla tua navigazione su altri siti.
  • +
  • Mostra campagne personalizzate su altri siti web.
  • +
', + ), + ); + $languages = Language::getLanguages(); + foreach ($languages as $language) { + if (isset($messages[$language['iso_code']])) { + $message = $messages[$language['iso_code']]; + } else { + $message = $messages['en']; + } + + Db::getInstance()->Execute( + 'UPDATE `'._DB_PREFIX_.'lgcookieslaw_lang` SET + `required` = "'.pSQL($message['required'], 'html').'", + `additional` = "'.pSQL($message['additional'], 'html').'" + WHERE `id_lang` = '. (int)$language['id_lang'] + ); + } + return true; +} diff --git a/modules/lgcookieslaw/views/css/admin15.css b/modules/lgcookieslaw/views/css/admin15.css new file mode 100644 index 00000000..9f458934 --- /dev/null +++ b/modules/lgcookieslaw/views/css/admin15.css @@ -0,0 +1,12351 @@ + +@charset "UTF-8"; +@import "//fonts.googleapis.com/css?family=Open+Sans:300,400,700"; +@import "//fonts.googleapis.com/css?family=Ubuntu+Condensed"; +@keyframes fadeIn { +0% { + opacity: 0; +} +100% { + opacity: 1; +} +} +@keyframes fadeOut { +0% { + opacity: 1; +} +100% { + opacity: 0; +} +} +@keyframes fadeInUp { +0% { + opacity: 0; + transform: translateY(20px); +} +100% { + opacity: 1; + transform: translateY(0px); +} +} +@keyframes fadeOutUp { +0% { + opacity: 1; + transform: translateY(0px); +} +100% { + opacity: 0; + transform: translateY(-20px); +} +} +@keyframes fadeInDown { +0% { + opacity: 0; + transform: translateY(-20px); +} +100% { + opacity: 1; + transform: translateY(0px); +} +} +@keyframes fadeOutDown { +0% { + opacity: 1; + transform: translateY(0px); +} +100% { + opacity: 0; + transform: translateY(20px); +} +} +@keyframes fadeInRight { +0% { + opacity: 0; + transform: translateX(20px); +} +100% { + opacity: 1; + transform: translateX(0px); +} +} +@keyframes fadeOutLeft { +0% { + opacity: 1; + transform: translateX(0px); +} +100% { + opacity: 0; + transform: translateX(-20px); +} +} +@keyframes fadeInLeft { +0% { + opacity: 0; + transform: translateX(-20px); +} +100% { + opacity: 1; + transform: translateX(0px); +} +} +@keyframes fadeOutRight { +0% { + opacity: 1; + transform: translateX(0px); +} +100% { + opacity: 0; + transform: translateX(20px); +} +} +@keyframes fadeInUpBig { +0% { + opacity: 0; + transform: translateY(2000px); +} +100% { + opacity: 1; + transform: translateY(0px); +} +} +@keyframes fadeOutUpBig { +0% { + opacity: 1; + transform: translateY(0px); +} +100% { + opacity: 0; + transform: translateY(-2000px); +} +} +@keyframes fadeInDownBig { +0% { + opacity: 0; + transform: translateY(-2000px); +} +100% { + opacity: 1; + transform: translateY(0px); +} +} +@keyframes fadeOutDownBig { +0% { + opacity: 1; + transform: translateY(0px); +} +100% { + opacity: 0; + transform: translateY(2000px); +} +} +@keyframes fadeInRightBig { +0% { + opacity: 0; + transform: translateX(2000px); +} +100% { + opacity: 1; + transform: translateX(0px); +} +} +@keyframes fadeOutLeftBig { +0% { + opacity: 1; + transform: translateX(0px); +} +100% { + opacity: 0; + transform: translateX(-2000px); +} +} +@keyframes fadeInLeftBig { +0% { + opacity: 0; + transform: translateX(-2000px); +} +100% { + opacity: 1; + transform: translateX(0px); +} +} +@keyframes fadeOutRightBig { +0% { + opacity: 1; + transform: translateX(0px); +} +100% { + opacity: 0; + transform: translateX(2000px); +} +} +@keyframes bounceIn { +0% { + opacity: 0; + transform: scale(0.3); +} +50% { + opacity: 1; + transform: scale(1.05); +} +70% { + transform: scale(0.9); +} +100% { + transform: scale(1); +} +} +@keyframes bounceInDown { +0% { + opacity: 0; + transform: translateY(-2000px); +} +60% { + opacity: 1; + transform: translateY(30px); +} +80% { + transform: translateY(-10px); +} +100% { + transform: translateY(0px); +} +} +@keyframes bounceInUp { +0% { + opacity: 0; + transform: translateY(2000px); +} +60% { + opacity: 1; + transform: translateY(-30px); +} +80% { + transform: translateY(10px); +} +100% { + transform: translateY(0px); +} +} +@keyframes bounceInRight { +0% { + opacity: 0; + transform: translateX(2000px); +} +60% { + opacity: 1; + transform: translateX(-30px); +} +80% { + transform: translateX(10px); +} +100% { + transform: translateX(0px); +} +} +@keyframes bounceInLeft { +0% { + opacity: 0; + transform: translateX(-2000px); +} +60% { + opacity: 1; + transform: translateX(30px); +} +80% { + transform: translateX(-10px); +} +100% { + transform: translateX(0px); +} +} +@keyframes bounceOut { +0% { + transform: scale(1); +} +25% { + transform: scale(0.95); +} +50% { + opacity: 1; + transform: scale(1.1); +} +100% { + opacity: 0; + transform: scale(0.3); +} +} +@keyframes bounceOutUp { +0% { + transform: translateY(0px); +} +20% { + opacity: 1; + transform: translateY(20px); +} +100% { + opacity: 0; + transform: translateY(-2000px); +} +} +@keyframes bounceOutDown { +0% { + transform: translateY(0px); +} +20% { + opacity: 1; + transform: translateY(-20px); +} +100% { + opacity: 0; + transform: translateY(2000px); +} +} +@keyframes bounceOutLeft { +0% { + transform: translateX(0px); +} +20% { + opacity: 1; + transform: translateX(20px); +} +100% { + opacity: 0; + transform: translateX(-2000px); +} +} +@keyframes bounceOutRight { +0% { + transform: translateX(0px); +} +20% { + opacity: 1; + transform: translateX(-20px); +} +100% { + opacity: 0; + transform: translateX(2000px); +} +} +@keyframes flash { +0% { + opacity: 1; +} +25% { + opacity: 0; +} +50% { + opacity: 1; +} +75% { + opacity: 0; +} +100% { + opacity: 1; +} +} +@keyframes bounce { +0% { + transform: translateY(0px); +} +20% { + transform: translateY(0px); +} +40% { + transform: translateY(-30px); +} +50% { + transform: translateY(0px); +} +60% { + transform: translateY(-15px); +} +80% { + transform: translateY(0px); +} +100% { + transform: translateY(0px); +} +} +@keyframes shake { +0% { + transform: translateX(0px); +} +10% { + transform: translateX(-10px); +} +20% { + transform: translateX(10px); +} +30% { + transform: translateX(-10px); +} +40% { + transform: translateX(10px); +} +50% { + transform: translateX(-10px); +} +60% { + transform: translateX(10px); +} +70% { + transform: translateX(-10px); +} +80% { + transform: translateX(10px); +} +90% { + transform: translateX(-10px); +} +100% { + transform: translateX(0px); +} +} +@keyframes rotateInDownLeft { +0% { + opacity: 0; + transform: rotate(-90deg); + transform-origin: left bottom 0; +} +100% { + opacity: 1; + transform: rotate(0deg); + transform-origin: left bottom 0; +} +} +@keyframes rotateInUpLeft { +0% { + opacity: 0; + transform: rotate(90deg); + transform-origin: left bottom 0; +} +100% { + opacity: 1; + transform: rotate(0deg); + transform-origin: left bottom 0; +} +} +@keyframes rotateInUpRight { +0% { + opacity: 0; + transform: rotate(-90deg); + transform-origin: right bottom 0; +} +100% { + opacity: 1; + transform: rotate(0deg); + transform-origin: right bottom 0; +} +} +@keyframes rotateInDownRight { +0% { + opacity: 0; + transform: rotate(90deg); + transform-origin: right bottom 0; +} +100% { + opacity: 1; + transform: rotate(0deg); + transform-origin: right bottom 0; +} +} +@keyframes rotateOutDownLeft { +0% { + opacity: 1; + transform: rotate(0deg); + transform-origin: left bottom 0; +} +100% { + opacity: 0; + transform: rotate(90deg); + transform-origin: left bottom 0; +} +} +@keyframes rotateOutUpLeft { +0% { + opacity: 1; + transform: rotate(0deg); + transform-origin: left bottom 0; +} +100% { + opacity: 0; + transform: rotate(-90deg); + transform-origin: left bottom 0; +} +} +@keyframes rotateOutDownRight { +0% { + opacity: 1; + transform: rotate(0deg); + transform-origin: right bottom 0; +} +100% { + opacity: 0; + transform: rotate(-90deg); + transform-origin: right bottom 0; +} +} +@keyframes rotateOutUpRight { +0% { + opacity: 1; + transform: rotate(0deg); + transform-origin: right bottom 0; +} +100% { + opacity: 0; + transform: rotate(90deg); + transform-origin: right bottom 0; +} +} +@keyframes rotateIn { +0% { + opacity: 0; + transform: rotate(-200deg); + transform-origin: center center 0; +} +100% { + opacity: 1; + transform: rotate(0deg); + transform-origin: center center 0; +} +} +@keyframes rotateOut { +0% { + opacity: 1; + transform: rotate(0deg); + transform-origin: center center 0; +} +100% { + opacity: 0; + transform: rotate(200deg); + transform-origin: center center 0; +} +} +@keyframes tada { +0% { + transform: scale(1); +} +10% { + transform: scale(0.9) rotate(-3deg); +} +20% { + transform: scale(0.9) rotate(-3deg); +} +30% { + transform: scale(1.1) rotate(3deg); +} +40% { + transform: scale(1.1) rotate(-3deg); +} +50% { + transform: scale(1.1) rotate(3deg); +} +60% { + transform: scale(1.1) rotate(-3deg); +} +70% { + transform: scale(1.1) rotate(3deg); +} +80% { + transform: scale(1.1) rotate(-3deg); +} +90% { + transform: scale(1.1) rotate(3deg); +} +100% { + transform: scale(1) rotate(0deg); +} +} +@keyframes fadeIn { +0% { + opacity: 0; +} +100% { + opacity: 1; +} +} +@keyframes fadeOut { +0% { + opacity: 1; +} +100% { + opacity: 0; +} +} +@keyframes fadeInUp { +0% { + opacity: 0; + transform: translateY(20px); +} +100% { + opacity: 1; + transform: translateY(0px); +} +} +@keyframes fadeOutUp { +0% { + opacity: 1; + transform: translateY(0px); +} +100% { + opacity: 0; + transform: translateY(-20px); +} +} +@keyframes fadeInDown { +0% { + opacity: 0; + transform: translateY(-20px); +} +100% { + opacity: 1; + transform: translateY(0px); +} +} +@keyframes fadeOutDown { +0% { + opacity: 1; + transform: translateY(0px); +} +100% { + opacity: 0; + transform: translateY(20px); +} +} +@keyframes fadeInRight { +0% { + opacity: 0; + transform: translateX(20px); +} +100% { + opacity: 1; + transform: translateX(0px); +} +} +@keyframes fadeOutLeft { +0% { + opacity: 1; + transform: translateX(0px); +} +100% { + opacity: 0; + transform: translateX(-20px); +} +} +@keyframes fadeInLeft { +0% { + opacity: 0; + transform: translateX(-20px); +} +100% { + opacity: 1; + transform: translateX(0px); +} +} +@keyframes fadeOutRight { +0% { + opacity: 1; + transform: translateX(0px); +} +100% { + opacity: 0; + transform: translateX(20px); +} +} +@keyframes fadeInUpBig { +0% { + opacity: 0; + transform: translateY(2000px); +} +100% { + opacity: 1; + transform: translateY(0px); +} +} +@keyframes fadeOutUpBig { +0% { + opacity: 1; + transform: translateY(0px); +} +100% { + opacity: 0; + transform: translateY(-2000px); +} +} +@keyframes fadeInDownBig { +0% { + opacity: 0; + transform: translateY(-2000px); +} +100% { + opacity: 1; + transform: translateY(0px); +} +} +@keyframes fadeOutDownBig { +0% { + opacity: 1; + transform: translateY(0px); +} +100% { + opacity: 0; + transform: translateY(2000px); +} +} +@keyframes fadeInRightBig { +0% { + opacity: 0; + transform: translateX(2000px); +} +100% { + opacity: 1; + transform: translateX(0px); +} +} +@keyframes fadeOutLeftBig { +0% { + opacity: 1; + transform: translateX(0px); +} +100% { + opacity: 0; + transform: translateX(-2000px); +} +} +@keyframes fadeInLeftBig { +0% { + opacity: 0; + transform: translateX(-2000px); +} +100% { + opacity: 1; + transform: translateX(0px); +} +} +@keyframes fadeOutRightBig { +0% { + opacity: 1; + transform: translateX(0px); +} +100% { + opacity: 0; + transform: translateX(2000px); +} +} +@keyframes bounceIn { +0% { + opacity: 0; + transform: scale(0.3); +} +50% { + opacity: 1; + transform: scale(1.05); +} +70% { + transform: scale(0.9); +} +100% { + transform: scale(1); +} +} +@keyframes bounceInDown { +0% { + opacity: 0; + transform: translateY(-2000px); +} +60% { + opacity: 1; + transform: translateY(30px); +} +80% { + transform: translateY(-10px); +} +100% { + transform: translateY(0px); +} +} +@keyframes bounceInUp { +0% { + opacity: 0; + transform: translateY(2000px); +} +60% { + opacity: 1; + transform: translateY(-30px); +} +80% { + transform: translateY(10px); +} +100% { + transform: translateY(0px); +} +} +@keyframes bounceInRight { +0% { + opacity: 0; + transform: translateX(2000px); +} +60% { + opacity: 1; + transform: translateX(-30px); +} +80% { + transform: translateX(10px); +} +100% { + transform: translateX(0px); +} +} +@keyframes bounceInLeft { +0% { + opacity: 0; + transform: translateX(-2000px); +} +60% { + opacity: 1; + transform: translateX(30px); +} +80% { + transform: translateX(-10px); +} +100% { + transform: translateX(0px); +} +} +@keyframes bounceOut { +0% { + transform: scale(1); +} +25% { + transform: scale(0.95); +} +50% { + opacity: 1; + transform: scale(1.1); +} +100% { + opacity: 0; + transform: scale(0.3); +} +} +@keyframes bounceOutUp { +0% { + transform: translateY(0px); +} +20% { + opacity: 1; + transform: translateY(20px); +} +100% { + opacity: 0; + transform: translateY(-2000px); +} +} +@keyframes bounceOutDown { +0% { + transform: translateY(0px); +} +20% { + opacity: 1; + transform: translateY(-20px); +} +100% { + opacity: 0; + transform: translateY(2000px); +} +} +@keyframes bounceOutLeft { +0% { + transform: translateX(0px); +} +20% { + opacity: 1; + transform: translateX(20px); +} +100% { + opacity: 0; + transform: translateX(-2000px); +} +} +@keyframes bounceOutRight { +0% { + transform: translateX(0px); +} +20% { + opacity: 1; + transform: translateX(-20px); +} +100% { + opacity: 0; + transform: translateX(2000px); +} +} +@keyframes flash { +0% { + opacity: 1; +} +25% { + opacity: 0; +} +50% { + opacity: 1; +} +75% { + opacity: 0; +} +100% { + opacity: 1; +} +} +@keyframes bounce { +0% { + transform: translateY(0px); +} +20% { + transform: translateY(0px); +} +40% { + transform: translateY(-30px); +} +50% { + transform: translateY(0px); +} +60% { + transform: translateY(-15px); +} +80% { + transform: translateY(0px); +} +100% { + transform: translateY(0px); +} +} +@keyframes shake { +0% { + transform: translateX(0px); +} +10% { + transform: translateX(-10px); +} +20% { + transform: translateX(10px); +} +30% { + transform: translateX(-10px); +} +40% { + transform: translateX(10px); +} +50% { + transform: translateX(-10px); +} +60% { + transform: translateX(10px); +} +70% { + transform: translateX(-10px); +} +80% { + transform: translateX(10px); +} +90% { + transform: translateX(-10px); +} +100% { + transform: translateX(0px); +} +} +@keyframes rotateInDownLeft { +0% { + opacity: 0; + transform: rotate(-90deg); + transform-origin: left bottom 0; +} +100% { + opacity: 1; + transform: rotate(0deg); + transform-origin: left bottom 0; +} +} +@keyframes rotateInUpLeft { +0% { + opacity: 0; + transform: rotate(90deg); + transform-origin: left bottom 0; +} +100% { + opacity: 1; + transform: rotate(0deg); + transform-origin: left bottom 0; +} +} +@keyframes rotateInUpRight { +0% { + opacity: 0; + transform: rotate(-90deg); + transform-origin: right bottom 0; +} +100% { + opacity: 1; + transform: rotate(0deg); + transform-origin: right bottom 0; +} +} +@keyframes rotateInDownRight { +0% { + opacity: 0; + transform: rotate(90deg); + transform-origin: right bottom 0; +} +100% { + opacity: 1; + transform: rotate(0deg); + transform-origin: right bottom 0; +} +} +@keyframes rotateOutDownLeft { +0% { + opacity: 1; + transform: rotate(0deg); + transform-origin: left bottom 0; +} +100% { + opacity: 0; + transform: rotate(90deg); + transform-origin: left bottom 0; +} +} +@keyframes rotateOutUpLeft { +0% { + opacity: 1; + transform: rotate(0deg); + transform-origin: left bottom 0; +} +100% { + opacity: 0; + transform: rotate(-90deg); + transform-origin: left bottom 0; +} +} +@keyframes rotateOutDownRight { +0% { + opacity: 1; + transform: rotate(0deg); + transform-origin: right bottom 0; +} +100% { + opacity: 0; + transform: rotate(-90deg); + transform-origin: right bottom 0; +} +} +@keyframes rotateOutUpRight { +0% { + opacity: 1; + transform: rotate(0deg); + transform-origin: right bottom 0; +} +100% { + opacity: 0; + transform: rotate(90deg); + transform-origin: right bottom 0; +} +} +@keyframes rotateIn { +0% { + opacity: 0; + transform: rotate(-200deg); + transform-origin: center center 0; +} +100% { + opacity: 1; + transform: rotate(0deg); + transform-origin: center center 0; +} +} +@keyframes rotateOut { +0% { + opacity: 1; + transform: rotate(0deg); + transform-origin: center center 0; +} +100% { + opacity: 0; + transform: rotate(200deg); + transform-origin: center center 0; +} +} +@keyframes tada { +0% { + transform: scale(1); +} +10% { + transform: scale(0.9) rotate(-3deg); +} +20% { + transform: scale(0.9) rotate(-3deg); +} +30% { + transform: scale(1.1) rotate(3deg); +} +40% { + transform: scale(1.1) rotate(-3deg); +} +50% { + transform: scale(1.1) rotate(3deg); +} +60% { + transform: scale(1.1) rotate(-3deg); +} +70% { + transform: scale(1.1) rotate(3deg); +} +80% { + transform: scale(1.1) rotate(-3deg); +} +90% { + transform: scale(1.1) rotate(3deg); +} +100% { + transform: scale(1) rotate(0deg); +} +} +@font-face { + font-family: "FontAwesome"; + font-style: normal; + font-weight: normal; + src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff?v=4.1.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.1.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular") format("svg"); +} +.icon, .page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .searchtab:before, [class^="icon-"], [class^="process-icon-"], .bootstrap .alert.alert-warning:before, .bootstrap .alert.alert-danger:before, .bootstrap #carrier_wizard .wizard_error:before, .bootstrap .alert.alert-success:before, .bootstrap .alert.alert-info:before, .bootstrap .alert.alert-addons:before, .bootstrap .alert.alert-onboarding:before, .bootstrap .alert.alert-message:before, .bootstrap .table td.dragHandle .dragGroup:before, .bootstrap #dashboard .loading .data_value:before, .bootstrap #employee-thumbnail:before, .mce-ico, .chosen-container-single .chosen-single div b, .chosen-container-single .chosen-search:before { + display: inline-block; + font-family: FontAwesome; + font-style: normal; + font-weight: normal; + line-height: 1; +} +.icon-check:before, #content .process-icon-ok:before { + content: "\f00c"} +.icon-times:before, .icon-remove:before, #content .process-icon-cancel:before { + content: "\f00d" + } +.icon-2x, .page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .searchtab:before, [class^="icon-Admin"], [class^="process-icon-"] { + font-size: 2em; +} +.icon-3x, .bootstrap .alert.alert-warning:before, .bootstrap .alert.alert-danger:before, .bootstrap #carrier_wizard .wizard_error:before, .bootstrap .alert.alert-success:before, .bootstrap .alert.alert-info:before, .bootstrap .alert.alert-addons:before, .bootstrap .alert.alert-onboarding:before, .bootstrap .alert.alert-message:before { + font-size: 3em; +} +.icon-4x { + font-size: 4em; +} +.icon-5x { + font-size: 5em; +} +.icon-fw, [class^="icon-Admin"], [class^="process-icon-"] { + text-align: center; + width: 1.28571em; +} +.icon-ul { + list-style-type: none; + margin-left: 2.14286em; + padding-left: 0; +} +.icon-ul > li { + position: relative; +} +.icon-li { + left: -2.14286em; + position: absolute; + text-align: center; + top: 0.14286em; + width: 2.14286em; +} +.icon-li.icon-lg { + left: -1.85714em; +} +.icon-border { + border: 0.08em solid #eee; + border-radius: 0.1em; + padding: 0.2em 0.25em 0.15em; +} +.pull-right { + float: right; +} +.pull-left { + float: left; +} +.icon.pull-left, .page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .pull-left.searchtab:before, .pull-left[class^="icon-"], .pull-left[class^="process-icon-"], .bootstrap .pull-left.alert.alert-warning:before, .bootstrap .pull-left.alert.alert-danger:before, .bootstrap #carrier_wizard .pull-left.wizard_error:before, .bootstrap .pull-left.alert.alert-success:before, .bootstrap .pull-left.alert.alert-info:before, .bootstrap .pull-left.alert.alert-addons:before, .bootstrap .pull-left.alert.alert-onboarding:before, .bootstrap .pull-left.alert.alert-message:before, .bootstrap .table td.dragHandle .pull-left.dragGroup:before, .bootstrap #dashboard .loading .pull-left.data_value:before, .bootstrap #employee-thumbnail.pull-left:before, .pull-left.mce-ico, .chosen-container-single .chosen-single div b.pull-left, .chosen-container-single .pull-left.chosen-search:before { + margin-right: 0.3em; +} +.icon.pull-right, .page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .pull-right.searchtab:before, .pull-right[class^="icon-"], .pull-right[class^="process-icon-"], .bootstrap .pull-right.alert.alert-warning:before, .bootstrap .pull-right.alert.alert-danger:before, .bootstrap #carrier_wizard .pull-right.wizard_error:before, .bootstrap .pull-right.alert.alert-success:before, .bootstrap .pull-right.alert.alert-info:before, .bootstrap .pull-right.alert.alert-addons:before, .bootstrap .pull-right.alert.alert-onboarding:before, .bootstrap .pull-right.alert.alert-message:before, .bootstrap .table td.dragHandle .pull-right.dragGroup:before, .bootstrap #dashboard .loading .pull-right.data_value:before, .bootstrap #employee-thumbnail.pull-right:before, .pull-right.mce-ico, .chosen-container-single .chosen-single div b.pull-right, .chosen-container-single .pull-right.chosen-search:before { + margin-left: 0.3em; +} +.icon-spin, #content .process-icon-loading, .bootstrap #dashboard .loading .data_value:before, .bootstrap #employee-thumbnail:before { + animation: 2s linear 0s normal none infinite running spin; +} +@keyframes spin { +0% { + transform: rotate(0deg); +} +100% { + transform: rotate(359deg); +} +} +@keyframes spin { +0% { + transform: rotate(0deg); +} +100% { + transform: rotate(359deg); +} +} +.icon-rotate-90 { + transform: rotate(90deg); +} +.icon-rotate-180 { + transform: rotate(180deg); +} +.icon-rotate-270 { + transform: rotate(270deg); +} +.icon-flip-horizontal { + transform: scale(-1, 1); +} +.icon-flip-vertical { + transform: scale(1, -1); +} +.icon-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2em; +} +.icon-stack-1x, .icon-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; +} +.icon-stack-1x { + line-height: inherit; +} +.icon-stack-2x { + font-size: 2em; +} +.icon-inverse { + color: #fff; +} +html { + font-family: sans-serif; +} +body { + margin: 0; +} +article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { + display: block; +} +audio, canvas, progress, video { + display: inline-block; + vertical-align: baseline; +} +audio:not([controls]) { + display: none; + height: 0; +} +[hidden], template { + display: none; +} +a { + background: none repeat scroll 0 0 transparent; +} +a:active, a:hover { + outline: 0 none; +} +abbr[title] { + border-bottom: 1px dotted; +} +b, strong { + font-weight: bold; +} +dfn { + font-style: italic; +} +h1 { + font-size: 2em; + margin: 0.67em 0; +} +mark { + background: none repeat scroll 0 0 #ff0; + color: #000; +} +small { + font-size: 80%; +} +sub, sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} +sup { + top: -0.5em; +} +sub { + bottom: -0.25em; +} +img { + border: 0 none; +} +svg:not(:root) { + overflow: hidden; +} +figure { + margin: 1em 40px; +} +hr { + box-sizing: content-box; + height: 0; +} +pre { + overflow: auto; +} +code, kbd, pre, samp { + font-family: monospace,monospace; + font-size: 1em; +} +button, input, optgroup, select, textarea { + color: inherit; + font: inherit; + margin: 0; +} +button { + overflow: visible; +} +button, select { + text-transform: none; +} +button, html input[type="button"], input[type="reset"], input[type="submit"] { + cursor: pointer; +} +button[disabled], html input[disabled] { + cursor: default; +} +button::-moz-focus-inner, input::-moz-focus-inner { + border: 0 none; + padding: 0; +} +input { + line-height: normal; +} +input[type="checkbox"], input[type="radio"] { + box-sizing: border-box; + padding: 0; +} +input[type="search"] { + box-sizing: content-box; +} +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} +legend { + border: 0 none; + padding: 0; +} +textarea { + overflow: auto; +} +optgroup { + font-weight: bold; +} +table { + border-collapse: collapse; + border-spacing: 0; +} +td, th { + padding: 0; +} +.bootstrap { +} +.bootstrap * { + box-sizing: border-box; +} +.bootstrap *:before, .bootstrap *:after { + box-sizing: border-box; +} +.bootstrap html { + font-size: 62.5%; +} +.bootstrap body { + background-color: #fff; + color: #555; + font-family: "Open Sans",Helvetica,Arial,sans-serif; + font-size: 12px; + line-height: 1.42857; +} +.bootstrap input, .bootstrap button, .bootstrap select, .bootstrap textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit; +} +.bootstrap a { + color: #00aff0; + text-decoration: none; +} +.bootstrap a:hover, .bootstrap a:focus { + color: #0077a3; + text-decoration: underline; +} +.bootstrap a:focus { + outline: thin dotted; + outline-offset: -2px; +} +.bootstrap figure { + margin: 0; +} +.bootstrap img { + vertical-align: middle; +} +.bootstrap .img-responsive { + display: block; + height: auto; + max-width: 100%; +} +.bootstrap .img-rounded { + border-radius: 6px; +} +.bootstrap .img-thumbnail { + background-color: #fff; + border: 1px solid #ddd; + border-radius: 3px; + display: inline-block; + height: auto; + line-height: 1.42857; + max-width: 100%; + padding: 4px; + transition: all 0.2s ease-in-out 0s; +} +.bootstrap .img-circle { + border-radius: 50%; +} +.bootstrap hr { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + border-color: #eee -moz-use-text-color -moz-use-text-color; + border-image: none; + border-right: 0 none; + border-style: solid none none; + border-width: 1px 0 0; + margin-bottom: 17px; + margin-top: 17px; +} +.bootstrap .sr-only { + border: 0 none; + clip: rect(0px, 0px, 0px, 0px); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} +.bootstrap .sr-only-focusable:active, .bootstrap .sr-only-focusable:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; +} +.bootstrap h1, .bootstrap h2, .bootstrap h3, .bootstrap h4, .bootstrap h5, .bootstrap h6, .bootstrap .h1, .bootstrap .h2, .bootstrap .h3, .bootstrap .h4, .bootstrap .h5, .bootstrap .h6 { + color: inherit; + font-family: "Ubuntu Condensed",Helvetica,Arial,sans-serif; + font-weight: 400; + line-height: 1.1; +} +.bootstrap h1 small, .bootstrap h1 .small, .bootstrap h2 small, .bootstrap h2 .small, .bootstrap h3 small, .bootstrap h3 .small, .bootstrap h4 small, .bootstrap h4 .small, .bootstrap h5 small, .bootstrap h5 .small, .bootstrap h6 small, .bootstrap h6 .small, .bootstrap .h1 small, .bootstrap .h1 .small, .bootstrap .h2 small, .bootstrap .h2 .small, .bootstrap .h3 small, .bootstrap .h3 .small, .bootstrap .h4 small, .bootstrap .h4 .small, .bootstrap .h5 small, .bootstrap .h5 .small, .bootstrap .h6 small, .bootstrap .h6 .small { + color: #999; + font-weight: normal; + line-height: 1; +} +.bootstrap h1, .bootstrap .h1, .bootstrap h2, .bootstrap .h2, .bootstrap h3, .bootstrap .h3 { + margin-bottom: 8.5px; + margin-top: 17px; +} +.bootstrap h1 small, .bootstrap h1 .small, .bootstrap .h1 small, .bootstrap .h1 .small, .bootstrap h2 small, .bootstrap h2 .small, .bootstrap .h2 small, .bootstrap .h2 .small, .bootstrap h3 small, .bootstrap h3 .small, .bootstrap .h3 small, .bootstrap .h3 .small { + font-size: 65%; +} +.bootstrap h4, .bootstrap .h4, .bootstrap h5, .bootstrap .h5, .bootstrap h6, .bootstrap .h6 { + margin-bottom: 8.5px; + margin-top: 8.5px; +} +.bootstrap h4 small, .bootstrap h4 .small, .bootstrap .h4 small, .bootstrap .h4 .small, .bootstrap h5 small, .bootstrap h5 .small, .bootstrap .h5 small, .bootstrap .h5 .small, .bootstrap h6 small, .bootstrap h6 .small, .bootstrap .h6 small, .bootstrap .h6 .small { + font-size: 75%; +} +.bootstrap h1, .bootstrap .h1 { + font-size: 31px; +} +.bootstrap h2, .bootstrap .h2 { + font-size: 25px; +} +.bootstrap h3, .bootstrap .h3 { + font-size: 21px; +} +.bootstrap h4, .bootstrap .h4 { + font-size: 15px; +} +.bootstrap h5, .bootstrap .h5 { + font-size: 12px; +} +.bootstrap h6, .bootstrap .h6 { + font-size: 11px; +} +.bootstrap p { + margin: 0 0 8.5px; +} +.bootstrap .lead { + font-size: 13px; + font-weight: 200; + line-height: 1.4; + margin-bottom: 17px; +} +@media (min-width: 768px) { +.bootstrap .lead { + font-size: 18px; +} +} +.bootstrap small, .bootstrap .small { + font-size: 85%; +} +.bootstrap cite { + font-style: normal; +} +.bootstrap mark, .bootstrap .mark { + background-color: #fcf8e3; + padding: 0.2em; +} +.bootstrap .text-left { + text-align: left; +} +.bootstrap .text-right { + text-align: right; +} +.bootstrap .text-center { + text-align: center; +} +.bootstrap .text-justify { + text-align: justify; +} +.bootstrap .text-muted, .bootstrap #header_notifs_icon_wrapper .notifs_dropdown .notifs_panel .list_notif .no_notifs, #header_notifs_icon_wrapper .notifs_dropdown .notifs_panel .list_notif .bootstrap .no_notifs, .bootstrap .module_description, .bootstrap .hook_panel_header .hook_title, .bootstrap .hook_panel_header .hook_description { + color: #999; +} +.bootstrap .text-primary { + color: #00aff0; +} +.bootstrap a.text-primary:hover { + color: #008abd; +} +.bootstrap .text-success { + color: #3c763d; +} +.bootstrap a.text-success:hover { + color: #2b542c; +} +.bootstrap .text-info { + color: #31708f; +} +.bootstrap a.text-info:hover { + color: #245269; +} +.bootstrap .text-warning { + color: #8a6d3b; +} +.bootstrap a.text-warning:hover { + color: #66512c; +} +.bootstrap .text-danger { + color: #a94442; +} +.bootstrap a.text-danger:hover { + color: #843534; +} +.bootstrap .bg-primary { + color: #fff; +} +.bootstrap .bg-primary { + background-color: #00aff0; +} +.bootstrap a.bg-primary:hover { + background-color: #008abd; +} +.bootstrap .bg-success { + background-color: #dff0d8; +} +.bootstrap a.bg-success:hover { + background-color: #c1e2b3; +} +.bootstrap .bg-info { + background-color: #d9edf7; +} +.bootstrap a.bg-info:hover { + background-color: #afd9ee; +} +.bootstrap .bg-warning { + background-color: #fcf8e3; +} +.bootstrap a.bg-warning:hover { + background-color: #f7ecb5; +} +.bootstrap .bg-danger { + background-color: #f2dede; +} +.bootstrap a.bg-danger:hover { + background-color: #e4b9b9; +} +.bootstrap .page-header { + border-bottom: 1px solid #eee; + margin: 34px 0 17px; + padding-bottom: 7.5px; +} +.bootstrap ul, .bootstrap ol { + margin-bottom: 8.5px; + margin-top: 0; +} +.bootstrap ul ul, .bootstrap ul ol, .bootstrap ol ul, .bootstrap ol ol { + margin-bottom: 0; +} +.bootstrap .list-unstyled, .bootstrap .list-inline, .bootstrap #dashboard .data_list_large, .bootstrap #dashboard .data_list_vertical { + list-style: outside none none; + padding-left: 0; +} +.bootstrap .list-inline { + margin-left: -5px; +} +.bootstrap .list-inline > li { + display: inline-block; + padding-left: 5px; + padding-right: 5px; +} +.bootstrap dl { + margin-bottom: 17px; + margin-top: 0; +} +.bootstrap dt, .bootstrap dd { + line-height: 1.42857; +} +.bootstrap dt { + font-weight: bold; +} +.bootstrap dd { + margin-left: 0; +} +.bootstrap .dl-horizontal dd:before, .bootstrap .dl-horizontal dd:after { + content: " "; + display: table; +} +.bootstrap .dl-horizontal dd:after { + clear: both; +} +@media (min-width: 768px) { +.bootstrap .dl-horizontal dt { + clear: left; + float: left; + overflow: hidden; + text-align: right; + text-overflow: ellipsis; + white-space: nowrap; + width: 160px; +} +.bootstrap .dl-horizontal dd { + margin-left: 180px; +} +} +.bootstrap abbr[title], .bootstrap abbr[data-original-title] { + border-bottom: 1px dotted #999; + cursor: help; +} +.bootstrap .initialism { + font-size: 90%; + text-transform: uppercase; +} +.bootstrap blockquote { + border-left: 5px solid #eee; + font-size: 15px; + margin: 0 0 17px; + padding: 8.5px 17px; +} +.bootstrap blockquote p:last-child, .bootstrap blockquote ul:last-child, .bootstrap blockquote ol:last-child { + margin-bottom: 0; +} +.bootstrap blockquote footer, .bootstrap blockquote small, .bootstrap blockquote .small { + color: #999; + display: block; + font-size: 80%; + line-height: 1.42857; +} +.bootstrap blockquote footer:before, .bootstrap blockquote small:before, .bootstrap blockquote .small:before { + content: "— "; +} +.bootstrap .blockquote-reverse, .bootstrap blockquote.pull-right { + border-left: 0 none; + border-right: 5px solid #eee; + padding-left: 0; + padding-right: 15px; + text-align: right; +} +.bootstrap .blockquote-reverse footer:before, .bootstrap .blockquote-reverse small:before, .bootstrap .blockquote-reverse .small:before, .bootstrap blockquote.pull-right footer:before, .bootstrap blockquote.pull-right small:before, .bootstrap blockquote.pull-right .small:before { + content: ""; +} +.bootstrap .blockquote-reverse footer:after, .bootstrap .blockquote-reverse small:after, .bootstrap .blockquote-reverse .small:after, .bootstrap blockquote.pull-right footer:after, .bootstrap blockquote.pull-right small:after, .bootstrap blockquote.pull-right .small:after { + content: " —"; +} +.bootstrap blockquote:before, .bootstrap blockquote:after { + content: ""; +} +.bootstrap address { + font-style: normal; + line-height: 1.42857; + margin-bottom: 17px; +} +.bootstrap code, .bootstrap kbd, .bootstrap pre, .bootstrap samp { + font-family: Menlo,Monaco,Consolas,"Courier New",monospace; +} +.bootstrap code { + background-color: #f9f2f4; + border-radius: 3px; + color: #c7254e; + font-size: 90%; + padding: 2px 4px; +} +.bootstrap kbd { + background-color: #333; + border-radius: 3px; + box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25) inset; + color: #fff; + font-size: 90%; + padding: 2px 4px; +} +.bootstrap pre { + background-color: #f5f5f5; + border: 1px solid #ccc; + border-radius: 3px; + color: #333; + display: block; + font-size: 11px; + line-height: 1.42857; + margin: 0 0 8.5px; + padding: 8px; + word-break: break-all; + word-wrap: break-word; +} +.bootstrap pre code { + background-color: transparent; + border-radius: 0; + color: inherit; + font-size: inherit; + padding: 0; + white-space: pre-wrap; +} +.bootstrap .pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} +.bootstrap .container { + margin-left: auto; + margin-right: auto; + padding-left: 5px; + padding-right: 5px; +} +.bootstrap .container:before, .bootstrap .container:after { + content: " "; + display: table; +} +.bootstrap .container:after { + clear: both; +} +@media (min-width: 768px) { +.bootstrap .container { + width: 728px; +} +} +@media (min-width: 992px) { +.bootstrap .container { + width: 940px; +} +} +@media (min-width: 1200px) { +.bootstrap .container { + width: 1170px; +} +} +.bootstrap .container-fluid { + margin-left: auto; + margin-right: auto; + padding-left: 5px; + padding-right: 5px; +} +.bootstrap .container-fluid:before, .bootstrap .container-fluid:after { + content: " "; + display: table; +} +.bootstrap .container-fluid:after { + clear: both; +} +.bootstrap .row, .bootstrap .multishop-well, .bootstrap #dashboard .data_list_vertical { + margin-left: -5px; + margin-right: -5px; +} +.bootstrap .row:before, .bootstrap .multishop-well:before, .bootstrap #dashboard .data_list_vertical:before, .bootstrap .row:after, .bootstrap .multishop-well:after, .bootstrap #dashboard .data_list_vertical:after { + content: " "; + display: table; +} +.bootstrap .row:after, .bootstrap .multishop-well:after, .bootstrap #dashboard .data_list_vertical:after { + clear: both; +} +.bootstrap .col-xs-1, .bootstrap .col-sm-1, .bootstrap .col-md-1, .bootstrap .col-lg-1, .bootstrap .col-xs-2, .bootstrap .col-sm-2, .bootstrap .col-md-2, .bootstrap .col-lg-2, .bootstrap .col-xs-3, .bootstrap .col-sm-3, .bootstrap .col-md-3, .bootstrap .col-lg-3, .bootstrap .col-xs-4, .bootstrap .col-sm-4, .bootstrap .col-md-4, .bootstrap .col-lg-4, .bootstrap .col-xs-5, .bootstrap .col-sm-5, .bootstrap .col-md-5, .bootstrap .col-lg-5, .bootstrap .col-xs-6, .bootstrap #dashboard .data_list_vertical li, .bootstrap .col-sm-6, .bootstrap .col-md-6, .bootstrap .col-lg-6, .bootstrap .col-xs-7, .bootstrap .col-sm-7, .bootstrap .col-md-7, .bootstrap .col-lg-7, .bootstrap .col-xs-8, .bootstrap .col-sm-8, .bootstrap .col-md-8, .bootstrap .col-lg-8, .bootstrap .col-xs-9, .bootstrap .col-sm-9, .bootstrap .col-md-9, .bootstrap .col-lg-9, .bootstrap .col-xs-10, .bootstrap .col-sm-10, .bootstrap .col-md-10, .bootstrap .col-lg-10, .bootstrap .col-xs-11, .bootstrap .col-sm-11, .bootstrap .col-md-11, .bootstrap .col-lg-11, .bootstrap .col-xs-12, .bootstrap .col-sm-12, .bootstrap .col-md-12, .bootstrap .col-lg-12 { + min-height: 1px; + padding-left: 5px; + padding-right: 5px; + position: relative; +} +.bootstrap .col-xs-1, .bootstrap .col-xs-2, .bootstrap .col-xs-3, .bootstrap .col-xs-4, .bootstrap .col-xs-5, .bootstrap .col-xs-6, .bootstrap #dashboard .data_list_vertical li, .bootstrap .col-xs-7, .bootstrap .col-xs-8, .bootstrap .col-xs-9, .bootstrap .col-xs-10, .bootstrap .col-xs-11, .bootstrap .col-xs-12 { + float: left; +} +.bootstrap .col-xs-1 { + width: 8.33333%; +} +.bootstrap .col-xs-2 { + width: 16.6667%; +} +.bootstrap .col-xs-3 { + width: 25%; +} +.bootstrap .col-xs-4 { + width: 33.3333%; +} +.bootstrap .col-xs-5 { + width: 41.6667%; +} +.bootstrap .col-xs-6, .bootstrap #dashboard .data_list_vertical li { + width: 50%; +} +.bootstrap .col-xs-7 { + width: 58.3333%; +} +.bootstrap .col-xs-8 { + width: 66.6667%; +} +.bootstrap .col-xs-9 { + width: 75%; +} +.bootstrap .col-xs-10 { + width: 83.3333%; +} +.bootstrap .col-xs-11 { + width: 91.6667%; +} +.bootstrap .col-xs-12 { + width: 100%; +} +.bootstrap .col-xs-pull-0 { + right: auto; +} +.bootstrap .col-xs-pull-1 { + right: 8.33333%; +} +.bootstrap .col-xs-pull-2 { + right: 16.6667%; +} +.bootstrap .col-xs-pull-3 { + right: 25%; +} +.bootstrap .col-xs-pull-4 { + right: 33.3333%; +} +.bootstrap .col-xs-pull-5 { + right: 41.6667%; +} +.bootstrap .col-xs-pull-6 { + right: 50%; +} +.bootstrap .col-xs-pull-7 { + right: 58.3333%; +} +.bootstrap .col-xs-pull-8 { + right: 66.6667%; +} +.bootstrap .col-xs-pull-9 { + right: 75%; +} +.bootstrap .col-xs-pull-10 { + right: 83.3333%; +} +.bootstrap .col-xs-pull-11 { + right: 91.6667%; +} +.bootstrap .col-xs-pull-12 { + right: 100%; +} +.bootstrap .col-xs-push-0 { + left: auto; +} +.bootstrap .col-xs-push-1 { + left: 8.33333%; +} +.bootstrap .col-xs-push-2 { + left: 16.6667%; +} +.bootstrap .col-xs-push-3 { + left: 25%; +} +.bootstrap .col-xs-push-4 { + left: 33.3333%; +} +.bootstrap .col-xs-push-5 { + left: 41.6667%; +} +.bootstrap .col-xs-push-6 { + left: 50%; +} +.bootstrap .col-xs-push-7 { + left: 58.3333%; +} +.bootstrap .col-xs-push-8 { + left: 66.6667%; +} +.bootstrap .col-xs-push-9 { + left: 75%; +} +.bootstrap .col-xs-push-10 { + left: 83.3333%; +} +.bootstrap .col-xs-push-11 { + left: 91.6667%; +} +.bootstrap .col-xs-push-12 { + left: 100%; +} +.bootstrap .col-xs-offset-0 { + margin-left: 0; +} +.bootstrap .col-xs-offset-1 { + margin-left: 8.33333%; +} +.bootstrap .col-xs-offset-2 { + margin-left: 16.6667%; +} +.bootstrap .col-xs-offset-3 { + margin-left: 25%; +} +.bootstrap .col-xs-offset-4 { + margin-left: 33.3333%; +} +.bootstrap .col-xs-offset-5 { + margin-left: 41.6667%; +} +.bootstrap .col-xs-offset-6 { + margin-left: 50%; +} +.bootstrap .col-xs-offset-7 { + margin-left: 58.3333%; +} +.bootstrap .col-xs-offset-8 { + margin-left: 66.6667%; +} +.bootstrap .col-xs-offset-9 { + margin-left: 75%; +} +.bootstrap .col-xs-offset-10 { + margin-left: 83.3333%; +} +.bootstrap .col-xs-offset-11 { + margin-left: 91.6667%; +} +.bootstrap .col-xs-offset-12 { + margin-left: 100%; +} +@media (min-width: 768px) { +.bootstrap .col-sm-1, .bootstrap .col-sm-2, .bootstrap .col-sm-3, .bootstrap .col-sm-4, .bootstrap .col-sm-5, .bootstrap .col-sm-6, .bootstrap .col-sm-7, .bootstrap .col-sm-8, .bootstrap .col-sm-9, .bootstrap .col-sm-10, .bootstrap .col-sm-11, .bootstrap .col-sm-12 { + float: left; +} +.bootstrap .col-sm-1 { + width: 8.33333%; +} +.bootstrap .col-sm-2 { + width: 16.6667%; +} +.bootstrap .col-sm-3 { + width: 25%; +} +.bootstrap .col-sm-4 { + width: 33.3333%; +} +.bootstrap .col-sm-5 { + width: 41.6667%; +} +.bootstrap .col-sm-6 { + width: 50%; +} +.bootstrap .col-sm-7 { + width: 58.3333%; +} +.bootstrap .col-sm-8 { + width: 66.6667%; +} +.bootstrap .col-sm-9 { + width: 75%; +} +.bootstrap .col-sm-10 { + width: 83.3333%; +} +.bootstrap .col-sm-11 { + width: 91.6667%; +} +.bootstrap .col-sm-12 { + width: 100%; +} +.bootstrap .col-sm-pull-0 { + right: auto; +} +.bootstrap .col-sm-pull-1 { + right: 8.33333%; +} +.bootstrap .col-sm-pull-2 { + right: 16.6667%; +} +.bootstrap .col-sm-pull-3 { + right: 25%; +} +.bootstrap .col-sm-pull-4 { + right: 33.3333%; +} +.bootstrap .col-sm-pull-5 { + right: 41.6667%; +} +.bootstrap .col-sm-pull-6 { + right: 50%; +} +.bootstrap .col-sm-pull-7 { + right: 58.3333%; +} +.bootstrap .col-sm-pull-8 { + right: 66.6667%; +} +.bootstrap .col-sm-pull-9 { + right: 75%; +} +.bootstrap .col-sm-pull-10 { + right: 83.3333%; +} +.bootstrap .col-sm-pull-11 { + right: 91.6667%; +} +.bootstrap .col-sm-pull-12 { + right: 100%; +} +.bootstrap .col-sm-push-0 { + left: auto; +} +.bootstrap .col-sm-push-1 { + left: 8.33333%; +} +.bootstrap .col-sm-push-2 { + left: 16.6667%; +} +.bootstrap .col-sm-push-3 { + left: 25%; +} +.bootstrap .col-sm-push-4 { + left: 33.3333%; +} +.bootstrap .col-sm-push-5 { + left: 41.6667%; +} +.bootstrap .col-sm-push-6 { + left: 50%; +} +.bootstrap .col-sm-push-7 { + left: 58.3333%; +} +.bootstrap .col-sm-push-8 { + left: 66.6667%; +} +.bootstrap .col-sm-push-9 { + left: 75%; +} +.bootstrap .col-sm-push-10 { + left: 83.3333%; +} +.bootstrap .col-sm-push-11 { + left: 91.6667%; +} +.bootstrap .col-sm-push-12 { + left: 100%; +} +.bootstrap .col-sm-offset-0 { + margin-left: 0; +} +.bootstrap .col-sm-offset-1 { + margin-left: 8.33333%; +} +.bootstrap .col-sm-offset-2 { + margin-left: 16.6667%; +} +.bootstrap .col-sm-offset-3 { + margin-left: 25%; +} +.bootstrap .col-sm-offset-4 { + margin-left: 33.3333%; +} +.bootstrap .col-sm-offset-5 { + margin-left: 41.6667%; +} +.bootstrap .col-sm-offset-6 { + margin-left: 50%; +} +.bootstrap .col-sm-offset-7 { + margin-left: 58.3333%; +} +.bootstrap .col-sm-offset-8 { + margin-left: 66.6667%; +} +.bootstrap .col-sm-offset-9 { + margin-left: 75%; +} +.bootstrap .col-sm-offset-10 { + margin-left: 83.3333%; +} +.bootstrap .col-sm-offset-11 { + margin-left: 91.6667%; +} +.bootstrap .col-sm-offset-12 { + margin-left: 100%; +} +} +@media (min-width: 992px) { +.bootstrap .col-md-1, .bootstrap .col-md-2, .bootstrap .col-md-3, .bootstrap .col-md-4, .bootstrap .col-md-5, .bootstrap .col-md-6, .bootstrap .col-md-7, .bootstrap .col-md-8, .bootstrap .col-md-9, .bootstrap .col-md-10, .bootstrap .col-md-11, .bootstrap .col-md-12 { + float: left; +} +.bootstrap .col-md-1 { + width: 8.33333%; +} +.bootstrap .col-md-2 { + width: 16.6667%; +} +.bootstrap .col-md-3 { + width: 25%; +} +.bootstrap .col-md-4 { + width: 33.3333%; +} +.bootstrap .col-md-5 { + width: 41.6667%; +} +.bootstrap .col-md-6 { + width: 50%; +} +.bootstrap .col-md-7 { + width: 58.3333%; +} +.bootstrap .col-md-8 { + width: 66.6667%; +} +.bootstrap .col-md-9 { + width: 75%; +} +.bootstrap .col-md-10 { + width: 83.3333%; +} +.bootstrap .col-md-11 { + width: 91.6667%; +} +.bootstrap .col-md-12 { + width: 100%; +} +.bootstrap .col-md-pull-0 { + right: auto; +} +.bootstrap .col-md-pull-1 { + right: 8.33333%; +} +.bootstrap .col-md-pull-2 { + right: 16.6667%; +} +.bootstrap .col-md-pull-3 { + right: 25%; +} +.bootstrap .col-md-pull-4 { + right: 33.3333%; +} +.bootstrap .col-md-pull-5 { + right: 41.6667%; +} +.bootstrap .col-md-pull-6 { + right: 50%; +} +.bootstrap .col-md-pull-7 { + right: 58.3333%; +} +.bootstrap .col-md-pull-8 { + right: 66.6667%; +} +.bootstrap .col-md-pull-9 { + right: 75%; +} +.bootstrap .col-md-pull-10 { + right: 83.3333%; +} +.bootstrap .col-md-pull-11 { + right: 91.6667%; +} +.bootstrap .col-md-pull-12 { + right: 100%; +} +.bootstrap .col-md-push-0 { + left: auto; +} +.bootstrap .col-md-push-1 { + left: 8.33333%; +} +.bootstrap .col-md-push-2 { + left: 16.6667%; +} +.bootstrap .col-md-push-3 { + left: 25%; +} +.bootstrap .col-md-push-4 { + left: 33.3333%; +} +.bootstrap .col-md-push-5 { + left: 41.6667%; +} +.bootstrap .col-md-push-6 { + left: 50%; +} +.bootstrap .col-md-push-7 { + left: 58.3333%; +} +.bootstrap .col-md-push-8 { + left: 66.6667%; +} +.bootstrap .col-md-push-9 { + left: 75%; +} +.bootstrap .col-md-push-10 { + left: 83.3333%; +} +.bootstrap .col-md-push-11 { + left: 91.6667%; +} +.bootstrap .col-md-push-12 { + left: 100%; +} +.bootstrap .col-md-offset-0 { + margin-left: 0; +} +.bootstrap .col-md-offset-1 { + margin-left: 8.33333%; +} +.bootstrap .col-md-offset-2 { + margin-left: 16.6667%; +} +.bootstrap .col-md-offset-3 { + margin-left: 25%; +} +.bootstrap .col-md-offset-4 { + margin-left: 33.3333%; +} +.bootstrap .col-md-offset-5 { + margin-left: 41.6667%; +} +.bootstrap .col-md-offset-6 { + margin-left: 50%; +} +.bootstrap .col-md-offset-7 { + margin-left: 58.3333%; +} +.bootstrap .col-md-offset-8 { + margin-left: 66.6667%; +} +.bootstrap .col-md-offset-9 { + margin-left: 75%; +} +.bootstrap .col-md-offset-10 { + margin-left: 83.3333%; +} +.bootstrap .col-md-offset-11 { + margin-left: 91.6667%; +} +.bootstrap .col-md-offset-12 { + margin-left: 100%; +} +} +@media (min-width: 1200px) { +.bootstrap .col-lg-1, .bootstrap .col-lg-2, .bootstrap .col-lg-3, .bootstrap .col-lg-4, .bootstrap .col-lg-5, .bootstrap .col-lg-6, .bootstrap .col-lg-7, .bootstrap .col-lg-8, .bootstrap .col-lg-9, .bootstrap .col-lg-10, .bootstrap .col-lg-11, .bootstrap .col-lg-12 { + float: left; +} +.bootstrap .col-lg-1 { + width: 8.33333%; +} +.bootstrap .col-lg-2 { + width: 16.6667%; +} +.bootstrap .col-lg-3 { + width: 25%; +} +.bootstrap .col-lg-4 { + width: 33.3333%; +} +.bootstrap .col-lg-5 { + width: 41.6667%; +} +.bootstrap .col-lg-6 { + width: 50%; +} +.bootstrap .col-lg-7 { + width: 58.3333%; +} +.bootstrap .col-lg-8 { + width: 66.6667%; +} +.bootstrap .col-lg-9 { + width: 75%; +} +.bootstrap .col-lg-10 { + width: 83.3333%; +} +.bootstrap .col-lg-11 { + width: 91.6667%; +} +.bootstrap .col-lg-12 { + width: 100%; +} +.bootstrap .col-lg-pull-0 { + right: auto; +} +.bootstrap .col-lg-pull-1 { + right: 8.33333%; +} +.bootstrap .col-lg-pull-2 { + right: 16.6667%; +} +.bootstrap .col-lg-pull-3 { + right: 25%; +} +.bootstrap .col-lg-pull-4 { + right: 33.3333%; +} +.bootstrap .col-lg-pull-5 { + right: 41.6667%; +} +.bootstrap .col-lg-pull-6 { + right: 50%; +} +.bootstrap .col-lg-pull-7 { + right: 58.3333%; +} +.bootstrap .col-lg-pull-8 { + right: 66.6667%; +} +.bootstrap .col-lg-pull-9 { + right: 75%; +} +.bootstrap .col-lg-pull-10 { + right: 83.3333%; +} +.bootstrap .col-lg-pull-11 { + right: 91.6667%; +} +.bootstrap .col-lg-pull-12 { + right: 100%; +} +.bootstrap .col-lg-push-0 { + left: auto; +} +.bootstrap .col-lg-push-1 { + left: 8.33333%; +} +.bootstrap .col-lg-push-2 { + left: 16.6667%; +} +.bootstrap .col-lg-push-3 { + left: 25%; +} +.bootstrap .col-lg-push-4 { + left: 33.3333%; +} +.bootstrap .col-lg-push-5 { + left: 41.6667%; +} +.bootstrap .col-lg-push-6 { + left: 50%; +} +.bootstrap .col-lg-push-7 { + left: 58.3333%; +} +.bootstrap .col-lg-push-8 { + left: 66.6667%; +} +.bootstrap .col-lg-push-9 { + left: 75%; +} +.bootstrap .col-lg-push-10 { + left: 83.3333%; +} +.bootstrap .col-lg-push-11 { + left: 91.6667%; +} +.bootstrap .col-lg-push-12 { + left: 100%; +} +.bootstrap .col-lg-offset-0 { + margin-left: 0; +} +.bootstrap .col-lg-offset-1 { + margin-left: 8.33333%; +} +.bootstrap .col-lg-offset-2 { + margin-left: 16.6667%; +} +.bootstrap .col-lg-offset-3 { + margin-left: 25%; +} +.bootstrap .col-lg-offset-4 { + margin-left: 33.3333%; +} +.bootstrap .col-lg-offset-5 { + margin-left: 41.6667%; +} +.bootstrap .col-lg-offset-6 { + margin-left: 50%; +} +.bootstrap .col-lg-offset-7 { + margin-left: 58.3333%; +} +.bootstrap .col-lg-offset-8 { + margin-left: 66.6667%; +} +.bootstrap .col-lg-offset-9 { + margin-left: 75%; +} +.bootstrap .col-lg-offset-10 { + margin-left: 83.3333%; +} +.bootstrap .col-lg-offset-11 { + margin-left: 91.6667%; +} +.bootstrap .col-lg-offset-12 { + margin-left: 100%; +} +} +.bootstrap table { + background-color: transparent; + max-width: 100%; +} +.bootstrap th { + text-align: left; +} +.bootstrap .table { + margin-bottom: 17px; + width: 100%; +} +.bootstrap .table > thead > tr > th, .bootstrap .table > thead > tr > td, .bootstrap .table > tbody > tr > th, .bootstrap .table > tbody > tr > td, .bootstrap .table > tfoot > tr > th, .bootstrap .table > tfoot > tr > td { + border-top: 1px solid #ddd; + line-height: 1.42857; + padding: 8px; + vertical-align: top; +} +.bootstrap .table > thead > tr > th { + border-bottom: 2px solid #ddd; + vertical-align: bottom; +} +.bootstrap .table > caption + thead > tr:first-child > th, .bootstrap .table > caption + thead > tr:first-child > td, .bootstrap .table > colgroup + thead > tr:first-child > th, .bootstrap .table > colgroup + thead > tr:first-child > td, .bootstrap .table > thead:first-child > tr:first-child > th, .bootstrap .table > thead:first-child > tr:first-child > td { + border-top: 0 none; +} +.bootstrap .table > tbody + tbody { + border-top: 2px solid #ddd; +} +.bootstrap .table .table { + background-color: #fff; +} +.bootstrap .table-condensed > thead > tr > th, .bootstrap .table-condensed > thead > tr > td, .bootstrap .table-condensed > tbody > tr > th, .bootstrap .table-condensed > tbody > tr > td, .bootstrap .table-condensed > tfoot > tr > th, .bootstrap .table-condensed > tfoot > tr > td { + padding: 5px; +} +.bootstrap .table-bordered { + border: 1px solid #ddd; +} +.bootstrap .table-bordered > thead > tr > th, .bootstrap .table-bordered > thead > tr > td, .bootstrap .table-bordered > tbody > tr > th, .bootstrap .table-bordered > tbody > tr > td, .bootstrap .table-bordered > tfoot > tr > th, .bootstrap .table-bordered > tfoot > tr > td { + border: 1px solid #ddd; +} +.bootstrap .table-bordered > thead > tr > th, .bootstrap .table-bordered > thead > tr > td { + border-bottom-width: 2px; +} +.bootstrap .table-striped > tbody > tr:nth-child(2n+1) > td, .bootstrap .table-striped > tbody > tr:nth-child(2n+1) > th { + background-color: #f9f9f9; +} +.bootstrap .table-hover > tbody > tr:hover > td, .bootstrap .table-hover > tbody > tr:hover > th { + background-color: #edf7fb; +} +.bootstrap table col[class*="col-"] { + display: table-column; + float: none; + position: static; +} +.bootstrap table td[class*="col-"], .bootstrap table th[class*="col-"] { + display: table-cell; + float: none; + position: static; +} +.bootstrap .table > thead > tr > td.active, .bootstrap .table > thead > tr > th.active, .bootstrap .table > thead > tr.active > td, .bootstrap .table > thead > tr.active > th, .bootstrap .table > tbody > tr > td.active, .bootstrap .table > tbody > tr > th.active, .bootstrap .table > tbody > tr.active > td, .bootstrap .table > tbody > tr.active > th, .bootstrap .table > tfoot > tr > td.active, .bootstrap .table > tfoot > tr > th.active, .bootstrap .table > tfoot > tr.active > td, .bootstrap .table > tfoot > tr.active > th { + background-color: #edf7fb; +} +.bootstrap .table-hover > tbody > tr > td.active:hover, .bootstrap .table-hover > tbody > tr > th.active:hover, .bootstrap .table-hover > tbody > tr.active:hover > td, .bootstrap .table-hover > tbody > tr:hover > .active, .bootstrap .table-hover > tbody > tr.active:hover > th { + background-color: #d8eef6; +} +.bootstrap .table > thead > tr > td.success, .bootstrap .table > thead > tr > th.success, .bootstrap .table > thead > tr.success > td, .bootstrap .table > thead > tr.success > th, .bootstrap .table > tbody > tr > td.success, .bootstrap .table > tbody > tr > th.success, .bootstrap .table > tbody > tr.success > td, .bootstrap .table > tbody > tr.success > th, .bootstrap .table > tfoot > tr > td.success, .bootstrap .table > tfoot > tr > th.success, .bootstrap .table > tfoot > tr.success > td, .bootstrap .table > tfoot > tr.success > th { + background-color: #dff0d8; +} +.bootstrap .table-hover > tbody > tr > td.success:hover, .bootstrap .table-hover > tbody > tr > th.success:hover, .bootstrap .table-hover > tbody > tr.success:hover > td, .bootstrap .table-hover > tbody > tr:hover > .success, .bootstrap .table-hover > tbody > tr.success:hover > th { + background-color: #d0e9c6; +} +.bootstrap .table > thead > tr > td.info, .bootstrap .table > thead > tr > th.info, .bootstrap .table > thead > tr.info > td, .bootstrap .table > thead > tr.info > th, .bootstrap .table > tbody > tr > td.info, .bootstrap .table > tbody > tr > th.info, .bootstrap .table > tbody > tr.info > td, .bootstrap .table > tbody > tr.info > th, .bootstrap .table > tfoot > tr > td.info, .bootstrap .table > tfoot > tr > th.info, .bootstrap .table > tfoot > tr.info > td, .bootstrap .table > tfoot > tr.info > th { + background-color: #d9edf7; +} +.bootstrap .table-hover > tbody > tr > td.info:hover, .bootstrap .table-hover > tbody > tr > th.info:hover, .bootstrap .table-hover > tbody > tr.info:hover > td, .bootstrap .table-hover > tbody > tr:hover > .info, .bootstrap .table-hover > tbody > tr.info:hover > th { + background-color: #c4e3f3; +} +.bootstrap .table > thead > tr > td.warning, .bootstrap .table > thead > tr > th.warning, .bootstrap .table > thead > tr.warning > td, .bootstrap .table > thead > tr.warning > th, .bootstrap .table > tbody > tr > td.warning, .bootstrap .table > tbody > tr > th.warning, .bootstrap .table > tbody > tr.warning > td, .bootstrap .table > tbody > tr.warning > th, .bootstrap .table > tfoot > tr > td.warning, .bootstrap .table > tfoot > tr > th.warning, .bootstrap .table > tfoot > tr.warning > td, .bootstrap .table > tfoot > tr.warning > th { + background-color: #fcf8e3; +} +.bootstrap .table-hover > tbody > tr > td.warning:hover, .bootstrap .table-hover > tbody > tr > th.warning:hover, .bootstrap .table-hover > tbody > tr.warning:hover > td, .bootstrap .table-hover > tbody > tr:hover > .warning, .bootstrap .table-hover > tbody > tr.warning:hover > th { + background-color: #faf2cc; +} +.bootstrap .table > thead > tr > td.danger, .bootstrap .table > thead > tr > th.danger, .bootstrap .table > thead > tr.danger > td, .bootstrap .table > thead > tr.danger > th, .bootstrap .table > tbody > tr > td.danger, .bootstrap .table > tbody > tr > th.danger, .bootstrap .table > tbody > tr.danger > td, .bootstrap .table > tbody > tr.danger > th, .bootstrap .table > tfoot > tr > td.danger, .bootstrap .table > tfoot > tr > th.danger, .bootstrap .table > tfoot > tr.danger > td, .bootstrap .table > tfoot > tr.danger > th { + background-color: #f2dede; +} +.bootstrap .table-hover > tbody > tr > td.danger:hover, .bootstrap .table-hover > tbody > tr > th.danger:hover, .bootstrap .table-hover > tbody > tr.danger:hover > td, .bootstrap .table-hover > tbody > tr:hover > .danger, .bootstrap .table-hover > tbody > tr.danger:hover > th { + background-color: #ebcccc; +} +@media screen and (max-width: 767px) { +.bootstrap .table-responsive { + border: 1px solid #ddd; + margin-bottom: 12.75px; + overflow-x: scroll; + overflow-y: hidden; + width: 100%; +} +.bootstrap .table-responsive > .table { + margin-bottom: 0; +} +.bootstrap .table-responsive > .table > thead > tr > th, .bootstrap .table-responsive > .table > thead > tr > td, .bootstrap .table-responsive > .table > tbody > tr > th, .bootstrap .table-responsive > .table > tbody > tr > td, .bootstrap .table-responsive > .table > tfoot > tr > th, .bootstrap .table-responsive > .table > tfoot > tr > td { + white-space: nowrap; +} +.bootstrap .table-responsive > .table-bordered { + border: 0 none; +} +.bootstrap .table-responsive > .table-bordered > thead > tr > th:first-child, .bootstrap .table-responsive > .table-bordered > thead > tr > td:first-child, .bootstrap .table-responsive > .table-bordered > tbody > tr > th:first-child, .bootstrap .table-responsive > .table-bordered > tbody > tr > td:first-child, .bootstrap .table-responsive > .table-bordered > tfoot > tr > th:first-child, .bootstrap .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0 none; +} +.bootstrap .table-responsive > .table-bordered > thead > tr > th:last-child, .bootstrap .table-responsive > .table-bordered > thead > tr > td:last-child, .bootstrap .table-responsive > .table-bordered > tbody > tr > th:last-child, .bootstrap .table-responsive > .table-bordered > tbody > tr > td:last-child, .bootstrap .table-responsive > .table-bordered > tfoot > tr > th:last-child, .bootstrap .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0 none; +} +.bootstrap .table-responsive > .table-bordered > tbody > tr:last-child > th, .bootstrap .table-responsive > .table-bordered > tbody > tr:last-child > td, .bootstrap .table-responsive > .table-bordered > tfoot > tr:last-child > th, .bootstrap .table-responsive > .table-bordered > tfoot > tr:last-child > td { + border-bottom: 0 none; +} +} +.bootstrap fieldset { + border: 0 none; + margin: 0; + min-width: 0; + padding: 0; +} +.bootstrap legend { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + border-color: -moz-use-text-color -moz-use-text-color #e5e5e5; + border-image: none; + border-style: none none solid; + border-width: 0 0 1px; + color: #333; + display: block; + font-size: 18px; + line-height: inherit; + margin-bottom: 17px; + padding: 0; + width: 100%; +} +.bootstrap label { + display: inline-block; + font-weight: bold; + margin-bottom: 5px; + max-width: 100%; +} +.bootstrap input[type="search"] { + box-sizing: border-box; +} +.bootstrap input[type="radio"], .bootstrap input[type="checkbox"] { + line-height: normal; + margin: 4px 0 0; +} +.bootstrap input[type="file"] { + display: block; +} +.bootstrap input[type="range"] { + display: block; + width: 100%; +} +.bootstrap select[multiple], .bootstrap select[size] { + height: auto; +} +.bootstrap input[type="file"]:focus, .bootstrap input[type="radio"]:focus, .bootstrap input[type="checkbox"]:focus { + outline: thin dotted; + outline-offset: -2px; +} +.bootstrap output { + color: #555; + display: block; + font-size: 12px; + line-height: 1.42857; + padding-top: 5px; +} +.bootstrap .form-control, .bootstrap input[type="text"], .bootstrap input[type="search"], .bootstrap input[type="password"], .bootstrap textarea, .bootstrap select { + background-color: #fff; + background-image: none; + border: 1px solid #ccc; + border-radius: 3px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset; + color: #555; + display: block; + font-size: 12px; + height: 27px; + line-height: 1.42857; + padding: 4px 8px; + transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s; + width: 100%; +} +.bootstrap .form-control:focus, .bootstrap input[type="text"]:focus, .bootstrap input[type="search"]:focus, .bootstrap input[type="password"]:focus, .bootstrap textarea:focus, .bootstrap select:focus { + border-color: #66afe9; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6); + outline: 0 none; +} +.bootstrap .form-control::-moz-placeholder, .bootstrap input[type="text"]::-moz-placeholder, .bootstrap input[type="search"]::-moz-placeholder, .bootstrap input[type="password"]::-moz-placeholder, .bootstrap textarea::-moz-placeholder, .bootstrap select::-moz-placeholder { + color: #999; + opacity: 1; +} +.bootstrap .form-control[disabled], .bootstrap input[disabled][type="text"], .bootstrap input[disabled][type="search"], .bootstrap input[disabled][type="password"], .bootstrap textarea[disabled], .bootstrap select[disabled], .bootstrap .form-control[readonly], .bootstrap input[readonly][type="text"], .bootstrap input[readonly][type="search"], .bootstrap input[readonly][type="password"], .bootstrap textarea[readonly], .bootstrap select[readonly], fieldset[disabled] .bootstrap .form-control, fieldset[disabled] .bootstrap input[type="text"], fieldset[disabled] .bootstrap input[type="search"], fieldset[disabled] .bootstrap input[type="password"], fieldset[disabled] .bootstrap textarea, fieldset[disabled] .bootstrap select { + background-color: #eee; + cursor: not-allowed; + opacity: 1; +} +.bootstrap textarea.form-control, .bootstrap textarea { + height: auto; +} +.bootstrap input[type="search"] { +} +.bootstrap input[type="date"], .bootstrap input[type="time"], .bootstrap input[type="datetime-local"], .bootstrap input[type="month"] { + line-height: 27px; +} +.bootstrap input.input-sm[type="date"], .bootstrap .input-group-sm > input.form-control[type="date"], .bootstrap .input-group-sm > input[type="date"][type="text"], .bootstrap .input-group-sm > input[type="date"][type="search"], .bootstrap .input-group-sm > input[type="date"][type="password"], .bootstrap .input-group-sm > input.input-group-addon[type="date"], .bootstrap .input-group-sm > .input-group-btn > input.btn[type="date"], .bootstrap input.input-sm[type="time"], .bootstrap .input-group-sm > input.form-control[type="time"], .bootstrap .input-group-sm > input[type="time"][type="text"], .bootstrap .input-group-sm > input[type="time"][type="search"], .bootstrap .input-group-sm > input[type="time"][type="password"], .bootstrap .input-group-sm > input.input-group-addon[type="time"], .bootstrap .input-group-sm > .input-group-btn > input.btn[type="time"], .bootstrap input.input-sm[type="datetime-local"], .bootstrap .input-group-sm > input.form-control[type="datetime-local"], .bootstrap .input-group-sm > input[type="datetime-local"][type="text"], .bootstrap .input-group-sm > input[type="datetime-local"][type="search"], .bootstrap .input-group-sm > input[type="datetime-local"][type="password"], .bootstrap .input-group-sm > input.input-group-addon[type="datetime-local"], .bootstrap .input-group-sm > .input-group-btn > input.btn[type="datetime-local"], .bootstrap input.input-sm[type="month"], .bootstrap .input-group-sm > input.form-control[type="month"], .bootstrap .input-group-sm > input[type="month"][type="text"], .bootstrap .input-group-sm > input[type="month"][type="search"], .bootstrap .input-group-sm > input[type="month"][type="password"], .bootstrap .input-group-sm > input.input-group-addon[type="month"], .bootstrap .input-group-sm > .input-group-btn > input.btn[type="month"] { + line-height: 28px; +} +.bootstrap input.input-lg[type="date"], .bootstrap .input-group-lg > input.form-control[type="date"], .bootstrap .input-group-lg > input[type="date"][type="text"], .bootstrap .input-group-lg > input[type="date"][type="search"], .bootstrap .input-group-lg > input[type="date"][type="password"], .bootstrap .input-group-lg > input.input-group-addon[type="date"], .bootstrap .input-group-lg > .input-group-btn > input.btn[type="date"], .bootstrap input.input-lg[type="time"], .bootstrap .input-group-lg > input.form-control[type="time"], .bootstrap .input-group-lg > input[type="time"][type="text"], .bootstrap .input-group-lg > input[type="time"][type="search"], .bootstrap .input-group-lg > input[type="time"][type="password"], .bootstrap .input-group-lg > input.input-group-addon[type="time"], .bootstrap .input-group-lg > .input-group-btn > input.btn[type="time"], .bootstrap input.input-lg[type="datetime-local"], .bootstrap .input-group-lg > input.form-control[type="datetime-local"], .bootstrap .input-group-lg > input[type="datetime-local"][type="text"], .bootstrap .input-group-lg > input[type="datetime-local"][type="search"], .bootstrap .input-group-lg > input[type="datetime-local"][type="password"], .bootstrap .input-group-lg > input.input-group-addon[type="datetime-local"], .bootstrap .input-group-lg > .input-group-btn > input.btn[type="datetime-local"], .bootstrap input.input-lg[type="month"], .bootstrap .input-group-lg > input.form-control[type="month"], .bootstrap .input-group-lg > input[type="month"][type="text"], .bootstrap .input-group-lg > input[type="month"][type="search"], .bootstrap .input-group-lg > input[type="month"][type="password"], .bootstrap .input-group-lg > input.input-group-addon[type="month"], .bootstrap .input-group-lg > .input-group-btn > input.btn[type="month"] { + line-height: 42px; +} +.bootstrap .form-group { + margin-bottom: 15px; +} +.bootstrap .radio, .bootstrap .checkbox { + display: block; + margin-bottom: 10px; + margin-top: 10px; + min-height: 17px; +} +.bootstrap .radio label, .bootstrap .checkbox label { + cursor: pointer; + font-weight: normal; + margin-bottom: 0; + padding-left: 20px; +} +.bootstrap .radio input[type="radio"], .bootstrap .radio-inline input[type="radio"], .bootstrap .checkbox input[type="checkbox"], .bootstrap .checkbox-inline input[type="checkbox"] { + float: left; + margin-left: -20px; +} +.bootstrap .radio + .radio, .bootstrap .checkbox + .checkbox { + margin-top: -5px; +} +.bootstrap .radio-inline, .bootstrap .checkbox-inline { + cursor: pointer; + display: inline-block; + font-weight: normal; + margin-bottom: 0; + padding-left: 20px; + vertical-align: middle; +} +.bootstrap .radio-inline + .radio-inline, .bootstrap .checkbox-inline + .checkbox-inline { + margin-left: 10px; + margin-top: 0; +} +.bootstrap input[type="radio"][disabled], fieldset[disabled] .bootstrap input[type="radio"], .bootstrap input[type="checkbox"][disabled], fieldset[disabled] .bootstrap input[type="checkbox"], .bootstrap .radio[disabled], fieldset[disabled] .bootstrap .radio, .bootstrap .radio-inline[disabled], fieldset[disabled] .bootstrap .radio-inline, .bootstrap .checkbox[disabled], fieldset[disabled] .bootstrap .checkbox, .bootstrap .checkbox-inline[disabled], fieldset[disabled] .bootstrap .checkbox-inline { + cursor: not-allowed; +} +.bootstrap .input-sm, .bootstrap .input-group-sm > .form-control, .bootstrap .input-group-sm > input[type="text"], .bootstrap .input-group-sm > input[type="search"], .bootstrap .input-group-sm > input[type="password"], .bootstrap .input-group-sm > textarea, .bootstrap .input-group-sm > select, .bootstrap .input-group-sm > .input-group-addon, .bootstrap .input-group-sm > .input-group-btn > .btn { + border-radius: 3px; + font-size: 11px; + height: 28px; + line-height: 1.5; + padding: 5px 10px; +} +.bootstrap select.input-sm, .bootstrap .input-group-sm > select.form-control, .bootstrap .input-group-sm > select, .bootstrap .input-group-sm > select.input-group-addon, .bootstrap .input-group-sm > .input-group-btn > select.btn { + height: 28px; + line-height: 28px; +} +.bootstrap textarea.input-sm, .bootstrap .input-group-sm > textarea.form-control, .bootstrap .input-group-sm > textarea, .bootstrap .input-group-sm > textarea.input-group-addon, .bootstrap .input-group-sm > .input-group-btn > textarea.btn, .bootstrap select.input-sm[multiple], .bootstrap .input-group-sm > select[multiple], .bootstrap .input-group-sm > .input-group-btn > select.btn[multiple] { + height: auto; +} +.bootstrap .input-lg, .bootstrap .input-group-lg > .form-control, .bootstrap .input-group-lg > input[type="text"], .bootstrap .input-group-lg > input[type="search"], .bootstrap .input-group-lg > input[type="password"], .bootstrap .input-group-lg > textarea, .bootstrap .input-group-lg > select, .bootstrap .input-group-lg > .input-group-addon, .bootstrap .input-group-lg > .input-group-btn > .btn { + border-radius: 6px; + font-size: 15px; + height: 42px; + line-height: 1.33; + padding: 10px 16px; +} +.bootstrap select.input-lg, .bootstrap .input-group-lg > select.form-control, .bootstrap .input-group-lg > select, .bootstrap .input-group-lg > select.input-group-addon, .bootstrap .input-group-lg > .input-group-btn > select.btn { + height: 42px; + line-height: 42px; +} +.bootstrap textarea.input-lg, .bootstrap .input-group-lg > textarea.form-control, .bootstrap .input-group-lg > textarea, .bootstrap .input-group-lg > textarea.input-group-addon, .bootstrap .input-group-lg > .input-group-btn > textarea.btn, .bootstrap select.input-lg[multiple], .bootstrap .input-group-lg > select[multiple], .bootstrap .input-group-lg > .input-group-btn > select.btn[multiple] { + height: auto; +} +.bootstrap .has-feedback { + position: relative; +} +.bootstrap .has-feedback .form-control, .bootstrap .has-feedback input[type="text"], .bootstrap .has-feedback input[type="search"], .bootstrap .has-feedback input[type="password"], .bootstrap .has-feedback textarea, .bootstrap .has-feedback select { + padding-right: 33.75px; +} +.bootstrap .form-control-feedback { + display: block; + height: 27px; + line-height: 27px; + position: absolute; + right: 0; + text-align: center; + top: 22px; + width: 27px; + z-index: 2; +} +.bootstrap .input-lg + .form-control-feedback, .bootstrap .input-group-lg > .form-control + .form-control-feedback, .bootstrap .input-group-lg > input[type="text"] + .form-control-feedback, .bootstrap .input-group-lg > input[type="search"] + .form-control-feedback, .bootstrap .input-group-lg > input[type="password"] + .form-control-feedback, .bootstrap .input-group-lg > textarea + .form-control-feedback, .bootstrap .input-group-lg > select + .form-control-feedback, .bootstrap .input-group-lg > .input-group-addon + .form-control-feedback, .bootstrap .input-group-lg > .input-group-btn > .btn + .form-control-feedback { + height: 42px; + line-height: 42px; + width: 42px; +} +.bootstrap .input-sm + .form-control-feedback, .bootstrap .input-group-sm > .form-control + .form-control-feedback, .bootstrap .input-group-sm > input[type="text"] + .form-control-feedback, .bootstrap .input-group-sm > input[type="search"] + .form-control-feedback, .bootstrap .input-group-sm > input[type="password"] + .form-control-feedback, .bootstrap .input-group-sm > textarea + .form-control-feedback, .bootstrap .input-group-sm > select + .form-control-feedback, .bootstrap .input-group-sm > .input-group-addon + .form-control-feedback, .bootstrap .input-group-sm > .input-group-btn > .btn + .form-control-feedback { + height: 28px; + line-height: 28px; + width: 28px; +} +.bootstrap .has-success .help-block, .bootstrap .has-success .control-label, .bootstrap .has-success .radio, .bootstrap .has-success .checkbox, .bootstrap .has-success .radio-inline, .bootstrap .has-success .checkbox-inline { + color: #3c763d; +} +.bootstrap .has-success .form-control, .bootstrap .has-success input[type="text"], .bootstrap .has-success input[type="search"], .bootstrap .has-success input[type="password"], .bootstrap .has-success textarea, .bootstrap .has-success select { + border-color: #3c763d; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset; +} +.bootstrap .has-success .form-control:focus, .bootstrap .has-success input[type="text"]:focus, .bootstrap .has-success input[type="search"]:focus, .bootstrap .has-success input[type="password"]:focus, .bootstrap .has-success textarea:focus, .bootstrap .has-success select:focus { + border-color: #2b542c; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px #67b168; +} +.bootstrap .has-success .input-group-addon { + background-color: #dff0d8; + border-color: #3c763d; + color: #3c763d; +} +.bootstrap .has-success .form-control-feedback { + color: #3c763d; +} +.bootstrap .has-warning .help-block, .bootstrap .has-warning .control-label, .bootstrap .has-warning .radio, .bootstrap .has-warning .checkbox, .bootstrap .has-warning .radio-inline, .bootstrap .has-warning .checkbox-inline { + color: #8a6d3b; +} +.bootstrap .has-warning .form-control, .bootstrap .has-warning input[type="text"], .bootstrap .has-warning input[type="search"], .bootstrap .has-warning input[type="password"], .bootstrap .has-warning textarea, .bootstrap .has-warning select { + border-color: #8a6d3b; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset; +} +.bootstrap .has-warning .form-control:focus, .bootstrap .has-warning input[type="text"]:focus, .bootstrap .has-warning input[type="search"]:focus, .bootstrap .has-warning input[type="password"]:focus, .bootstrap .has-warning textarea:focus, .bootstrap .has-warning select:focus { + border-color: #66512c; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px #c0a16b; +} +.bootstrap .has-warning .input-group-addon { + background-color: #fcf8e3; + border-color: #8a6d3b; + color: #8a6d3b; +} +.bootstrap .has-warning .form-control-feedback { + color: #8a6d3b; +} +.bootstrap .has-error .help-block, .bootstrap .has-error .control-label, .bootstrap .has-error .radio, .bootstrap .has-error .checkbox, .bootstrap .has-error .radio-inline, .bootstrap .has-error .checkbox-inline { + color: #a94442; +} +.bootstrap .has-error .form-control, .bootstrap .has-error input[type="text"], .bootstrap .has-error input[type="search"], .bootstrap .has-error input[type="password"], .bootstrap .has-error textarea, .bootstrap .has-error select { + border-color: #a94442; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset; +} +.bootstrap .has-error .form-control:focus, .bootstrap .has-error input[type="text"]:focus, .bootstrap .has-error input[type="search"]:focus, .bootstrap .has-error input[type="password"]:focus, .bootstrap .has-error textarea:focus, .bootstrap .has-error select:focus { + border-color: #843534; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px #ce8483; +} +.bootstrap .has-error .input-group-addon { + background-color: #f2dede; + border-color: #a94442; + color: #a94442; +} +.bootstrap .has-error .form-control-feedback { + color: #a94442; +} +.bootstrap .form-control-static { + margin-bottom: 0; +} +.bootstrap .help-block { + color: #959595; + display: block; + margin-bottom: 10px; + margin-top: 5px; +} +@media (min-width: 768px) { +.bootstrap .form-inline .form-group, .bootstrap .navbar-form .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; +} +.bootstrap .form-inline .form-control, .bootstrap .navbar-form .form-control, .bootstrap .form-inline input[type="text"], .bootstrap .navbar-form input[type="text"], .bootstrap .form-inline input[type="search"], .bootstrap .navbar-form input[type="search"], .bootstrap .form-inline input[type="password"], .bootstrap .navbar-form input[type="password"], .bootstrap .form-inline textarea, .bootstrap .navbar-form textarea, .bootstrap .form-inline select, .bootstrap .navbar-form select { + display: inline-block; + vertical-align: middle; + width: auto; +} +.bootstrap .form-inline .input-group, .bootstrap .navbar-form .input-group { + display: inline-table; + vertical-align: middle; +} +.bootstrap .form-inline .input-group .input-group-addon, .bootstrap .navbar-form .input-group .input-group-addon, .bootstrap .form-inline .input-group .input-group-btn, .bootstrap .navbar-form .input-group .input-group-btn, .bootstrap .form-inline .input-group .form-control, .bootstrap .navbar-form .input-group .form-control, .bootstrap .form-inline .input-group input[type="text"], .bootstrap .navbar-form .input-group input[type="text"], .bootstrap .form-inline .input-group input[type="search"], .bootstrap .navbar-form .input-group input[type="search"], .bootstrap .form-inline .input-group input[type="password"], .bootstrap .navbar-form .input-group input[type="password"], .bootstrap .form-inline .input-group textarea, .bootstrap .navbar-form .input-group textarea, .bootstrap .form-inline .input-group select, .bootstrap .navbar-form .input-group select { + width: auto; +} +.bootstrap .form-inline .input-group > .form-control, .bootstrap .navbar-form .input-group > .form-control, .bootstrap .form-inline .input-group > input[type="text"], .bootstrap .navbar-form .input-group > input[type="text"], .bootstrap .form-inline .input-group > input[type="search"], .bootstrap .navbar-form .input-group > input[type="search"], .bootstrap .form-inline .input-group > input[type="password"], .bootstrap .navbar-form .input-group > input[type="password"], .bootstrap .form-inline .input-group > textarea, .bootstrap .navbar-form .input-group > textarea, .bootstrap .form-inline .input-group > select, .bootstrap .navbar-form .input-group > select { + width: 100%; +} +.bootstrap .form-inline .control-label, .bootstrap .navbar-form .control-label { + margin-bottom: 0; + vertical-align: middle; +} +.bootstrap .form-inline .radio, .bootstrap .navbar-form .radio, .bootstrap .form-inline .checkbox, .bootstrap .navbar-form .checkbox { + display: inline-block; + margin-bottom: 0; + margin-top: 0; + padding-left: 0; + vertical-align: middle; +} +.bootstrap .form-inline .radio input[type="radio"], .bootstrap .navbar-form .radio input[type="radio"], .bootstrap .form-inline .checkbox input[type="checkbox"], .bootstrap .navbar-form .checkbox input[type="checkbox"] { + float: none; + margin-left: 0; +} +.bootstrap .form-inline .has-feedback .form-control-feedback, .bootstrap .navbar-form .has-feedback .form-control-feedback { + top: 0; +} +} +.bootstrap .form-horizontal .radio, .bootstrap .form-horizontal .checkbox, .bootstrap .form-horizontal .radio-inline, .bootstrap .form-horizontal .checkbox-inline { + margin-bottom: 0; + margin-top: 0; + padding-top: 5px; +} +.bootstrap .form-horizontal .radio, .bootstrap .form-horizontal .checkbox { + min-height: 22px; +} +.bootstrap .form-horizontal .form-group { + margin-left: -5px; + margin-right: -5px; +} +.bootstrap .form-horizontal .form-group:before, .bootstrap .form-horizontal .form-group:after { + content: " "; + display: table; +} +.bootstrap .form-horizontal .form-group:after { + clear: both; +} +.bootstrap .form-horizontal .form-control-static { + padding-bottom: 5px; + padding-top: 5px; +} +@media (min-width: 768px) { +.bootstrap .form-horizontal .control-label { + margin-bottom: 0; + padding-top: 5px; + text-align: right; +} +} +.bootstrap .form-horizontal .has-feedback .form-control-feedback { + right: 5px; + top: 0; +} +.bootstrap .btn { + -moz-user-select: none; + background-image: none; + border: 1px solid transparent; + border-radius: 3px; + cursor: pointer; + display: inline-block; + font-size: 12px; + font-weight: normal; + line-height: 1.42857; + margin-bottom: 0; + padding: 4px 8px; + text-align: center; + vertical-align: middle; + white-space: nowrap; +} +.bootstrap .btn:focus, .bootstrap .btn:active:focus, .bootstrap .btn.active:focus { + outline: thin dotted; + outline-offset: -2px; +} +.bootstrap .btn:hover, .bootstrap .btn:focus { + color: #555; + text-decoration: none; +} +.bootstrap .btn:active, .bootstrap .btn.active { + background-image: none; + box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset; + outline: 0 none; +} +.bootstrap .btn.disabled, .bootstrap .btn[disabled], fieldset[disabled] .bootstrap .btn { + box-shadow: none; + cursor: not-allowed; + opacity: 0.65; + pointer-events: none; +} +.bootstrap .btn-default { + background-color: #fff; + border-color: #ccc; + color: #555; +} +.bootstrap .btn-default:hover, .bootstrap .btn-default:focus, .bootstrap .btn-default:active, .bootstrap .btn-default.active, .open > .bootstrap .btn-default.dropdown-toggle { + background-color: #e6e6e6; + border-color: #adadad; + color: #555; +} +.bootstrap .btn-default:active, .bootstrap .btn-default.active, .open > .bootstrap .btn-default.dropdown-toggle { + background-image: none; +} +.bootstrap .btn-default.disabled, .bootstrap .btn-default.disabled:hover, .bootstrap .btn-default.disabled:focus, .bootstrap .btn-default.disabled:active, .bootstrap .btn-default.disabled.active, .bootstrap .btn-default[disabled], .bootstrap .btn-default[disabled]:hover, .bootstrap .btn-default[disabled]:focus, .bootstrap .btn-default[disabled]:active, .bootstrap .btn-default.active[disabled], fieldset[disabled] .bootstrap .btn-default, fieldset[disabled] .bootstrap .btn-default:hover, fieldset[disabled] .bootstrap .btn-default:focus, fieldset[disabled] .bootstrap .btn-default:active, fieldset[disabled] .bootstrap .btn-default.active { + background-color: #fff; + border-color: #ccc; +} +.bootstrap .btn-default .badge, .bootstrap .btn-default #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .btn-default .notifs_badge, .bootstrap .btn-default .module-badge-popular, .bootstrap .btn-default .module-badge-partner, .bootstrap .btn-default .module-badge-bought { + background-color: #555; + color: #fff; +} +.bootstrap .btn-primary { + background-color: #fff; + border-color: #79bd3c; + color: #555; +} +.bootstrap .btn-primary:hover, .bootstrap .btn-primary:focus, .bootstrap .btn-primary:active, .bootstrap .btn-primary.active, .open > .bootstrap .btn-primary.dropdown-toggle { + background-color: #e6e6e6; + border-color: #5b8f2d; + color: #555; +} +.bootstrap .btn-primary:active, .bootstrap .btn-primary.active, .open > .bootstrap .btn-primary.dropdown-toggle { + background-image: none; +} +.bootstrap .btn-primary.disabled, .bootstrap .btn-primary.disabled:hover, .bootstrap .btn-primary.disabled:focus, .bootstrap .btn-primary.disabled:active, .bootstrap .btn-primary.disabled.active, .bootstrap .btn-primary[disabled], .bootstrap .btn-primary[disabled]:hover, .bootstrap .btn-primary[disabled]:focus, .bootstrap .btn-primary[disabled]:active, .bootstrap .btn-primary.active[disabled], fieldset[disabled] .bootstrap .btn-primary, fieldset[disabled] .bootstrap .btn-primary:hover, fieldset[disabled] .bootstrap .btn-primary:focus, fieldset[disabled] .bootstrap .btn-primary:active, fieldset[disabled] .bootstrap .btn-primary.active { + background-color: #fff; + border-color: #79bd3c; +} +.bootstrap .btn-primary .badge, .bootstrap .btn-primary #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .btn-primary .notifs_badge, .bootstrap .btn-primary .module-badge-popular, .bootstrap .btn-primary .module-badge-partner, .bootstrap .btn-primary .module-badge-bought { + background-color: #555; + color: #fff; +} +.bootstrap .btn-success { + background-color: #79bd3c; + border-color: #6caa36; + color: #fff; +} +.bootstrap .btn-success:hover, .bootstrap .btn-success:focus, .bootstrap .btn-success:active, .bootstrap .btn-success.active, .open > .bootstrap .btn-success.dropdown-toggle { + background-color: #609730; + border-color: #4f7c27; + color: #fff; +} +.bootstrap .btn-success:active, .bootstrap .btn-success.active, .open > .bootstrap .btn-success.dropdown-toggle { + background-image: none; +} +.bootstrap .btn-success.disabled, .bootstrap .btn-success.disabled:hover, .bootstrap .btn-success.disabled:focus, .bootstrap .btn-success.disabled:active, .bootstrap .btn-success.disabled.active, .bootstrap .btn-success[disabled], .bootstrap .btn-success[disabled]:hover, .bootstrap .btn-success[disabled]:focus, .bootstrap .btn-success[disabled]:active, .bootstrap .btn-success.active[disabled], fieldset[disabled] .bootstrap .btn-success, fieldset[disabled] .bootstrap .btn-success:hover, fieldset[disabled] .bootstrap .btn-success:focus, fieldset[disabled] .bootstrap .btn-success:active, fieldset[disabled] .bootstrap .btn-success.active { + background-color: #79bd3c; + border-color: #6caa36; +} +.bootstrap .btn-success .badge, .bootstrap .btn-success #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .btn-success .notifs_badge, .bootstrap .btn-success .module-badge-popular, .bootstrap .btn-success .module-badge-partner, .bootstrap .btn-success .module-badge-bought { + background-color: #fff; + color: #79bd3c; +} +.bootstrap .btn-info { + background-color: #5bc0de; + border-color: #46b8da; + color: #fff; +} +.bootstrap .btn-info:hover, .bootstrap .btn-info:focus, .bootstrap .btn-info:active, .bootstrap .btn-info.active, .open > .bootstrap .btn-info.dropdown-toggle { + background-color: #31b0d5; + border-color: #269abc; + color: #fff; +} +.bootstrap .btn-info:active, .bootstrap .btn-info.active, .open > .bootstrap .btn-info.dropdown-toggle { + background-image: none; +} +.bootstrap .btn-info.disabled, .bootstrap .btn-info.disabled:hover, .bootstrap .btn-info.disabled:focus, .bootstrap .btn-info.disabled:active, .bootstrap .btn-info.disabled.active, .bootstrap .btn-info[disabled], .bootstrap .btn-info[disabled]:hover, .bootstrap .btn-info[disabled]:focus, .bootstrap .btn-info[disabled]:active, .bootstrap .btn-info.active[disabled], fieldset[disabled] .bootstrap .btn-info, fieldset[disabled] .bootstrap .btn-info:hover, fieldset[disabled] .bootstrap .btn-info:focus, fieldset[disabled] .bootstrap .btn-info:active, fieldset[disabled] .bootstrap .btn-info.active { + background-color: #5bc0de; + border-color: #46b8da; +} +.bootstrap .btn-info .badge, .bootstrap .btn-info #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .btn-info .notifs_badge, .bootstrap .btn-info .module-badge-popular, .bootstrap .btn-info .module-badge-partner, .bootstrap .btn-info .module-badge-bought { + background-color: #fff; + color: #5bc0de; +} +.bootstrap .btn-warning { + background-color: #f0ad4e; + border-color: #eea236; + color: #fff; +} +.bootstrap .btn-warning:hover, .bootstrap .btn-warning:focus, .bootstrap .btn-warning:active, .bootstrap .btn-warning.active, .open > .bootstrap .btn-warning.dropdown-toggle { + background-color: #ec971f; + border-color: #d58512; + color: #fff; +} +.bootstrap .btn-warning:active, .bootstrap .btn-warning.active, .open > .bootstrap .btn-warning.dropdown-toggle { + background-image: none; +} +.bootstrap .btn-warning.disabled, .bootstrap .btn-warning.disabled:hover, .bootstrap .btn-warning.disabled:focus, .bootstrap .btn-warning.disabled:active, .bootstrap .btn-warning.disabled.active, .bootstrap .btn-warning[disabled], .bootstrap .btn-warning[disabled]:hover, .bootstrap .btn-warning[disabled]:focus, .bootstrap .btn-warning[disabled]:active, .bootstrap .btn-warning.active[disabled], fieldset[disabled] .bootstrap .btn-warning, fieldset[disabled] .bootstrap .btn-warning:hover, fieldset[disabled] .bootstrap .btn-warning:focus, fieldset[disabled] .bootstrap .btn-warning:active, fieldset[disabled] .bootstrap .btn-warning.active { + background-color: #f0ad4e; + border-color: #eea236; +} +.bootstrap .btn-warning .badge, .bootstrap .btn-warning #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .btn-warning .notifs_badge, .bootstrap .btn-warning .module-badge-popular, .bootstrap .btn-warning .module-badge-partner, .bootstrap .btn-warning .module-badge-bought { + background-color: #fff; + color: #f0ad4e; +} +.bootstrap .btn-danger { + background-color: #d9534f; + border-color: #d43f3a; + color: #fff; +} +.bootstrap .btn-danger:hover, .bootstrap .btn-danger:focus, .bootstrap .btn-danger:active, .bootstrap .btn-danger.active, .open > .bootstrap .btn-danger.dropdown-toggle { + background-color: #c9302c; + border-color: #ac2925; + color: #fff; +} +.bootstrap .btn-danger:active, .bootstrap .btn-danger.active, .open > .bootstrap .btn-danger.dropdown-toggle { + background-image: none; +} +.bootstrap .btn-danger.disabled, .bootstrap .btn-danger.disabled:hover, .bootstrap .btn-danger.disabled:focus, .bootstrap .btn-danger.disabled:active, .bootstrap .btn-danger.disabled.active, .bootstrap .btn-danger[disabled], .bootstrap .btn-danger[disabled]:hover, .bootstrap .btn-danger[disabled]:focus, .bootstrap .btn-danger[disabled]:active, .bootstrap .btn-danger.active[disabled], fieldset[disabled] .bootstrap .btn-danger, fieldset[disabled] .bootstrap .btn-danger:hover, fieldset[disabled] .bootstrap .btn-danger:focus, fieldset[disabled] .bootstrap .btn-danger:active, fieldset[disabled] .bootstrap .btn-danger.active { + background-color: #d9534f; + border-color: #d43f3a; +} +.bootstrap .btn-danger .badge, .bootstrap .btn-danger #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .btn-danger .notifs_badge, .bootstrap .btn-danger .module-badge-popular, .bootstrap .btn-danger .module-badge-partner, .bootstrap .btn-danger .module-badge-bought { + background-color: #fff; + color: #d9534f; +} +.bootstrap .btn-link { + border-radius: 0; + color: #00aff0; + cursor: pointer; + font-weight: normal; +} +.bootstrap .btn-link, .bootstrap .btn-link:active, .bootstrap .btn-link[disabled], fieldset[disabled] .bootstrap .btn-link { + background-color: transparent; + box-shadow: none; +} +.bootstrap .btn-link, .bootstrap .btn-link:hover, .bootstrap .btn-link:focus, .bootstrap .btn-link:active { + border-color: transparent; +} +.bootstrap .btn-link:hover, .bootstrap .btn-link:focus { + background-color: transparent; + color: #0077a3; + text-decoration: underline; +} +.bootstrap .btn-link[disabled]:hover, .bootstrap .btn-link[disabled]:focus, fieldset[disabled] .bootstrap .btn-link:hover, fieldset[disabled] .bootstrap .btn-link:focus { + color: #999; + text-decoration: none; +} +.bootstrap .btn-lg, .bootstrap .btn-group-lg > .btn { + border-radius: 6px; + font-size: 15px; + line-height: 1.33; + padding: 10px 16px; +} +.bootstrap .btn-sm, .bootstrap .btn-group-sm > .btn { + border-radius: 3px; + font-size: 11px; + line-height: 1.5; + padding: 5px 10px; +} +.bootstrap .btn-xs, .bootstrap .btn-group-xs > .btn { + border-radius: 3px; + font-size: 11px; + line-height: 1.5; + padding: 1px 5px; +} +.bootstrap .btn-block { + display: block; + padding-left: 0; + padding-right: 0; + width: 100%; +} +.bootstrap .btn-block + .btn-block { + margin-top: 5px; +} +.bootstrap input.btn-block[type="submit"], .bootstrap input.btn-block[type="reset"], .bootstrap input.btn-block[type="button"] { + width: 100%; +} +.bootstrap .fade { + opacity: 0; + transition: opacity 0.15s linear 0s; +} +.bootstrap .fade.in { + opacity: 1; +} +.bootstrap .collapse { + display: none; +} +.bootstrap .collapse.in { + display: block; +} +.bootstrap tr.collapse.in { + display: table-row; +} +.bootstrap tbody.collapse.in { + display: table-row-group; +} +.bootstrap .collapsing { + height: 0; + overflow: hidden; + position: relative; + transition: height 0.35s ease 0s; +} +.bootstrap .caret { + border-left: 4px solid transparent; + border-right: 4px solid transparent; + border-top: 4px solid; + display: inline-block; + height: 0; + margin-left: 2px; + vertical-align: middle; + width: 0; +} +.bootstrap .dropdown { + position: relative; +} +.bootstrap .dropdown-toggle:focus { + outline: 0 none; +} +.bootstrap .dropdown-menu { + background-clip: padding-box; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 3px; + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); + display: none; + float: left; + font-size: 12px; + left: 0; + list-style: outside none none; + margin: 2px 0 0; + min-width: 160px; + padding: 5px 0; + position: absolute; + text-align: left; + top: 100%; + z-index: 1000; +} +.bootstrap .dropdown-menu.pull-right { + left: auto; + right: 0; +} +.bootstrap .dropdown-menu .divider { + background-color: #e5e5e5; + height: 1px; + margin: 7.5px 0; + overflow: hidden; +} +.bootstrap .dropdown-menu > li > a { + clear: both; + color: #333; + display: block; + font-weight: normal; + line-height: 1.42857; + padding: 3px 20px; + white-space: nowrap; +} +.bootstrap .dropdown-menu > li > a:hover, .bootstrap .dropdown-menu > li > a:focus { + background-color: #00aff0; + color: #fff; + text-decoration: none; +} +.bootstrap .dropdown-menu > .active > a, .bootstrap .dropdown-menu > .active > a:hover, .bootstrap .dropdown-menu > .active > a:focus { + background-color: #00aff0; + color: #fff; + outline: 0 none; + text-decoration: none; +} +.bootstrap .dropdown-menu > .disabled > a, .bootstrap .dropdown-menu > .disabled > a:hover, .bootstrap .dropdown-menu > .disabled > a:focus { + color: #999; +} +.bootstrap .dropdown-menu > .disabled > a:hover, .bootstrap .dropdown-menu > .disabled > a:focus { + background-color: transparent; + background-image: none; + cursor: not-allowed; + text-decoration: none; +} +.bootstrap .open > .dropdown-menu { + display: block; +} +.bootstrap .open > a { + outline: 0 none; +} +.bootstrap .dropdown-menu-right { + left: auto; + right: 0; +} +.bootstrap .dropdown-menu-left { + left: 0; + right: auto; +} +.bootstrap .dropdown-header { + color: #999; + display: block; + font-size: 11px; + line-height: 1.42857; + padding: 3px 20px; +} +.bootstrap .dropdown-backdrop { + bottom: 0; + left: 0; + position: fixed; + right: 0; + top: 0; + z-index: 990; +} +.bootstrap .pull-right > .dropdown-menu { + left: auto; + right: 0; +} +.bootstrap .dropup .caret, .bootstrap .navbar-fixed-bottom .dropdown .caret { + border-bottom: 4px solid; + border-top: 0 none; + content: ""; +} +.bootstrap .dropup .dropdown-menu, .bootstrap .navbar-fixed-bottom .dropdown .dropdown-menu { + bottom: 100%; + margin-bottom: 1px; + top: auto; +} +@media (min-width: 768px) { +.bootstrap .navbar-right .dropdown-menu, .bootstrap #header_employee_box .dropdown-menu { + left: auto; + right: 0; +} +.bootstrap .navbar-right .dropdown-menu-left, .bootstrap #header_employee_box .dropdown-menu-left { + left: 0; + right: auto; +} +} +.bootstrap .btn-group, .bootstrap .btn-group-vertical { + display: inline-block; + position: relative; + vertical-align: middle; +} +.bootstrap .btn-group > .btn, .bootstrap .btn-group-vertical > .btn { + float: left; + position: relative; +} +.bootstrap .btn-group > .btn:hover, .bootstrap .btn-group > .btn:focus, .bootstrap .btn-group > .btn:active, .bootstrap .btn-group > .btn.active, .bootstrap .btn-group-vertical > .btn:hover, .bootstrap .btn-group-vertical > .btn:focus, .bootstrap .btn-group-vertical > .btn:active, .bootstrap .btn-group-vertical > .btn.active { + z-index: 2; +} +.bootstrap .btn-group > .btn:focus, .bootstrap .btn-group-vertical > .btn:focus { + outline: 0 none; +} +.bootstrap .btn-group .btn + .btn, .bootstrap .btn-group .btn + .btn-group, .bootstrap .btn-group .btn-group + .btn, .bootstrap .btn-group .btn-group + .btn-group { + margin-left: -1px; +} +.bootstrap .btn-toolbar { + margin-left: -5px; +} +.bootstrap .btn-toolbar:before, .bootstrap .btn-toolbar:after { + content: " "; + display: table; +} +.bootstrap .btn-toolbar:after { + clear: both; +} +.bootstrap .btn-toolbar .btn-group, .bootstrap .btn-toolbar .input-group { + float: left; +} +.bootstrap .btn-toolbar > .btn, .bootstrap .btn-toolbar > .btn-group, .bootstrap .btn-toolbar > .input-group { + margin-left: 5px; +} +.bootstrap .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; +} +.bootstrap .btn-group > .btn:first-child { + margin-left: 0; +} +.bootstrap .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-bottom-right-radius: 0; + border-top-right-radius: 0; +} +.bootstrap .btn-group > .btn:last-child:not(:first-child), .bootstrap .btn-group > .dropdown-toggle:not(:first-child) { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} +.bootstrap .btn-group > .btn-group { + float: left; +} +.bootstrap .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} +.bootstrap .btn-group > .btn-group:first-child > .btn:last-child, .bootstrap .btn-group > .btn-group:first-child > .dropdown-toggle { + border-bottom-right-radius: 0; + border-top-right-radius: 0; +} +.bootstrap .btn-group > .btn-group:last-child > .btn:first-child { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} +.bootstrap .btn-group .dropdown-toggle:active, .bootstrap .btn-group.open .dropdown-toggle { + outline: 0 none; +} +.bootstrap .btn-group > .btn + .dropdown-toggle { + padding-left: 8px; + padding-right: 8px; +} +.bootstrap .btn-group > .btn-lg + .dropdown-toggle, .bootstrap .btn-group-lg.btn-group > .btn + .dropdown-toggle { + padding-left: 12px; + padding-right: 12px; +} +.bootstrap .btn-group.open .dropdown-toggle { + box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset; +} +.bootstrap .btn-group.open .dropdown-toggle.btn-link { + box-shadow: none; +} +.bootstrap .btn .caret { + margin-left: 0; +} +.bootstrap .btn-lg .caret, .bootstrap .btn-group-lg > .btn .caret { + border-width: 5px 5px 0; +} +.bootstrap .dropup .btn-lg .caret, .bootstrap .dropup .btn-group-lg > .btn .caret { + border-width: 0 5px 5px; +} +.bootstrap .btn-group-vertical > .btn, .bootstrap .btn-group-vertical > .btn-group, .bootstrap .btn-group-vertical > .btn-group > .btn { + display: block; + float: none; + max-width: 100%; + width: 100%; +} +.bootstrap .btn-group-vertical > .btn-group:before, .bootstrap .btn-group-vertical > .btn-group:after { + content: " "; + display: table; +} +.bootstrap .btn-group-vertical > .btn-group:after { + clear: both; +} +.bootstrap .btn-group-vertical > .btn-group > .btn { + float: none; +} +.bootstrap .btn-group-vertical > .btn + .btn, .bootstrap .btn-group-vertical > .btn + .btn-group, .bootstrap .btn-group-vertical > .btn-group + .btn, .bootstrap .btn-group-vertical > .btn-group + .btn-group { + margin-left: 0; + margin-top: -1px; +} +.bootstrap .btn-group-vertical > .btn:not(:first-child):not(:last-child) { + border-radius: 0; +} +.bootstrap .btn-group-vertical > .btn:first-child:not(:last-child) { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + border-top-right-radius: 3px; +} +.bootstrap .btn-group-vertical > .btn:last-child:not(:first-child) { + border-bottom-left-radius: 3px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.bootstrap .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} +.bootstrap .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .bootstrap .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} +.bootstrap .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.bootstrap .btn-group-justified { + border-collapse: separate; + display: table; + table-layout: fixed; + width: 100%; +} +.bootstrap .btn-group-justified > .btn, .bootstrap .btn-group-justified > .btn-group { + display: table-cell; + float: none; + width: 1%; +} +.bootstrap .btn-group-justified > .btn-group .btn { + width: 100%; +} +.bootstrap [data-toggle="buttons"] > .btn > input[type="radio"], .bootstrap [data-toggle="buttons"] > .btn > input[type="checkbox"] { + opacity: 0; + position: absolute; + z-index: -1; +} +.bootstrap .input-group { + border-collapse: separate; + display: table; + position: relative; +} +.bootstrap .input-group[class*="col-"] { + float: none; + padding-left: 0; + padding-right: 0; +} +.bootstrap .input-group .form-control, .bootstrap .input-group input[type="text"], .bootstrap .input-group input[type="search"], .bootstrap .input-group input[type="password"], .bootstrap .input-group textarea, .bootstrap .input-group select { + float: left; + margin-bottom: 0; + position: relative; + width: 100%; + z-index: 2; +} +.bootstrap .input-group-addon, .bootstrap .input-group-btn, .bootstrap .input-group .form-control, .bootstrap .input-group input[type="text"], .bootstrap .input-group input[type="search"], .bootstrap .input-group input[type="password"], .bootstrap .input-group textarea, .bootstrap .input-group select { + display: table-cell; +} +.bootstrap .input-group-addon:not(:first-child):not(:last-child), .bootstrap .input-group-btn:not(:first-child):not(:last-child), .bootstrap .input-group .form-control:not(:first-child):not(:last-child), .bootstrap .input-group input[type="text"]:not(:first-child):not(:last-child), .bootstrap .input-group input[type="search"]:not(:first-child):not(:last-child), .bootstrap .input-group input[type="password"]:not(:first-child):not(:last-child), .bootstrap .input-group textarea:not(:first-child):not(:last-child), .bootstrap .input-group select:not(:first-child):not(:last-child) { + border-radius: 0; +} +.bootstrap .input-group-addon, .bootstrap .input-group-btn { + vertical-align: middle; + white-space: nowrap; + width: 1%; +} +.bootstrap .input-group-addon { + background-color: #eee; + border: 1px solid #ccc; + border-radius: 3px; + color: #555; + font-size: 12px; + font-weight: normal; + line-height: 1; + padding: 4px 8px; + text-align: center; +} +.bootstrap .input-group-addon.input-sm, .bootstrap .input-group-sm > .input-group-addon, .bootstrap .input-group-sm > .input-group-btn > .input-group-addon.btn { + border-radius: 3px; + font-size: 11px; + padding: 5px 10px; +} +.bootstrap .input-group-addon.input-lg, .bootstrap .input-group-lg > .input-group-addon, .bootstrap .input-group-lg > .input-group-btn > .input-group-addon.btn { + border-radius: 6px; + font-size: 15px; + padding: 10px 16px; +} +.bootstrap .input-group-addon input[type="radio"], .bootstrap .input-group-addon input[type="checkbox"] { + margin-top: 0; +} +.bootstrap .input-group .form-control:first-child, .bootstrap .input-group input[type="text"]:first-child, .bootstrap .input-group input[type="search"]:first-child, .bootstrap .input-group input[type="password"]:first-child, .bootstrap .input-group textarea:first-child, .bootstrap .input-group select:first-child, .bootstrap .input-group-addon:first-child, .bootstrap .input-group-btn:first-child > .btn, .bootstrap .input-group-btn:first-child > .btn-group > .btn, .bootstrap .input-group-btn:first-child > .dropdown-toggle, .bootstrap .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .bootstrap .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-top-right-radius: 0; +} +.bootstrap .input-group-addon:first-child { + border-right: 0 none; +} +.bootstrap .input-group .form-control:last-child, .bootstrap .input-group input[type="text"]:last-child, .bootstrap .input-group input[type="search"]:last-child, .bootstrap .input-group input[type="password"]:last-child, .bootstrap .input-group textarea:last-child, .bootstrap .input-group select:last-child, .bootstrap .input-group-addon:last-child, .bootstrap .input-group-btn:last-child > .btn, .bootstrap .input-group-btn:last-child > .btn-group > .btn, .bootstrap .input-group-btn:last-child > .dropdown-toggle, .bootstrap .input-group-btn:first-child > .btn:not(:first-child), .bootstrap .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} +.bootstrap .input-group-addon:last-child { + border-left: 0 none; +} +.bootstrap .input-group-btn { + font-size: 0; + position: relative; + white-space: nowrap; +} +.bootstrap .input-group-btn > .btn { + position: relative; +} +.bootstrap .input-group-btn > .btn + .btn { + margin-left: -1px; +} +.bootstrap .input-group-btn > .btn:hover, .bootstrap .input-group-btn > .btn:focus, .bootstrap .input-group-btn > .btn:active { + z-index: 2; +} +.bootstrap .input-group-btn:first-child > .btn, .bootstrap .input-group-btn:first-child > .btn-group { + margin-right: -1px; +} +.bootstrap .input-group-btn:last-child > .btn, .bootstrap .input-group-btn:last-child > .btn-group { + margin-left: -1px; +} +.bootstrap .nav, .bootstrap #header_notifs_icon_wrapper, .bootstrap #header_employee_box, .bootstrap #header_quick { + list-style: outside none none; + margin-bottom: 0; + padding-left: 0; +} +.bootstrap .nav:before, .bootstrap #header_notifs_icon_wrapper:before, .bootstrap #header_employee_box:before, .bootstrap #header_quick:before, .bootstrap .nav:after, .bootstrap #header_notifs_icon_wrapper:after, .bootstrap #header_employee_box:after, .bootstrap #header_quick:after { + content: " "; + display: table; +} +.bootstrap .nav:after, .bootstrap #header_notifs_icon_wrapper:after, .bootstrap #header_employee_box:after, .bootstrap #header_quick:after { + clear: both; +} +.bootstrap .nav > li, .bootstrap #header_notifs_icon_wrapper > li, .bootstrap #header_employee_box > li, .bootstrap #header_quick > li { + display: block; + position: relative; +} +.bootstrap .nav > li > a, .bootstrap #header_notifs_icon_wrapper > li > a, .bootstrap #header_employee_box > li > a, .bootstrap #header_quick > li > a { + display: block; + padding: 10px 15px; + position: relative; +} +.bootstrap .nav > li > a:hover, .bootstrap #header_notifs_icon_wrapper > li > a:hover, .bootstrap #header_employee_box > li > a:hover, .bootstrap #header_quick > li > a:hover, .bootstrap .nav > li > a:focus, .bootstrap #header_notifs_icon_wrapper > li > a:focus, .bootstrap #header_employee_box > li > a:focus, .bootstrap #header_quick > li > a:focus { + background-color: #eee; + text-decoration: none; +} +.bootstrap .nav > li.disabled > a, .bootstrap #header_notifs_icon_wrapper > li.disabled > a, .bootstrap #header_employee_box > li.disabled > a, .bootstrap #header_quick > li.disabled > a { + color: #999; +} +.bootstrap .nav > li.disabled > a:hover, .bootstrap #header_notifs_icon_wrapper > li.disabled > a:hover, .bootstrap #header_employee_box > li.disabled > a:hover, .bootstrap #header_quick > li.disabled > a:hover, .bootstrap .nav > li.disabled > a:focus, .bootstrap #header_notifs_icon_wrapper > li.disabled > a:focus, .bootstrap #header_employee_box > li.disabled > a:focus, .bootstrap #header_quick > li.disabled > a:focus { + background-color: transparent; + color: #999; + cursor: not-allowed; + text-decoration: none; +} +.bootstrap .nav .open > a, .bootstrap #header_notifs_icon_wrapper .open > a, .bootstrap #header_employee_box .open > a, .bootstrap #header_quick .open > a, .bootstrap .nav .open > a:hover, .bootstrap #header_notifs_icon_wrapper .open > a:hover, .bootstrap #header_employee_box .open > a:hover, .bootstrap #header_quick .open > a:hover, .bootstrap .nav .open > a:focus, .bootstrap #header_notifs_icon_wrapper .open > a:focus, .bootstrap #header_employee_box .open > a:focus, .bootstrap #header_quick .open > a:focus { + background-color: #eee; + border-color: #00aff0; +} +.bootstrap .nav .nav-divider, .bootstrap #header_notifs_icon_wrapper .nav-divider, .bootstrap #header_employee_box .nav-divider, .bootstrap #header_quick .nav-divider { + background-color: #e5e5e5; + height: 1px; + margin: 7.5px 0; + overflow: hidden; +} +.bootstrap .nav > li > a > img, .bootstrap #header_notifs_icon_wrapper > li > a > img, .bootstrap #header_employee_box > li > a > img, .bootstrap #header_quick > li > a > img { + max-width: none; +} +.bootstrap .nav-tabs { + border-bottom: 1px solid #ddd; +} +.bootstrap .nav-tabs > li { + float: left; + margin-bottom: -1px; +} +.bootstrap .nav-tabs > li > a { + border: 1px solid transparent; + border-radius: 3px 3px 0 0; + line-height: 1.42857; + margin-right: 2px; +} +.bootstrap .nav-tabs > li > a:hover { + border-color: #eee #eee #ddd; +} +.bootstrap .nav-tabs > li.active > a, .bootstrap .nav-tabs > li.active > a:hover, .bootstrap .nav-tabs > li.active > a:focus { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + background-color: #fff; + border-color: #ddd #ddd transparent; + border-image: none; + border-style: solid; + border-width: 1px; + color: #555; + cursor: default; +} +.bootstrap .nav-pills > li { + float: left; +} +.bootstrap .nav-pills > li > a { + border-radius: 3px; +} +.bootstrap .nav-pills > li + li { + margin-left: 2px; +} +.bootstrap .nav-pills > li.active > a, .bootstrap .nav-pills > li.active > a:hover, .bootstrap .nav-pills > li.active > a:focus { + background-color: #00aff0; + color: #fff; +} +.bootstrap .nav-stacked > li { + float: none; +} +.bootstrap .nav-stacked > li + li { + margin-left: 0; + margin-top: 2px; +} +.bootstrap .nav-justified, .bootstrap .nav-tabs.nav-justified { + width: 100%; +} +.bootstrap .nav-justified > li, .bootstrap .nav-tabs.nav-justified > li { + float: none; +} +.bootstrap .nav-justified > li > a, .bootstrap .nav-tabs.nav-justified > li > a { + margin-bottom: 5px; + text-align: center; +} +.bootstrap .nav-justified > .dropdown .dropdown-menu { + left: auto; + top: auto; +} +@media (min-width: 768px) { +.bootstrap .nav-justified > li, .bootstrap .nav-tabs.nav-justified > li { + display: table-cell; + width: 1%; +} +.bootstrap .nav-justified > li > a, .bootstrap .nav-tabs.nav-justified > li > a { + margin-bottom: 0; +} +} +.bootstrap .nav-tabs-justified, .bootstrap .nav-tabs.nav-justified { + border-bottom: 0 none; +} +.bootstrap .nav-tabs-justified > li > a, .bootstrap .nav-tabs.nav-justified > li > a { + border-radius: 3px; + margin-right: 0; +} +.bootstrap .nav-tabs-justified > .active > a, .bootstrap .nav-tabs.nav-justified > .active > a, .bootstrap .nav-tabs-justified > .active > a:hover, .bootstrap .nav-tabs.nav-justified > .active > a:hover, .bootstrap .nav-tabs-justified > .active > a:focus, .bootstrap .nav-tabs.nav-justified > .active > a:focus { + border: 1px solid #ddd; +} +@media (min-width: 768px) { +.bootstrap .nav-tabs-justified > li > a, .bootstrap .nav-tabs.nav-justified > li > a { + border-bottom: 1px solid #ddd; + border-radius: 3px 3px 0 0; +} +.bootstrap .nav-tabs-justified > .active > a, .bootstrap .nav-tabs.nav-justified > .active > a, .bootstrap .nav-tabs-justified > .active > a:hover, .bootstrap .nav-tabs.nav-justified > .active > a:hover, .bootstrap .nav-tabs-justified > .active > a:focus, .bootstrap .nav-tabs.nav-justified > .active > a:focus { + border-bottom-color: #fff; +} +} +.bootstrap .tab-content > .tab-pane { + display: none; +} +.bootstrap .tab-content > .active { + display: block; +} +.bootstrap .nav-tabs .dropdown-menu { + border-top-left-radius: 0; + border-top-right-radius: 0; + margin-top: -1px; +} +.bootstrap .navbar, .bootstrap #header_infos { + border: 1px solid transparent; + margin-bottom: 17px; + min-height: 35px; + position: relative; +} +.bootstrap .navbar:before, .bootstrap #header_infos:before, .bootstrap .navbar:after, .bootstrap #header_infos:after { + content: " "; + display: table; +} +.bootstrap .navbar:after, .bootstrap #header_infos:after { + clear: both; +} +@media (min-width: 768px) { +.bootstrap .navbar, .bootstrap #header_infos { + border-radius: 3px; +} +} +.bootstrap .navbar-header:before, .bootstrap .navbar-header:after { + content: " "; + display: table; +} +.bootstrap .navbar-header:after { + clear: both; +} +@media (min-width: 768px) { +.bootstrap .navbar-header { + float: left; +} +} +.bootstrap .navbar-collapse { + border-top: 1px solid transparent; + box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset; + overflow-x: visible; + padding-left: 5px; + padding-right: 5px; +} +.bootstrap .navbar-collapse:before, .bootstrap .navbar-collapse:after { + content: " "; + display: table; +} +.bootstrap .navbar-collapse:after { + clear: both; +} +.bootstrap .navbar-collapse.in { + overflow-y: auto; +} +@media (min-width: 768px) { +.bootstrap .navbar-collapse { + border-top: 0 none; + box-shadow: none; + width: auto; +} +.bootstrap .navbar-collapse.collapse { + display: block !important; + height: auto !important; + overflow: visible !important; + padding-bottom: 0; +} +.bootstrap .navbar-collapse.in { + overflow-y: visible; +} +.navbar-fixed-top .bootstrap .navbar-collapse, #header_infos .bootstrap .navbar-collapse, .navbar-static-top .bootstrap .navbar-collapse, .navbar-fixed-bottom .bootstrap .navbar-collapse { + padding-left: 0; + padding-right: 0; +} +} +.bootstrap .navbar-fixed-top .navbar-collapse, .bootstrap #header_infos .navbar-collapse, .bootstrap .navbar-fixed-bottom .navbar-collapse { + max-height: 340px; +} +@media (max-width: 480px) and (orientation: landscape) { +.bootstrap .navbar-fixed-top .navbar-collapse, .bootstrap #header_infos .navbar-collapse, .bootstrap .navbar-fixed-bottom .navbar-collapse { + max-height: 200px; +} +} +.bootstrap .container > .navbar-header, .bootstrap .container > .navbar-collapse, .bootstrap .container-fluid > .navbar-header, .bootstrap .container-fluid > .navbar-collapse { + margin-left: -5px; + margin-right: -5px; +} +@media (min-width: 768px) { +.bootstrap .container > .navbar-header, .bootstrap .container > .navbar-collapse, .bootstrap .container-fluid > .navbar-header, .bootstrap .container-fluid > .navbar-collapse { + margin-left: 0; + margin-right: 0; +} +} +.bootstrap .navbar-static-top { + border-width: 0 0 1px; + z-index: 1000; +} +@media (min-width: 768px) { +.bootstrap .navbar-static-top { + border-radius: 0; +} +} +.bootstrap .navbar-fixed-top, .bootstrap #header_infos, .bootstrap .navbar-fixed-bottom { + left: 0; + position: fixed; + right: 0; + z-index: 1030; +} +@media (min-width: 768px) { +.bootstrap .navbar-fixed-top, .bootstrap #header_infos, .bootstrap .navbar-fixed-bottom { + border-radius: 0; +} +} +.bootstrap .navbar-fixed-top, .bootstrap #header_infos { + border-width: 0 0 1px; + top: 0; +} +.bootstrap .navbar-fixed-bottom { + border-width: 1px 0 0; + bottom: 0; + margin-bottom: 0; +} +.bootstrap .navbar-brand, .bootstrap #header_shopname { + float: left; + font-size: 15px; + height: 35px; + line-height: 17px; + padding: 9px 5px; +} +.bootstrap .navbar-brand:hover, .bootstrap #header_shopname:hover, .bootstrap .navbar-brand:focus, .bootstrap #header_shopname:focus { + text-decoration: none; +} +@media (min-width: 768px) { +.navbar > .container .bootstrap .navbar-brand, #header_infos > .container .bootstrap .navbar-brand, .navbar > .container .bootstrap #header_shopname, #header_infos > .container .bootstrap #header_shopname, .navbar > .container-fluid .bootstrap .navbar-brand, #header_infos > .container-fluid .bootstrap .navbar-brand, .navbar > .container-fluid .bootstrap #header_shopname, #header_infos > .container-fluid .bootstrap #header_shopname { + margin-left: -5px; +} +} +.bootstrap .navbar-toggle { + background-color: transparent; + background-image: none; + border: 1px solid transparent; + border-radius: 3px; + float: right; + margin-bottom: 0.5px; + margin-right: 5px; + margin-top: 0.5px; + padding: 9px 10px; + position: relative; +} +.bootstrap .navbar-toggle:focus { + outline: 0 none; +} +.bootstrap .navbar-toggle .icon-bar { + border-radius: 1px; + display: block; + height: 2px; + width: 22px; +} +.bootstrap .navbar-toggle .icon-bar + .icon-bar { + margin-top: 4px; +} +@media (min-width: 768px) { +.bootstrap .navbar-toggle { + display: none; +} +} +.bootstrap .navbar-nav, .bootstrap #header_notifs_icon_wrapper, .bootstrap #header_employee_box, .bootstrap #header_quick { + margin: 4.5px -5px; +} +.bootstrap .navbar-nav > li > a, .bootstrap #header_notifs_icon_wrapper > li > a, .bootstrap #header_employee_box > li > a, .bootstrap #header_quick > li > a { + line-height: 17px; + padding-bottom: 10px; + padding-top: 10px; +} +@media (max-width: 767px) { +.bootstrap .navbar-nav .open .dropdown-menu, .bootstrap #header_notifs_icon_wrapper .open .dropdown-menu, .bootstrap #header_employee_box .open .dropdown-menu, .bootstrap #header_quick .open .dropdown-menu { + background-color: transparent; + border: 0 none; + box-shadow: none; + float: none; + margin-top: 0; + position: static; + width: auto; +} +.bootstrap .navbar-nav .open .dropdown-menu > li > a, .bootstrap #header_notifs_icon_wrapper .open .dropdown-menu > li > a, .bootstrap #header_employee_box .open .dropdown-menu > li > a, .bootstrap #header_quick .open .dropdown-menu > li > a, .bootstrap .navbar-nav .open .dropdown-menu .dropdown-header, .bootstrap #header_notifs_icon_wrapper .open .dropdown-menu .dropdown-header, .bootstrap #header_employee_box .open .dropdown-menu .dropdown-header, .bootstrap #header_quick .open .dropdown-menu .dropdown-header { + padding: 5px 15px 5px 25px; +} +.bootstrap .navbar-nav .open .dropdown-menu > li > a, .bootstrap #header_notifs_icon_wrapper .open .dropdown-menu > li > a, .bootstrap #header_employee_box .open .dropdown-menu > li > a, .bootstrap #header_quick .open .dropdown-menu > li > a { + line-height: 17px; +} +.bootstrap .navbar-nav .open .dropdown-menu > li > a:hover, .bootstrap #header_notifs_icon_wrapper .open .dropdown-menu > li > a:hover, .bootstrap #header_employee_box .open .dropdown-menu > li > a:hover, .bootstrap #header_quick .open .dropdown-menu > li > a:hover, .bootstrap .navbar-nav .open .dropdown-menu > li > a:focus, .bootstrap #header_notifs_icon_wrapper .open .dropdown-menu > li > a:focus, .bootstrap #header_employee_box .open .dropdown-menu > li > a:focus, .bootstrap #header_quick .open .dropdown-menu > li > a:focus { + background-image: none; +} +} +@media (min-width: 768px) { +.bootstrap .navbar-nav, .bootstrap #header_notifs_icon_wrapper, .bootstrap #header_employee_box, .bootstrap #header_quick { + float: left; + margin: 0; +} +.bootstrap .navbar-nav > li, .bootstrap #header_notifs_icon_wrapper > li, .bootstrap #header_employee_box > li, .bootstrap #header_quick > li { + float: left; +} +.bootstrap .navbar-nav > li > a, .bootstrap #header_notifs_icon_wrapper > li > a, .bootstrap #header_employee_box > li > a, .bootstrap #header_quick > li > a { + padding-bottom: 9px; + padding-top: 9px; +} +.bootstrap .navbar-nav.navbar-right:last-child, .bootstrap #header_notifs_icon_wrapper.navbar-right:last-child, .bootstrap #header_employee_box:last-child, .bootstrap #header_quick.navbar-right:last-child { + margin-right: -5px; +} +} +@media (min-width: 768px) { +.bootstrap .navbar-left, .bootstrap #header_quick { + float: left !important; +} +.bootstrap .navbar-right, .bootstrap #header_employee_box { + float: right !important; +} +} +.bootstrap .navbar-form { + border-bottom: 1px solid transparent; + border-top: 1px solid transparent; + box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.1); + margin: 4px -5px; + padding: 10px 5px; +} +@media (max-width: 767px) { +.bootstrap .navbar-form .form-group { + margin-bottom: 5px; +} +} +@media (min-width: 768px) { +.bootstrap .navbar-form { + border: 0 none; + box-shadow: none; + margin-left: 0; + margin-right: 0; + padding-bottom: 0; + padding-top: 0; + width: auto; +} +.bootstrap .navbar-form.navbar-right:last-child, .bootstrap #header_employee_box.navbar-form:last-child { + margin-right: -5px; +} +} +.bootstrap .navbar-nav > li > .dropdown-menu, .bootstrap #header_notifs_icon_wrapper > li > .dropdown-menu, .bootstrap #header_employee_box > li > .dropdown-menu, .bootstrap #header_quick > li > .dropdown-menu { + border-top-left-radius: 0; + border-top-right-radius: 0; + margin-top: 0; +} +.bootstrap .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu, .bootstrap .navbar-fixed-bottom #header_notifs_icon_wrapper > li > .dropdown-menu, .bootstrap .navbar-fixed-bottom #header_employee_box > li > .dropdown-menu, .bootstrap .navbar-fixed-bottom #header_quick > li > .dropdown-menu { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} +.bootstrap .navbar-btn { + margin-bottom: 4px; + margin-top: 4px; +} +.bootstrap .navbar-btn.btn-sm, .bootstrap .btn-group-sm > .navbar-btn.btn { + margin-bottom: 3.5px; + margin-top: 3.5px; +} +.bootstrap .navbar-btn.btn-xs, .bootstrap .btn-group-xs > .navbar-btn.btn { + margin-bottom: 6.5px; + margin-top: 6.5px; +} +.bootstrap .navbar-text { + margin-bottom: 9px; + margin-top: 9px; +} +@media (min-width: 768px) { +.bootstrap .navbar-text { + float: left; + margin-left: 5px; + margin-right: 5px; +} +.bootstrap .navbar-text.navbar-right:last-child, .bootstrap #header_employee_box.navbar-text:last-child { + margin-right: 0; +} +} +.bootstrap .navbar-default { + background-color: #f8f8f8; + border-color: #e7e7e7; +} +.bootstrap .navbar-default .navbar-brand, .bootstrap .navbar-default #header_shopname { + color: #777; +} +.bootstrap .navbar-default .navbar-brand:hover, .bootstrap .navbar-default #header_shopname:hover, .bootstrap .navbar-default .navbar-brand:focus, .bootstrap .navbar-default #header_shopname:focus { + background-color: transparent; + color: #5e5e5e; +} +.bootstrap .navbar-default .navbar-text { + color: #777; +} +.bootstrap .navbar-default .navbar-nav > li > a, .bootstrap .navbar-default #header_notifs_icon_wrapper > li > a, .bootstrap .navbar-default #header_employee_box > li > a, .bootstrap .navbar-default #header_quick > li > a { + color: #777; +} +.bootstrap .navbar-default .navbar-nav > li > a:hover, .bootstrap .navbar-default #header_notifs_icon_wrapper > li > a:hover, .bootstrap .navbar-default #header_employee_box > li > a:hover, .bootstrap .navbar-default #header_quick > li > a:hover, .bootstrap .navbar-default .navbar-nav > li > a:focus, .bootstrap .navbar-default #header_notifs_icon_wrapper > li > a:focus, .bootstrap .navbar-default #header_employee_box > li > a:focus, .bootstrap .navbar-default #header_quick > li > a:focus { + background-color: transparent; + color: #333; +} +.bootstrap .navbar-default .navbar-nav > .active > a, .bootstrap .navbar-default #header_notifs_icon_wrapper > .active > a, .bootstrap .navbar-default #header_employee_box > .active > a, .bootstrap .navbar-default #header_quick > .active > a, .bootstrap .navbar-default .navbar-nav > .active > a:hover, .bootstrap .navbar-default #header_notifs_icon_wrapper > .active > a:hover, .bootstrap .navbar-default #header_employee_box > .active > a:hover, .bootstrap .navbar-default #header_quick > .active > a:hover, .bootstrap .navbar-default .navbar-nav > .active > a:focus, .bootstrap .navbar-default #header_notifs_icon_wrapper > .active > a:focus, .bootstrap .navbar-default #header_employee_box > .active > a:focus, .bootstrap .navbar-default #header_quick > .active > a:focus { + background-color: #e7e7e7; + color: #555; +} +.bootstrap .navbar-default .navbar-nav > .disabled > a, .bootstrap .navbar-default #header_notifs_icon_wrapper > .disabled > a, .bootstrap .navbar-default #header_employee_box > .disabled > a, .bootstrap .navbar-default #header_quick > .disabled > a, .bootstrap .navbar-default .navbar-nav > .disabled > a:hover, .bootstrap .navbar-default #header_notifs_icon_wrapper > .disabled > a:hover, .bootstrap .navbar-default #header_employee_box > .disabled > a:hover, .bootstrap .navbar-default #header_quick > .disabled > a:hover, .bootstrap .navbar-default .navbar-nav > .disabled > a:focus, .bootstrap .navbar-default #header_notifs_icon_wrapper > .disabled > a:focus, .bootstrap .navbar-default #header_employee_box > .disabled > a:focus, .bootstrap .navbar-default #header_quick > .disabled > a:focus { + background-color: transparent; + color: #ccc; +} +.bootstrap .navbar-default .navbar-toggle { + border-color: #ddd; +} +.bootstrap .navbar-default .navbar-toggle:hover, .bootstrap .navbar-default .navbar-toggle:focus { + background-color: #ddd; +} +.bootstrap .navbar-default .navbar-toggle .icon-bar { + background-color: #888; +} +.bootstrap .navbar-default .navbar-collapse, .bootstrap .navbar-default .navbar-form { + border-color: #e7e7e7; +} +.bootstrap .navbar-default .navbar-nav > .open > a, .bootstrap .navbar-default #header_notifs_icon_wrapper > .open > a, .bootstrap .navbar-default #header_employee_box > .open > a, .bootstrap .navbar-default #header_quick > .open > a, .bootstrap .navbar-default .navbar-nav > .open > a:hover, .bootstrap .navbar-default #header_notifs_icon_wrapper > .open > a:hover, .bootstrap .navbar-default #header_employee_box > .open > a:hover, .bootstrap .navbar-default #header_quick > .open > a:hover, .bootstrap .navbar-default .navbar-nav > .open > a:focus, .bootstrap .navbar-default #header_notifs_icon_wrapper > .open > a:focus, .bootstrap .navbar-default #header_employee_box > .open > a:focus, .bootstrap .navbar-default #header_quick > .open > a:focus { + background-color: #e7e7e7; + color: #555; +} +@media (max-width: 767px) { +.bootstrap .navbar-default .navbar-nav .open .dropdown-menu > li > a, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > li > a, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > li > a, .bootstrap .navbar-default #header_quick .open .dropdown-menu > li > a { + color: #777; +} +.bootstrap .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > li > a:hover, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > li > a:hover, .bootstrap .navbar-default #header_quick .open .dropdown-menu > li > a:hover, .bootstrap .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > li > a:focus, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > li > a:focus, .bootstrap .navbar-default #header_quick .open .dropdown-menu > li > a:focus { + background-color: transparent; + color: #333; +} +.bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .active > a, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .active > a, .bootstrap .navbar-default #header_quick .open .dropdown-menu > .active > a, .bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .active > a:hover, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .active > a:hover, .bootstrap .navbar-default #header_quick .open .dropdown-menu > .active > a:hover, .bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .active > a:focus, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .active > a:focus, .bootstrap .navbar-default #header_quick .open .dropdown-menu > .active > a:focus { + background-color: #e7e7e7; + color: #555; +} +.bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .disabled > a, .bootstrap .navbar-default #header_quick .open .dropdown-menu > .disabled > a, .bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a:hover, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .disabled > a:hover, .bootstrap .navbar-default #header_quick .open .dropdown-menu > .disabled > a:hover, .bootstrap .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus, .bootstrap .navbar-default #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a:focus, .bootstrap .navbar-default #header_employee_box .open .dropdown-menu > .disabled > a:focus, .bootstrap .navbar-default #header_quick .open .dropdown-menu > .disabled > a:focus { + background-color: transparent; + color: #ccc; +} +} +.bootstrap .navbar-default .navbar-link { + color: #777; +} +.bootstrap .navbar-default .navbar-link:hover { + color: #333; +} +.bootstrap .navbar-default .btn-link { + color: #777; +} +.bootstrap .navbar-default .btn-link:hover, .bootstrap .navbar-default .btn-link:focus { + color: #333; +} +.bootstrap .navbar-default .btn-link[disabled]:hover, .bootstrap .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .bootstrap .navbar-default .btn-link:hover, fieldset[disabled] .bootstrap .navbar-default .btn-link:focus { + color: #ccc; +} +.bootstrap .navbar-inverse, .bootstrap #header_infos { + background-color: #222; + border-color: #090909; +} +.bootstrap .navbar-inverse .navbar-brand, .bootstrap #header_infos .navbar-brand, .bootstrap .navbar-inverse #header_shopname, .bootstrap #header_infos #header_shopname { + color: #999; +} +.bootstrap .navbar-inverse .navbar-brand:hover, .bootstrap #header_infos .navbar-brand:hover, .bootstrap .navbar-inverse #header_shopname:hover, .bootstrap #header_infos #header_shopname:hover, .bootstrap .navbar-inverse .navbar-brand:focus, .bootstrap #header_infos .navbar-brand:focus, .bootstrap .navbar-inverse #header_shopname:focus, .bootstrap #header_infos #header_shopname:focus { + background-color: transparent; + color: #fff; +} +.bootstrap .navbar-inverse .navbar-text, .bootstrap #header_infos .navbar-text { + color: #999; +} +.bootstrap .navbar-inverse .navbar-nav > li > a, .bootstrap #header_infos .navbar-nav > li > a, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > li > a, .bootstrap #header_infos #header_notifs_icon_wrapper > li > a, .bootstrap .navbar-inverse #header_employee_box > li > a, .bootstrap #header_infos #header_employee_box > li > a, .bootstrap .navbar-inverse #header_quick > li > a, .bootstrap #header_infos #header_quick > li > a { + color: #999; +} +.bootstrap .navbar-inverse .navbar-nav > li > a:hover, .bootstrap #header_infos .navbar-nav > li > a:hover, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > li > a:hover, .bootstrap #header_infos #header_notifs_icon_wrapper > li > a:hover, .bootstrap .navbar-inverse #header_employee_box > li > a:hover, .bootstrap #header_infos #header_employee_box > li > a:hover, .bootstrap .navbar-inverse #header_quick > li > a:hover, .bootstrap #header_infos #header_quick > li > a:hover, .bootstrap .navbar-inverse .navbar-nav > li > a:focus, .bootstrap #header_infos .navbar-nav > li > a:focus, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > li > a:focus, .bootstrap #header_infos #header_notifs_icon_wrapper > li > a:focus, .bootstrap .navbar-inverse #header_employee_box > li > a:focus, .bootstrap #header_infos #header_employee_box > li > a:focus, .bootstrap .navbar-inverse #header_quick > li > a:focus, .bootstrap #header_infos #header_quick > li > a:focus { + background-color: transparent; + color: #fff; +} +.bootstrap .navbar-inverse .navbar-nav > .active > a, .bootstrap #header_infos .navbar-nav > .active > a, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .active > a, .bootstrap #header_infos #header_notifs_icon_wrapper > .active > a, .bootstrap .navbar-inverse #header_employee_box > .active > a, .bootstrap #header_infos #header_employee_box > .active > a, .bootstrap .navbar-inverse #header_quick > .active > a, .bootstrap #header_infos #header_quick > .active > a, .bootstrap .navbar-inverse .navbar-nav > .active > a:hover, .bootstrap #header_infos .navbar-nav > .active > a:hover, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .active > a:hover, .bootstrap #header_infos #header_notifs_icon_wrapper > .active > a:hover, .bootstrap .navbar-inverse #header_employee_box > .active > a:hover, .bootstrap #header_infos #header_employee_box > .active > a:hover, .bootstrap .navbar-inverse #header_quick > .active > a:hover, .bootstrap #header_infos #header_quick > .active > a:hover, .bootstrap .navbar-inverse .navbar-nav > .active > a:focus, .bootstrap #header_infos .navbar-nav > .active > a:focus, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .active > a:focus, .bootstrap #header_infos #header_notifs_icon_wrapper > .active > a:focus, .bootstrap .navbar-inverse #header_employee_box > .active > a:focus, .bootstrap #header_infos #header_employee_box > .active > a:focus, .bootstrap .navbar-inverse #header_quick > .active > a:focus, .bootstrap #header_infos #header_quick > .active > a:focus { + background-color: #090909; + color: #fff; +} +.bootstrap .navbar-inverse .navbar-nav > .disabled > a, .bootstrap #header_infos .navbar-nav > .disabled > a, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .disabled > a, .bootstrap #header_infos #header_notifs_icon_wrapper > .disabled > a, .bootstrap .navbar-inverse #header_employee_box > .disabled > a, .bootstrap #header_infos #header_employee_box > .disabled > a, .bootstrap .navbar-inverse #header_quick > .disabled > a, .bootstrap #header_infos #header_quick > .disabled > a, .bootstrap .navbar-inverse .navbar-nav > .disabled > a:hover, .bootstrap #header_infos .navbar-nav > .disabled > a:hover, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .disabled > a:hover, .bootstrap #header_infos #header_notifs_icon_wrapper > .disabled > a:hover, .bootstrap .navbar-inverse #header_employee_box > .disabled > a:hover, .bootstrap #header_infos #header_employee_box > .disabled > a:hover, .bootstrap .navbar-inverse #header_quick > .disabled > a:hover, .bootstrap #header_infos #header_quick > .disabled > a:hover, .bootstrap .navbar-inverse .navbar-nav > .disabled > a:focus, .bootstrap #header_infos .navbar-nav > .disabled > a:focus, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .disabled > a:focus, .bootstrap #header_infos #header_notifs_icon_wrapper > .disabled > a:focus, .bootstrap .navbar-inverse #header_employee_box > .disabled > a:focus, .bootstrap #header_infos #header_employee_box > .disabled > a:focus, .bootstrap .navbar-inverse #header_quick > .disabled > a:focus, .bootstrap #header_infos #header_quick > .disabled > a:focus { + background-color: transparent; + color: #444; +} +.bootstrap .navbar-inverse .navbar-toggle, .bootstrap #header_infos .navbar-toggle { + border-color: #333; +} +.bootstrap .navbar-inverse .navbar-toggle:hover, .bootstrap #header_infos .navbar-toggle:hover, .bootstrap .navbar-inverse .navbar-toggle:focus, .bootstrap #header_infos .navbar-toggle:focus { + background-color: #333; +} +.bootstrap .navbar-inverse .navbar-toggle .icon-bar, .bootstrap #header_infos .navbar-toggle .icon-bar { + background-color: #fff; +} +.bootstrap .navbar-inverse .navbar-collapse, .bootstrap #header_infos .navbar-collapse, .bootstrap .navbar-inverse .navbar-form, .bootstrap #header_infos .navbar-form { + border-color: #101010; +} +.bootstrap .navbar-inverse .navbar-nav > .open > a, .bootstrap #header_infos .navbar-nav > .open > a, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .open > a, .bootstrap #header_infos #header_notifs_icon_wrapper > .open > a, .bootstrap .navbar-inverse #header_employee_box > .open > a, .bootstrap #header_infos #header_employee_box > .open > a, .bootstrap .navbar-inverse #header_quick > .open > a, .bootstrap #header_infos #header_quick > .open > a, .bootstrap .navbar-inverse .navbar-nav > .open > a:hover, .bootstrap #header_infos .navbar-nav > .open > a:hover, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .open > a:hover, .bootstrap #header_infos #header_notifs_icon_wrapper > .open > a:hover, .bootstrap .navbar-inverse #header_employee_box > .open > a:hover, .bootstrap #header_infos #header_employee_box > .open > a:hover, .bootstrap .navbar-inverse #header_quick > .open > a:hover, .bootstrap #header_infos #header_quick > .open > a:hover, .bootstrap .navbar-inverse .navbar-nav > .open > a:focus, .bootstrap #header_infos .navbar-nav > .open > a:focus, .bootstrap .navbar-inverse #header_notifs_icon_wrapper > .open > a:focus, .bootstrap #header_infos #header_notifs_icon_wrapper > .open > a:focus, .bootstrap .navbar-inverse #header_employee_box > .open > a:focus, .bootstrap #header_infos #header_employee_box > .open > a:focus, .bootstrap .navbar-inverse #header_quick > .open > a:focus, .bootstrap #header_infos #header_quick > .open > a:focus { + background-color: #090909; + color: #fff; +} +@media (max-width: 767px) { +.bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > .dropdown-header, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > .dropdown-header, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > .dropdown-header, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > .dropdown-header, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > .dropdown-header, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > .dropdown-header, .bootstrap #header_infos #header_quick .open .dropdown-menu > .dropdown-header { + border-color: #090909; +} +.bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu .divider, .bootstrap #header_infos .navbar-nav .open .dropdown-menu .divider, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu .divider, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu .divider, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu .divider, .bootstrap #header_infos #header_employee_box .open .dropdown-menu .divider, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu .divider, .bootstrap #header_infos #header_quick .open .dropdown-menu .divider { + background-color: #090909; +} +.bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > li > a, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > li > a, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > li > a, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > li > a, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > li > a, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > li > a, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > li > a, .bootstrap #header_infos #header_quick .open .dropdown-menu > li > a { + color: #999; +} +.bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > li > a:hover, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > li > a:hover, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > li > a:hover, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > li > a:hover, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > li > a:hover, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > li > a:hover, .bootstrap #header_infos #header_quick .open .dropdown-menu > li > a:hover, .bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > li > a:focus, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > li > a:focus, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > li > a:focus, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > li > a:focus, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > li > a:focus, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > li > a:focus, .bootstrap #header_infos #header_quick .open .dropdown-menu > li > a:focus { + background-color: transparent; + color: #fff; +} +.bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > .active > a, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > .active > a, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > .active > a, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > .active > a, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > .active > a, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > .active > a, .bootstrap #header_infos #header_quick .open .dropdown-menu > .active > a, .bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > .active > a:hover, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > .active > a:hover, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > .active > a:hover, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > .active > a:hover, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > .active > a:hover, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > .active > a:hover, .bootstrap #header_infos #header_quick .open .dropdown-menu > .active > a:hover, .bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > .active > a:focus, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > .active > a:focus, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > .active > a:focus, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > .active > a:focus, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > .active > a:focus, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > .active > a:focus, .bootstrap #header_infos #header_quick .open .dropdown-menu > .active > a:focus { + background-color: #090909; + color: #fff; +} +.bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > .disabled > a, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > .disabled > a, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > .disabled > a, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > .disabled > a, .bootstrap #header_infos #header_quick .open .dropdown-menu > .disabled > a, .bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > .disabled > a:hover, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a:hover, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a:hover, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > .disabled > a:hover, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > .disabled > a:hover, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > .disabled > a:hover, .bootstrap #header_infos #header_quick .open .dropdown-menu > .disabled > a:hover, .bootstrap .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus, .bootstrap #header_infos .navbar-nav .open .dropdown-menu > .disabled > a:focus, .bootstrap .navbar-inverse #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a:focus, .bootstrap #header_infos #header_notifs_icon_wrapper .open .dropdown-menu > .disabled > a:focus, .bootstrap .navbar-inverse #header_employee_box .open .dropdown-menu > .disabled > a:focus, .bootstrap #header_infos #header_employee_box .open .dropdown-menu > .disabled > a:focus, .bootstrap .navbar-inverse #header_quick .open .dropdown-menu > .disabled > a:focus, .bootstrap #header_infos #header_quick .open .dropdown-menu > .disabled > a:focus { + background-color: transparent; + color: #444; +} +} +.bootstrap .navbar-inverse .navbar-link, .bootstrap #header_infos .navbar-link { + color: #999; +} +.bootstrap .navbar-inverse .navbar-link:hover, .bootstrap #header_infos .navbar-link:hover { + color: #fff; +} +.bootstrap .navbar-inverse .btn-link, .bootstrap #header_infos .btn-link { + color: #999; +} +.bootstrap .navbar-inverse .btn-link:hover, .bootstrap #header_infos .btn-link:hover, .bootstrap .navbar-inverse .btn-link:focus, .bootstrap #header_infos .btn-link:focus { + color: #fff; +} +.bootstrap .navbar-inverse .btn-link[disabled]:hover, .bootstrap #header_infos .btn-link[disabled]:hover, .bootstrap .navbar-inverse .btn-link[disabled]:focus, .bootstrap #header_infos .btn-link[disabled]:focus, fieldset[disabled] .bootstrap .navbar-inverse .btn-link:hover, fieldset[disabled] .bootstrap #header_infos .btn-link:hover, fieldset[disabled] .bootstrap .navbar-inverse .btn-link:focus, fieldset[disabled] .bootstrap #header_infos .btn-link:focus { + color: #444; +} +.bootstrap .breadcrumb { + background-color: #f5f5f5; + border-radius: 3px; + list-style: outside none none; + margin-bottom: 17px; + padding: 8px 15px; +} +.bootstrap .breadcrumb > li { + display: inline-block; +} +.bootstrap .breadcrumb > li + li:before { + color: #ccc; + content: "/ "; + padding: 0 5px; +} +.bootstrap .breadcrumb > .active { + color: #999; +} +.bootstrap .pagination { + border-radius: 3px; + display: inline-block; + margin: 17px 0; + padding-left: 0; +} +.bootstrap .pagination > li { + display: inline; +} +.bootstrap .pagination > li > a, .bootstrap .pagination > li > span { + background-color: #fff; + border: 1px solid #ddd; + color: #00aff0; + float: left; + line-height: 1.42857; + margin-left: -1px; + padding: 4px 8px; + position: relative; + text-decoration: none; +} +.bootstrap .pagination > li:first-child > a, .bootstrap .pagination > li:first-child > span { + border-bottom-left-radius: 3px; + border-top-left-radius: 3px; + margin-left: 0; +} +.bootstrap .pagination > li:last-child > a, .bootstrap .pagination > li:last-child > span { + border-bottom-right-radius: 3px; + border-top-right-radius: 3px; +} +.bootstrap .pagination > li > a:hover, .bootstrap .pagination > li > a:focus, .bootstrap .pagination > li > span:hover, .bootstrap .pagination > li > span:focus { + background-color: #eee; + border-color: #ddd; + color: #0077a3; +} +.bootstrap .pagination > .active > a, .bootstrap .pagination > .active > a:hover, .bootstrap .pagination > .active > a:focus, .bootstrap .pagination > .active > span, .bootstrap .pagination > .active > span:hover, .bootstrap .pagination > .active > span:focus { + background-color: #00aff0; + border-color: #00aff0; + color: #fff; + cursor: default; + z-index: 2; +} +.bootstrap .pagination > .disabled > span, .bootstrap .pagination > .disabled > span:hover, .bootstrap .pagination > .disabled > span:focus, .bootstrap .pagination > .disabled > a, .bootstrap .pagination > .disabled > a:hover, .bootstrap .pagination > .disabled > a:focus { + background-color: #fff; + border-color: #ddd; + color: #999; + cursor: not-allowed; +} +.bootstrap .pagination-lg > li > a, .bootstrap .pagination-lg > li > span { + font-size: 15px; + padding: 10px 16px; +} +.bootstrap .pagination-lg > li:first-child > a, .bootstrap .pagination-lg > li:first-child > span { + border-bottom-left-radius: 6px; + border-top-left-radius: 6px; +} +.bootstrap .pagination-lg > li:last-child > a, .bootstrap .pagination-lg > li:last-child > span { + border-bottom-right-radius: 6px; + border-top-right-radius: 6px; +} +.bootstrap .pagination-sm > li > a, .bootstrap .pagination-sm > li > span { + font-size: 11px; + padding: 5px 10px; +} +.bootstrap .pagination-sm > li:first-child > a, .bootstrap .pagination-sm > li:first-child > span { + border-bottom-left-radius: 3px; + border-top-left-radius: 3px; +} +.bootstrap .pagination-sm > li:last-child > a, .bootstrap .pagination-sm > li:last-child > span { + border-bottom-right-radius: 3px; + border-top-right-radius: 3px; +} +.bootstrap .pager { + list-style: outside none none; + margin: 17px 0; + padding-left: 0; + text-align: center; +} +.bootstrap .pager:before, .bootstrap .pager:after { + content: " "; + display: table; +} +.bootstrap .pager:after { + clear: both; +} +.bootstrap .pager li { + display: inline; +} +.bootstrap .pager li > a, .bootstrap .pager li > span { + background-color: #fff; + border: 1px solid #ddd; + border-radius: 15px; + display: inline-block; + padding: 5px 14px; +} +.bootstrap .pager li > a:hover, .bootstrap .pager li > a:focus { + background-color: #eee; + text-decoration: none; +} +.bootstrap .pager .next > a, .bootstrap .pager .next > span { + float: right; +} +.bootstrap .pager .previous > a, .bootstrap .pager .previous > span { + float: left; +} +.bootstrap .pager .disabled > a, .bootstrap .pager .disabled > a:hover, .bootstrap .pager .disabled > a:focus, .bootstrap .pager .disabled > span { + background-color: #fff; + color: #999; + cursor: not-allowed; +} +.bootstrap .label { + border-radius: 0.25em; + color: #fff; + display: inline; + font-size: 75%; + font-weight: bold; + line-height: 1; + padding: 0.2em 0.6em 0.3em; + text-align: center; + vertical-align: baseline; + white-space: nowrap; +} +.bootstrap .label:empty { + display: none; +} +.btn .bootstrap .label { + position: relative; + top: -1px; +} +.bootstrap a.label:hover, .bootstrap a.label:focus { + color: #fff; + cursor: pointer; + text-decoration: none; +} +.bootstrap .label-default { + background-color: #999; +} +.bootstrap .label-default[href]:hover, .bootstrap .label-default[href]:focus { + background-color: gray; +} +.bootstrap .label-primary { + background-color: #00aff0; +} +.bootstrap .label-primary[href]:hover, .bootstrap .label-primary[href]:focus { + background-color: #008abd; +} +.bootstrap .label-success { + background-color: #79bd3c; +} +.bootstrap .label-success[href]:hover, .bootstrap .label-success[href]:focus { + background-color: #609730; +} +.bootstrap .label-info { + background-color: #5bc0de; +} +.bootstrap .label-info[href]:hover, .bootstrap .label-info[href]:focus { + background-color: #31b0d5; +} +.bootstrap .label-warning { + background-color: #f0ad4e; +} +.bootstrap .label-warning[href]:hover, .bootstrap .label-warning[href]:focus { + background-color: #ec971f; +} +.bootstrap .label-danger { + background-color: #d9534f; +} +.bootstrap .label-danger[href]:hover, .bootstrap .label-danger[href]:focus { + background-color: #c9302c; +} +.bootstrap .badge, .bootstrap #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .notifs_badge, .bootstrap .module-badge-popular, .bootstrap .module-badge-partner, .bootstrap .module-badge-bought { + background-color: #999; + border-radius: 10px; + color: #fff; + display: inline-block; + font-size: 11px; + font-weight: bold; + line-height: 1; + min-width: 10px; + padding: 3px 7px; + text-align: center; + vertical-align: baseline; + white-space: nowrap; +} +.bootstrap .badge:empty, .bootstrap #header_notifs_icon_wrapper .notifs_badge:empty, #header_notifs_icon_wrapper .bootstrap .notifs_badge:empty, .bootstrap .module-badge-popular:empty, .bootstrap .module-badge-partner:empty, .bootstrap .module-badge-bought:empty { + display: none; +} +.btn .bootstrap .badge, .btn .bootstrap #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .btn .bootstrap .notifs_badge, .btn .bootstrap .module-badge-popular, .btn .bootstrap .module-badge-partner, .btn .bootstrap .module-badge-bought { + position: relative; + top: -1px; +} +.btn-xs .bootstrap .badge, .bootstrap .btn-group-xs > .btn .bootstrap .badge, .btn-xs .bootstrap #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .btn-xs .bootstrap .notifs_badge, .bootstrap .btn-group-xs > .btn .bootstrap #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .btn-group-xs > .btn .bootstrap .notifs_badge, .btn-xs .bootstrap .module-badge-popular, .bootstrap .btn-group-xs > .btn .bootstrap .module-badge-popular, .btn-xs .bootstrap .module-badge-partner, .bootstrap .btn-group-xs > .btn .bootstrap .module-badge-partner, .btn-xs .bootstrap .module-badge-bought, .bootstrap .btn-group-xs > .btn .bootstrap .module-badge-bought { + padding: 1px 5px; + top: 0; +} +a.list-group-item.active > .bootstrap .badge, a.list-group-item.active > .bootstrap #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper a.list-group-item.active > .bootstrap .notifs_badge, a.list-group-item.active > .bootstrap .module-badge-popular, a.list-group-item.active > .bootstrap .module-badge-partner, a.list-group-item.active > .bootstrap .module-badge-bought, .nav-pills > .active > a > .bootstrap .badge, .nav-pills > .active > a > .bootstrap #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .nav-pills > .active > a > .bootstrap .notifs_badge, .nav-pills > .active > a > .bootstrap .module-badge-popular, .nav-pills > .active > a > .bootstrap .module-badge-partner, .nav-pills > .active > a > .bootstrap .module-badge-bought { + background-color: #fff; + color: #00aff0; +} +.nav-pills > li > a > .bootstrap .badge, .nav-pills > li > a > .bootstrap #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .nav-pills > li > a > .bootstrap .notifs_badge, .nav-pills > li > a > .bootstrap .module-badge-popular, .nav-pills > li > a > .bootstrap .module-badge-partner, .nav-pills > li > a > .bootstrap .module-badge-bought { + margin-left: 3px; +} +.bootstrap a.badge:hover, .bootstrap #header_notifs_icon_wrapper a.notifs_badge:hover, #header_notifs_icon_wrapper .bootstrap a.notifs_badge:hover, .bootstrap a.module-badge-popular:hover, .bootstrap a.module-badge-partner:hover, .bootstrap a.module-badge-bought:hover, .bootstrap a.badge:focus, .bootstrap #header_notifs_icon_wrapper a.notifs_badge:focus, #header_notifs_icon_wrapper .bootstrap a.notifs_badge:focus, .bootstrap a.module-badge-popular:focus, .bootstrap a.module-badge-partner:focus, .bootstrap a.module-badge-bought:focus { + color: #fff; + cursor: pointer; + text-decoration: none; +} +.bootstrap .thumbnail { + background-color: #fff; + border: 1px solid #ddd; + border-radius: 3px; + display: block; + line-height: 1.42857; + margin-bottom: 17px; + padding: 4px; + transition: all 0.2s ease-in-out 0s; +} +.bootstrap .thumbnail > img, .bootstrap .thumbnail a > img { + display: block; + height: auto; + margin-left: auto; + margin-right: auto; + max-width: 100%; +} +.bootstrap .thumbnail .caption { + color: #555; + padding: 9px; +} +.bootstrap a.thumbnail:hover, .bootstrap a.thumbnail:focus, .bootstrap a.thumbnail.active { + border-color: #00aff0; +} +.bootstrap .alert, .bootstrap #carrier_wizard .wizard_error { + border: 1px solid transparent; + border-radius: 3px; + margin-bottom: 17px; + padding: 15px; +} +.bootstrap .alert h4, .bootstrap #carrier_wizard .wizard_error h4 { + color: inherit; + margin-top: 0; +} +.bootstrap .alert .alert-link, .bootstrap #carrier_wizard .wizard_error .alert-link { + font-weight: bold; +} +.bootstrap .alert > p, .bootstrap #carrier_wizard .wizard_error > p, .bootstrap .alert > ul, .bootstrap #carrier_wizard .wizard_error > ul { + margin-bottom: 0; +} +.bootstrap .alert > p + p, .bootstrap #carrier_wizard .wizard_error > p + p { + margin-top: 5px; +} +.bootstrap .alert-dismissable { + padding-right: 35px; +} +.bootstrap .alert-dismissable .close { + color: inherit; + position: relative; + right: -21px; + top: -2px; +} +.bootstrap .alert-success { + background-color: #dff0d8; + border-color: #d6e9c6; + color: #3c763d; +} +.bootstrap .alert-success hr { + border-top-color: #c9e2b3; +} +.bootstrap .alert-success .alert-link { + color: #2b542c; +} +.bootstrap .alert-info { + background-color: #d9edf7; + border-color: #bce8f1; + color: #31708f; +} +.bootstrap .alert-info hr { + border-top-color: #a6e1ec; +} +.bootstrap .alert-info .alert-link { + color: #245269; +} +.bootstrap .alert-warning { + background-color: #fcf8e3; + border-color: #faebcc; + color: #8a6d3b; +} +.bootstrap .alert-warning hr { + border-top-color: #f7e1b5; +} +.bootstrap .alert-warning .alert-link { + color: #66512c; +} +.bootstrap .alert-danger, .bootstrap #carrier_wizard .wizard_error { + background-color: #f2dede; + border-color: #ebccd1; + color: #a94442; +} +.bootstrap .alert-danger hr, .bootstrap #carrier_wizard .wizard_error hr { + border-top-color: #e4b9c0; +} +.bootstrap .alert-danger .alert-link, .bootstrap #carrier_wizard .wizard_error .alert-link { + color: #843534; +} +.bootstrap .progress { + background-color: #f5f5f5; + border-radius: 3px; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset; + height: 17px; + margin-bottom: 17px; + overflow: hidden; +} +.bootstrap .progress-bar { + background-color: #00aff0; + box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15) inset; + color: #fff; + float: left; + font-size: 11px; + height: 100%; + line-height: 17px; + text-align: center; + transition: width 0.6s ease 0s; + width: 0; +} +.bootstrap .progress-striped .progress-bar { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 40px 40px; +} +.bootstrap .progress.active .progress-bar { + animation: 2s linear 0s normal none infinite running progress-bar-stripes; +} +.bootstrap .progress-bar[aria-valuenow="1"], .bootstrap .progress-bar[aria-valuenow="2"] { + min-width: 30px; +} +.bootstrap .progress-bar[aria-valuenow="0"] { + background-color: transparent; + background-image: none; + box-shadow: none; + color: #999; + min-width: 30px; +} +.bootstrap .progress-bar-success { + background-color: #79bd3c; +} +.progress-striped .bootstrap .progress-bar-success { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.bootstrap .progress-bar-info { + background-color: #5bc0de; +} +.progress-striped .bootstrap .progress-bar-info { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.bootstrap .progress-bar-warning { + background-color: #f0ad4e; +} +.progress-striped .bootstrap .progress-bar-warning { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.bootstrap .progress-bar-danger { + background-color: #d9534f; +} +.progress-striped .bootstrap .progress-bar-danger { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.bootstrap .media, .bootstrap .message-item, .bootstrap .media-body { + overflow: hidden; +} +.bootstrap .media, .bootstrap .message-item, .bootstrap .media .media, .bootstrap .message-item .media, .bootstrap .media .message-item, .bootstrap .message-item .message-item { + margin-top: 15px; +} +.bootstrap .media:first-child, .bootstrap .message-item:first-child { + margin-top: 0; +} +.bootstrap .media-object { + display: block; +} +.bootstrap .media-heading { + margin: 0 0 5px; +} +.bootstrap .media > .pull-left, .bootstrap .message-item > .pull-left { + margin-right: 10px; +} +.bootstrap .media > .pull-right, .bootstrap .message-item > .pull-right { + margin-left: 10px; +} +.bootstrap .media-list { + list-style: outside none none; + padding-left: 0; +} +.bootstrap .list-group, .bootstrap #dashboard .data_list { + margin-bottom: 20px; + padding-left: 0; +} +.bootstrap .list-group-item, .bootstrap #dashboard .data_list li { + background-color: #fff; + border: 1px solid #ddd; + display: block; + margin-bottom: -1px; + padding: 10px 15px; + position: relative; +} +.bootstrap .list-group-item:first-child, .bootstrap #dashboard .data_list li:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.bootstrap .list-group-item:last-child, .bootstrap #dashboard .data_list li:last-child { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + margin-bottom: 0; +} +.bootstrap .list-group-item > .badge, .bootstrap #dashboard .data_list li > .badge, .bootstrap #header_notifs_icon_wrapper .list-group-item > .notifs_badge, #header_notifs_icon_wrapper .bootstrap .list-group-item > .notifs_badge, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .notifs_badge, .bootstrap .list-group-item > .module-badge-popular, .bootstrap #dashboard .data_list li > .module-badge-popular, .bootstrap .list-group-item > .module-badge-partner, .bootstrap #dashboard .data_list li > .module-badge-partner, .bootstrap .list-group-item > .module-badge-bought, .bootstrap #dashboard .data_list li > .module-badge-bought { + float: right; +} +.bootstrap .list-group-item > .badge + .badge, .bootstrap #dashboard .data_list li > .badge + .badge, .bootstrap #header_notifs_icon_wrapper .list-group-item > .notifs_badge + .badge, #header_notifs_icon_wrapper .bootstrap .list-group-item > .notifs_badge + .badge, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .notifs_badge + .badge, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .notifs_badge + .badge, .bootstrap .list-group-item > .module-badge-popular + .badge, .bootstrap #dashboard .data_list li > .module-badge-popular + .badge, .bootstrap .list-group-item > .module-badge-partner + .badge, .bootstrap #dashboard .data_list li > .module-badge-partner + .badge, .bootstrap .list-group-item > .module-badge-bought + .badge, .bootstrap #dashboard .data_list li > .module-badge-bought + .badge, .bootstrap #header_notifs_icon_wrapper .list-group-item > .badge + .notifs_badge, #header_notifs_icon_wrapper .bootstrap .list-group-item > .badge + .notifs_badge, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .badge + .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .badge + .notifs_badge, .bootstrap #header_notifs_icon_wrapper .list-group-item > .notifs_badge + .notifs_badge, #header_notifs_icon_wrapper .bootstrap .list-group-item > .notifs_badge + .notifs_badge, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .notifs_badge + .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .notifs_badge + .notifs_badge, .bootstrap #header_notifs_icon_wrapper .list-group-item > .module-badge-popular + .notifs_badge, #header_notifs_icon_wrapper .bootstrap .list-group-item > .module-badge-popular + .notifs_badge, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .module-badge-popular + .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .module-badge-popular + .notifs_badge, .bootstrap #header_notifs_icon_wrapper .list-group-item > .module-badge-partner + .notifs_badge, #header_notifs_icon_wrapper .bootstrap .list-group-item > .module-badge-partner + .notifs_badge, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .module-badge-partner + .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .module-badge-partner + .notifs_badge, .bootstrap #header_notifs_icon_wrapper .list-group-item > .module-badge-bought + .notifs_badge, #header_notifs_icon_wrapper .bootstrap .list-group-item > .module-badge-bought + .notifs_badge, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .module-badge-bought + .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .module-badge-bought + .notifs_badge, .bootstrap .list-group-item > .badge + .module-badge-popular, .bootstrap #dashboard .data_list li > .badge + .module-badge-popular, .bootstrap #header_notifs_icon_wrapper .list-group-item > .notifs_badge + .module-badge-popular, #header_notifs_icon_wrapper .bootstrap .list-group-item > .notifs_badge + .module-badge-popular, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .notifs_badge + .module-badge-popular, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .notifs_badge + .module-badge-popular, .bootstrap .list-group-item > .module-badge-popular + .module-badge-popular, .bootstrap #dashboard .data_list li > .module-badge-popular + .module-badge-popular, .bootstrap .list-group-item > .module-badge-partner + .module-badge-popular, .bootstrap #dashboard .data_list li > .module-badge-partner + .module-badge-popular, .bootstrap .list-group-item > .module-badge-bought + .module-badge-popular, .bootstrap #dashboard .data_list li > .module-badge-bought + .module-badge-popular, .bootstrap .list-group-item > .badge + .module-badge-partner, .bootstrap #dashboard .data_list li > .badge + .module-badge-partner, .bootstrap #header_notifs_icon_wrapper .list-group-item > .notifs_badge + .module-badge-partner, #header_notifs_icon_wrapper .bootstrap .list-group-item > .notifs_badge + .module-badge-partner, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .notifs_badge + .module-badge-partner, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .notifs_badge + .module-badge-partner, .bootstrap .list-group-item > .module-badge-popular + .module-badge-partner, .bootstrap #dashboard .data_list li > .module-badge-popular + .module-badge-partner, .bootstrap .list-group-item > .module-badge-partner + .module-badge-partner, .bootstrap #dashboard .data_list li > .module-badge-partner + .module-badge-partner, .bootstrap .list-group-item > .module-badge-bought + .module-badge-partner, .bootstrap #dashboard .data_list li > .module-badge-bought + .module-badge-partner, .bootstrap .list-group-item > .badge + .module-badge-bought, .bootstrap #dashboard .data_list li > .badge + .module-badge-bought, .bootstrap #header_notifs_icon_wrapper .list-group-item > .notifs_badge + .module-badge-bought, #header_notifs_icon_wrapper .bootstrap .list-group-item > .notifs_badge + .module-badge-bought, .bootstrap #dashboard .data_list #header_notifs_icon_wrapper li > .notifs_badge + .module-badge-bought, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list li > .notifs_badge + .module-badge-bought, .bootstrap .list-group-item > .module-badge-popular + .module-badge-bought, .bootstrap #dashboard .data_list li > .module-badge-popular + .module-badge-bought, .bootstrap .list-group-item > .module-badge-partner + .module-badge-bought, .bootstrap #dashboard .data_list li > .module-badge-partner + .module-badge-bought, .bootstrap .list-group-item > .module-badge-bought + .module-badge-bought, .bootstrap #dashboard .data_list li > .module-badge-bought + .module-badge-bought { + margin-right: 5px; +} +.bootstrap a.list-group-item { + color: #555; +} +.bootstrap a.list-group-item .list-group-item-heading { + color: #333; +} +.bootstrap a.list-group-item:hover, .bootstrap a.list-group-item:focus { + background-color: #f5f5f5; + color: #555; + text-decoration: none; +} +.bootstrap .list-group-item.disabled, .bootstrap #dashboard .data_list li.disabled, .bootstrap .list-group-item.disabled:hover, .bootstrap #dashboard .data_list li.disabled:hover, .bootstrap .list-group-item.disabled:focus, .bootstrap #dashboard .data_list li.disabled:focus { + background-color: #eee; + color: #999; +} +.bootstrap .list-group-item.disabled .list-group-item-heading, .bootstrap #dashboard .data_list li.disabled .list-group-item-heading, .bootstrap .list-group-item.disabled:hover .list-group-item-heading, .bootstrap #dashboard .data_list li.disabled:hover .list-group-item-heading, .bootstrap .list-group-item.disabled:focus .list-group-item-heading, .bootstrap #dashboard .data_list li.disabled:focus .list-group-item-heading { + color: inherit; +} +.bootstrap .list-group-item.disabled .list-group-item-text, .bootstrap #dashboard .data_list li.disabled .list-group-item-text, .bootstrap .list-group-item.disabled:hover .list-group-item-text, .bootstrap #dashboard .data_list li.disabled:hover .list-group-item-text, .bootstrap .list-group-item.disabled:focus .list-group-item-text, .bootstrap #dashboard .data_list li.disabled:focus .list-group-item-text { + color: #999; +} +.bootstrap .list-group-item.active, .bootstrap #dashboard .data_list li.active, .bootstrap .list-group-item.active:hover, .bootstrap #dashboard .data_list li.active:hover, .bootstrap .list-group-item.active:focus, .bootstrap #dashboard .data_list li.active:focus { + background-color: #00aff0; + border-color: #00aff0; + color: #fff; + z-index: 2; +} +.bootstrap .list-group-item.active .list-group-item-heading, .bootstrap #dashboard .data_list li.active .list-group-item-heading, .bootstrap .list-group-item.active:hover .list-group-item-heading, .bootstrap #dashboard .data_list li.active:hover .list-group-item-heading, .bootstrap .list-group-item.active:focus .list-group-item-heading, .bootstrap #dashboard .data_list li.active:focus .list-group-item-heading { + color: inherit; +} +.bootstrap .list-group-item.active .list-group-item-text, .bootstrap #dashboard .data_list li.active .list-group-item-text, .bootstrap .list-group-item.active:hover .list-group-item-text, .bootstrap #dashboard .data_list li.active:hover .list-group-item-text, .bootstrap .list-group-item.active:focus .list-group-item-text, .bootstrap #dashboard .data_list li.active:focus .list-group-item-text { + color: #bdedff; +} +.bootstrap .list-group-item-success { + background-color: #dff0d8; + color: #3c763d; +} +.bootstrap a.list-group-item-success { + color: #3c763d; +} +.bootstrap a.list-group-item-success .list-group-item-heading { + color: inherit; +} +.bootstrap a.list-group-item-success:hover, .bootstrap a.list-group-item-success:focus { + background-color: #d0e9c6; + color: #3c763d; +} +.bootstrap a.list-group-item-success.active, .bootstrap a.list-group-item-success.active:hover, .bootstrap a.list-group-item-success.active:focus { + background-color: #3c763d; + border-color: #3c763d; + color: #fff; +} +.bootstrap .list-group-item-info { + background-color: #d9edf7; + color: #31708f; +} +.bootstrap a.list-group-item-info { + color: #31708f; +} +.bootstrap a.list-group-item-info .list-group-item-heading { + color: inherit; +} +.bootstrap a.list-group-item-info:hover, .bootstrap a.list-group-item-info:focus { + background-color: #c4e3f3; + color: #31708f; +} +.bootstrap a.list-group-item-info.active, .bootstrap a.list-group-item-info.active:hover, .bootstrap a.list-group-item-info.active:focus { + background-color: #31708f; + border-color: #31708f; + color: #fff; +} +.bootstrap .list-group-item-warning { + background-color: #fcf8e3; + color: #8a6d3b; +} +.bootstrap a.list-group-item-warning { + color: #8a6d3b; +} +.bootstrap a.list-group-item-warning .list-group-item-heading { + color: inherit; +} +.bootstrap a.list-group-item-warning:hover, .bootstrap a.list-group-item-warning:focus { + background-color: #faf2cc; + color: #8a6d3b; +} +.bootstrap a.list-group-item-warning.active, .bootstrap a.list-group-item-warning.active:hover, .bootstrap a.list-group-item-warning.active:focus { + background-color: #8a6d3b; + border-color: #8a6d3b; + color: #fff; +} +.bootstrap .list-group-item-danger { + background-color: #f2dede; + color: #a94442; +} +.bootstrap a.list-group-item-danger { + color: #a94442; +} +.bootstrap a.list-group-item-danger .list-group-item-heading { + color: inherit; +} +.bootstrap a.list-group-item-danger:hover, .bootstrap a.list-group-item-danger:focus { + background-color: #ebcccc; + color: #a94442; +} +.bootstrap a.list-group-item-danger.active, .bootstrap a.list-group-item-danger.active:hover, .bootstrap a.list-group-item-danger.active:focus { + background-color: #a94442; + border-color: #a94442; + color: #fff; +} +.bootstrap .list-group-item-heading { + margin-bottom: 5px; + margin-top: 0; +} +.bootstrap .list-group-item-text { + line-height: 1.3; + margin-bottom: 0; +} +.bootstrap .panel, .bootstrap #dash_version, .bootstrap .message-item-initial .message-item-initial-body, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel { + background-color: #fff; + border: 1px solid transparent; + border-radius: 3px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); + margin-bottom: 17px; +} +.bootstrap .panel-body { + padding: 15px; +} +.bootstrap .panel-body:before, .bootstrap .panel-body:after { + content: " "; + display: table; +} +.bootstrap .panel-body:after { + clear: both; +} +.bootstrap .panel-heading { + border-bottom: 1px solid transparent; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + padding: 10px 15px; +} +.bootstrap .panel-heading > .dropdown .dropdown-toggle { + color: inherit; +} +.bootstrap .panel-title { + color: inherit; + font-size: 14px; + margin-bottom: 0; + margin-top: 0; +} +.bootstrap .panel-title > a { + color: inherit; +} +.bootstrap .panel-footer { + background-color: #f5f5f5; + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; + border-top: 1px solid #ddd; + padding: 10px 15px; +} +.bootstrap .panel > .list-group, .bootstrap #dash_version > .list-group, .bootstrap .message-item-initial .message-item-initial-body > .list-group, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .list-group, .bootstrap #dashboard .panel > .data_list, .bootstrap #dashboard #dash_version > .data_list, .bootstrap .message-item-initial #dashboard .message-item-initial-body > .data_list, .bootstrap #dashboard .message-item-initial .message-item-initial-body > .data_list, .bootstrap .timeline .timeline-item .timeline-caption #dashboard .timeline-panel > .data_list, .bootstrap #dashboard .timeline .timeline-item .timeline-caption .timeline-panel > .data_list { + margin-bottom: 0; +} +.bootstrap .panel > .list-group .list-group-item, .bootstrap #dash_version > .list-group .list-group-item, .bootstrap .message-item-initial .message-item-initial-body > .list-group .list-group-item, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .list-group .list-group-item, .bootstrap #dashboard .panel > .data_list .list-group-item, .bootstrap #dashboard #dash_version > .data_list .list-group-item, .bootstrap .message-item-initial #dashboard .message-item-initial-body > .data_list .list-group-item, .bootstrap #dashboard .message-item-initial .message-item-initial-body > .data_list .list-group-item, .bootstrap .timeline .timeline-item .timeline-caption #dashboard .timeline-panel > .data_list .list-group-item, .bootstrap #dashboard .timeline .timeline-item .timeline-caption .timeline-panel > .data_list .list-group-item, .bootstrap .panel > .list-group #dashboard .data_list li, .bootstrap #dashboard .data_list .panel > .list-group li, .bootstrap #dash_version > .list-group #dashboard .data_list li, .bootstrap #dashboard .data_list #dash_version > .list-group li, .bootstrap .message-item-initial .message-item-initial-body > .list-group #dashboard .data_list li, .bootstrap #dashboard .data_list .message-item-initial .message-item-initial-body > .list-group li, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .list-group #dashboard .data_list li, .bootstrap #dashboard .data_list .timeline .timeline-item .timeline-caption .timeline-panel > .list-group li, .bootstrap #dashboard .panel > .data_list li, .bootstrap #dashboard #dash_version > .data_list li, .bootstrap .message-item-initial #dashboard .message-item-initial-body > .data_list li, .bootstrap #dashboard .message-item-initial .message-item-initial-body > .data_list li, .bootstrap .timeline .timeline-item .timeline-caption #dashboard .timeline-panel > .data_list li, .bootstrap #dashboard .timeline .timeline-item .timeline-caption .timeline-panel > .data_list li { + border-radius: 0; + border-width: 1px 0; +} +.bootstrap .panel > .list-group:first-child .list-group-item:first-child, .bootstrap #dash_version > .list-group:first-child .list-group-item:first-child, .bootstrap .message-item-initial .message-item-initial-body > .list-group:first-child .list-group-item:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .list-group:first-child .list-group-item:first-child, .bootstrap #dashboard .panel > .data_list:first-child .list-group-item:first-child, .bootstrap #dashboard #dash_version > .data_list:first-child .list-group-item:first-child, .bootstrap .message-item-initial #dashboard .message-item-initial-body > .data_list:first-child .list-group-item:first-child, .bootstrap #dashboard .message-item-initial .message-item-initial-body > .data_list:first-child .list-group-item:first-child, .bootstrap .timeline .timeline-item .timeline-caption #dashboard .timeline-panel > .data_list:first-child .list-group-item:first-child, .bootstrap #dashboard .timeline .timeline-item .timeline-caption .timeline-panel > .data_list:first-child .list-group-item:first-child, .bootstrap .panel > .list-group:first-child #dashboard .data_list li:first-child, .bootstrap #dashboard .data_list .panel > .list-group:first-child li:first-child, .bootstrap #dash_version > .list-group:first-child #dashboard .data_list li:first-child, .bootstrap #dashboard .data_list #dash_version > .list-group:first-child li:first-child, .bootstrap .message-item-initial .message-item-initial-body > .list-group:first-child #dashboard .data_list li:first-child, .bootstrap #dashboard .data_list .message-item-initial .message-item-initial-body > .list-group:first-child li:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .list-group:first-child #dashboard .data_list li:first-child, .bootstrap #dashboard .data_list .timeline .timeline-item .timeline-caption .timeline-panel > .list-group:first-child li:first-child, .bootstrap #dashboard .panel > .data_list:first-child li:first-child, .bootstrap #dashboard #dash_version > .data_list:first-child li:first-child, .bootstrap .message-item-initial #dashboard .message-item-initial-body > .data_list:first-child li:first-child, .bootstrap #dashboard .message-item-initial .message-item-initial-body > .data_list:first-child li:first-child, .bootstrap .timeline .timeline-item .timeline-caption #dashboard .timeline-panel > .data_list:first-child li:first-child, .bootstrap #dashboard .timeline .timeline-item .timeline-caption .timeline-panel > .data_list:first-child li:first-child { + border-top: 0 none; + border-top-left-radius: 2px; + border-top-right-radius: 2px; +} +.bootstrap .panel > .list-group:last-child .list-group-item:last-child, .bootstrap #dash_version > .list-group:last-child .list-group-item:last-child, .bootstrap .message-item-initial .message-item-initial-body > .list-group:last-child .list-group-item:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .list-group:last-child .list-group-item:last-child, .bootstrap #dashboard .panel > .data_list:last-child .list-group-item:last-child, .bootstrap #dashboard #dash_version > .data_list:last-child .list-group-item:last-child, .bootstrap .message-item-initial #dashboard .message-item-initial-body > .data_list:last-child .list-group-item:last-child, .bootstrap #dashboard .message-item-initial .message-item-initial-body > .data_list:last-child .list-group-item:last-child, .bootstrap .timeline .timeline-item .timeline-caption #dashboard .timeline-panel > .data_list:last-child .list-group-item:last-child, .bootstrap #dashboard .timeline .timeline-item .timeline-caption .timeline-panel > .data_list:last-child .list-group-item:last-child, .bootstrap .panel > .list-group:last-child #dashboard .data_list li:last-child, .bootstrap #dashboard .data_list .panel > .list-group:last-child li:last-child, .bootstrap #dash_version > .list-group:last-child #dashboard .data_list li:last-child, .bootstrap #dashboard .data_list #dash_version > .list-group:last-child li:last-child, .bootstrap .message-item-initial .message-item-initial-body > .list-group:last-child #dashboard .data_list li:last-child, .bootstrap #dashboard .data_list .message-item-initial .message-item-initial-body > .list-group:last-child li:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .list-group:last-child #dashboard .data_list li:last-child, .bootstrap #dashboard .data_list .timeline .timeline-item .timeline-caption .timeline-panel > .list-group:last-child li:last-child, .bootstrap #dashboard .panel > .data_list:last-child li:last-child, .bootstrap #dashboard #dash_version > .data_list:last-child li:last-child, .bootstrap .message-item-initial #dashboard .message-item-initial-body > .data_list:last-child li:last-child, .bootstrap #dashboard .message-item-initial .message-item-initial-body > .data_list:last-child li:last-child, .bootstrap .timeline .timeline-item .timeline-caption #dashboard .timeline-panel > .data_list:last-child li:last-child, .bootstrap #dashboard .timeline .timeline-item .timeline-caption .timeline-panel > .data_list:last-child li:last-child { + border-bottom: 0 none; + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; +} +.bootstrap .panel-heading + .list-group .list-group-item:first-child, .bootstrap #dashboard .panel-heading + .data_list .list-group-item:first-child, .bootstrap .panel-heading + .list-group #dashboard .data_list li:first-child, .bootstrap #dashboard .data_list .panel-heading + .list-group li:first-child, .bootstrap #dashboard .panel-heading + .data_list li:first-child { + border-top-width: 0; +} +.bootstrap .panel > .table, .bootstrap #dash_version > .table, .bootstrap .message-item-initial .message-item-initial-body > .table, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table, .bootstrap .panel > .table-responsive > .table, .bootstrap #dash_version > .table-responsive > .table, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table { + margin-bottom: 0; +} +.bootstrap .panel > .table:first-child, .bootstrap #dash_version > .table:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child { + border-top-left-radius: 2px; + border-top-right-radius: 2px; +} +.bootstrap .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .bootstrap #dash_version > .table:first-child > thead:first-child > tr:first-child td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child > thead:first-child > tr:first-child td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .bootstrap .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .bootstrap #dash_version > .table:first-child > thead:first-child > tr:first-child th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child > thead:first-child > tr:first-child th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .bootstrap .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .bootstrap #dash_version > .table:first-child > tbody:first-child > tr:first-child td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child > tbody:first-child > tr:first-child td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .bootstrap .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .bootstrap #dash_version > .table:first-child > tbody:first-child > tr:first-child th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child > tbody:first-child > tr:first-child th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { + border-top-left-radius: 2px; +} +.bootstrap .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .bootstrap #dash_version > .table:first-child > thead:first-child > tr:first-child td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child > thead:first-child > tr:first-child td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .bootstrap .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .bootstrap #dash_version > .table:first-child > thead:first-child > tr:first-child th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child > thead:first-child > tr:first-child th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .bootstrap .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .bootstrap #dash_version > .table:first-child > tbody:first-child > tr:first-child td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child > tbody:first-child > tr:first-child td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .bootstrap .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .bootstrap #dash_version > .table:first-child > tbody:first-child > tr:first-child th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:first-child > tbody:first-child > tr:first-child th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .bootstrap .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child, .bootstrap #dash_version > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { + border-top-right-radius: 2px; +} +.bootstrap .panel > .table:last-child, .bootstrap #dash_version > .table:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child { + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; +} +.bootstrap .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .bootstrap #dash_version > .table:last-child > tbody:last-child > tr:last-child td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child > tbody:last-child > tr:last-child td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .bootstrap .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .bootstrap #dash_version > .table:last-child > tbody:last-child > tr:last-child th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child > tbody:last-child > tr:last-child th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .bootstrap .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .bootstrap #dash_version > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .bootstrap .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .bootstrap #dash_version > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { + border-bottom-left-radius: 2px; +} +.bootstrap .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .bootstrap #dash_version > .table:last-child > tbody:last-child > tr:last-child td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child > tbody:last-child > tr:last-child td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .bootstrap .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .bootstrap #dash_version > .table:last-child > tbody:last-child > tr:last-child th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child > tbody:last-child > tr:last-child th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .bootstrap .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .bootstrap #dash_version > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .bootstrap .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .bootstrap #dash_version > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .bootstrap .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .bootstrap #dash_version > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { + border-bottom-right-radius: 2px; +} +.bootstrap .panel > .panel-body + .table, .bootstrap #dash_version > .panel-body + .table, .bootstrap .message-item-initial .message-item-initial-body > .panel-body + .table, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .panel-body + .table, .bootstrap .panel > .panel-body + .table-responsive, .bootstrap #dash_version > .panel-body + .table-responsive, .bootstrap .message-item-initial .message-item-initial-body > .panel-body + .table-responsive, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .panel-body + .table-responsive { + border-top: 1px solid #ddd; +} +.bootstrap .panel > .table > tbody:first-child > tr:first-child th, .bootstrap #dash_version > .table > tbody:first-child > tr:first-child th, .bootstrap .message-item-initial .message-item-initial-body > .table > tbody:first-child > tr:first-child th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table > tbody:first-child > tr:first-child th, .bootstrap .panel > .table > tbody:first-child > tr:first-child td, .bootstrap #dash_version > .table > tbody:first-child > tr:first-child td, .bootstrap .message-item-initial .message-item-initial-body > .table > tbody:first-child > tr:first-child td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table > tbody:first-child > tr:first-child td { + border-top: 0 none; +} +.bootstrap .panel > .table-bordered, .bootstrap #dash_version > .table-bordered, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered, .bootstrap .panel > .table-responsive > .table-bordered, .bootstrap #dash_version > .table-responsive > .table-bordered, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered { + border: 0 none; +} +.bootstrap .panel > .table-bordered > thead > tr > th:first-child, .bootstrap #dash_version > .table-bordered > thead > tr > th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > thead > tr > th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > thead > tr > th:first-child, .bootstrap .panel > .table-bordered > thead > tr > td:first-child, .bootstrap #dash_version > .table-bordered > thead > tr > td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > thead > tr > td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > thead > tr > td:first-child, .bootstrap .panel > .table-bordered > tbody > tr > th:first-child, .bootstrap #dash_version > .table-bordered > tbody > tr > th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tbody > tr > th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tbody > tr > th:first-child, .bootstrap .panel > .table-bordered > tbody > tr > td:first-child, .bootstrap #dash_version > .table-bordered > tbody > tr > td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tbody > tr > td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tbody > tr > td:first-child, .bootstrap .panel > .table-bordered > tfoot > tr > th:first-child, .bootstrap #dash_version > .table-bordered > tfoot > tr > th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tfoot > tr > th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tfoot > tr > th:first-child, .bootstrap .panel > .table-bordered > tfoot > tr > td:first-child, .bootstrap #dash_version > .table-bordered > tfoot > tr > td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tfoot > tr > td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tfoot > tr > td:first-child, .bootstrap .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .bootstrap #dash_version > .table-responsive > .table-bordered > thead > tr > th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > thead > tr > th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .bootstrap .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .bootstrap #dash_version > .table-responsive > .table-bordered > thead > tr > td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > thead > tr > td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .bootstrap .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .bootstrap #dash_version > .table-responsive > .table-bordered > tbody > tr > th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tbody > tr > th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .bootstrap .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .bootstrap #dash_version > .table-responsive > .table-bordered > tbody > tr > td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tbody > tr > td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .bootstrap #dash_version > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child, .bootstrap #dash_version > .table-responsive > .table-bordered > tfoot > tr > td:first-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tfoot > tr > td:first-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0 none; +} +.bootstrap .panel > .table-bordered > thead > tr > th:last-child, .bootstrap #dash_version > .table-bordered > thead > tr > th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > thead > tr > th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > thead > tr > th:last-child, .bootstrap .panel > .table-bordered > thead > tr > td:last-child, .bootstrap #dash_version > .table-bordered > thead > tr > td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > thead > tr > td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > thead > tr > td:last-child, .bootstrap .panel > .table-bordered > tbody > tr > th:last-child, .bootstrap #dash_version > .table-bordered > tbody > tr > th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tbody > tr > th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tbody > tr > th:last-child, .bootstrap .panel > .table-bordered > tbody > tr > td:last-child, .bootstrap #dash_version > .table-bordered > tbody > tr > td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tbody > tr > td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tbody > tr > td:last-child, .bootstrap .panel > .table-bordered > tfoot > tr > th:last-child, .bootstrap #dash_version > .table-bordered > tfoot > tr > th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tfoot > tr > th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tfoot > tr > th:last-child, .bootstrap .panel > .table-bordered > tfoot > tr > td:last-child, .bootstrap #dash_version > .table-bordered > tfoot > tr > td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tfoot > tr > td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tfoot > tr > td:last-child, .bootstrap .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .bootstrap #dash_version > .table-responsive > .table-bordered > thead > tr > th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > thead > tr > th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .bootstrap .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .bootstrap #dash_version > .table-responsive > .table-bordered > thead > tr > td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > thead > tr > td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .bootstrap .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .bootstrap #dash_version > .table-responsive > .table-bordered > tbody > tr > th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tbody > tr > th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .bootstrap .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .bootstrap #dash_version > .table-responsive > .table-bordered > tbody > tr > td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tbody > tr > td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .bootstrap #dash_version > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child, .bootstrap #dash_version > .table-responsive > .table-bordered > tfoot > tr > td:last-child, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tfoot > tr > td:last-child, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0 none; +} +.bootstrap .panel > .table-bordered > thead > tr:first-child > td, .bootstrap #dash_version > .table-bordered > thead > tr:first-child > td, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > thead > tr:first-child > td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > thead > tr:first-child > td, .bootstrap .panel > .table-bordered > thead > tr:first-child > th, .bootstrap #dash_version > .table-bordered > thead > tr:first-child > th, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > thead > tr:first-child > th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > thead > tr:first-child > th, .bootstrap .panel > .table-bordered > tbody > tr:first-child > td, .bootstrap #dash_version > .table-bordered > tbody > tr:first-child > td, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tbody > tr:first-child > td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tbody > tr:first-child > td, .bootstrap .panel > .table-bordered > tbody > tr:first-child > th, .bootstrap #dash_version > .table-bordered > tbody > tr:first-child > th, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tbody > tr:first-child > th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tbody > tr:first-child > th, .bootstrap .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .bootstrap #dash_version > .table-responsive > .table-bordered > thead > tr:first-child > td, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > thead > tr:first-child > td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .bootstrap .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .bootstrap #dash_version > .table-responsive > .table-bordered > thead > tr:first-child > th, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > thead > tr:first-child > th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .bootstrap .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .bootstrap #dash_version > .table-responsive > .table-bordered > tbody > tr:first-child > td, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tbody > tr:first-child > td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .bootstrap .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th, .bootstrap #dash_version > .table-responsive > .table-bordered > tbody > tr:first-child > th, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tbody > tr:first-child > th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { + border-bottom: 0 none; +} +.bootstrap .panel > .table-bordered > tbody > tr:last-child > td, .bootstrap #dash_version > .table-bordered > tbody > tr:last-child > td, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tbody > tr:last-child > td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tbody > tr:last-child > td, .bootstrap .panel > .table-bordered > tbody > tr:last-child > th, .bootstrap #dash_version > .table-bordered > tbody > tr:last-child > th, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tbody > tr:last-child > th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tbody > tr:last-child > th, .bootstrap .panel > .table-bordered > tfoot > tr:last-child > td, .bootstrap #dash_version > .table-bordered > tfoot > tr:last-child > td, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tfoot > tr:last-child > td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tfoot > tr:last-child > td, .bootstrap .panel > .table-bordered > tfoot > tr:last-child > th, .bootstrap #dash_version > .table-bordered > tfoot > tr:last-child > th, .bootstrap .message-item-initial .message-item-initial-body > .table-bordered > tfoot > tr:last-child > th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-bordered > tfoot > tr:last-child > th, .bootstrap .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .bootstrap #dash_version > .table-responsive > .table-bordered > tbody > tr:last-child > td, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tbody > tr:last-child > td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .bootstrap .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .bootstrap #dash_version > .table-responsive > .table-bordered > tbody > tr:last-child > th, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tbody > tr:last-child > th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .bootstrap #dash_version > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .bootstrap .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th, .bootstrap #dash_version > .table-responsive > .table-bordered > tfoot > tr:last-child > th, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive > .table-bordered > tfoot > tr:last-child > th, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { + border-bottom: 0 none; +} +.bootstrap .panel > .table-responsive, .bootstrap #dash_version > .table-responsive, .bootstrap .message-item-initial .message-item-initial-body > .table-responsive, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel > .table-responsive { + border: 0 none; + margin-bottom: 0; +} +.bootstrap .panel-group { + margin-bottom: 17px; +} +.bootstrap .panel-group .panel, .bootstrap .panel-group #dash_version, .bootstrap .panel-group .message-item-initial .message-item-initial-body, .bootstrap .message-item-initial .panel-group .message-item-initial-body, .bootstrap .panel-group .timeline .timeline-item .timeline-caption .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .panel-group .timeline-panel { + border-radius: 3px; + margin-bottom: 0; +} +.bootstrap .panel-group .panel + .panel, .bootstrap .panel-group #dash_version + .panel, .bootstrap .panel-group .message-item-initial .message-item-initial-body + .panel, .bootstrap .message-item-initial .panel-group .message-item-initial-body + .panel, .bootstrap .panel-group .timeline .timeline-item .timeline-caption .timeline-panel + .panel, .bootstrap .timeline .timeline-item .timeline-caption .panel-group .timeline-panel + .panel, .bootstrap .panel-group .panel + #dash_version, .bootstrap .panel-group #dash_version + #dash_version, .bootstrap .panel-group .message-item-initial .message-item-initial-body + #dash_version, .bootstrap .message-item-initial .panel-group .message-item-initial-body + #dash_version, .bootstrap .panel-group .timeline .timeline-item .timeline-caption .timeline-panel + #dash_version, .bootstrap .timeline .timeline-item .timeline-caption .panel-group .timeline-panel + #dash_version, .bootstrap .panel-group .message-item-initial .panel + .message-item-initial-body, .bootstrap .message-item-initial .panel-group .panel + .message-item-initial-body, .bootstrap .panel-group .message-item-initial #dash_version + .message-item-initial-body, .bootstrap .message-item-initial .panel-group #dash_version + .message-item-initial-body, .bootstrap .panel-group .message-item-initial .message-item-initial-body + .message-item-initial-body, .bootstrap .message-item-initial .panel-group .message-item-initial-body + .message-item-initial-body, .bootstrap .panel-group .timeline .timeline-item .timeline-caption .message-item-initial .timeline-panel + .message-item-initial-body, .bootstrap .message-item-initial .panel-group .timeline .timeline-item .timeline-caption .timeline-panel + .message-item-initial-body, .bootstrap .timeline .timeline-item .timeline-caption .panel-group .message-item-initial .timeline-panel + .message-item-initial-body, .bootstrap .message-item-initial .timeline .timeline-item .timeline-caption .panel-group .timeline-panel + .message-item-initial-body, .bootstrap .panel-group .timeline .timeline-item .timeline-caption .panel + .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .panel-group .panel + .timeline-panel, .bootstrap .panel-group .timeline .timeline-item .timeline-caption #dash_version + .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .panel-group #dash_version + .timeline-panel, .bootstrap .panel-group .message-item-initial .timeline .timeline-item .timeline-caption .message-item-initial-body + .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .panel-group .message-item-initial .message-item-initial-body + .timeline-panel, .bootstrap .message-item-initial .panel-group .timeline .timeline-item .timeline-caption .message-item-initial-body + .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .message-item-initial .panel-group .message-item-initial-body + .timeline-panel, .bootstrap .panel-group .timeline .timeline-item .timeline-caption .timeline-panel + .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .panel-group .timeline-panel + .timeline-panel { + margin-top: 5px; +} +.bootstrap .panel-group .panel-heading { + border-bottom: 0 none; +} +.bootstrap .panel-group .panel-heading + .panel-collapse .panel-body { + border-top: 1px solid #ddd; +} +.bootstrap .panel-group .panel-footer { + border-top: 0 none; +} +.bootstrap .panel-group .panel-footer + .panel-collapse .panel-body { + border-bottom: 1px solid #ddd; +} +.bootstrap .panel-default { + border-color: #ddd; +} +.bootstrap .panel-default > .panel-heading { + background-color: #f5f5f5; + border-color: #ddd; + color: #333; +} +.bootstrap .panel-default > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ddd; +} +.bootstrap .panel-default > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ddd; +} +.bootstrap .panel-primary { + border-color: #00aff0; +} +.bootstrap .panel-primary > .panel-heading { + background-color: #00aff0; + border-color: #00aff0; + color: #fff; +} +.bootstrap .panel-primary > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #00aff0; +} +.bootstrap .panel-primary > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #00aff0; +} +.bootstrap .panel-success { + border-color: #d6e9c6; +} +.bootstrap .panel-success > .panel-heading { + background-color: #dff0d8; + border-color: #d6e9c6; + color: #3c763d; +} +.bootstrap .panel-success > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #d6e9c6; +} +.bootstrap .panel-success > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #d6e9c6; +} +.bootstrap .panel-info { + border-color: #bce8f1; +} +.bootstrap .panel-info > .panel-heading { + background-color: #d9edf7; + border-color: #bce8f1; + color: #31708f; +} +.bootstrap .panel-info > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #bce8f1; +} +.bootstrap .panel-info > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #bce8f1; +} +.bootstrap .panel-warning { + border-color: #faebcc; +} +.bootstrap .panel-warning > .panel-heading { + background-color: #fcf8e3; + border-color: #faebcc; + color: #8a6d3b; +} +.bootstrap .panel-warning > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #faebcc; +} +.bootstrap .panel-warning > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #faebcc; +} +.bootstrap .panel-danger { + border-color: #ebccd1; +} +.bootstrap .panel-danger > .panel-heading { + background-color: #f2dede; + border-color: #ebccd1; + color: #a94442; +} +.bootstrap .panel-danger > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ebccd1; +} +.bootstrap .panel-danger > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ebccd1; +} +.bootstrap .well { + background-color: #fcfdfe; + border: 1px solid #e1ebf5; + border-radius: 3px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset; + margin-bottom: 20px; + min-height: 20px; + padding: 19px; +} +.bootstrap .well blockquote { + border-color: rgba(0, 0, 0, 0.15); +} +.bootstrap .well-lg { + border-radius: 6px; + padding: 24px; +} +.bootstrap .well-sm { + border-radius: 3px; + padding: 9px; +} +.bootstrap .close { + color: #000; + float: right; + font-size: 18px; + font-weight: bold; + line-height: 1; + opacity: 0.2; + text-shadow: 0 1px 0 #fff; +} +.bootstrap .close:hover, .bootstrap .close:focus { + color: #000; + cursor: pointer; + opacity: 0.5; + text-decoration: none; +} +.bootstrap button.close { + background: none repeat scroll 0 0 transparent; + border: 0 none; + cursor: pointer; + padding: 0; +} +.bootstrap .tooltip { + display: block; + font-size: 11px; + line-height: 1.4; + opacity: 0; + position: absolute; + visibility: visible; + z-index: 1070; +} +.bootstrap .tooltip.in { + opacity: 0.9; +} +.bootstrap .tooltip.top { + margin-top: -3px; + padding: 5px 0; +} +.bootstrap .tooltip.right { + margin-left: 3px; + padding: 0 5px; +} +.bootstrap .tooltip.bottom { + margin-top: 3px; + padding: 5px 0; +} +.bootstrap .tooltip.left { + margin-left: -3px; + padding: 0 5px; +} +.bootstrap .tooltip-inner { + background-color: #000; + border-radius: 3px; + color: #fff; + max-width: 200px; + padding: 3px 8px; + text-align: center; + text-decoration: none; +} +.bootstrap .tooltip-arrow { + border-color: transparent; + border-style: solid; + height: 0; + position: absolute; + width: 0; +} +.bootstrap .tooltip.top .tooltip-arrow { + border-top-color: #000; + border-width: 5px 5px 0; + bottom: 0; + left: 50%; + margin-left: -5px; +} +.bootstrap .tooltip.top-left .tooltip-arrow { + border-top-color: #000; + border-width: 5px 5px 0; + bottom: 0; + left: 5px; +} +.bootstrap .tooltip.top-right .tooltip-arrow { + border-top-color: #000; + border-width: 5px 5px 0; + bottom: 0; + right: 5px; +} +.bootstrap .tooltip.right .tooltip-arrow { + border-right-color: #000; + border-width: 5px 5px 5px 0; + left: 0; + margin-top: -5px; + top: 50%; +} +.bootstrap .tooltip.left .tooltip-arrow { + border-left-color: #000; + border-width: 5px 0 5px 5px; + margin-top: -5px; + right: 0; + top: 50%; +} +.bootstrap .tooltip.bottom .tooltip-arrow { + border-bottom-color: #000; + border-width: 0 5px 5px; + left: 50%; + margin-left: -5px; + top: 0; +} +.bootstrap .tooltip.bottom-left .tooltip-arrow { + border-bottom-color: #000; + border-width: 0 5px 5px; + left: 5px; + top: 0; +} +.bootstrap .tooltip.bottom-right .tooltip-arrow { + border-bottom-color: #000; + border-width: 0 5px 5px; + right: 5px; + top: 0; +} +.bootstrap .clearfix:before, .bootstrap .clearfix:after { + content: " "; + display: table; +} +.bootstrap .clearfix:after { + clear: both; +} +.bootstrap .center-block { + display: block; + margin-left: auto; + margin-right: auto; +} +.bootstrap .pull-right { + float: right !important; +} +.bootstrap .pull-left { + float: left !important; +} +.bootstrap .hide { + display: none !important; +} +.bootstrap .show { + display: block !important; +} +.bootstrap .invisible { + visibility: hidden; +} +.bootstrap .text-hide { + background-color: transparent; + border: 0 none; + color: transparent; + font: 0px/0 a; + text-shadow: none; +} +.bootstrap .hidden { + display: none !important; + visibility: hidden !important; +} +.bootstrap .affix { + position: fixed; +} +.bootstrap .visible-xs, .bootstrap .visible-sm, .bootstrap .visible-md, .bootstrap .visible-lg { + display: none !important; +} +.bootstrap .visible-xs-block, .bootstrap .visible-xs-inline, .bootstrap .visible-xs-inline-block, .bootstrap .visible-sm-block, .bootstrap .visible-sm-inline, .bootstrap .visible-sm-inline-block, .bootstrap .visible-md-block, .bootstrap .visible-md-inline, .bootstrap .visible-md-inline-block, .bootstrap .visible-lg-block, .bootstrap .visible-lg-inline, .bootstrap .visible-lg-inline-block { + display: none !important; +} +@media (max-width: 767px) { +.bootstrap .visible-xs { + display: block !important; +} +.bootstrap table.visible-xs { + display: table; +} +.bootstrap tr.visible-xs { + display: table-row !important; +} +.bootstrap th.visible-xs, .bootstrap td.visible-xs { + display: table-cell !important; +} +} +@media (max-width: 767px) { +.bootstrap .visible-xs-block { + display: block !important; +} +} +@media (max-width: 767px) { +.bootstrap .visible-xs-inline { + display: inline !important; +} +} +@media (max-width: 767px) { +.bootstrap .visible-xs-inline-block { + display: inline-block !important; +} +} +@media (min-width: 768px) and (max-width: 991px) { +.bootstrap .visible-sm { + display: block !important; +} +.bootstrap table.visible-sm { + display: table; +} +.bootstrap tr.visible-sm { + display: table-row !important; +} +.bootstrap th.visible-sm, .bootstrap td.visible-sm { + display: table-cell !important; +} +} +@media (min-width: 768px) and (max-width: 991px) { +.bootstrap .visible-sm-block { + display: block !important; +} +} +@media (min-width: 768px) and (max-width: 991px) { +.bootstrap .visible-sm-inline { + display: inline !important; +} +} +@media (min-width: 768px) and (max-width: 991px) { +.bootstrap .visible-sm-inline-block { + display: inline-block !important; +} +} +@media (min-width: 992px) and (max-width: 1199px) { +.bootstrap .visible-md { + display: block !important; +} +.bootstrap table.visible-md { + display: table; +} +.bootstrap tr.visible-md { + display: table-row !important; +} +.bootstrap th.visible-md, .bootstrap td.visible-md { + display: table-cell !important; +} +} +@media (min-width: 992px) and (max-width: 1199px) { +.bootstrap .visible-md-block { + display: block !important; +} +} +@media (min-width: 992px) and (max-width: 1199px) { +.bootstrap .visible-md-inline { + display: inline !important; +} +} +@media (min-width: 992px) and (max-width: 1199px) { +.bootstrap .visible-md-inline-block { + display: inline-block !important; +} +} +@media (min-width: 1200px) { +.bootstrap .visible-lg { + display: block !important; +} +.bootstrap table.visible-lg { + display: table; +} +.bootstrap tr.visible-lg { + display: table-row !important; +} +.bootstrap th.visible-lg, .bootstrap td.visible-lg { + display: table-cell !important; +} +} +@media (min-width: 1200px) { +.bootstrap .visible-lg-block { + display: block !important; +} +} +@media (min-width: 1200px) { +.bootstrap .visible-lg-inline { + display: inline !important; +} +} +@media (min-width: 1200px) { +.bootstrap .visible-lg-inline-block { + display: inline-block !important; +} +} +@media (max-width: 767px) { +.bootstrap .hidden-xs, .bootstrap #header_notifs_icon_wrapper, .bootstrap #header_quick { + display: none !important; +} +} +@media (min-width: 768px) and (max-width: 991px) { +.bootstrap .hidden-sm { + display: none !important; +} +} +@media (min-width: 992px) and (max-width: 1199px) { +.bootstrap .hidden-md { + display: none !important; +} +} +@media (min-width: 1200px) { +.bootstrap .hidden-lg { + display: none !important; +} +} +.bootstrap .visible-print { + display: none !important; +} +@media print { +.bootstrap .visible-print { + display: block !important; +} +.bootstrap table.visible-print { + display: table; +} +.bootstrap tr.visible-print { + display: table-row !important; +} +.bootstrap th.visible-print, .bootstrap td.visible-print { + display: table-cell !important; +} +} +.bootstrap .visible-print-block { + display: none !important; +} +@media print { +.bootstrap .visible-print-block { + display: block !important; +} +} +.bootstrap .visible-print-inline { + display: none !important; +} +@media print { +.bootstrap .visible-print-inline { + display: inline !important; +} +} +.bootstrap .visible-print-inline-block { + display: none !important; +} +@media print { +.bootstrap .visible-print-inline-block { + display: inline-block !important; +} +} +@media print { +.bootstrap .hidden-print { + display: none !important; +} +} +.modal-open { + overflow: hidden; +} +.modal { + bottom: 0; + display: none; + left: 0; + outline: 0 none; + overflow-x: auto; + overflow-y: scroll; + position: fixed; + right: 0; + top: 0; + z-index: 1050; +} +.modal.fade .modal-dialog { + transform: translate(0px, -25%); + transition: transform 0.3s ease-out 0s; +} +.modal.in .modal-dialog { + transform: translate(0px, 0px); +} +.modal-dialog { + margin: 10px; + position: relative; + width: auto; +} +.modal-content { + background-clip: padding-box; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + outline: 0 none; + position: relative; +} +.modal-backdrop { + background-color: #000; + bottom: 0; + left: 0; + position: fixed; + right: 0; + top: 0; + z-index: 1040; +} +.modal-backdrop.fade { + opacity: 0; +} +.modal-backdrop.in { + opacity: 0.5; +} +.modal-header { + border-bottom: 1px solid #e5e5e5; + min-height: 16.4286px; + padding: 15px; +} +.modal-header .close { + margin-top: -2px; +} +.modal-title { + line-height: 1.42857; + margin: 0; +} +.modal-body { + padding: 15px; + position: relative; +} +.modal-footer { + border-top: 1px solid #e5e5e5; + padding: 15px; + text-align: right; +} +.modal-footer:before, .modal-footer:after { + content: " "; + display: table; +} +.modal-footer:after { + clear: both; +} +.modal-footer .btn + .btn { + margin-bottom: 0; + margin-left: 5px; +} +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} +.modal-footer .btn-block + .btn-block { + margin-left: 0; +} +.modal-scrollbar-measure { + height: 50px; + overflow: scroll; + position: absolute; + top: -9999px; + width: 50px; +} +@media (min-width: 768px) { +.modal-dialog { + margin: 30px auto; + width: 600px; +} +.modal-content { + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); +} +.modal-sm { + width: 300px; +} +} +@media (min-width: 992px) { +.modal-lg { + width: 900px; +} +} +.carousel { + position: relative; +} +.carousel-inner { + overflow: hidden; + position: relative; + width: 100%; +} +.carousel-inner > .item { + display: none; + position: relative; + transition: left 0.6s ease-in-out 0s; +} +.carousel-inner > .item > img, .carousel-inner > .item > a > img { + display: block; + height: auto; + line-height: 1; + max-width: 100%; +} +.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev { + display: block; +} +.carousel-inner > .active { + left: 0; +} +.carousel-inner > .next, .carousel-inner > .prev { + position: absolute; + top: 0; + width: 100%; +} +.carousel-inner > .next { + left: 100%; +} +.carousel-inner > .prev { + left: -100%; +} +.carousel-inner > .next.left, .carousel-inner > .prev.right { + left: 0; +} +.carousel-inner > .active.left { + left: -100%; +} +.carousel-inner > .active.right { + left: 100%; +} +.carousel-control { + bottom: 0; + color: #fff; + font-size: 20px; + left: 0; + opacity: 0.5; + position: absolute; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + top: 0; + width: 15%; +} +.carousel-control.left { + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%); + background-repeat: repeat-x; +} +.carousel-control.right { + background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%); + background-repeat: repeat-x; + left: auto; + right: 0; +} +.carousel-control:hover, .carousel-control:focus { + color: #fff; + opacity: 0.9; + outline: 0 none; + text-decoration: none; +} +.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { + display: inline-block; + position: absolute; + top: 50%; + z-index: 5; +} +.carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left { + left: 50%; + margin-left: -10px; +} +.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right { + margin-right: -10px; + right: 50%; +} +.carousel-control .icon-prev, .carousel-control .icon-next { + font-family: serif; + height: 20px; + margin-top: -10px; + width: 20px; +} +.carousel-control .icon-prev:before { + content: "‹"; +} +.carousel-control .icon-next:before { + content: "›"; +} +.carousel-indicators { + bottom: 10px; + left: 50%; + list-style: outside none none; + margin-left: -30%; + padding-left: 0; + position: absolute; + text-align: center; + width: 60%; + z-index: 15; +} +.carousel-indicators li { + background-color: rgba(0, 0, 0, 0); + border: 1px solid #fff; + border-radius: 10px; + cursor: pointer; + display: inline-block; + height: 10px; + margin: 1px; + text-indent: -999px; + width: 10px; +} +.carousel-indicators .active { + background-color: #fff; + height: 12px; + margin: 0; + width: 12px; +} +.carousel-caption { + bottom: 20px; + color: #fff; + left: 15%; + padding-bottom: 20px; + padding-top: 20px; + position: absolute; + right: 15%; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); + z-index: 10; +} +.carousel-caption .btn { + text-shadow: none; +} +@media screen and (min-width: 768px) { +.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next { + font-size: 30px; + height: 30px; + margin-top: -15px; + width: 30px; +} +.carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev { + margin-left: -15px; +} +.carousel-control .glyphicon-chevron-right, .carousel-control .icon-next { + margin-right: -15px; +} +.carousel-caption { + left: 20%; + padding-bottom: 30px; + right: 20%; +} +.carousel-indicators { + bottom: 20px; +} +} +html, body { + height: 100%; + min-height: 100%; +} +body { + background-color: #fff; + color: #555; + font: 400 12px/1.42857 "Open Sans",Helvetica,Arial,sans-serif; +} +#main { + float: left; + margin: 0 0 -50px; + padding: 36px 0 60px; + width: 100%; + z-index: 10; +} +#content.bootstrap { + padding: 80px 10px 0; + transition-duration: 0.4s; + transition-property: margin; + transition-timing-function: ease-out; +} +#content.bootstrap .panel, #content.bootstrap #dash_version, #content.bootstrap .message-item-initial .message-item-initial-body, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel { + background-color: #fff; + border: 1px solid #e6e6e6; + border-radius: 5px; + box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1), 0 0 0 3px #fff inset; + margin-bottom: 20px; + padding: 20px; + position: relative; +} +#content.bootstrap .panel.panel-highlighted, #content.bootstrap #dash_version.panel-highlighted, #content.bootstrap .message-item-initial .panel-highlighted.message-item-initial-body, #content.bootstrap .timeline .timeline-item .timeline-caption .panel-highlighted.timeline-panel { + border-color: #00aff0 !important; + box-shadow: 0 0 0 6px rgba(0, 175, 240, 0.15) inset !important; +} +#content.bootstrap .panel .panel-heading, #content.bootstrap #dash_version .panel-heading, #content.bootstrap .message-item-initial .message-item-initial-body .panel-heading, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel-heading { + color: #555; + font-family: "Ubuntu Condensed",Helvetica,Arial,sans-serif; + font-size: 14px; + font-weight: 400; + height: 32px; + text-overflow: ellipsis; + white-space: nowrap; +} +#content.bootstrap .panel .panel-heading a.btn, #content.bootstrap #dash_version .panel-heading a.btn, #content.bootstrap .message-item-initial .message-item-initial-body .panel-heading a.btn, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel-heading a.btn { + font-family: "Open Sans",Helvetica,Arial,sans-serif; + position: relative; + text-transform: none; + top: 2px; +} +#content.bootstrap .panel .panel-heading i, #content.bootstrap #dash_version .panel-heading i, #content.bootstrap .message-item-initial .message-item-initial-body .panel-heading i, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel-heading i { + font-size: 14px; +} +#content.bootstrap .panel .panel, #content.bootstrap #dash_version .panel, #content.bootstrap .message-item-initial .message-item-initial-body .panel, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel, #content.bootstrap .panel #dash_version, #content.bootstrap #dash_version #dash_version, #content.bootstrap .message-item-initial .message-item-initial-body #dash_version, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel #dash_version, #content.bootstrap .panel .message-item-initial .message-item-initial-body, #content.bootstrap .message-item-initial .panel .message-item-initial-body, #content.bootstrap #dash_version .message-item-initial .message-item-initial-body, #content.bootstrap .message-item-initial #dash_version .message-item-initial-body, #content.bootstrap .message-item-initial .message-item-initial-body .message-item-initial-body, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .message-item-initial .message-item-initial-body, #content.bootstrap .message-item-initial .timeline .timeline-item .timeline-caption .timeline-panel .message-item-initial-body, #content.bootstrap .panel .timeline .timeline-item .timeline-caption .timeline-panel, #content.bootstrap .timeline .timeline-item .timeline-caption .panel .timeline-panel, #content.bootstrap #dash_version .timeline .timeline-item .timeline-caption .timeline-panel, #content.bootstrap .timeline .timeline-item .timeline-caption #dash_version .timeline-panel, #content.bootstrap .message-item-initial .message-item-initial-body .timeline .timeline-item .timeline-caption .timeline-panel, #content.bootstrap .timeline .timeline-item .timeline-caption .message-item-initial .message-item-initial-body .timeline-panel, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .timeline-panel { + border: 1px solid #ddd; + box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1), 0 0 0 3px #fff inset; +} +#content.bootstrap .panel .panel.tab-content, #content.bootstrap #dash_version .panel.tab-content, #content.bootstrap .message-item-initial .message-item-initial-body .panel.tab-content, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel.tab-content, #content.bootstrap .panel #dash_version.tab-content, #content.bootstrap #dash_version #dash_version.tab-content, #content.bootstrap .message-item-initial .message-item-initial-body #dash_version.tab-content, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel #dash_version.tab-content, #content.bootstrap .panel .message-item-initial .tab-content.message-item-initial-body, #content.bootstrap .message-item-initial .panel .tab-content.message-item-initial-body, #content.bootstrap #dash_version .message-item-initial .tab-content.message-item-initial-body, #content.bootstrap .message-item-initial #dash_version .tab-content.message-item-initial-body, #content.bootstrap .message-item-initial .message-item-initial-body .tab-content.message-item-initial-body, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .message-item-initial .tab-content.message-item-initial-body, #content.bootstrap .message-item-initial .timeline .timeline-item .timeline-caption .timeline-panel .tab-content.message-item-initial-body, #content.bootstrap .panel .timeline .timeline-item .timeline-caption .tab-content.timeline-panel, #content.bootstrap .timeline .timeline-item .timeline-caption .panel .tab-content.timeline-panel, #content.bootstrap #dash_version .timeline .timeline-item .timeline-caption .tab-content.timeline-panel, #content.bootstrap .timeline .timeline-item .timeline-caption #dash_version .tab-content.timeline-panel, #content.bootstrap .message-item-initial .message-item-initial-body .timeline .timeline-item .timeline-caption .tab-content.timeline-panel, #content.bootstrap .timeline .timeline-item .timeline-caption .message-item-initial .message-item-initial-body .tab-content.timeline-panel, #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .tab-content.timeline-panel { + border-radius: 0 0 3px 3px; +} +#content.bootstrap h3:not(.modal-title), #content.bootstrap .panel-heading { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + border-color: -moz-use-text-color -moz-use-text-color #eee; + border-image: none; + border-style: none none solid; + border-width: medium medium 1px; + font-size: 1.2em; + height: 2.2em; + line-height: 2.2em; + margin: -20px -16px 15px; + padding: 0 0 0 5px; + text-transform: uppercase; +} +#content.bootstrap h3:not(.modal-title) i, #content.bootstrap h3:not(.modal-title) a, #content.bootstrap .panel-heading i, #content.bootstrap .panel-heading a { +} +#content.bootstrap h3:not(.modal-title) .badge, #content.bootstrap h3:not(.modal-title) #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper #content.bootstrap h3:not(.modal-title) .notifs_badge, #content.bootstrap h3:not(.modal-title) .module-badge-popular, #content.bootstrap h3:not(.modal-title) .module-badge-partner, #content.bootstrap h3:not(.modal-title) .module-badge-bought, #content.bootstrap .panel-heading .badge, #content.bootstrap .panel-heading #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper #content.bootstrap .panel-heading .notifs_badge, #content.bootstrap .panel-heading .module-badge-popular, #content.bootstrap .panel-heading .module-badge-partner, #content.bootstrap .panel-heading .module-badge-bought { + background-color: #fff; + border: 1px solid #d9d9d9; + border-radius: 20px; + color: #555; + font-size: 1.1em; + font-weight: 700; + line-height: 1.2em; + margin-left: 0.4em; + padding: 0 10px; +} +#content.bootstrap h3:not(.modal-title) .badge a, #content.bootstrap h3:not(.modal-title) #header_notifs_icon_wrapper .notifs_badge a, #header_notifs_icon_wrapper #content.bootstrap h3:not(.modal-title) .notifs_badge a, #content.bootstrap h3:not(.modal-title) .module-badge-popular a, #content.bootstrap h3:not(.modal-title) .module-badge-partner a, #content.bootstrap h3:not(.modal-title) .module-badge-bought a, #content.bootstrap .panel-heading .badge a, #content.bootstrap .panel-heading #header_notifs_icon_wrapper .notifs_badge a, #header_notifs_icon_wrapper #content.bootstrap .panel-heading .notifs_badge a, #content.bootstrap .panel-heading .module-badge-popular a, #content.bootstrap .panel-heading .module-badge-partner a, #content.bootstrap .panel-heading .module-badge-bought a { + display: block; + font-size: 0.8em; +} +#content.bootstrap h3:not(.modal-title) .panel-heading-action, #content.bootstrap .panel-heading .panel-heading-action { + line-height: 0; + position: absolute; + right: 0; + top: 2px; +} +#content.bootstrap h3:not(.modal-title) .panel-heading-action .btn-group, #content.bootstrap .panel-heading .panel-heading-action .btn-group { + position: absolute; + right: 2px; + top: -2px; + white-space: nowrap; +} +#content.bootstrap h3:not(.modal-title) .panel-heading-action .btn-group a.btn, #content.bootstrap .panel-heading .panel-heading-action .btn-group a.btn { + float: none; +} +#content.bootstrap h3:not(.modal-title) .panel-heading-action > a.btn, #content.bootstrap .panel-heading .panel-heading-action > a.btn { + position: absolute; + right: 2px; + top: 0; +} +#content.bootstrap h3:not(.modal-title) .panel-heading-action a.list-toolbar-btn, #content.bootstrap .panel-heading .panel-heading-action a.list-toolbar-btn { + border-left: 1px solid #eee; + color: #ccc; + float: left; + height: 30px; + width: 30px; +} +#content.bootstrap h3:not(.modal-title) .panel-heading-action a.list-toolbar-btn:hover, #content.bootstrap .panel-heading .panel-heading-action a.list-toolbar-btn:hover { + color: #00aff0; + text-decoration: none; +} +#content.bootstrap h3:not(.modal-title) .panel-heading-action a.list-toolbar-btn i, #content.bootstrap .panel-heading .panel-heading-action a.list-toolbar-btn i { + font-size: 18px; + line-height: 30px; + text-align: center; +} +#content.bootstrap .panel-danger .panel-heading { + background-color: #8bc954 !important; +} +#content.bootstrap form .alert, #content.bootstrap form #carrier_wizard .wizard_error, #content.bootstrap #carrier_wizard form .wizard_error { + clear: both; +} +@media (max-width: 480px) { +#content.bootstrap { + margin-left: 0 !important; + padding: 80px 5px 0; +} +} +#content.bootstrap .help-block { + font-style: italic; +} +#content.bootstrap .nav.nav-tabs li.active a, #content.bootstrap #header_notifs_icon_wrapper.nav-tabs li.active a, #content.bootstrap #header_employee_box.nav-tabs li.active a, #content.bootstrap #header_quick.nav-tabs li.active a { + z-index: 99; +} +#content.bootstrap .breadcrumb { + background-color: #fff; + border: 1px solid #e6e6e6; +} +#content.bootstrap .panel.panel-sm, #content.bootstrap #dash_version.panel-sm, #content.bootstrap .message-item-initial .panel-sm.message-item-initial-body, #content.bootstrap .timeline .timeline-item .timeline-caption .panel-sm.timeline-panel { + padding: 8px !important; +} +#content.bootstrap .panel.panel-sm .panel-heading, #content.bootstrap #dash_version.panel-sm .panel-heading, #content.bootstrap .message-item-initial .panel-sm.message-item-initial-body .panel-heading, #content.bootstrap .timeline .timeline-item .timeline-caption .panel-sm.timeline-panel .panel-heading { + font-size: 13px; + margin: -8px -8px 10px; + padding-left: 8px; +} +#content.bootstrap .panel.panel-sm .form-group, #content.bootstrap #dash_version.panel-sm .form-group, #content.bootstrap .message-item-initial .panel-sm.message-item-initial-body .form-group, #content.bootstrap .timeline .timeline-item .timeline-caption .panel-sm.timeline-panel .form-group { + margin-bottom: 8px; +} +.data-focus.data-focus-primary { + background-color: #00aff0; + border-radius: 10px; + color: #fff; +} +#customer_part .customerCard.selected-customer .panel, #customer_part .customerCard.selected-customer .bootstrap #dash_version, .bootstrap #customer_part .customerCard.selected-customer #dash_version, #customer_part .customerCard.selected-customer .bootstrap .message-item-initial .message-item-initial-body, .bootstrap .message-item-initial #customer_part .customerCard.selected-customer .message-item-initial-body, #customer_part .customerCard.selected-customer .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption #customer_part .customerCard.selected-customer .timeline-panel { + border: 2px solid #79bd3c; + color: #79bd3c; +} +body.display-modal #content, body.display-modal #main { + background: none repeat scroll 0 0 #f8f8f8; + margin: 0; + padding: 0; +} +.bootstrap .panel .panel-footer, .bootstrap #dash_version .panel-footer, .bootstrap .message-item-initial .message-item-initial-body .panel-footer, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel-footer { + background-color: #fcfdfe; + border-color: #eee; + height: 73px; + margin: 15px -20px -20px; +} +.bootstrap .panel .panel-footer .btn.pull-right:not(:first-child), .bootstrap #dash_version .panel-footer .btn.pull-right:not(:first-child), .bootstrap .message-item-initial .message-item-initial-body .panel-footer .btn.pull-right:not(:first-child), .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel-footer .btn.pull-right:not(:first-child) { + margin-right: 5px; +} +.bootstrap .panel .panel-footer .btn, .bootstrap #dash_version .panel-footer .btn, .bootstrap .message-item-initial .message-item-initial-body .panel-footer .btn, .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel-footer .btn { + line-height: 1em; +} +#header .panel-footer { + height: 40px !important; + margin: 15px 0 0 !important; +} +#main.helpOpen { + width: 70%; +} +@media (max-width: 1200px) { +#main.helpOpen { + width: 100%; +} +} +#help-container { + background-color: #fff; + box-sizing: border-box; + float: right; + margin: 120px 0 50px; + overflow-x: hidden; + padding: 0; + position: relative; + width: 30%; +} +@media (max-width: 1200px) { +#help-container { + display: none; +} +} +.page-topbar #help-container { + margin-top: 140px; +} +#header { + z-index: 20; +} + +#header_infos .navbar-header { + width: 100%; +} + +@media (max-width: 480px) { +#header_shopname { + display: none; +} +} +#header_shopname img { + height: 35px; + left: 0; + position: absolute; + top: 0; + width: 35px; +} +#header_notifs_icon_wrapper { + min-width: 170px; +} +#header_notifs_icon_wrapper > li > a { + display: block; + height: 36px; +} +#header_notifs_icon_wrapper > li > a:hover i { + color: #fff; +} +#header_notifs_icon_wrapper > li > a > i { + color: #b3b3b3; + font-size: 14px; + vertical-align: middle; +} +#header_notifs_icon_wrapper .notifs { + position: relative; + width: 40px; +} +#header_notifs_icon_wrapper .notifs_badge { + display: none; + font-size: 10px !important; + padding: 0 5px !important; + position: absolute; + right: -3px; + top: 2px; + z-index: 10; +} +#header_notifs_icon_wrapper .notifs_dropdown { + background-color: #fff; + border: medium none; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.7); +} +#header_notifs_icon_wrapper .notifs_dropdown .notifs_panel { + width: 300px; +} +#header_notifs_icon_wrapper .notifs_dropdown .notifs_panel .notifs_panel_header h3 { + border-bottom: 1px solid #ccc; + font-size: 1.3em; + margin: 0; + padding: 10px; +} +#header_notifs_icon_wrapper .notifs_dropdown .notifs_panel .notifs_panel_footer { + padding: 10px; + text-align: center; +} +#header_notifs_icon_wrapper .notifs_dropdown .notifs_panel .list_notif a { + border-bottom: 1px solid #ccc; + display: block; + padding: 5px; + text-decoration: none; +} +#header_notifs_icon_wrapper .notifs_dropdown .notifs_panel .list_notif .no_notifs { + border-bottom: 1px solid #ccc; + display: block; + padding: 15px; +} +#header_nav_toggle { + background-color: #000; + border: medium none; + color: #fff; + display: none; +} +#header_employee_box { + margin: 0 !important; +} +@media (max-width: 768px) { +#header_employee_box { + float: right; +} +#header_employee_box > li { + display: inline-block; + float: left; +} +} +@media (max-width: 992px) { +#header_employee_box span.string-long { + display: none; +} +} +#header_employee_box span.string-short { + display: none; +} +@media (max-width: 992px) { +#header_employee_box span.string-short { + display: inline-block; +} +} +#header_employee_box a img { + margin-right: 5px; +} +#header_employee_box #header_foaccess i { + font-size: 1.2em; +} +#employee_infos .employee_name { + padding-left: 34px !important; + position: relative; +} +#employee_infos .employee_avatar_small { + left: 0; + position: absolute; + top: 2px; +} +#employee_infos img { + border: medium none; + padding: 0; +} +#employee_links i { + font-size: 14px; +} + + +#footer { + animation: 0.3s ease 0.2s normal both 1 running fadeInUp; + background-color: rgba(0, 0, 0, 0.8); + bottom: 0; + color: #aaa; + display: block; + height: 50px; + line-height: 50px; + position: fixed; + width: 100%; + z-index: 600; +} +#footer a { + color: #ccc; +} +#footer.hide { + display: none !important; +} +#footer #go-top { + background-color: #383f50; + bottom: 10px; + color: #fff; + cursor: pointer; + display: block; + font-size: 16px; + height: 30px; + line-height: 30px; + margin: -2px 0 0; + padding: 0 6px; + position: fixed; + right: 10px; + text-align: center; + text-decoration: none; + width: 30px; + z-index: 9003; +} +#footer #go-top:hover { + background-color: #00aff0; +} +#footer .social-networks { + margin: 4px 0 0; +} +#footer a.footer_link { + color: #00aff0; +} +#footer a.footer_link:hover { + color: #fff; + text-decoration: none; +} +#footer a.footer_link i { + color: #fff; + font-size: 14px; +} +#footer .footer-contact { + line-height: 1.5em; + margin: 0 0 6px 6px; + overflow: hidden; + padding: 7px 0 0; + text-overflow: ellipsis; + white-space: nowrap; +} +#footer .footer-contact strong { + color: #fff; + font-weight: 400; +} +a.link-social i { + border-radius: 30px; + display: inline-block; + font-size: 28px; + height: 34px; + line-height: 34px !important; + margin: 0 4px 0 0; + text-align: center; + width: 34px; +} +a.link-social:hover { + text-decoration: none; +} +.link-twitter i { + background-color: #7cceef; + color: #fff; +} +.link-twitter i:hover { + background-color: #fff; + color: #7cceef; +} +.link-facebook i { + background-color: #557dbb; + color: #fff; +} +.link-facebook i:hover { + background-color: #fff; + color: #557dbb; +} +.link-github i { + background-color: #fff; + color: #000; +} +.link-github i:hover { + background-color: #000; + color: #fff; +} +.link-google i { + background-color: #e6644e; + color: #fff; +} +.link-google i:hover { + background-color: #fff; + color: #e6644e; +} +#nav-sidebar { + background-color: #191c23; + height: 100%; + left: 0; + position: fixed; + width: 210px; + z-index: 500; +} +#nav-sidebar ul.menu { + list-style: outside none none !important; + margin: 0; + padding: 0; +} +#nav-sidebar ul.menu li.searchtab { + background-color: #2d3341; + border-bottom: 1px solid #232732; + box-shadow: 0 -3px 0 0 rgba(0, 0, 0, 0.1) inset; + height: 55px; + padding: 14px 7px; + position: relative; +} +#nav-sidebar ul.menu li.searchtab #bo_query { + background-color: #d7dbe3; + color: #383f50; +} +#nav-sidebar ul.menu li.searchtab .form-group.focus-search { + background-color: #2d3341; + border-bottom: 1px solid #232732; + height: 55px; + left: 0; + padding: 14px 13px 0 7px; + position: absolute; + top: 0; + width: 400px; + z-index: 900; +} +#nav-sidebar ul.menu li.searchtab .form-group.focus-search #bo_query { + width: 100%; +} +#nav-sidebar ul.menu li.searchtab .clear_search { + position: absolute; + right: 8px; + top: 6px; + z-index: 10; +} +#nav-sidebar ul.menu li.searchtab i { + font-size: 14px; +} +#nav-sidebar ul.menu li.maintab { + position: relative; +} +#nav-sidebar ul.menu li.maintab ul.submenu { + background-color: #272c38; + display: none; + padding: 4px; +} +#nav-sidebar ul.menu li.maintab ul.submenu li { + list-style: outside none none !important; +} +#nav-sidebar ul.menu li.maintab ul.submenu li a { + background-color: #383f50; + border-bottom: 1px solid #232732; + color: #c3c5ca; + display: block; + padding: 3px 8px; +} +#nav-sidebar ul.menu li.maintab ul.submenu li a:hover { + background-color: #232732; + box-shadow: -4px 0 0 0 #00aff0 inset; + color: #fff; + text-decoration: none; +} +#nav-sidebar ul.menu li.maintab a { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +#nav-sidebar ul.menu li.maintab > a.title { + background-color: #383f50; + border-bottom: 1px solid #232732; + color: #c3c5ca; + display: block; + height: 34px; + line-height: 34px; + padding: 0 0.35em; + position: relative; + text-decoration: none; + text-transform: uppercase; + transition-duration: 0.2s; + transition-property: background-color; + transition-timing-function: ease-out; +} +#nav-sidebar ul.menu li.maintab > a.title i { + color: #878b96; + font-size: 28px; + transition-duration: 0.4s; + transition-property: color; + transition-timing-function: ease-out; + vertical-align: middle; + width: 42px; +} +#nav-sidebar ul.menu li.maintab.hover > a.title, #nav-sidebar ul.menu li.maintab:hover:not(.hover) > a.title { + background-color: #272c38; + color: #fff; +} +#nav-sidebar ul.menu li.maintab.hover > a.title i, #nav-sidebar ul.menu li.maintab:hover:not(.hover) > a.title i { + color: #fff; +} +#nav-sidebar ul.menu li.maintab.hover ul.submenu { + display: block; + left: 210px; + position: absolute; + top: 0; + width: 200px; + z-index: 600; +} +#nav-sidebar ul.menu li.maintab:last-child > a.title { + border-bottom: medium none; +} +#nav-sidebar ul.menu li.maintab.active a, #nav-sidebar ul.menu li.maintab.active li.active a { + background-color: #4d576e; + color: #fff; +} +#nav-sidebar ul.menu li.maintab.active a i, #nav-sidebar ul.menu li.maintab.active li.active a i { + color: #fff; +} +@media (min-height: 850px) { +body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab.active ul.submenu { + background-color: #fff; + border-right: 1px solid #e6e6e6; + display: block; +} +body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab.active ul.submenu a { + background-color: #fff; + border-bottom: 1px solid #d8f3fc; + color: #00aff0; +} +body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab.active ul.submenu a:hover { + background-color: #d8f3fc; + border-bottom: 1px solid #d8f3fc; + box-shadow: 0 -1px #fff; + color: #00aff0; + text-decoration: none; +} +body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab.active ul.submenu li:last-child a { + border-bottom: 1px solid #fff; +} +body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab.active ul.submenu li.active a { + background-color: #00aff0; + border-bottom: 1px solid #00aff0; + border-top: 1px solid #fff; + color: #fff; + position: relative; + top: -1px; +} +} +@media (max-width: 480px) { +#nav-sidebar { + display: none; +} +} +@media (max-height: 850px) { +body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab > a.title { + font-size: 12px; + height: 28px; + line-height: 28px; +} +body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab > a.title i { + font-size: 14px; + text-align: right; + vertical-align: baseline; + width: 18px; +} +body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab ul.submenu { + padding: 1px 1px 0; +} +body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab ul.submenu li a { + height: 26px; + line-height: 26px; + padding: 0 6px; +} +body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab.active ul.submenu { + display: none; +} +body:not(.page-sidebar-closed) #nav-sidebar ul.menu li.maintab.active.hover ul.submenu { + display: block; + left: 210px; + position: absolute; + top: 0; + width: 200px; + z-index: 600; +} +} +.page-sidebar #content { + margin-left: 210px; +} +.page-sidebar-closed #nav-sidebar { + overflow: visible; + width: 50px; +} +.page-sidebar-closed #nav-sidebar ul.submenu { + display: none !important; + padding-top: 0 !important; + position: relative; + top: 34px; +} +.page-sidebar-closed #nav-sidebar li.searchtab { + color: rgba(255, 255, 255, 0.5); +} +.page-sidebar-closed #nav-sidebar li.searchtab:hover { + color: #fff; + cursor: pointer; +} +.page-sidebar-closed #nav-sidebar li.searchtab.search-expanded { + background-color: #2d3341; + padding: 14px 13px 0 7px; + width: 400px; +} +.page-sidebar-closed #nav-sidebar li.searchtab.search-expanded:before { + display: none; +} +.page-sidebar-closed #nav-sidebar li.searchtab.search-expanded form .form-group { + display: block; +} +.page-sidebar-closed #nav-sidebar li.maintab.active ul.submenu { + border: medium none !important; +} +.page-sidebar-closed #nav-sidebar a.title { + text-align: center; +} +.page-sidebar-closed #nav-sidebar a.title > span { + display: none; +} +.page-sidebar-closed #nav-sidebar > ul > li.maintab:hover { + position: relative; + width: 250px !important; + z-index: 500; +} +.page-sidebar-closed #nav-sidebar > ul > li.maintab:hover a.title { + text-align: left; +} +.page-sidebar-closed #nav-sidebar > ul > li.maintab:hover a.title > span { + display: inline-block; +} +.page-sidebar-closed #nav-sidebar > ul > li.maintab:hover ul.submenu { + display: block !important; + left: 50px; + position: absolute !important; + top: 34px !important; + width: 200px !important; +} +.page-sidebar-closed #content { + margin-left: 55px; +} +@media (max-width: 480px) { +.page-sidebar-closed #content { + margin-left: 0; +} +} +.page-sidebar-closed #content h2.page-title { + padding: 26px 0 0 120px; + white-space: nowrap; +} +.page-sidebar-closed #content ul.page-breadcrumb { + left: 120px !important; +} +.page-sidebar-closed .submenu_expand { + display: none; +} +#nav-topbar { + background-color: #fff; + border: 1px solid #fff; + height: 30px; + padding: 0 40px 0 0; + position: fixed; + top: 36px; + width: 100%; + z-index: 600; +} +#nav-topbar ul.menu { + display: block; + list-style: outside none none; + margin: 0; + padding: 0; +} +#nav-topbar ul.menu li.maintab { + border-right: 1px solid #e6e6e6; +} +#nav-topbar ul.menu li.maintab:last-child { + border: medium none; +} +#nav-topbar ul.menu li.searchtab { + float: right; + margin-right: 5px; + width: 200px; +} +#nav-topbar ul.menu li.maintab, #nav-topbar ul.menu li.subtab { + float: left; + height: 28px; + list-style: outside none none; + margin: 0; + padding: 0; + position: relative; +} +#nav-topbar ul.menu li.maintab > a, #nav-topbar ul.menu li.subtab > a { + color: #626e8c; + display: block; + font-size: 12px; + line-height: 27px; + margin: 0; + padding: 0 6px; +} +#nav-topbar ul.menu li.maintab > a i, #nav-topbar ul.menu li.subtab > a i { + background-color: transparent; + color: #4d576e; + font-size: 14px; + margin: 0; + width: 15px; +} +#nav-topbar ul.menu li.maintab.active, #nav-topbar ul.menu li.maintab:hover, #nav-topbar ul.menu li.subtab.active, #nav-topbar ul.menu li.subtab:hover { + background-color: #00aff0; +} +#nav-topbar ul.menu li.maintab.active > a, #nav-topbar ul.menu li.maintab:hover > a, #nav-topbar ul.menu li.subtab.active > a, #nav-topbar ul.menu li.subtab:hover > a { + color: #fff; + text-decoration: none; +} +#nav-topbar ul.menu li.maintab.active > a i, #nav-topbar ul.menu li.maintab:hover > a i, #nav-topbar ul.menu li.subtab.active > a i, #nav-topbar ul.menu li.subtab:hover > a i { + color: #fff; +} +#nav-topbar ul.menu li.expanded > ul.submenu { + display: block; +} +#nav-topbar ul.menu ul.submenu { + background-color: #fff; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); + display: none; + left: 0; + margin: 0; + padding: 0; + position: absolute; + top: 28px; + width: 200px !important; +} +#nav-topbar ul.menu ul.submenu > li { + list-style: outside none none; + padding: 0; + width: 200px; +} +#nav-topbar ul.menu ul.submenu > li:last-child > a { + border: medium none; +} +#nav-topbar ul.menu ul.submenu > li > a { + border-bottom: 1px solid #e6e6e6; + display: block; + padding: 4px 5px 4px 10px; +} +#nav-topbar ul.menu ul.submenu > li > a:hover { + background-color: #00aff0; + color: #fff; + text-decoration: none; +} +#nav-topbar ul.menu ul.submenu > li.active a { + background-color: #00aff0; + border-bottom: 1px solid #008abd; + color: #fff; +} +#nav-topbar #ellipsistab { + display: block; + height: 28px; + margin: 0; + padding: 0; + position: absolute; + right: 0; + width: 40px; +} +#nav-topbar #ellipsistab > a { + color: #383f50; + cursor: pointer; + font-size: 14px; + line-height: 30px; + text-align: center; +} +#nav-topbar #ellipsistab ul#ellipsis_submenu { + left: inherit; + right: 0; +} +#nav-topbar #ellipsistab ul#ellipsis_submenu a.title { + padding: 0 8px; + text-align: left; +} +#nav-topbar #ellipsistab ul#ellipsis_submenu li.subtab.expanded > ul { + left: -200px; + top: 0; +} +#nav-topbar .menu-collapse { + display: none; +} +#nav-mobile { + height: 35px; + left: 0; + position: fixed; + top: 0; + width: 35px; + z-index: 1100; +} +#nav-mobile.expanded { + height: 100%; + top: 35px; + width: 100%; +} +#nav-mobile.expanded .menu-collapse { + left: 0; + position: absolute; + top: -35px; + z-index: 1200; +} +#nav-mobile ul.menu { + animation: 0.3s ease 0.2s normal both 1 running fadeInLeft; + background-color: rgba(0, 0, 0, 0.8); + border-top: 1px solid #000; + display: none; + height: 100%; + list-style: outside none none; + margin: 0 0 100px; + padding: 0; + position: absolute; + transition: all 0.35s ease-out 0s; + width: 100%; +} +#nav-mobile ul.menu > li.searchtab { + box-shadow: 0 -3px 0 0 rgba(0, 0, 0, 0.1) inset; + padding: 15px; + position: relative; +} +#nav-mobile ul.menu > li.searchtab #bo_query { + background-color: #d7dbe3; + color: #383f50; +} +#nav-mobile ul.menu > li.searchtab .form-group { + margin: 0; +} +#nav-mobile ul.menu > li.searchtab .clear_search { + position: absolute; + right: 5px; + top: 5px; +} +#nav-mobile ul.menu > li { + background: none repeat scroll 0 0 #383f50; + position: relative; +} +#nav-mobile ul.menu > li > a { + background-color: #383f50; + border-bottom: 1px solid #232732; + color: #c3c5ca; + display: block; + font-size: 12px; + height: 34px; + line-height: 34px; + padding: 0 0 0 10px; + position: relative; + text-decoration: none; + text-transform: uppercase; + transition-duration: 0.4s; + transition-property: background-color; + transition-timing-function: ease-out; +} +#nav-mobile ul.menu > li > a i { + color: rgba(255, 255, 255, 0.6); + transition-duration: 0.4s; + transition-property: color; + transition-timing-function: ease-out; + vertical-align: middle; +} +#nav-mobile ul.menu > li > a:hover { + background-color: #4d576e; + color: #fff; +} +#nav-mobile ul.menu > li > a:hover i { + color: #fff; +} +#nav-mobile ul.menu > li > a > i { + color: #fff; + display: inline-block; + font-size: 20px; + height: 34px; + line-height: 34px; + text-align: center; + width: 34px; +} +#nav-mobile ul.submenu { + display: none; +} +#nav-mobile #nav-mobile-submenu a:not(#nav-mobile-submenu-back) { + font-size: 1.2em; + padding-left: 50px; + text-transform: none; +} +#nav-mobile a#nav-mobile-submenu-back { + background-color: #2d3341; + font-size: 1.5em; +} +#nav-mobile ul.menu.menu-close { + animation: 0.2s ease 0.2s normal both 1 running fadeOutLeft; +} +#nav-mobile .menu-collapse { + background-color: #000; + color: #fff; + height: 35px; + line-height: 1.3em; + text-align: center; + width: 35px; +} +.menu-collapse { + color: #383f50; + cursor: pointer; + display: block; + font-size: 2em; + height: 54px; + line-height: 55px; + text-align: center; + width: 100%; +} +.mobile-nav #content h2.page-title { + padding-left: 10px !important; +} +.mobile-nav #content ul.page-breadcrumb { + left: 10px !important; +} +.page-topbar:not(.mobile-nav) #main { + padding-top: 64px; +} +.page-topbar:not(.mobile-nav) #content { + margin-left: 0; +} +.page-topbar:not(.mobile-nav) #content .page-head { + top: 66px; +} +.page-topbar:not(.mobile-nav) #content .page-title { + padding-left: 75px; +} +.page-topbar:not(.mobile-nav) #content .page-breadcrumb { + left: 75px; +} +.page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .searchtab:before { + display: block; + height: 28px; + left: 14px; + position: absolute; + top: 16px; + width: 28px; + z-index: 1000; +} +.page-sidebar-closed:not(.nav-topbar):not(.mobile-nav) .searchtab .form-group { + display: none; +} + + +#content .process-icon-loading { + font-size: 20px; + line-height: 30px; +} +.lgsitemaps tr.loading td:first-child { + background: url("../img/ajax-loader.gif") no-repeat scroll center center #fff; + font-size: 0; +} +.bootstrap { +} +.bootstrap .fixed-width-xs { + width: 48px !important; +} +.bootstrap .fixed-width-sm { + width: 80px !important; +} +.bootstrap .fixed-width-md { + width: 120px !important; +} +.bootstrap .fixed-width-lg { + width: 160px !important; +} +.bootstrap .fixed-width-xl { + width: 200px !important; +} +.bootstrap .fixed-width-xxl { + width: 250px !important; +} +@media (max-width: 480px) { +.bootstrap .hidden-inline-xs { + display: none !important; +} +} +.bootstrap .row-margin-bottom { + margin-bottom: 15px; +} +.bootstrap .row-margin-top { + margin-top: 15px; +} +.bootstrap .row-padding-top { + padding-top: 15px; +} +.bootstrap .thumbnail, .bootstrap .img-thumbnail { + background-color: #fff; + border-color: #ccc !important; +} +.bootstrap .highlight { + background-color: #f7e69f; +} +.bootstrap .text-orange { + color: #f90; +} +.bootstrap .badge, .bootstrap #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .notifs_badge, .bootstrap .module-badge-popular, .bootstrap .module-badge-partner, .bootstrap .module-badge-bought { + background-color: #00aff0; + font-size: 1em; + font-weight: normal; + letter-spacing: 0.0625em; + line-height: inherit; + padding: 1px 5px; +} +.bootstrap .badge.badge-info, .bootstrap #header_notifs_icon_wrapper .badge-info.notifs_badge, #header_notifs_icon_wrapper .bootstrap .badge-info.notifs_badge, .bootstrap .badge-info.module-badge-popular, .bootstrap .badge-info.module-badge-partner, .bootstrap .badge-info.module-badge-bought { + background-color: #5bc0de; +} +.bootstrap .badge.badge-success, .bootstrap #header_notifs_icon_wrapper .badge-success.notifs_badge, #header_notifs_icon_wrapper .bootstrap .badge-success.notifs_badge, .bootstrap .badge-success.module-badge-popular, .bootstrap .badge-success.module-badge-partner, .bootstrap .badge-success.module-badge-bought { + background-color: #79bd3c; +} +.bootstrap .badge.badge-warning, .bootstrap #header_notifs_icon_wrapper .badge-warning.notifs_badge, #header_notifs_icon_wrapper .bootstrap .badge-warning.notifs_badge, .bootstrap .badge-warning.module-badge-popular, .bootstrap .badge-warning.module-badge-partner, .bootstrap .badge-warning.module-badge-bought { + background-color: #f0ad4e; +} +.bootstrap .badge.badge-danger, .bootstrap #header_notifs_icon_wrapper .badge-danger.notifs_badge, #header_notifs_icon_wrapper .bootstrap .badge-danger.notifs_badge, .bootstrap .badge-danger.module-badge-popular, .bootstrap .badge-danger.module-badge-partner, .bootstrap .badge-danger.module-badge-bought { + background-color: #d9534f; +} +.bootstrap .badge.badge-critical, .bootstrap #header_notifs_icon_wrapper .badge-critical.notifs_badge, #header_notifs_icon_wrapper .bootstrap .badge-critical.notifs_badge, .bootstrap .badge-critical.module-badge-popular, .bootstrap .badge-critical.module-badge-partner, .bootstrap .badge-critical.module-badge-bought { + background-color: #b52b27; +} +.bootstrap .label { + font-size: 12px; + font-weight: 400; +} +.bootstrap .label.label-inactive { + background-color: #999; +} +.bootstrap .nav-tabs { + border-bottom: medium none; +} +.bootstrap .nav-tabs li .badge, .bootstrap .nav-tabs li #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .nav-tabs li .notifs_badge, .bootstrap .nav-tabs li .module-badge-popular, .bootstrap .nav-tabs li .module-badge-partner, .bootstrap .nav-tabs li .module-badge-bought { + background-color: #fff; + border: 2px solid #eee; + color: #666; +} +.bootstrap .nav-tabs li a { + font-family: "Ubuntu Condensed",Helvetica,Arial,sans-serif; + font-size: 1.1em; + font-weight: 300; + text-transform: uppercase; +} +.bootstrap .nav-tabs li.active a, .bootstrap .nav-tabs li.active a:hover, .bootstrap .nav-tabs li.active a:focus { + background-color: #fff; +} +.bootstrap .table tr.parent td { + background-color: #eee !important; + border-bottom: 1px solid #ccc !important; +} +.bootstrap .alert.alert-warning, .bootstrap #carrier_wizard .alert-warning.wizard_error { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color #f4c178; + border-image: none; + border-style: none none none solid; + border-width: medium medium medium 3px; + padding-left: 50px; + position: relative; +} +.bootstrap .alert.alert-warning:before, .bootstrap #carrier_wizard .alert-warning.wizard_error:before { + color: #f4c178; + display: block; + height: 25px; + left: 7px; + position: absolute; + top: 6px; + width: 25px; +} +.bootstrap .alert.alert-danger, .bootstrap #carrier_wizard .wizard_error { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color #e17875; + border-image: none; + border-style: none none none solid; + border-width: medium medium medium 3px; + padding-left: 50px; + position: relative; +} +.bootstrap .alert.alert-danger:before, .bootstrap #carrier_wizard .wizard_error:before { + color: #e17875; + display: block; + height: 25px; + left: 7px; + position: absolute; + top: 6px; + width: 25px; +} +.bootstrap .alert.alert-success, .bootstrap #carrier_wizard .alert-success.wizard_error { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color #90cb5c; + border-image: none; + border-style: none none none solid; + border-width: medium medium medium 3px; + padding-left: 50px; + position: relative; +} +.bootstrap .alert.alert-success:before, .bootstrap #carrier_wizard .alert-success.wizard_error:before { + color: #90cb5c; + display: block; + height: 25px; + left: 7px; + position: absolute; + top: 6px; + width: 25px; +} +.bootstrap .alert.alert-info, .bootstrap #carrier_wizard .alert-info.wizard_error { + background-color: #f8fcfe; + border: 1px solid #c5e9f3; + color: #31b0d5; + padding-left: 50px; + position: relative; +} +.bootstrap .alert.alert-info:before, .bootstrap #carrier_wizard .alert-info.wizard_error:before { + color: #81cfe6; + display: block; + height: 25px; + left: 7px; + position: absolute; + top: 6px; + width: 25px; +} +.bootstrap .alert.alert-addons, .bootstrap #carrier_wizard .alert-addons.wizard_error { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + background-color: #f3f3f2; + border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color #f34291; + border-image: none; + border-style: none none none solid; + border-width: medium medium medium 3px; + color: #f01778; + padding-left: 50px; + position: relative; +} +.bootstrap .alert.alert-addons hr, .bootstrap #carrier_wizard .alert-addons.wizard_error hr { + border-top-color: #f22f86; +} +.bootstrap .alert.alert-addons .alert-link, .bootstrap #carrier_wizard .alert-addons.wizard_error .alert-link { + color: #c70d60; +} +.bootstrap .alert.alert-addons:before, .bootstrap #carrier_wizard .alert-addons.wizard_error:before { + color: #f34291; + display: block; + height: 25px; + left: 7px; + position: absolute; + top: 6px; + width: 25px; +} +.bootstrap .alert.alert-onboarding, .bootstrap #carrier_wizard .alert-onboarding.wizard_error { + background-color: #fff; + border: 1px solid #c5e9f3; + color: #00aff0; + padding-left: 50px; + position: relative; +} +.bootstrap .alert.alert-onboarding hr, .bootstrap #carrier_wizard .alert-onboarding.wizard_error hr { + border-top-color: #0abdff; +} +.bootstrap .alert.alert-onboarding .alert-link, .bootstrap #carrier_wizard .alert-onboarding.wizard_error .alert-link { + color: #008abd; +} +.bootstrap .alert.alert-onboarding:before, .bootstrap #carrier_wizard .alert-onboarding.wizard_error:before { + color: #1fc2ff; + display: block; + height: 25px; + left: 7px; + position: absolute; + top: 6px; + width: 25px; +} +.bootstrap .alert.alert-message, .bootstrap #carrier_wizard .alert-message.wizard_error { + background-color: #fff; + border: 2px solid #f0ad4e; + padding-left: 50px; + position: relative; +} +.bootstrap .alert.alert-message:before, .bootstrap #carrier_wizard .alert-message.wizard_error:before { + color: #f4c178; + display: block; + height: 25px; + left: 7px; + position: absolute; + top: 6px; + width: 25px; +} +.bootstrap .alert h4, .bootstrap #carrier_wizard .wizard_error h4 { + font-size: 1.45em; + margin-bottom: 1em; +} +.bootstrap .overflow-y { + margin-bottom: 15px; + max-height: 200px; + overflow-y: auto; +} +.bootstrap .input[type="password"] { + font-size: 2em !important; +} +.bootstrap .pagination { + margin: 17px 0 0; +} +.bootstrap .list-detail dd:not(:last-child) { + margin-bottom: 10px; +} +.bootstrap .attributes-color-container { + border: 1px solid #000; + display: block; + height: 25px; + width: 40px; +} +.bootstrap #mColorPickerInput { + color: #000; +} +.bootstrap .table { + border-collapse: separate; + margin-bottom: 5px; +} +.bootstrap .table thead > tr > th { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + border-color: -moz-use-text-color -moz-use-text-color #a0d0eb; + border-image: none; + border-style: none none solid; + border-width: medium medium 1px; + font-weight: normal; + vertical-align: top; +} +.bootstrap .table thead > tr > th span.title_box { + color: #656565; + display: block; + white-space: nowrap; +} +.bootstrap .table thead > tr > th span.title_box.active { + font-weight: bold; +} +.bootstrap .table thead > tr > th span.title_box a { + text-decoration: none; +} +.bootstrap .table thead > tr > th span.title_box a.active { + color: #000; +} +.bootstrap .table thead > tr.filter > th { + background-color: #ecf6fb; +} +.bootstrap .table thead > tr.filter > th input.filter[type="text"], .bootstrap .table thead > tr.filter > th input.filter[type="password"], .bootstrap .table thead > tr.filter > th select.filter { + border-color: #a0d0eb; + font-size: 11px; + padding: 4px; +} +.bootstrap .table input, .bootstrap .table select { + margin: 0; +} +.bootstrap .table tbody > tr > td { + background-color: #fff; + border-bottom: 1px solid #eaedef; + border-top: medium none; + color: #666; + font-size: 12px; + padding: 3px 7px; + vertical-align: middle; +} +.bootstrap .table tbody > tr.odd > td { + background-color: #fcfdfe; +} +.bootstrap .table tbody > tr:hover > td { + background-color: #f4f8fb; +} +.bootstrap .table td.center, .bootstrap .table th.center { + text-align: center; +} +.bootstrap .table td.pointer { + cursor: pointer; +} +.bootstrap .table td.dragHandle .dragGroup { + border-radius: 5px; + cursor: move; + font-size: 14px; + padding: 4px 4px 4px 20px; + position: relative; + text-align: center; + width: 80px; +} +.bootstrap .table td.dragHandle .dragGroup:hover { + background-color: #00aff0 !important; + color: #fff; +} +.bootstrap .table td.dragHandle .dragGroup:before { + display: block; + height: 16px; + left: 6px; + position: absolute; + top: 8px; + width: 16px; +} +.bootstrap .table td.dragHandle .dragGroup .positions { + background-color: #eee; + border: 1px solid #ccc; + border-radius: 3px; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset; + color: #aaa; + display: inline-block; + padding: 0 5px; + text-shadow: 1px 1px #fff; + width: 43px; +} +.bootstrap .table tr.actions { + text-align: right; +} +.bootstrap .table td.actions { + padding-right: 5px; + text-align: right; +} +.bootstrap .table th.actions .btn { + margin-bottom: 4px !important; +} +.bootstrap .table tr.myDragClass { + background-color: #eee; + padding: 10px; +} +.bootstrap .table tr.myDragClass td { + background-color: #00aff0 !important; + color: #fff !important; + transform: translate(5px, 10px); +} +.bootstrap .table.tableDnD td { + transition-duration: 0.2s; + transition-property: all; + transition-timing-function: ease-out; +} +.bootstrap tr.highlighted td { + background-color: #00aff0 !important; + color: #fff !important; +} +.bootstrap .bulk-actions { + margin: 17px 0 0; +} +.bootstrap .bulk-actions ul i { + font-size: 14px; +} +.bootstrap .list-action-enable { + border-radius: 3px; + color: rgba(255, 255, 255, 0.8); + display: table; + font-size: 1.3em; + height: 25px; + margin: 0 auto; + text-align: center; + vertical-align: middle; + width: 30px; +} +.bootstrap .list-action-enable.action-enabled { + background-color: #93cd60; + border: 1px solid #79bd3c; +} +.list-action-enable i { + display: table-cell; + vertical-align: middle; +} +.bootstrap .list-action-enable.action-disabled { + background-color: #e27c79; + border: 1px solid #d9534f; +} +.bootstrap .list-action-enable:hover { + color: #fff; +} +.bootstrap .list-empty { + background-color: #fcfdfe !important; +} +.bootstrap .list-empty .list-empty-msg { + color: #999; + display: block; + font-family: "Ubuntu Condensed",Helvetica,Arial,sans-serif; + font-size: 1.4em; + margin: 20px auto; + text-align: center; + width: 50%; +} +.bootstrap .list-empty .list-empty-icon { + clear: both; + color: #dedede; + display: block; + font-size: 84px; + text-shadow: 1px 1px 0 #fff; +} +.bootstrap .date_range .input-group:first-child { + margin-bottom: 5px; +} +@media (max-width: 991px) { +.bootstrap .table-responsive { + border: 1px solid #ddd; + margin-bottom: 12.75px; + overflow-x: auto; + overflow-y: hidden; + width: 100%; +} +.bootstrap .table-responsive > .table { + margin-bottom: 0; +} +.bootstrap .table-responsive > .table > thead > tr > th, .bootstrap .table-responsive > .table > thead > tr > td, .bootstrap .table-responsive > .table > tbody > tr > th, .bootstrap .table-responsive > .table > tbody > tr > td, .bootstrap .table-responsive > .table > tfoot > tr > th, .bootstrap .table-responsive > .table > tfoot > tr > td { + white-space: nowrap; +} +.bootstrap .table-responsive > .table-bordered { + border: 0 none; +} +.bootstrap .table-responsive > .table-bordered > thead > tr > th:first-child, .bootstrap .table-responsive > .table-bordered > thead > tr > td:first-child, .bootstrap .table-responsive > .table-bordered > tbody > tr > th:first-child, .bootstrap .table-responsive > .table-bordered > tbody > tr > td:first-child, .bootstrap .table-responsive > .table-bordered > tfoot > tr > th:first-child, .bootstrap .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0 none; +} +.bootstrap .table-responsive > .table-bordered > thead > tr > th:last-child, .bootstrap .table-responsive > .table-bordered > thead > tr > td:last-child, .bootstrap .table-responsive > .table-bordered > tbody > tr > th:last-child, .bootstrap .table-responsive > .table-bordered > tbody > tr > td:last-child, .bootstrap .table-responsive > .table-bordered > tfoot > tr > th:last-child, .bootstrap .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0 none; +} +.bootstrap .table-responsive > .table-bordered > tbody > tr:last-child > th, .bootstrap .table-responsive > .table-bordered > tbody > tr:last-child > td, .bootstrap .table-responsive > .table-bordered > tfoot > tr:last-child > th, .bootstrap .table-responsive > .table-bordered > tfoot > tr:last-child > td { + border-bottom: 0 none; +} +} +.bootstrap .tree-panel-heading-controls { + color: #00aff0; + font-size: 1.1em; + line-height: 2.2em; +} +.bootstrap .tree-panel-heading-controls i { + font-size: 14px; +} +.bootstrap .tree { + list-style: outside none none; + padding: 0 0 0 20px; +} +.bootstrap .tree input { + line-height: normal; + margin-right: 4px; + vertical-align: baseline; +} +.bootstrap .tree i { + font-size: 14px; +} +.bootstrap .tree .tree-item-name, .bootstrap .tree .tree-folder-name { + border-radius: 4px; + padding: 2px 5px; +} +.bootstrap .tree .tree-item-name label, .bootstrap .tree .tree-folder-name label { + font-weight: 400; +} +.bootstrap .tree .tree-item-name:hover, .bootstrap .tree .tree-folder-name:hover { + background-color: #eee; + cursor: pointer; +} +.bootstrap .tree .tree-selected { + background-color: #00aff0; + color: #fff; +} +.bootstrap .tree .tree-selected:hover { + background-color: #009cd6; +} +.bootstrap .tree .tree-selected i.tree-dot { + background-color: #fff; +} +.bootstrap .tree i.tree-dot { + background-color: #ccc; + border-radius: 6px; + display: inline-block; + height: 6px; + margin: 0 4px; + position: relative; + width: 6px; +} +.bootstrap .tree .tree-item-disable, .bootstrap .tree .tree-folder-name-disable { + color: #ccc; +} +.bootstrap .tree .tree-item-disable:hover, .bootstrap .tree .tree-folder-name-disable:hover { + color: #ccc; +} +.bootstrap .tree-actions { + display: inline-block; +} +.bootstrap .tree-panel-heading-controls { + border-bottom: 1px solid #dfdfdf; + margin: -20px -20px 20px; + padding: 5px; +} +.bootstrap .tree-actions .twitter-typeahead { + padding: 0 0 0 4px; +} +.bootstrap .tree-panel-label-title { + font-weight: 400; + margin: 0; + padding: 0 0 0 8px; +} +.bootstrap label.control-label { + color: #666; + font-size: 13px; + font-weight: normal; +} +.bootstrap label.control-label span.label-tooltip { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + background-color: #edf7fb; + border-color: -moz-use-text-color -moz-use-text-color #d8edf7; + border-image: none; + border-radius: 3px; + border-style: none none solid; + border-width: medium medium 1px; + color: #3586ae; + font-size: 13px; + padding: 0 5px; + text-decoration: none; +} +.bootstrap label.required:before { + color: red; + content: "*"; + font-size: 14px; + line-height: 12px; + position: relative; +} +.bootstrap .tooltip { + font-family: "Open Sans",Helvetica,Arial,sans-serif; + font-size: 12px; +} +.bootstrap select.input-tiny, .bootstrap input.input-tiny[type="text"], .bootstrap input.input-tiny[type="password"] { + float: left; + width: 80px; +} +.bootstrap textarea { + resize: none; +} +.bootstrap textarea:focus, .bootstrap input[type="text"]:focus, .bootstrap input[type="password"]:focus, .bootstrap input[type="datetime"]:focus, .bootstrap input[type="datetime-local"]:focus, .bootstrap input[type="date"]:focus, .bootstrap input[type="month"]:focus, .bootstrap input[type="time"]:focus, .bootstrap input[type="week"]:focus, .bootstrap input[type="number"]:focus, .bootstrap input[type="email"]:focus, .bootstrap input[type="url"]:focus, .bootstrap input[type="search"]:focus, .bootstrap input[type="tel"]:focus, .bootstrap input[type="color"]:focus, .bootstrap .uneditable-input:focus { + background-color: #fefbe2; + box-shadow: none; +} +.bootstrap .btn .caret { + border-top-color: #333 !important; +} +.bootstrap .btn:hover .caret { + border-top-color: #fff !important; +} +.bootstrap .btn.btn-default { + box-shadow: 0 -2px 0 #e6e6e6 inset; +} +.bootstrap .btn.btn-default i { + color: #555; +} +.bootstrap .btn.btn-default:hover { + background-color: #00aff0; + border-color: #008abd; + box-shadow: none; + color: #fff; +} +.bootstrap .btn.btn-default:hover i { + color: #fff; +} +.bootstrap .btn.btn-primary { + background-color: #00aff0; + border-color: #008abd; + box-shadow: 0 -2px 0 #008abd inset; + color: #fff; + text-transform: uppercase; +} +.bootstrap .btn.btn-primary:hover { + background-color: #008abd; + border-color: #00658a; + box-shadow: none; +} +.bootstrap .btn.btn-default[disabled] { + background-color: #f2f2f2; + border-color: #999; + box-shadow: 0 -2px 0 #ccc inset; + color: #999; +} +.bootstrap .dropdown-menu { + text-align: left; +} +.bootstrap .dropdown-menu > li a { + padding: 5px 10px; +} +.bootstrap .dropdown-menu > li a:hover i { + color: #fff; +} +.bootstrap .btn-group-action { + line-height: 0; +} +.bootstrap .btn-group-action .btn { + font-family: "Open Sans",Helvetica,Arial,sans-serif; +} +.bootstrap .btn-group-action .btn-group { + white-space: nowrap; +} +.bootstrap .btn-group-action .btn-group > a, .bootstrap .btn-group-action .btn-group button { + display: inline-block; + float: none; + text-decoration: none; +} +.bootstrap .btn-group-action .btn-group > a:first-child { + margin-right: -3px; +} +.bootstrap .btn-group-action .btn-group i { + font-size: 14px; +} +.bootstrap .dummyfile { + padding-top: 8px; + position: relative; +} +.bootstrap .dummyfile .hide-file-upload { + height: 100%; + left: 0; + opacity: 0; + position: absolute; + top: 0; + width: 100%; +} +.bootstrap .tt-query { + border-bottom-right-radius: 3px !important; + border-top-right-radius: 3px !important; +} +.bootstrap .tt-dropdown-menu { + background-color: #fff; + border: 1px solid #ccc; + font-size: 0.9em; + text-transform: none; +} +.bootstrap .tt-suggestions { + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25); + padding: 0 6px; +} +.bootstrap .tt-suggestion p { + border-bottom: 1px solid #ccc; + margin: 0 !important; + padding: 0 !important; +} +.bootstrap .tt-suggestion:last-child p { + border-bottom: medium none; +} +.bootstrap .tagify-container { + background-color: #fff; + border: 1px solid #ccc; + border-radius: 3px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset; + min-height: 30px; + overflow: auto; + padding: 0 3px; +} +.bootstrap .tagify-container span { + float: left; +} +.bootstrap .tagify-container > span { + background-color: #3ecbff; + border: 1px solid #00aff0; + border-radius: 2px; + color: #fff; + display: inline-block; + margin: 3px; + padding: 2px 5px; +} +.bootstrap .tagify-container > span > a { + color: #00aff0; + font-weight: bold; + padding-left: 5px; + text-decoration: none; +} +.bootstrap .tagify-container > input { + border: 0 none; + box-shadow: none; + height: auto; + margin-top: 2px; + width: 140px; +} +.bootstrap .tagify-container > input:focus { + box-shadow: none; + outline: 0 none; +} +.bootstrap .kpi-container { + padding-bottom: 10px !important; +} +.bootstrap .box-stats { + display: block; + height: 64px; + margin-bottom: 10px; +} +.bootstrap .box-stats .boxchart-overlay { + border-radius: 3px; + float: left; + margin-right: 10px; + padding: 10px 10px 5px; +} +.bootstrap .box-stats .kpi-content { + float: left; + padding-left: 72px; + position: relative; + width: 100%; +} +.bootstrap .box-stats .kpi-content i { + border-radius: 3px; + color: #fff; + font-size: 56px; + height: 66px; + left: 0; + line-height: 66px; + position: absolute; + text-align: center; + top: 0; + width: 66px; +} +.bootstrap .box-stats .kpi-content .title { + color: #666; + display: block; +} +.bootstrap .box-stats .kpi-content .subtitle { + color: #aaa; + display: block; + text-transform: uppercase; +} +.bootstrap .box-stats .kpi-content .value { + clear: both; + display: block; + font-size: 1.8em; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +.bootstrap .box-stats:hover { + text-decoration: none; +} +.bootstrap .color1 i, .bootstrap .color1 .boxchart-overlay { + background-color: #2ba8e3; + box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.2) inset; +} +.bootstrap .color1 .value { + color: #2ba8e3; +} +.bootstrap .color2 i, .bootstrap .color2 .boxchart-overlay { + background-color: #ff5450; + box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.2) inset; +} +.bootstrap .color2 .value { + color: #ff5450; +} +.bootstrap .color3 i, .bootstrap .color3 .boxchart-overlay { + background-color: #9e5ba1; + box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.2) inset; +} +.bootstrap .color3 .value { + color: #9e5ba1; +} +.bootstrap .color4 i, .bootstrap .color4 .boxchart-overlay { + background-color: #95cc6b; + box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.2) inset; +} +.bootstrap .color4 .value { + color: #95cc6b; +} +.bootstrap .data_chart rect { + fill: #fff; +} +.bootstrap .data_chart path { + fill: none; + stroke: #fff; + stroke-width: 2; +} +.bootstrap .data_chart line { + stroke: #000; +} +.bootstrap .data_chart .area { + fill: rgba(255, 255, 255, 0.3); + stroke-width: 0; +} +.bootstrap .switch a, .bootstrap .switch-light span span { + display: none; +} +@media only screen { +.bootstrap .switch-light { + display: block; + height: 26px; + overflow: visible; + padding: 0; + position: relative; +} +.bootstrap .switch-light * { + box-sizing: border-box; +} +.bootstrap .switch-light a { + display: block; + transition: all 0.3s ease-out 0s; +} +.bootstrap .switch-light label, .bootstrap .switch-light > span { + line-height: 26px; + vertical-align: middle; +} +.bootstrap .switch-light label { + display: block; + position: relative; + width: 100%; + z-index: 3; +} +.bootstrap .switch-light input { + opacity: 0; + position: absolute; + z-index: 5; +} +.bootstrap .switch-light input:checked ~ a { + left: 0; +} +.bootstrap .switch-light > span { + font-weight: normal; + left: 0; + margin: 0; + position: absolute; + text-align: left; + width: 100%; +} +.bootstrap .switch-light > span span { + display: block; + left: 0; + position: absolute; + text-align: center; + top: 0; + width: 50%; + z-index: 5; +} +.bootstrap .switch-light > span span:last-child { + left: 50%; +} +.bootstrap .switch-light a { + display: block; + height: 100%; + left: 50%; + padding: 0; + position: absolute; + top: 0; + width: 50%; + z-index: 4; +} +.bootstrap .switch { + display: block; + height: 26px; + position: relative; +} +.bootstrap .switch * { + box-sizing: border-box; +} +.bootstrap .switch a { + display: block; + transition: all 0.3s ease-out 0s; +} +.bootstrap .switch label, .bootstrap .switch > span { + line-height: 26px; + vertical-align: middle; +} +.bootstrap .switch input { + opacity: 0; + position: absolute; +} +.bootstrap .switch label { + float: left; + height: 100%; + margin: 0; + position: relative; + text-align: center; + width: 50%; + z-index: 2; +} +.bootstrap .switch a { + background-color: #93cd60; + border: 1px solid #79bd3c; + box-shadow: 0 -1px 0 #79bd3c inset; + color: #fff; + height: 100%; + left: 0; + padding: 0; + position: absolute; + top: 0; + width: 50%; + z-index: 1; +} +.bootstrap .switch input:last-of-type:checked ~ a { + background-color: #e27c79; + border: 1px solid #d9534f; + box-shadow: 0 -1px 0 #d9534f inset; + left: 50%; +} +.bootstrap .switch input:disabled ~ a { + background-color: #ccc !important; + border: 1px solid #b3b3b3 !important; + box-shadow: 0 -1px 0 #b3b3b3 inset !important; +} +.bootstrap .switch.switch-3 label, .bootstrap .switch.switch-3 a { + width: 33.3333%; +} +.bootstrap .switch.switch-3 input:checked:nth-of-type(2) ~ a { + left: 33.3333%; +} +.bootstrap .switch.switch-3 input:checked:last-of-type ~ a { + left: 66.6667%; +} +.bootstrap .switch.switch-4 label, .bootstrap .switch.switch-4 a { + width: 25%; +} +.bootstrap .switch.switch-4 input:checked:nth-of-type(2) ~ a { + left: 25%; +} +.bootstrap .switch.switch-4 input:checked:nth-of-type(3) ~ a { + left: 50%; +} +.bootstrap .switch.switch-4 input:checked:last-of-type ~ a { + left: 75%; +} +.bootstrap .switch.switch-5 label, .bootstrap .switch.switch-5 a { + width: 20%; +} +.bootstrap .switch.switch-5 input:checked:nth-of-type(2) ~ a { + left: 20%; +} +.bootstrap .switch.switch-5 input:checked:nth-of-type(3) ~ a { + left: 40%; +} +.bootstrap .switch.switch-5 input:checked:nth-of-type(4) ~ a { + left: 60%; +} +.bootstrap .switch.switch-5 input:checked:last-of-type ~ a { + left: 80%; +} +.bootstrap .prestashop-switch { + background-color: #eee; + border-radius: 3px; + box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.15) inset; + color: #333; + text-align: center; +} +.bootstrap .prestashop-switch * { + outline: 0 none !important; +} +.bootstrap .prestashop-switch label { + color: #bbb; + cursor: pointer; + font-weight: 400; + text-transform: uppercase; + transition: color 0.2s ease-out 0s; +} +.bootstrap .prestashop-switch input:checked + label { + color: #fff; +} +.bootstrap .prestashop-switch > span { + color: #666; + cursor: pointer; + text-transform: uppercase; +} +.bootstrap .prestashop-switch.switch-light input:checked ~ a { + background-color: #93cd60; + border: 1px solid #79bd3c; + box-shadow: 0 -1px 0 #79bd3c inset; +} +.bootstrap .prestashop-switch.switch-light input:checked ~ span span:first-of-type { + color: #fff; +} +.bootstrap .prestashop-switch.switch-light input:checked ~ span span:last-of-type { + color: #ccc; +} +.bootstrap .prestashop-switch.switch-light input ~ a { + background-color: #e27c79; + border: 1px solid #d9534f; + box-shadow: 0 -1px 0 #d9534f inset; +} +.bootstrap .prestashop-switch.switch-light input ~ span span:first-of-type { + color: #ccc; +} +.bootstrap .prestashop-switch.switch-light input ~ span span:last-of-type { + color: #fff; +} +} +.bootstrap .page-head { + background-color: #8bc954; + border-bottom: 4px solid #71b238; + box-shadow: 0 7px 0 rgba(0, 0, 0, 0.15); + height: 55px; + left: 0; + margin: 0; + padding: 0; + position: fixed; + top: 36px; + width: 100%; + z-index: 499; +} +.bootstrap .page-head h2.page-title { + color: #fff; + float: left; + font: 300 20px/1em "Open Sans",Helvetica,Arial,sans-serif; + margin: 0; + padding: 28px 0 0 280px; + position: relative; +} +@media (max-width: 768px) { +.bootstrap .page-head h2.page-title { + padding: 26px 0 0 70px; +} +} +.bootstrap .page-head h2.page-title a { + border-bottom: 1px dotted #fff; +} +.bootstrap .page-head h2.page-title a:hover { + border-color: #000; + color: #000; +} +.bootstrap .page-head a { + color: #fff; + text-decoration: none; +} +.bootstrap .page-head .toolbarBox { + background-color: transparent !important; + position: absolute; + right: 0; +} +@media (max-width: 768px) { +.bootstrap .page-head .toolbarBox { + background-color: #8bc954; +} +} +.bootstrap .page-head .toolbarBox #toolbar-nav { + background-color: #8bc954; + border: medium none; +} +.bootstrap .page-head .toolbarBox .btn-toolbar { + margin: 0; + padding: 3px 0 0; +} +.bootstrap .page-head .toolbarBox .btn-toolbar .toolbar_btn { + background-color: #8bc954; + color: #fff; + font-size: 12px; + height: 46px; + line-height: 8px; + margin: 0 3px 2px 0; + overflow: hidden; + padding: 2px 5px !important; + position: relative; + text-align: center; + text-overflow: ellipsis; + text-shadow: none; + white-space: nowrap; +} +@media (max-width: 992px) { +.bootstrap .page-head .toolbarBox .btn-toolbar .toolbar_btn { + border: 1px solid #659e32; + font-size: 11px; + width: 46px; +} +} +.bootstrap .page-head .toolbarBox .btn-toolbar .toolbar_btn:hover { + background-color: #fff !important; + border-color: #fff; + color: #8bc954; +} +.bootstrap .page-head .toolbarBox .btn-toolbar .dropdown-toolbar { + background-color: #8bc954; + border-radius: 3px; + display: none; + float: right; +} +@media (max-width: 768px) { +.bootstrap .page-head .toolbarBox .btn-toolbar .dropdown-toolbar { + display: block; +} +} +.bootstrap .page-head ul.page-breadcrumb { + background: none repeat scroll 0 0 transparent !important; + border: medium none !important; + border-radius: 0; + color: rgba(0, 0, 0, 0.5); + font-size: 12px; + height: 20px; + left: 280px; + line-height: 20px; + list-style: outside none none; + margin: 0; + padding: 0; + position: absolute; + top: 4px; + white-space: nowrap; +} +@media (max-width: 768px) { +.bootstrap .page-head ul.page-breadcrumb { + left: 70px; +} +} +.bootstrap .page-head ul.page-breadcrumb li { + text-transform: uppercase; +} +.bootstrap .page-head ul.page-breadcrumb li i { + font-size: 14px; +} +.bootstrap .page-head ul.page-breadcrumb li.breadcrumb-container i, .bootstrap .page-head ul.page-breadcrumb li.breadcrumb-current i { + border-right: 1px solid #659e32; + color: #659e32; + font-size: 42px; + left: -60px; + padding-right: 5px; + position: absolute; + top: 2px; +} +.bootstrap .page-head ul.page-breadcrumb li:before { + color: #659e32; +} +.bootstrap .page-head ul.page-breadcrumb li a { + color: rgba(255, 255, 255, 0.6); +} +.bootstrap .page-head ul.page-breadcrumb li a:hover { + color: #fff; +} +.bootstrap .page-header-toolbar-back { + border: medium none !important; + display: inline-block; +} +.bootstrap #datepicker .input-selected { + margin: 0; +} +.bootstrap #datepicker #date-start.input-selected, .bootstrap #datepicker #date-end.input-selected { + border: 3px solid #00a4e7; +} +.bootstrap #datepicker #date-start-compare.input-selected, .bootstrap #datepicker #date-end-compare.input-selected { + border: 3px solid #ff8000; +} +.bootstrap #datepicker div#datepicker-form #date-range { + border: 1px solid #0092ce; +} +.bootstrap #datepicker div#datepicker-form #date-range .form-date-heading { + background-color: #0092ce; +} +.bootstrap #datepicker div#datepicker-form #date-compare { + border: 1px solid #e67300; +} +.bootstrap #datepicker div#datepicker-form #date-compare .form-date-heading { + background-color: #e67300; +} +.bootstrap #datepicker div#datepicker-form .form-date-heading { + height: 30px; + line-height: 30px; + padding: 0 0 0 8px; +} +.bootstrap #datepicker div#datepicker-form .form-date-heading .title, .bootstrap #datepicker div#datepicker-form .form-date-heading .checkbox-title label { + color: #fff; + font-size: 1.15em; + font-weight: 200; + line-height: 2em; + text-transform: uppercase; +} +.bootstrap #datepicker div#datepicker-form .form-date-heading .btn-default { + background-color: rgba(255, 255, 255, 0.3); + border: medium none; + color: #fff; + font-weight: 700; +} +.bootstrap #datepicker div#datepicker-form .form-date-heading select { + margin: 2px 2px 0 0; +} +.bootstrap #datepicker div#datepicker-form .form-date-body, .bootstrap #datepicker div#datepicker-form .form-date-actions { + background-color: #fff; + display: inline-block; + padding: 10px; + width: 100%; +} +.bootstrap #datepicker div#datepicker-form .form-date-actions { + border: 1px solid #ccc; +} +.bootstrap #datepicker div#datepicker-form .form-date-group { + clear: both; + margin: 0 auto 6px; + width: 100%; +} +.bootstrap #datepicker div#datepicker-form .form-date-group label { + color: #666; + font-size: 0.8em; + font-weight: 700; + text-transform: uppercase; +} +.bootstrap #datepicker div#datepicker-form .form-date-group input { + margin: 4px 4px 0 0; +} +.bootstrap #datepicker div#datepicker-form .form-date-group input[type="text"] { + width: 35%; +} +.bootstrap #datepicker div#datepicker-form .form-date-group button { + margin: 5px 0 0; +} +.bootstrap #datepicker .daterangepicker { + border: 1px solid #ccc; + font-size: 13px; + margin: 0 0 8px; + position: relative; + width: 100%; +} +.bootstrap #datepicker .daterangepicker table { + border-spacing: 1px; + margin: 0; + width: 100%; +} +.bootstrap #datepicker .daterangepicker thead tr th { + background-color: #0092ce; + color: #fff; + font-size: 0.7em; + height: 1.5em; + text-transform: uppercase; +} +.bootstrap #datepicker .daterangepicker thead tr:first-child th { + background-color: #fff; + border-bottom: 1px solid #0092ce; + color: #00a4e7; + font-size: 1.4em; + font-weight: 200; +} +.bootstrap #datepicker .daterangepicker td, .bootstrap #datepicker .daterangepicker th { + padding: 0; + position: relative; + text-align: center; +} +.bootstrap #datepicker .daterangepicker tr { + border-bottom: 1px solid #fff; +} +.bootstrap #datepicker .daterangepicker td { + color: #00a4e7; + height: 2.4em; + padding: 0 8px; + transition-duration: 0.2s; + transition-property: all; + transition-timing-function: ease-out; +} +.bootstrap #datepicker .daterangepicker td.day:after { + background-color: transparent; + content: ""; + display: block; + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: 0; +} +.bootstrap #datepicker .daterangepicker td.day:hover { + cursor: pointer; +} +.bootstrap #datepicker .daterangepicker td.day.disabled { + color: #ccc; +} +.bootstrap #datepicker .daterangepicker td.old, .bootstrap #datepicker .daterangepicker td.new { + color: #ccc; +} +.bootstrap #datepicker .daterangepicker td.start-selected:not(.old):not(.new):not(.end-selected) { + background-color: #00a4e7; + border-bottom-left-radius: 15px; + border-top-left-radius: 15px; + color: #fff; + font-weight: 700; +} +.bootstrap #datepicker .daterangepicker td.start-selected.range-compare:not(.old):not(.new):not(.end-selected) { + background-color: #4ca0b1; + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} +.bootstrap #datepicker .daterangepicker td.start-selected.end-selected-compare:not(.old):not(.new):not(.end-selected), .bootstrap #datepicker .daterangepicker td.start-selected.start-selected-compare:not(.old):not(.new):not(.end-selected) { + background-color: #4c99a1; +} +.bootstrap #datepicker .daterangepicker td.start-selected.end-selected-compare:not(.old):not(.new):not(.end-selected) { + border-radius: 0; +} +.bootstrap #datepicker .daterangepicker td.end-selected:not(.old):not(.new):not(.start-selected) { + background-color: #00a4e7; + border-bottom-right-radius: 15px; + border-top-right-radius: 15px; + color: #fff; + font-weight: 700; +} +.bootstrap #datepicker .daterangepicker td.end-selected.range-compare:not(.old):not(.new):not(.start-selected) { + background-color: #4ca0b1; + border-bottom-right-radius: 0; + border-top-right-radius: 0; +} +.bootstrap #datepicker .daterangepicker td.end-selected.end-selected-compare:not(.old):not(.new):not(.start-selected), .bootstrap #datepicker .daterangepicker td.end-selected.start-selected-compare:not(.old):not(.new):not(.start-selected) { + background-color: #4c99a1; +} +.bootstrap #datepicker .daterangepicker td.end-selected.start-selected-compare:not(.old):not(.new):not(.start-selected) { + border-radius: 0; +} +.bootstrap #datepicker .daterangepicker td.start-selected-compare:not(.old):not(.new):not(.end-selected-compare) { + background-color: #ff8000; + border-bottom-left-radius: 15px; + border-top-left-radius: 15px; + color: #fff; + font-weight: 700; +} +.bootstrap #datepicker .daterangepicker td.start-selected-compare.range:not(.old):not(.new):not(.end-selected-compare) { + background-color: #ba924c; + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} +.bootstrap #datepicker .daterangepicker td.end-selected-compare:not(.old):not(.new):not(.start-selected-compare) { + background-color: #ff8000; + border-bottom-right-radius: 15px; + border-top-right-radius: 15px; + color: #fff; + font-weight: 700; +} +.bootstrap #datepicker .daterangepicker td.end-selected-compare.range:not(.old):not(.new):not(.start-selected-compare) { + background-color: #ba924c; + border-bottom-right-radius: 0; + border-top-right-radius: 0; +} +.bootstrap #datepicker .daterangepicker td.end-selected.start-selected { + background-color: #00a4e7; + border-radius: 15px; + color: #fff; + font-weight: 700; +} +.bootstrap #datepicker .daterangepicker td.end-selected.start-selected.range-compare { + background-color: #4ca0b1; + border-radius: 0; +} +.bootstrap #datepicker .daterangepicker td.end-selected-compare.start-selected-compare { + background-color: #ff8000; + border-radius: 15px; + color: #fff; + font-weight: 700; +} +.bootstrap #datepicker .daterangepicker td.end-selected-compare.start-selected-compare.range { + background-color: #ba924c; + border-radius: 0; +} +.bootstrap #datepicker .daterangepicker td.range { + background-color: #1bbdff; + color: #cef1ff; +} +.bootstrap #datepicker .daterangepicker td.range.range-compare { + background-color: #8dab99; +} +.bootstrap #datepicker .daterangepicker td.range-compare { + background-color: #f93; + color: #fff2e5; +} +.bootstrap #datepicker .daterangepicker td.range-compare.range { + background-color: #8dab99; +} +.bootstrap #datepicker .daterangepicker td.today { + background-color: #fff; +} +.bootstrap #datepicker .daterangepicker td span { + cursor: pointer; + display: block; + float: left; + font-weight: 400; + height: 3em; + line-height: 3em; + padding: 0; + text-transform: uppercase; + width: 33.333%; +} +.bootstrap #datepicker .daterangepicker td span:hover { + background-color: #00a4e7; + color: #fff; +} +.bootstrap #datepicker .daterangepicker td span.active { + background-color: #00a4e7; + color: #fff; +} +.bootstrap #datepicker .daterangepicker td span.old { + color: #ccc; +} +.bootstrap #datepicker .daterangepicker th.next { + padding: 0 10px 0 0; + text-align: right; +} +.bootstrap #datepicker .daterangepicker th.prev { + padding: 0 0 0 10px; + text-align: left; +} +.bootstrap #datepicker .daterangepicker th.next, .bootstrap #datepicker .daterangepicker th.prev, .bootstrap #datepicker .daterangepicker th.month-switch { + font-size: 1.3em; + height: 2em; + line-height: 2em; +} +.bootstrap #datepicker .daterangepicker th.next:hover, .bootstrap #datepicker .daterangepicker th.prev:hover, .bootstrap #datepicker .daterangepicker th.month-switch:hover { + background-color: #0092ce; + color: #fff; +} +.bootstrap #datepicker .daterangepicker thead tr:first-child th { + cursor: pointer; +} +.bootstrap .chevron-left, .bootstrap .chevron-right { + position: relative; +} +.bootstrap .chevron-left:before, .bootstrap .chevron-right:before { + border-style: solid; + content: ""; + display: block; + height: 0; + position: absolute; + width: 0; +} +.bootstrap .chevron-left:before { + background-color: #1bbdff; + border-color: transparent transparent transparent #00a4e7; + border-width: 1.2em 0 1.2em 0.5em; + right: 0; + top: 0; +} +.bootstrap .chevron-right:before { + background-color: #00a4e7; + border-color: transparent transparent transparent #1bbdff; + border-width: 1.2em 0 1.2em 0.5em; + left: 0; + top: 0; +} +.bootstrap .input-complete { + animation: 0.2s ease-in-out 0s normal none 1 running one; +} +.bootstrap .breadcrumb-multishop select { + background: none repeat scroll 0 0 #fff; + border: 1px solid #659e32; + border-radius: 4px; + color: #666; + display: inline-block; + height: 22px; + line-height: 20px; + margin: 0; + outline: medium none; + padding: 0 5px 0 8px; + position: relative; +} +@media not all { +.bootstrap .custom-select select { + padding-right: 30px; +} +} +.bootstrap .breadcrumb-multishop select:focus { + box-shadow: 0 0 0 1px #659e32; +} +.bootstrap .breadcrumb-multishop { + position: relative; + width: auto; +} +.bootstrap .breadcrumb-multishop:after { + background-color: #659e32; + border-radius: 0 4px 4px 0; + bottom: 0; + color: #fff; + content: "?"; + font-size: 60%; + line-height: 22px; + padding: 0 7px; + pointer-events: none; + position: absolute; + right: 0; + top: 0; +} +.bootstrap .no-pointer-events .custom-select:after { + content: none; +} +.bootstrap .multishop-well { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + background-color: #faf8f0; + border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color #fbeccb; + border-image: none; + border-style: none none none solid; + border-width: medium medium medium 3px; + margin-bottom: 15px; + padding: 20px 20px 10px; +} +.bootstrap .media-product-pack { + border: 2px solid #eee; + border-radius: 4px; + float: left; + margin-bottom: 10px; + margin-right: 10px; + overflow: hidden; + padding: 4px; + position: relative; + width: 200px; +} +.bootstrap .media-product-pack .media-product-pack-img { + border-bottom: 1px solid #ccc; + margin-bottom: 5px; + padding-bottom: 5px; + width: 100%; +} +.bootstrap .media-product-pack .media-product-pack-title { + display: inline-block; + overflow: hidden; + padding: 0 5px; + text-overflow: ellipsis; + white-space: nowrap; + width: 100%; +} +.bootstrap .media-product-pack .media-product-pack-ref { + color: #aaa; + display: inline-block; + overflow: hidden; + padding: 0 5px; + text-overflow: ellipsis; + white-space: nowrap; + width: 100%; +} +.bootstrap .media-product-pack .media-product-pack-action { + border: 1px solid #ccc; + border-radius: 4px; + position: absolute; + right: 7px; + text-align: center; + top: 7px; +} +.bootstrap .media-product-pack .media-product-pack-quantity { + background-color: #fff; + border: 1px solid #ccc; + border-radius: 4px; + height: 25px; + left: 7px; + line-height: 23px; + min-width: 35px; + padding: 0 4px; + position: absolute; + text-align: center; + top: 7px; +} +.bootstrap #carrier_wizard { + display: block; + position: relative; +} +.bootstrap #carrier_wizard .stepContainer { + clear: both; + display: block; + position: relative; +} +.bootstrap #carrier_wizard .stepContainer div.content { + clear: both; + display: block; + position: absolute; + width: 100%; +} +.bootstrap #carrier_wizard .stepContainer .StepTitle { + clear: both; + display: block; + position: relative; +} +.bootstrap #carrier_wizard ul.anchor { + clear: both; + display: block; + float: left; + list-style: outside none none; + margin: 0 0 10px; + padding: 0; + position: relative; + width: 100%; +} +.bootstrap #carrier_wizard ul.anchor.nbr_steps_4 li { + float: left; + width: 25%; +} +.bootstrap #carrier_wizard ul.anchor.nbr_steps_5 li { + float: left; + width: 25%; +} +.bootstrap #carrier_wizard li { + display: block; + overflow: hidden; + position: relative; +} +.bootstrap #carrier_wizard li a { + color: #ccc; + display: block; + height: 32px; + margin: 0 16px 0 0; + outline-style: none; + position: relative; + text-decoration: none; +} +.bootstrap #carrier_wizard li a .stepNumber { + color: #fff; + float: left; + font-size: 30px; + height: 32px; + line-height: 32px; + margin-right: 3px; + padding: 0 5px; + position: relative; + text-align: center; + width: 24px; +} +.bootstrap #carrier_wizard li a .stepDesc { + display: table-cell; + font-size: 13px; + height: 32px; + line-height: 13px; + position: relative; + text-align: left; + vertical-align: middle; +} +.bootstrap #carrier_wizard li a .chevron { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + border-color: transparent -moz-use-text-color transparent #fff; + border-image: none; + border-style: solid none solid solid; + border-width: 16px 0 16px 14px; + position: absolute; + right: -16px; + top: 0; +} +.bootstrap #carrier_wizard li a .chevron:after { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + border-color: transparent -moz-use-text-color transparent #ccc; + border-image: none; + border-style: solid none solid solid; + border-width: 16px 0 16px 14px; + content: ""; + position: absolute; + right: 2px; + top: -16px; +} +.bootstrap #carrier_wizard li a.disabled { + background-color: #ccc; + color: #777; +} +.bootstrap #carrier_wizard li a.disabled .chevron:after { + border-left: 14px solid #ccc; +} +.bootstrap #carrier_wizard li a.selected { + background-color: #383f50; + color: #f8f8f8; + cursor: text; +} +.bootstrap #carrier_wizard li a.selected .chevron:after { + border-left: 14px solid #383f50; +} +.bootstrap #carrier_wizard li a.done { + background-color: #79bd3c; + color: #fff; +} +.bootstrap #carrier_wizard li a.done .chevron:after { + border-left: 14px solid #79bd3c; +} +.bootstrap #carrier_wizard .loader { + display: none; +} +.bootstrap #carrier_wizard .msgBox { + background-color: #ffd; + border: 1px solid gold; + border-radius: 5px; + color: #5a5655; + display: none; + float: left; + margin: 4px 0 0 5px; + padding: 5px; + position: relative; +} +.bootstrap #carrier_wizard .msgBox .content { + float: left; + padding: 0; +} +.bootstrap #carrier_wizard #carrier_logo_block { + right: 10px; +} +.bootstrap #carrier_wizard .range_inf td, .bootstrap #carrier_wizard .range_sup td { + background-color: #ccc; +} +.bootstrap #carrier_wizard .range_type { + font-weight: bold; + text-align: right; + width: 220px; +} +.bootstrap #carrier_wizard .range_data { + width: 110px; +} +.bootstrap #carrier_wizard .range_sign { + font-size: 20px; + text-align: center; + width: 18px; +} +.bootstrap #carrier_wizard .range_data_new { + width: 110px; +} +.bootstrap #carrier_wizard table#zones_table { + width: auto; +} +.bootstrap #carrier_wizard .field_error { + border-color: #d9534f; +} +.bootstrap #carrier_wizard .actionBar { + height: 30px; +} +.bootstrap #carrier_wizard .actionBar a { + float: right; + margin-right: 10px; +} +.bootstrap .size_s { + font-size: 1.1em; +} +.bootstrap .size_md { + font-size: 1.3em; +} +.bootstrap .size_l { + font-size: 1.7em; +} +.bootstrap .size_xl { + font-size: 2em; +} +.bootstrap .size_xxl { + font-size: 2.3em; +} +.bootstrap .number-monospace { + font-family: "Droid Sans Mono",Helvetica,Arial,sans-serif !important; + font-weight: 200; + word-spacing: -0.3em; +} +.bootstrap .color_success { + color: #79bd3c; +} +.bootstrap .color_danger { + color: #d9534f; +} +.bootstrap .dash_trend_down { + color: #d9534f; +} +.bootstrap .dash_trend_down:before { + content: "?"; + font-family: FontAwesome; + margin-right: 4px; +} +.bootstrap .dash_trend_up { + color: #79bd3c; +} +.bootstrap .dash_trend_up:before { + content: "?"; + font-family: FontAwesome; + margin-right: 4px; +} +.bootstrap .dash_trend_right:before { + content: "?"; + font-family: FontAwesome; + margin-right: 4px; +} +.bootstrap #dashboard section > section header { + background-color: #00aff0; + color: #fff; + font-size: 1.2em; + margin: 0 0 3px; + padding: 3px 8px; +} +.bootstrap #dashboard section > section header .small { + clear: both; + display: block; + font-family: "Open Sans",Helvetica,Arial,sans-serif; + font-size: 0.8em; + text-transform: uppercase; +} +.bootstrap #dashboard .data_list { + margin: 0 0 10px; + padding: 0; +} +.bootstrap #dashboard .data_list li { + position: relative; +} +.bootstrap #dashboard .data_list .data_value { + line-height: 39px; + padding: 0 10px 0 0; + position: absolute; + right: 0; + top: 0; +} +.bootstrap #dashboard .data_list_small { + border-top: 1px solid #ddd; + margin: 8px 0 10px; + padding: 0; +} +.bootstrap #dashboard .data_list_small li { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + border-color: -moz-use-text-color -moz-use-text-color #ddd; + border-image: none; + border-style: none none dashed; + border-width: medium medium 1px; + margin: 0; + padding: 3px 0; + position: relative; +} +.bootstrap #dashboard .data_list_small .data_label { + color: #bbb; + text-transform: uppercase; +} +.bootstrap #dashboard .data_list_small .data_value { + line-height: 25px; + padding: 0; + position: absolute; + right: 0; + top: 0; +} +.bootstrap #dashboard .data_list_large { + margin: 8px 0 10px; + padding: 0; +} +.bootstrap #dashboard .data_list_large li { + border: medium none; + margin: 0; + padding: 6px 0; + position: relative; +} +.bootstrap #dashboard .data_list_large .data_label { + line-height: 0.8em; +} +.bootstrap #dashboard .data_list_large .data_label small { + font-size: 0.6em; +} +.bootstrap #dashboard .data_list_large .data_value { + line-height: 0.6em; + padding: 8px 0 0; + position: absolute; + right: 0; + text-align: right; + top: 0; +} +.bootstrap #dashboard .data_list_large .data_value small { + font-size: 0.5em; +} +.bootstrap #dashboard .data_list_vertical { + border: 1px solid #ddd; + border-radius: 3px; + margin: 0 0 10px; + padding: 0; +} +.bootstrap #dashboard .data_list_vertical li { + border-left: 1px solid #ddd; + padding: 6px; +} +.bootstrap #dashboard .data_list_vertical li:first-child { + border: medium none; +} +.bootstrap #dashboard .data_list_vertical .data_label { + display: block; + line-height: 1em; + min-height: 32px; + text-align: center; +} +.bootstrap #dashboard .data_list_vertical .data_value { + display: block; + text-align: center; +} +.bootstrap #dashboard #dashtrends header { + margin-bottom: 0; +} +.bootstrap #dashboard #dashtrends #dashtrends_toolbar { + margin: 0 -16px 10px; +} +.bootstrap #dashboard #dashtrends #dashtrends_toolbar dl { + box-shadow: 0 0 0 2px #fff inset; +} +.bootstrap #dashboard #dashtrends #dashtrends_toolbar dl dt { + color: #777; + height: 20px; + margin: 0; + padding: 0; +} +.bootstrap #dashboard #dashtrends #dashtrends_toolbar dl dd.data_value { + color: #aaa; + margin-bottom: 8px; +} +.bootstrap #dashboard #dashtrends #dashtrends_toolbar dl dd.dash_trend { + background-color: #fff; + border-radius: 3px; + margin: 0 auto; + width: 80px; +} +.bootstrap #dashboard #dashtrends #dashtrends_toolbar dl:hover dt, .bootstrap #dashboard #dashtrends #dashtrends_toolbar dl:hover dd.data_value { + color: #00aff0; +} +.bootstrap #dashboard #dashtrends #dashtrends_toolbar dl:hover dt { + text-decoration: underline; +} +.bootstrap #dashboard #dashtrends #dashtrends_toolbar dl.active dt, .bootstrap #dashboard #dashtrends #dashtrends_toolbar dl.active dd.data_value { + color: #fff; +} +.bootstrap #dashboard #dashtrends dl { + background-color: #fff; + border-bottom: 1px solid #ddd; + border-left: 1px solid #ddd; + cursor: pointer; + margin: 0; + min-height: 70px; + padding: 10px; + text-align: center; +} +.bootstrap #dashboard #dashtrends dl:first-child { + border-left: medium none; +} +.bootstrap #dashboard #dashtrends dl.active { + background-color: #00aff0; + box-shadow: 0 0 0 2px #fff inset; +} +.bootstrap #dashboard #dashtrends dl.active dt { + color: #fff; + font-size: 1.2em; +} +.bootstrap #dashboard #dashtrends dt { + font: 400 1.1em/120% "Ubuntu Condensed",Helvetica,Arial,sans-serif; + height: 37px; + text-align: center; +} +.bootstrap #dashboard #dashtrends dd span { + font-size: 0.9em; + white-space: nowrap; +} +.bootstrap #dashboard #dashtrends svg { + height: 350px; +} +.bootstrap #dashboard #dashgoals svg { + height: 250px; +} +.bootstrap #dashboard #dashproducts nav { + font: 400 1.1em/120% "Ubuntu Condensed",Helvetica,Arial,sans-serif; + margin-bottom: 10px; + text-transform: uppercase; +} +.bootstrap #dashboard #dashaddons { + background-color: #fff; + border: 1px dashed silver; + border-radius: 3px; + font-size: 1.3em; + padding: 10px 20px; + text-align: center; +} +.bootstrap #dashboard #dashaddons a { + display: block; +} +.bootstrap #dashboard #dashaddons a:hover { + text-decoration: none; +} +.bootstrap #dashboard #dashactivity svg { + height: 150px; +} +.bootstrap #dashboard .loading .data_value { + min-width: 30px; + text-align: center; +} +.bootstrap #dashboard .loading .data_value:before { + color: #ccc; + font-size: 14px; +} +.bootstrap #dashboard .loading .data_value span, .bootstrap #dashboard .loading .data_value small { + display: none; +} +.bootstrap #dashboard .loading .data_trend { + display: none; +} +.bootstrap #dashboard .tooltip-panel { + min-width: 150px; + padding: 10px; +} +.bootstrap #dashboard .tooltip-panel-heading { + border-bottom: 1px solid #ccc; + font: 400 1.2em/1.42857 "Ubuntu Condensed",Helvetica,Arial,sans-serif; + margin-bottom: 10px; + text-align: center; + text-transform: uppercase; +} +.bootstrap .data_loading, .bootstrap #dashboard .data_value span, .bootstrap #dashboard .data_value .dash_trend { + animation-duration: 0.7s; + animation-name: bounceG; + opacity: 1; + transform: scaleY(0.7); +} +.bootstrap #dash_version { + overflow: hidden; + padding: 0 !important; +} +.bootstrap #dash_version iframe { + height: 80px; + width: 100%; +} +.bootstrap #calendar button.btn-default.active { + background-color: #00aff0; + border-color: #008abd; + box-shadow: none; + color: #fff; + font-weight: 700; +} +@media (max-width: 480px) { +.bootstrap #calendar { + padding: 10px !important; +} +.bootstrap #calendar button.btn-default { + padding: 5px; +} +} +.bootstrap #login { + background: radial-gradient(at left top , rgba(104, 128, 138, 0.4) 10%, rgba(138, 114, 76, 0) 40%) repeat scroll 0 0%, -moz-linear-gradient(center top , rgba(57, 173, 219, 0.25), rgba(42, 60, 87, 0.4)) repeat scroll 0 0%, -moz-linear-gradient(left top , #670d10, #092756) repeat scroll 0 0 rgba(0, 0, 0, 0); + min-height: 100%; + padding-bottom: 45px; +} +.bootstrap #login-header { + color: #fff; + margin-bottom: 30px; + padding-top: 40px; +} +.bootstrap #login-header h1, .bootstrap #login-header h4 { + margin: 0; + padding: 0; +} +.bootstrap #login-panel { + margin: 0 auto; + width: 420px; +} +@media (max-width: 480px) { +.bootstrap #login-panel { + width: 90%; +} +} +.bootstrap #login-panel .panel, .bootstrap #login-panel #dash_version, .bootstrap #login-panel .message-item-initial .message-item-initial-body, .bootstrap .message-item-initial #login-panel .message-item-initial-body, .bootstrap #login-panel .timeline .timeline-item .timeline-caption .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption #login-panel .timeline-panel { + box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.45); +} +.bootstrap #login-panel .panel-footer { + height: inherit; + margin: 0 -20px -20px; +} +.bootstrap #login-panel .flip-container { + height: 370px; + perspective: 1000px; +} +.bootstrap #login-panel .flip-container.flip .flipper { + transform: rotateY(180deg); +} +.bootstrap #login-panel .flipper { + position: relative; + transform-style: preserve-3d; + transition-duration: 0.6s; +} +.bootstrap #login-panel .front, .bootstrap #login-panel .back { + backface-visibility: hidden; + left: 0; + padding: 20px; + position: absolute; + top: 0; + width: 100%; +} +.bootstrap #login-panel .front { + z-index: 2; +} +.bootstrap #login-panel .back { + display: none; + transform: rotateY(180deg); +} +.bootstrap #login-panel #remind-me { + margin-top: 0; +} +.bootstrap #login-footer a { + color: #a0aab5; +} +.bootstrap #module-list h3 { + background-color: transparent; + color: #383f50; + left: 0; + margin: 0; + padding: 0; + position: relative; + top: 0; +} +.bootstrap #module-list select.active { + background: none repeat scroll 0 0 #bdedff; + border: 1px solid #00aff0; +} +.bootstrap #module-list select.active option { + background: none repeat scroll 0 0 #fff !important; +} +.bootstrap .hook_panel { + border: 1px solid #e6e6e6; + border-radius: 3px; + box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.1) inset; + margin-bottom: 10px !important; + padding: 10px 10px 5px; +} +.bootstrap .module_name { + font-size: 1.2em; +} +.bootstrap .hook_panel_header { + margin: 0 -10px; + padding: 0 10px 10px; +} +.bootstrap .hook_panel_header .hook_name { + background-color: #fff; + border-radius: 3px; + color: #00aff0; + font-size: 1.4em; + padding: 0 4px; +} +.bootstrap .hook_panel_header .hook_description { + padding: 3px 0 0 3px; +} +.bootstrap #modules_list_container_tab img { + max-width: 66px; +} +.bootstrap .module_list .module_list_item { + background-color: #fff; + border: 1px solid #9ed0ec; + display: table; + margin-bottom: -1px; + padding: 5px 0; + width: 100%; +} +.bootstrap .module_list .draggable { + cursor: pointer; +} +.bootstrap .module_col_select { + border-right: 1px solid #ddd; + display: table-cell; + min-height: 35px; + text-align: center; + vertical-align: middle; + width: 22px; +} +.bootstrap .module_col_position { + display: table-cell; + text-align: right; + vertical-align: middle; + width: 70px; +} +.bootstrap .module_col_position .positions { + background-color: #eee; + border: 1px solid #ccc; + border-radius: 3px; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset; + color: #aaa; + cursor: move; + font-size: 1.4em; + padding: 0 5px; + text-shadow: 1px 1px #fff; +} +.bootstrap .module_col_icon { + display: table-cell; + text-align: center; + vertical-align: middle; + width: 50px; +} +.bootstrap .module_col_infos { + display: table-cell; + height: 50px; + vertical-align: middle; +} +.bootstrap .module_col_actions { + display: table-cell; + padding: 0 10px; + text-align: right; + vertical-align: middle; + width: 160px; +} +.bootstrap .module_col_actions .btn-group { + text-align: left; +} +.bootstrap li.sortable-placeholder { + background-color: #eee; + border: 1px dashed #ccc; + border-radius: 5px; + margin: 4px; +} +.bootstrap td.module_active { + background-color: #93cd60 !important; +} +.bootstrap td.module_inactive { + background-color: #d5d5d5 !important; +} +.bootstrap .module-badge-popular, .bootstrap .module-badge-partner, .bootstrap .module-badge-bought { + font-size: 12px; +} +.bootstrap .module-badge-popular { + background-color: #f01778; +} +.bootstrap .module-badge-partner { + background-color: #00aff0; +} +.bootstrap .module-badge-bought { + background-color: #8bc954; +} +.bootstrap .categoriesTitle .list-group #filternameForm, .bootstrap .categoriesTitle #dashboard .data_list #filternameForm, .bootstrap #dashboard .categoriesTitle .data_list #filternameForm { + padding-right: 15px; +} +.bootstrap .categoriesTitle .list-group .list-group-item, .bootstrap .categoriesTitle #dashboard .data_list .list-group-item, .bootstrap #dashboard .categoriesTitle .data_list .list-group-item, .bootstrap #dashboard .data_list .categoriesTitle .list-group li, .bootstrap .categoriesTitle #dashboard .data_list li, .bootstrap #dashboard .categoriesTitle .data_list li { + overflow: hidden; + padding-right: 35px; + position: relative; + text-overflow: ellipsis; + white-space: nowrap; +} +.bootstrap .categoriesTitle .list-group .list-group-item .badge, .bootstrap .categoriesTitle #dashboard .data_list .list-group-item .badge, .bootstrap #dashboard .categoriesTitle .data_list .list-group-item .badge, .bootstrap #dashboard .data_list .categoriesTitle .list-group li .badge, .bootstrap .categoriesTitle #dashboard .data_list li .badge, .bootstrap #dashboard .categoriesTitle .data_list li .badge, .bootstrap .categoriesTitle .list-group .list-group-item #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .categoriesTitle .list-group .list-group-item .notifs_badge, .bootstrap .categoriesTitle #dashboard .data_list .list-group-item #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .categoriesTitle #dashboard .data_list .list-group-item .notifs_badge, .bootstrap #dashboard .categoriesTitle .data_list .list-group-item #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .categoriesTitle .data_list .list-group-item .notifs_badge, .bootstrap #dashboard .data_list .categoriesTitle .list-group li #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .data_list .categoriesTitle .list-group li .notifs_badge, .bootstrap .categoriesTitle #dashboard .data_list li #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap .categoriesTitle #dashboard .data_list li .notifs_badge, .bootstrap #dashboard .categoriesTitle .data_list li #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap #dashboard .categoriesTitle .data_list li .notifs_badge, .bootstrap .categoriesTitle .list-group .list-group-item .module-badge-popular, .bootstrap .categoriesTitle #dashboard .data_list .list-group-item .module-badge-popular, .bootstrap #dashboard .categoriesTitle .data_list .list-group-item .module-badge-popular, .bootstrap #dashboard .data_list .categoriesTitle .list-group li .module-badge-popular, .bootstrap .categoriesTitle #dashboard .data_list li .module-badge-popular, .bootstrap #dashboard .categoriesTitle .data_list li .module-badge-popular, .bootstrap .categoriesTitle .list-group .list-group-item .module-badge-partner, .bootstrap .categoriesTitle #dashboard .data_list .list-group-item .module-badge-partner, .bootstrap #dashboard .categoriesTitle .data_list .list-group-item .module-badge-partner, .bootstrap #dashboard .data_list .categoriesTitle .list-group li .module-badge-partner, .bootstrap .categoriesTitle #dashboard .data_list li .module-badge-partner, .bootstrap #dashboard .categoriesTitle .data_list li .module-badge-partner, .bootstrap .categoriesTitle .list-group .list-group-item .module-badge-bought, .bootstrap .categoriesTitle #dashboard .data_list .list-group-item .module-badge-bought, .bootstrap #dashboard .categoriesTitle .data_list .list-group-item .module-badge-bought, .bootstrap #dashboard .data_list .categoriesTitle .list-group li .module-badge-bought, .bootstrap .categoriesTitle #dashboard .data_list li .module-badge-bought, .bootstrap #dashboard .categoriesTitle .data_list li .module-badge-bought { + position: absolute; + right: 5px; +} +.bootstrap .quickview-badge { + margin-top: 30px; +} +.bootstrap .quickview-price { + color: #666; + float: right; + font-size: 1.8em; +} +.bootstrap .rating { + direction: rtl; + font-size: 20px; + unicode-bidi: bidi-override; +} +.bootstrap .rating span.star { + display: inline-block; + font-family: "FontAwesome"; +} +.bootstrap .rating span.star:before { + color: #bbb; + content: "?"; + padding-right: 3px; +} +.bootstrap .rating span.star.active:before, .bootstrap .rating span.star.active ~ span.star:before { + color: #f5ab35; + content: "?"; +} +.bootstrap .adminsearch #content .panel .panel, .bootstrap .adminsearch #content #dash_version .panel, .bootstrap .adminsearch #content .message-item-initial .message-item-initial-body .panel, .bootstrap .message-item-initial .adminsearch #content .message-item-initial-body .panel, .bootstrap .adminsearch #content .timeline .timeline-item .timeline-caption .timeline-panel .panel, .bootstrap .timeline .timeline-item .timeline-caption .adminsearch #content .timeline-panel .panel, .bootstrap .adminsearch #content .panel #dash_version, .bootstrap .adminsearch #content #dash_version #dash_version, .bootstrap .adminsearch #content .message-item-initial .message-item-initial-body #dash_version, .bootstrap .message-item-initial .adminsearch #content .message-item-initial-body #dash_version, .bootstrap .adminsearch #content .timeline .timeline-item .timeline-caption .timeline-panel #dash_version, .bootstrap .timeline .timeline-item .timeline-caption .adminsearch #content .timeline-panel #dash_version, .bootstrap .adminsearch #content .panel .message-item-initial .message-item-initial-body, .bootstrap .message-item-initial .adminsearch #content .panel .message-item-initial-body, .bootstrap .adminsearch #content #dash_version .message-item-initial .message-item-initial-body, .bootstrap .message-item-initial .adminsearch #content #dash_version .message-item-initial-body, .bootstrap .adminsearch #content .message-item-initial .message-item-initial-body .message-item-initial-body, .bootstrap .message-item-initial .adminsearch #content .message-item-initial-body .message-item-initial-body, .bootstrap .adminsearch #content .timeline .timeline-item .timeline-caption .timeline-panel .message-item-initial .message-item-initial-body, .bootstrap .message-item-initial .adminsearch #content .timeline .timeline-item .timeline-caption .timeline-panel .message-item-initial-body, .bootstrap .timeline .timeline-item .timeline-caption .adminsearch #content .timeline-panel .message-item-initial .message-item-initial-body, .bootstrap .message-item-initial .timeline .timeline-item .timeline-caption .adminsearch #content .timeline-panel .message-item-initial-body, .bootstrap .adminsearch #content .panel .timeline .timeline-item .timeline-caption .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .adminsearch #content .panel .timeline-panel, .bootstrap .adminsearch #content #dash_version .timeline .timeline-item .timeline-caption .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .adminsearch #content #dash_version .timeline-panel, .bootstrap .adminsearch #content .message-item-initial .message-item-initial-body .timeline .timeline-item .timeline-caption .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .adminsearch #content .message-item-initial .message-item-initial-body .timeline-panel, .bootstrap .message-item-initial .adminsearch #content .message-item-initial-body .timeline .timeline-item .timeline-caption .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .message-item-initial .adminsearch #content .message-item-initial-body .timeline-panel, .bootstrap .adminsearch #content .timeline .timeline-item .timeline-caption .timeline-panel .timeline-panel, .bootstrap .timeline .timeline-item .timeline-caption .adminsearch #content .timeline-panel .timeline-panel { + border: medium none; + border-radius: 0; + margin: 0; + padding: 0; +} +.bootstrap #translations_form .translations-email-panel { + margin: 0 0 8px 20px; + padding: 8px 12px; +} +.bootstrap #translations_form .block-mail iframe, .bootstrap #translations_form .block-mail textarea { + height: 500px; + width: 100%; +} +.bootstrap #translations_form .panel-group { + display: none; +} +.bootstrap #translations_form a.panel-title i { + display: none; +} +.bootstrap #translations_form a.panel-title:hover { + text-decoration: none; +} +.bootstrap #translations_form a.panel-title:hover i { + display: inline-block; +} +.bootstrap #translations_form .mails_field { + border-bottom: 1px solid #eee; + margin-bottom: 16px; + padding-bottom: 8px; +} +.bootstrap #translations_form .mails_field ul.nav-pills { + margin-bottom: 5px; +} +.bootstrap #translations_form .mails_field h4 .badge, .bootstrap #translations_form .mails_field h4 #header_notifs_icon_wrapper .notifs_badge, #header_notifs_icon_wrapper .bootstrap #translations_form .mails_field h4 .notifs_badge, .bootstrap #translations_form .mails_field h4 .module-badge-popular, .bootstrap #translations_form .mails_field h4 .module-badge-partner, .bootstrap #translations_form .mails_field h4 .module-badge-bought { + font-size: 12px; +} +.bootstrap #translations_form .mails_field h4 .badge.badge-danger, .bootstrap #translations_form .mails_field h4 #header_notifs_icon_wrapper .badge-danger.notifs_badge, #header_notifs_icon_wrapper .bootstrap #translations_form .mails_field h4 .badge-danger.notifs_badge, .bootstrap #translations_form .mails_field h4 .badge-danger.module-badge-popular, .bootstrap #translations_form .mails_field h4 .badge-danger.module-badge-partner, .bootstrap #translations_form .mails_field h4 .badge-danger.module-badge-bought { + background-color: transparent; + border: 2px solid #d9534f; + color: #d9534f; +} +.bootstrap #translations_form .mails_field .panel-footer { + margin: 0 -15px; +} +.bootstrap .employee_avatar_small { + margin-right: 4px; + vertical-align: middle; +} +.bootstrap .employee_avatar_small img { + border: medium none; + padding: 0; +} +.bootstrap .employee_avatar { + display: block !important; + margin: 10px auto !important; + text-align: center; +} +.bootstrap .avatar-xs { + background-color: #eee; + border-radius: 16px; + display: inline-block; + height: 16px; + overflow: hidden; + text-align: center; + width: 16px; +} +.bootstrap .avatar-xs img { + height: 100%; + width: 100%; +} +.bootstrap .avatar-xs i { + font-size: 10.6667px; + line-height: 16px; +} +.bootstrap .avatar-sm, .bootstrap .employee_avatar_small { + background-color: #eee; + border-radius: 32px; + display: inline-block; + height: 32px; + overflow: hidden; + text-align: center; + width: 32px; +} +.bootstrap .avatar-sm img, .bootstrap .employee_avatar_small img { + height: 100%; + width: 100%; +} +.bootstrap .avatar-sm i, .bootstrap .employee_avatar_small i { + font-size: 21.3333px; + line-height: 32px; +} +.bootstrap .avatar-md { + background-color: #eee; + border-radius: 48px; + display: inline-block; + height: 48px; + overflow: hidden; + text-align: center; + width: 48px; +} +.bootstrap .avatar-md img { + height: 100%; + width: 100%; +} +.bootstrap .avatar-md i { + font-size: 32px; + line-height: 48px; +} +.bootstrap .avatar-lg, .bootstrap .employee_avatar { + background-color: #eee; + border-radius: 80px; + display: inline-block; + height: 80px; + overflow: hidden; + text-align: center; + width: 80px; +} +.bootstrap .avatar-lg img, .bootstrap .employee_avatar img { + height: 100%; + width: 100%; +} +.bootstrap .avatar-lg i, .bootstrap .employee_avatar i { + font-size: 53.3333px; + line-height: 80px; +} +.bootstrap .avatar-xl { + background-color: #eee; + border-radius: 128px; + display: inline-block; + height: 128px; + overflow: hidden; + text-align: center; + width: 128px; +} +.bootstrap .avatar-xl img { + height: 100%; + width: 100%; +} +.bootstrap .avatar-xl i { + font-size: 85.3333px; + line-height: 128px; +} +.bootstrap #employee-thumbnail { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACWCAIAAACzY+a1AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAB1ZJREFUeNrsnV1PGl0UhcsUbGmtVotYQatVbFqrF973/1+ZJqaJX0hFRKh8CRYBUZyu0KR5k1eBwWFmHV3romlShdPzzN577TMz5wTOz8+fSSbL0hQIoSSEkhAKoSSEkhBKQiiEkhBKQigJoRBKQigJoSSET1bBJ/W/7XQ6rVarXq83Go2rq6ubmxv8/fr6Gv80OTm5vr5uWZYQ0umqq3K5/Pv372q1CoS3t7f//7E3b94oCrmw1Wq1SqWCP//FWQ99+fJlcXFRCP1Xu93O5XLFYhHkkCQH8gKWBX4LCwuqhX4KtICtUCggW4Kio98Nh8NG8zMeIVxJPp/PZrPNZnO4T0CORaYdHx83dxIChj6ECFeSSqXAb8CE2UOhUGhlZWVpaUlR6JFs20bBOzg4gGdx5QMRiHt7eyifnz9/fvHihRCOVmgMMN2oea5/MgIaLQesTTQaVSIdlVDzwO/hmbPXdAQCiUQCeVVR6L4AL51Oe5Clk8kkzNHa2popKzVmjHJ3d9cDfv8N9+/fv/ddEBDCQbW/v398fOzxl5ZKpa2tLSMosiNEQBwdHfny1fCo29vbdy6oCqGDSUQJ9HEAiMWdnR0USCEcRrj8UQJH6j8HTAM/f/4UwmF0dnaGRo1hJKlUirn14kWYyWR48gEoCqEz1et1FEKe8ZTLZarxGICwUqlQWUE4mtPTUyF0oEajwTaki4sLIXQgt+5CuCh4Y87uQg8hGi8hHFSBQEAIzVa73e50OkJosG67EkIH3kG51GyEptyrE0LzvIMQSkIoCaEQeiHbtjkdqRAKoRyppFoohJIQSkIoCaEQSkIoPQmEnC/2oVXlHBjXK6LX19f7+/utVsvp3iMeyLbt8/Pzly9fsm2PwYWwWq1ms1nOfIXLa2trKxQKffv2jWpXBYvtSicvPADJtn7LhTAcDpOvjgaDwefPnwvhvRobG8McMSNELWTbm4bOYvHnUjUVvYQcRR6FGCFbqqdDCMvHjBCpXlHYp30m3wWNcHh0tZB8X8lXr14JYf9cSu5IhbCPpqammBGicxXCPpqcnKR1NAhBDE8I+wj8YrEYJ8JIJEJ4s4Lx7sny8jJhyUHDyrn5MyNCGPeNjQ0qX/P3LAROt0x61/7du3dUxuHt27fxeJxzrngfvKA6gQcIaSeKFyHVNufMrQ4vwomJCRL7B5PMfCgXL0Kee4dwMYQO2QCE4EdyW4C5EFIjDAQCJBWI/PAR6keBI5EIQxYlXFQzBiG6Q9+76bm5OfIzR6gHh3Lo7+GC8KLz8/PPuMX+TkU8HvfxLmssFuM/S40dIQIxkUj4MzWWZcQBvwa82YRQQEHy/ntx6RA+ZmEkQujr16/T09NefuPMzIwp54qagRDpdHNz08sWGzVYh9+5bw69XOUif5zVSIS2bXt58oFB7wUYg7DT6RCefCCEDkT4Yp8QOlOz2fRyg3qDNoEzBqGXu9Pzv9phJEKPT3FSFLoveRnjEbZaLdFSFCqR+mdkrrryuPRyntB0x9XGfNAwlM/nDw8P2+229+fHWJaVSCSWl5cVhcOrVqv9+PHj8vLSl/N/EP3JZJL2CF8zEBYKBX8PK7NtO5fLCeGDotD3MdAe4WsGQob9EPlNDS9CWNBms+n7MDAG8lUFXoRnZ2cMpxhiDBiJEA7jBjOZDMlgMBLOI2CpEZZKpXq9TjIYjATjEULHHb3GYyrCVquVTqfZrnqMB6PiXGpnWWBDsalUKrjY0c7TnsUcCoWi0ejc3Nz09DTPI4r+I4Rlz2azgMdT/PpqfHwcIOfn5xlu7vuJsFarwa+DH+GRBoNobGwMFGdnZ/19AdEHhJ1OB6Xl5OQEmZPZrA/qJiwLeXVhYSESifiy3ZGn+xFcXl7mumJYdnGxipe6CofDsa5ev379CKPw4uLi+Pj4169fptxHHVoIxPfv3y8uLk5MTDwGhLZtF4tFVDtcpI8gZzrKrsirqJQzMzOjfoZjVAjhM2EykTP5b9aMVIjFv+9Hjs67uo8QBe+0Kz02+E/gF+9qFGXSTYQwKZlMBmmTtjf3fWUAqfXDhw/ubvLoDkJ0eCAHtyJ4g4CE3wFLt7rJhyIEvKOjI3ToOqjH2bwHArOzsx8/fnw4yOER1uv1ZDJZKBQE7yEgo9Ho6urqQ3ZIGqa1R81Lp9PInI++yRu1cPUjgaHjQl5dWloarkY6i0KYzL/wVPNGZHYA0mn74QAh3GYqlVKrMOr2Y2VlBa7V5UTaaDQODg5gODXFoxYiZGdnp1KpfPr0acCNi/ojzOfz+FBlTi+FaCmXy2tra4Nse9UHITInbKfm1HshZra3t5H/kFd7/2SvpwcODw/Fz19h/kFhSIQnJyd9f1nyQKAAFo4RVqvV3d1dTR+JwAJEHCBEv7m3t/ekbu+RCyxA5L5VsDsQwtH2YC75IhABl0ERFotFTRmh7uNyB8JCoaD5ItR9XCxNjekSQiGUhFASQiGUhFASQkkIhVAyQo1G486VbiE0RsFg8M6XpP4IMAApALrnMeLgrgAAAABJRU5ErkJggg=="); + background-size: contain; + border: 1px solid #ccc; + border-radius: 4px; + box-shadow: 0 0 0 4px #fff inset; + height: 104px; + margin-bottom: 10px; + position: relative; + width: 104px; +} +.bootstrap #employee-thumbnail:before { + color: #ccc; + display: block; + font-size: 2em; + left: 10px; + position: absolute; + text-align: center; + top: 10px; + z-index: 10; +} +.bootstrap #employee-thumbnail a { + background-position: center center; + background-size: contain; + border: medium none; + box-shadow: 0 0 0 3px #fff inset; + display: block; + height: 100px; + left: 1px; + overflow: hidden; + position: absolute; + top: 1px; + width: 100px; + z-index: 100; +} +.bootstrap .message-item-initial h2 { + font-size: 1.5em; + margin: 0 0 5px; +} +.bootstrap .message-item-initial .message-item-initial-body { + margin-top: 10px; + position: relative; +} +.bootstrap .message-item-initial .message-date { + color: #bbb; + margin-bottom: 10px; +} +.bootstrap .message-item { + border-bottom: 1px solid #eee; + margin: 0 0 0 30px; + padding: 10px 0; + position: relative; +} +.bootstrap .message-item:last-child { + border: medium none; +} +.bootstrap .message-item .message-item-heading { + display: inline-block; +} +.bootstrap .message-item .message-body { + margin: 0 0 0 80px; +} +.bootstrap .message-item .message-body .message-item-text { + border-left: 2px solid #ccc; + padding: 0 0 0 10px; +} +.bootstrap .message-item .message-avatar { + left: 10px; + position: absolute; + top: 10px; +} +.bootstrap .message-item .message-date { + color: #bbb; +} +.bootstrap .arrow:before, .bootstrap .arrow:after { + border-color: transparent; + border-style: solid; + content: ""; + display: inline-block; + position: absolute; +} +.bootstrap .arrow-left:before { + border-right-color: #d1d4d7; + border-width: 7px 7px 7px 0; + left: 0; + margin-left: -7px; + top: 6px; +} +.bootstrap .arrow-left:after { + border-right-color: #fff; + border-width: 6px 6px 6px 0; + left: 0; + margin-left: -6px; + top: 7px; +} +.bootstrap .arrow-right:before { + border-left-color: #d1d4d7; + border-width: 7px 0 7px 7px; + margin-right: -7px; + right: 0; + top: 6px; +} +.bootstrap .arrow-right:after { + border-left-color: #fff; + border-width: 6px 0 6px 6px; + margin-right: -6px; + right: 0; + top: 7px; +} +.bootstrap .timeline { + border-collapse: collapse; + border-spacing: 0; + display: table; + position: relative; + table-layout: fixed; + width: 100%; +} +.bootstrap .timeline:before { + background-color: #ddd; + bottom: 30px; + content: ""; + left: 50%; + margin-left: -4px; + position: absolute; + top: 0; + width: 6px; + z-index: 0; +} +.bootstrap .timeline .timeline-item { + display: table-row; +} +.bootstrap .timeline .timeline-item .timeline-caption { + display: table-cell; + vertical-align: top; + width: 50%; +} +.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel { + display: inline-block; + margin-left: 42px; + position: relative; + text-align: left; +} +.bootstrap .timeline .timeline-item .timeline-caption h5 { + margin: 0; +} +.bootstrap .timeline .timeline-item .timeline-caption h5 span { + color: #999; + display: block; + font-size: 12px; + margin-bottom: 4px; +} +.bootstrap .timeline .timeline-item .timeline-caption p { + font-size: 12px; + margin-bottom: 0; + margin-top: 10px; +} +.bootstrap .timeline .timeline-item .timeline-date { + left: -220px; + position: absolute; + text-align: right; + top: 10px; + width: 150px; +} +.bootstrap .timeline .timeline-item .timeline-icon { + background-color: #666; + border: 2px solid #fff; + border-radius: 40px; + height: 40px; + left: -62px; + line-height: 40px; + position: absolute; + text-align: center; + top: -2px; + width: 40px; +} +.bootstrap .timeline .timeline-item .timeline-icon i { + color: #fff; + font-size: 20px; + margin-top: 5px; +} +.bootstrap .timeline .timeline-item:before, .bootstrap .timeline .timeline-item.alt:after { + content: ""; + display: block; + width: 50%; +} +.bootstrap .timeline .timeline-item.alt { + text-align: right; +} +.bootstrap .timeline .timeline-item.alt:before { + display: none; +} +.bootstrap .timeline .timeline-item.alt .timeline-panel { + margin-left: 0; + margin-right: 40px; +} +.bootstrap .timeline .timeline-item.alt .timeline-date { + left: auto; + right: -220px; + text-align: left; +} +.bootstrap .timeline .timeline-item.alt .timeline-icon { + left: auto; + right: -60px; +} +.bootstrap .timeline .timeline-item.active { + display: table-caption; + text-align: center; +} +.bootstrap .timeline .timeline-item.active:before { + width: 1%; +} +.bootstrap .timeline .timeline-item.active .timeline-panel { + margin-left: 0; +} +.bootstrap .timeline .timeline-item.active .timeline-caption { + display: inline-block; + width: auto; +} +.bootstrap .timeline .timeline-item.active .timeline-date, .bootstrap .timeline .timeline-item.active .timeline-icon { + display: inline-block; + margin-bottom: 10px; + position: static; + width: auto; +} +.bootstrap .command-danger { + background-color: #d9534f !important; +} +.bootstrap .command-success { + background-color: #79bd3c !important; +} +.bootstrap .theme-container { + background-color: rgba(77, 87, 110, 0.3); + border: 1px solid #ccc; + border-radius: 3px; + height: 300px; + overflow: hidden; + position: relative; + width: 100%; +} +.bootstrap .theme-container .theme-title { + background-color: #4d576e; + border-bottom: 1px solid #fff; + color: #fff; + font-size: 16px; + height: 40px; + line-height: 40px; + margin: 0 0 10px; + padding: 0; + text-align: center; +} +.bootstrap .theme-container .thumbnail-wrapper .action-wrapper { + display: none; + left: 0; + position: absolute; + top: 40px; +} +.bootstrap .theme-container .thumbnail-wrapper .action-wrapper .action-overlay { + background-image: linear-gradient(rgba(77, 87, 110, 0.5), #4d576e); + height: 260px; + width: 100%; +} +.bootstrap .theme-container .thumbnail-wrapper .action-wrapper .action-buttons { + position: absolute; + text-align: center; + top: 130px; + width: 100%; +} +.mce-container { + background: none repeat scroll 0 0 transparent; + border: 0 none; + box-sizing: content-box; + color: #333; + cursor: inherit; + direction: ltr; + float: none; + font-size: 12px; + font-weight: normal; + height: auto; + line-height: normal; + margin: 0; + outline: 0 none; + padding: 0; + position: static; + text-align: left; + text-decoration: none; + vertical-align: top; + white-space: nowrap; + width: auto; +} +.mce-container * { + background: none repeat scroll 0 0 transparent; + border: 0 none; + box-sizing: content-box; + color: #333; + cursor: inherit; + direction: ltr; + float: none; + font-size: 12px; + font-weight: normal; + height: auto; + line-height: normal; + margin: 0; + outline: 0 none; + padding: 0; + position: static; + text-align: left; + text-decoration: none; + vertical-align: top; + white-space: nowrap; + width: auto; +} +.mce-widget { + background: none repeat scroll 0 0 transparent; + border: 0 none; + box-sizing: content-box; + color: #333; + cursor: inherit; + direction: ltr; + float: none; + font-size: 12px; + font-weight: normal; + height: auto; + line-height: normal; + margin: 0; + outline: 0 none; + padding: 0; + position: static; + text-align: left; + text-decoration: none; + vertical-align: top; + white-space: nowrap; + width: auto; +} +.mce-widget * { + background: none repeat scroll 0 0 transparent; + border: 0 none; + box-sizing: content-box; + color: #333; + cursor: inherit; + direction: ltr; + float: none; + font-size: 12px; + font-weight: normal; + height: auto; + line-height: normal; + margin: 0; + outline: 0 none; + padding: 0; + position: static; + text-align: left; + text-decoration: none; + vertical-align: top; + white-space: nowrap; + width: auto; +} +.mce-widget button { + box-sizing: border-box; +} +.mce-container [unselectable] { + -moz-user-select: none; +} +.mce-fade { + opacity: 0; + transition: opacity 0.15s linear 0s; +} +.mce-fade.mce-in { + opacity: 1; +} +.mce-tinymce { + position: relative; + visibility: visible !important; +} +.mce-fullscreen { + border: 0 none; + height: 100%; + margin: 0; + overflow: hidden; + padding: 0; + z-index: 100; +} +div.mce-fullscreen { + height: auto; + left: 0; + position: fixed; + top: 0; + width: 100%; +} +.mce-tinymce { + border-radius: 2px; + display: block; +} +.mce-wordcount { + padding: 8px; + position: absolute; + right: 0; + top: 0; +} +div.mce-edit-area { + background: none repeat scroll 0 0 #fff; + filter: none; + padding: 1px; +} +.mce-statusbar { + position: relative; +} +.mce-statusbar .mce-container-body { + position: relative; +} +.mce-fullscreen .mce-resizehandle { + display: none; +} +.mce-charmap { + border-collapse: collapse; +} +.mce-charmap td { + border: 1px solid #9e9e9e; + cursor: default; + height: 20px; + line-height: 20px; + padding: 2px; + text-align: center; + vertical-align: middle; + width: 20px; +} +.mce-charmap td div { + text-align: center; +} +.mce-charmap td:hover { + background: none repeat scroll 0 0 #d9d9d9; +} +.mce-grid td div { + border: 1px solid #d6d6d6; + border-collapse: separate; + border-spacing: 2px; + cursor: pointer; + height: 12px; + margin: 2px; + width: 12px; +} +.mce-grid a { + border: 1px solid transparent; + display: block; +} +.mce-grid a:hover { + border-color: #a1a1a1; +} +.mce-grid-border { + margin: 0 4px; +} +.mce-grid-border a { + border-color: #d6d6d6; + height: 13px; + width: 13px; +} +.mce-grid-border a:hover, .mce-grid-border a.mce-active { + background: none repeat scroll 0 0 #c8def4; + border-color: #a1a1a1; +} +.mce-text-center { + text-align: center; +} +div.mce-tinymce-inline { + box-shadow: none; + width: 100%; +} +.mce-toolbar-grp { + padding-bottom: 2px; +} +.mce-toolbar-grp .mce-flow-layout-item { + margin-bottom: 0; +} +.mce-rtl .mce-wordcount { + left: 0; + right: auto; +} +.mce-container, .mce-container-body { + display: block; +} +.mce-autoscroll { + overflow: hidden; +} +.mce-scrollbar { + height: 100%; + opacity: 0.4; + position: absolute; + right: 2px; + top: 2px; + width: 7px; +} +.mce-scrollbar-h { + bottom: 2px; + height: 7px; + left: 2px; + right: auto; + top: auto; + width: 100%; +} +.mce-scrollbar-thumb { + background-color: #000; + border: 1px solid rgba(85, 85, 85, 0.6); + border-radius: 7px; + height: 100%; + position: absolute; + width: 5px; +} +.mce-scrollbar-h .mce-scrollbar-thumb { + height: 5px; + width: 100%; +} +.mce-scrollbar:hover, .mce-scrollbar.mce-active { + background-color: #aaa; + border-radius: 7px; + opacity: 0.6; +} +.mce-scroll { + position: relative; +} +.mce-panel { + background-color: #fcfdfe; + border: 0 solid #ccc; +} +.mce-floatpanel { + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + position: absolute; +} +.mce-floatpanel.mce-fixed { + position: fixed; +} +.mce-floatpanel .mce-arrow { + border-color: transparent; + border-style: solid; + border-width: 11px; + display: block; + height: 0; + position: absolute; + width: 0; +} +.mce-floatpanel .mce-arrow:after { + border-color: transparent; + border-style: solid; + border-width: 10px; + content: ""; + display: block; + height: 0; + position: absolute; + width: 0; +} +.mce-floatpanel.mce-popover { + background: none repeat scroll 0 0 #fff; + border: 1px solid rgba(0, 0, 0, 0.25); + border-radius: 6px; + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + left: 0; + top: 0; +} +.mce-floatpanel.mce-popover.mce-bottom { + margin-top: 10px; +} +.mce-floatpanel.mce-popover.mce-bottom > .mce-arrow { + border-bottom-color: rgba(0, 0, 0, 0.25); + border-top-width: 0; + left: 50%; + margin-left: -11px; + top: -11px; +} +.mce-floatpanel.mce-popover.mce-bottom > .mce-arrow:after { + border-bottom-color: #fff; + border-top-width: 0; + margin-left: -10px; + top: 1px; +} +.mce-floatpanel.mce-popover.mce-bottom.mce-start { + margin-left: -22px; +} +.mce-floatpanel.mce-popover.mce-bottom.mce-start > .mce-arrow { + left: 20px; +} +.mce-floatpanel.mce-popover.mce-bottom.mce-end { + margin-left: 22px; +} +.mce-floatpanel.mce-popover.mce-bottom.mce-end > .mce-arrow { + left: auto; + right: 10px; +} +.mce-fullscreen { + background: none repeat scroll 0 0 #fff; + border: 0 none; + height: 100%; + margin: 0; + overflow: hidden; + padding: 0; +} +div.mce-fullscreen { + left: 0; + position: fixed; + top: 0; +} +#mce-modal-block { + background: none repeat scroll 0 0 #000; + height: 100%; + left: 0; + opacity: 0; + position: fixed; + top: 0; + width: 100%; +} +#mce-modal-block.mce-in { + opacity: 0.3; +} +.mce-window-move { + cursor: move; +} +.mce-window { + background: none repeat scroll 0 0 #fff; + border-radius: 6px; + box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); + left: 0; + opacity: 0; + position: fixed; + top: 0; + transition: opacity 150ms ease-in 0s; +} +.mce-window.mce-in { + opacity: 1; +} +.mce-window-head { + border-bottom: 1px solid #c5c5c5; + padding: 9px 15px; + position: relative; +} +.mce-window-head .mce-close { + color: #858585; + cursor: pointer; + font-size: 18px; + font-weight: bold; + height: 20px; + line-height: 20px; + overflow: hidden; + position: absolute; + right: 15px; + top: 9px; +} +.mce-close:hover { + color: #adadad; +} +.mce-window-head .mce-title { + font-size: 14px; + font-weight: normal; + line-height: 20px; + padding-right: 10px; + text-rendering: optimizelegibility; +} +.mce-window .mce-container-body { + display: block; +} +.mce-foot { + background-color: #fff; + border-radius: 0 0 6px 6px; + border-top: 1px solid #c5c5c5; + display: block; +} +.mce-window-head .mce-dragh { + cursor: move; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 90%; +} +.mce-window iframe { + height: 100%; + width: 100%; +} +.mce-window.mce-fullscreen { + border-radius: 0; +} +.mce-window.mce-fullscreen .mce-foot { + border-radius: 0; +} +.mce-rtl .mce-window-head .mce-close { + left: 15px; + position: absolute; + right: auto; +} +.mce-rtl .mce-window-head .mce-dragh { + left: auto; + right: 0; +} +.mce-rtl .mce-window-head .mce-title { + direction: rtl; + text-align: right; +} +.mce-abs-layout { + position: relative; +} +body .mce-abs-layout-item { + position: absolute; +} +.mce-abs-end { + height: 1px; + position: absolute; + width: 1px; +} +.mce-container-body.mce-abs-layout { + overflow: hidden; +} +.mce-tooltip { + padding: 5px; + position: absolute; +} +.mce-tooltip-inner { + background-color: #000; + border-radius: 3px; + color: #fff; + font-size: 12px; + max-width: 200px; + padding: 5px 8px 4px; + text-align: center; + white-space: normal; +} +.mce-tooltip-arrow { + border: 5px dashed #000; + height: 0; + line-height: 0; + position: absolute; + width: 0; +} +.mce-tooltip-arrow-n { + border-bottom-color: #000; +} +.mce-tooltip-arrow-s { + border-top-color: #000; +} +.mce-tooltip-arrow-e { + border-right-color: #000; +} +.mce-tooltip-arrow-w { + border-left-color: #000; +} +.mce-tooltip-nw, .mce-tooltip-sw { + margin-left: -14px; +} +.mce-tooltip-n .mce-tooltip-arrow { + border-bottom-style: solid; + border-left-color: transparent; + border-right-color: transparent; + border-top: medium none; + left: 50%; + margin-left: -5px; + top: 0; +} +.mce-tooltip-nw .mce-tooltip-arrow { + border-bottom-style: solid; + border-left-color: transparent; + border-right-color: transparent; + border-top: medium none; + left: 10px; + top: 0; +} +.mce-tooltip-ne .mce-tooltip-arrow { + border-bottom-style: solid; + border-left-color: transparent; + border-right-color: transparent; + border-top: medium none; + right: 10px; + top: 0; +} +.mce-tooltip-s .mce-tooltip-arrow { + border-bottom: medium none; + border-left-color: transparent; + border-right-color: transparent; + border-top-style: solid; + bottom: 0; + left: 50%; + margin-left: -5px; +} +.mce-tooltip-sw .mce-tooltip-arrow { + border-bottom: medium none; + border-left-color: transparent; + border-right-color: transparent; + border-top-style: solid; + bottom: 0; + left: 10px; +} +.mce-tooltip-se .mce-tooltip-arrow { + border-bottom: medium none; + border-left-color: transparent; + border-right-color: transparent; + border-top-style: solid; + bottom: 0; + right: 10px; +} +.mce-tooltip-e .mce-tooltip-arrow { + border-bottom-color: transparent; + border-left-style: solid; + border-right: medium none; + border-top-color: transparent; + margin-top: -5px; + right: 0; + top: 50%; +} +.mce-tooltip-w .mce-tooltip-arrow { + border-bottom-color: transparent; + border-left-style: solid; + border-right: medium none; + border-top-color: transparent; + left: 0; + margin-top: -5px; + top: 50%; +} +.mce-btn { + background-color: #fff; + box-shadow: 0 -2px 0 #eee inset; + display: inline-block; + position: relative; +} +.mce-btn:hover, .mce-btn:focus { + background-color: #eee; + box-shadow: 0 -2px 0 #ddd inset; + color: #eee; +} +.mce-btn.mce-disabled button, .mce-btn.mce-disabled:hover button { + box-shadow: none; + cursor: default; + opacity: 0.4; +} +.mce-btn.mce-active { + background-color: #d6d6d6; +} +.mce-btn.mce-active:hover { + background-color: #d6d6d6; +} +.mce-btn:active:not(.mce-disabled) { + background-color: #d6d6d6; +} +.mce-btn button { + color: #333; + cursor: pointer; + font-size: 12px; + overflow: visible; + padding: 2px 6px; + text-align: center; +} +.mce-btn button::-moz-focus-inner { + border: 0 none; + padding: 0; +} +.mce-primary { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + background-color: #006dcc; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0.25); + border-image: none; + border-style: solid; + border-width: 1px; + color: #fff; + min-width: 50px; +} +.mce-primary:hover, .mce-primary:focus { + background-color: #005fb3; +} +.mce-primary.mce-disabled button, .mce-primary.mce-disabled:hover button { + box-shadow: none; + cursor: default; + opacity: 0.4; +} +.mce-primary.mce-active { + background-color: #005299; +} +.mce-primary.mce-active:hover { + background-color: #005299; +} +.mce-primary:active:not(.mce-disabled) { + background-color: #005299; +} +.mce-primary button { + color: #fff; +} +.mce-primary button i { + color: #fff; +} +.mce-btn-large button { + border-radius: 5px; + font-size: 12px; + line-height: normal; + padding: 9px 14px; +} +.mce-btn-large i { + margin-top: 2px; +} +.mce-btn-small button { + font-size: 12px; + padding: 1px 5px; +} +.mce-btn-small i { + line-height: 20px; + vertical-align: top; +} +.mce-btn .mce-caret, .mce-btn-small .mce-caret { + margin-left: 0; + margin-top: 8px; +} +.mce-caret { + border-left: 4px solid transparent; + border-right: 4px solid transparent; + border-top: 4px solid #333; + content: ""; + display: inline-block; + height: 0; + vertical-align: top; + width: 0; +} +.mce-disabled .mce-caret { + border-top-color: #aaa; +} +.mce-caret.mce-up { + border-bottom: 4px solid #333; + border-top: 0 none; +} +.mce-rtl .mce-btn button { + direction: rtl; +} +.mce-btn-group .mce-btn { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + border-color: #ccc -moz-use-text-color #ccc #ccc; + border-image: none; + border-radius: 0; + border-style: solid none solid solid; + border-width: 1px medium 1px 1px; +} +.mce-btn-group .mce-first { + border-radius: 3px 0 0 3px; +} +.mce-btn-group .mce-last { + border-radius: 0 3px 3px 0; + border-right: 1px solid #ccc; +} +.mce-btn-group .mce-first.mce-last { + border-radius: 3px; +} +.mce-btn-group .mce-btn.mce-flow-layout-item { + margin: 0; +} +.mce-checkbox { + cursor: pointer; +} +i.mce-i-checkbox { + background-color: #f0f0f0; + border: 1px solid #c5c5c5; + border-radius: 3px; + display: inline-block; + height: 14px; + margin: 0 3px 0 0; + overflow: hidden; + text-align: center; + text-indent: -10em; + width: 14px; +} +.mce-checked i.mce-i-checkbox { + color: #333; + font-size: 12px; + line-height: 16px; + text-indent: 0; +} +.mce-checkbox:focus i.mce-i-checkbox, .mce-checkbox.mce-focus i.mce-i-checkbox { + border: 1px solid rgba(82, 168, 236, 0.8); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.65); +} +.mce-checkbox.mce-disabled .mce-label, .mce-checkbox.mce-disabled i.mce-i-checkbox { + color: #acacac; +} +.mce-rtl .mce-checkbox { + direction: rtl; + text-align: right; +} +.mce-rtl i.mce-i-checkbox { + margin: 0 0 0 3px; +} +.mce-colorbutton .mce-ico { + position: relative; +} +.mce-colorbutton-grid { + margin: 4px; +} +.mce-colorbutton button { + padding-right: 4px; +} +.mce-colorbutton .mce-preview { + background: none repeat scroll 0 0 gray; + display: block; + height: 2px; + left: 50%; + margin-left: -14px; + margin-top: 7px; + overflow: hidden; + padding-right: 3px; + position: absolute; + top: 50%; + width: 13px; +} +.mce-colorbutton.mce-btn-small .mce-preview { + margin-left: -16px; + padding-right: 0; + width: 16px; +} +.mce-colorbutton .mce-open { + border-left: 1px solid transparent; + border-right: 1px solid transparent; + padding-left: 4px; +} +.mce-colorbutton:hover .mce-open { + border-left-color: #bdbdbd; + border-right-color: #bdbdbd; +} +.mce-colorbutton.mce-btn-small .mce-open { + padding: 0 3px; +} +.mce-rtl .mce-colorbutton { + direction: rtl; +} +.mce-rtl .mce-colorbutton .mce-preview { + margin-left: 0; + margin-right: 14px; + padding-left: 4px; + padding-right: 0; +} +.mce-rtl .mce-colorbutton.mce-btn-small .mce-preview { + margin-left: 0; + margin-right: -17px; + padding-left: 0; + padding-right: 0; +} +.mce-rtl .mce-colorbutton button { + padding-left: 10px; + padding-right: 10px; +} +.mce-rtl .mce-colorbutton .mce-open { + padding-left: 4px; + padding-right: 4px; +} +.mce-combobox { + display: inline-block; +} +.mce-combobox input { + border: 1px solid #c5c5c5; + height: 28px; +} +.mce-combobox.mce-disabled input { + color: #adadad; +} +.mce-combobox.mce-has-open input { + border-radius: 4px 0 0 4px; +} +.mce-combobox .mce-btn { + background-color: #c5c5c5; + border-left: 0 none; + border-radius: 0 4px 4px 0; + box-shadow: 0 -2px 0 #aaa inset; +} +.mce-combobox button { + height: 26px; +} +.mce-combobox.mce-disabled .mce-btn button { + box-shadow: none; + cursor: default; + opacity: 0.4; +} +.mce-path { + display: inline-block; + padding: 8px; + white-space: normal; +} +.mce-path .mce-txt { + display: inline-block; + padding-right: 3px; +} +.mce-path .mce-path-body { + display: inline-block; +} +.mce-path-item { + color: #333; + cursor: pointer; + display: inline-block; +} +.mce-path-item:hover { + text-decoration: underline; +} +.mce-path-item:focus { + background: none repeat scroll 0 0 #666; + color: #fff; +} +.mce-path .mce-divider { + display: inline; +} +.mce-disabled .mce-path-item { + color: #aaa; +} +.mce-rtl .mce-path { + direction: rtl; +} +.mce-fieldset { + border: 0 solid #9e9e9e; + border-radius: 3px; +} +.mce-fieldset > .mce-container-body { + margin-top: -15px; +} +.mce-fieldset-title { + margin-left: 5px; + padding: 0 5px; +} +.mce-fit-layout { + display: inline-block; +} +.mce-fit-layout-item { + position: absolute; +} +.mce-flow-layout-item { + display: inline-block; + margin: 2px 0 2px 2px; +} +.mce-flow-layout-item.mce-last { + margin-right: 2px; +} +.mce-flow-layout { + white-space: normal; +} +.mce-tinymce-inline .mce-flow-layout { + white-space: nowrap; +} +.mce-rtl .mce-flow-layout { + direction: rtl; + text-align: right; +} +.mce-rtl .mce-flow-layout-item { + margin: 2px 2px 2px 0; +} +.mce-rtl .mce-flow-layout-item.mce-last { + margin-left: 2px; +} +.mce-iframe { + border: 0 solid #9e9e9e; + height: 100%; + width: 100%; +} +.mce-label { + border: 0 none; + display: inline-block; + overflow: hidden; +} +.mce-label.mce-autoscroll { + overflow: auto; +} +.mce-label.mce-disabled { + color: #aaa; +} +.mce-label.mce-multiline { + white-space: pre-wrap; +} +.mce-rtl .mce-label { + direction: rtl; + text-align: right; +} +.mce-menubar { + border: 1px solid #eee; +} +.mce-menubar .mce-menubtn { + background: none repeat scroll 0 0 transparent; + border-color: transparent; + border-radius: 0; + box-shadow: none; + filter: none; +} +.mce-menubar .mce-menubtn button span { + color: #333; +} +.mce-menubar .mce-caret { + border-top-color: #333; +} +.mce-menubar .mce-menubtn:hover, .mce-menubar .mce-menubtn.mce-active, .mce-menubar .mce-menubtn:focus { + background: none repeat scroll 0 0 #e6e6e6; + border-color: transparent; + box-shadow: none; + filter: none; +} +.mce-menubtn.mce-disabled span { + color: #aaa; +} +.mce-menubtn span { + color: #333; + line-height: 20px; + margin-right: 2px; +} +.mce-menubtn.mce-btn-small span { + font-size: 12px; +} +.mce-menubtn.mce-fixed-width span { + display: inline-block; + overflow-x: hidden; + text-overflow: ellipsis; + width: 90px; +} +.mce-menubtn.mce-fixed-width.mce-btn-small span { + width: 70px; +} +.mce-menubtn .mce-caret { +} +.mce-rtl .mce-menubtn button { + direction: rtl; + text-align: right; +} +.mce-listbox button { + padding-right: 20px; + position: relative; + text-align: left; +} +.mce-listbox .mce-caret { + margin-top: -2px; + position: absolute; + right: 8px; + top: 50%; +} +.mce-rtl .mce-listbox .mce-caret { + left: 8px; + right: auto; +} +.mce-rtl .mce-listbox button { + padding-left: 20px; + padding-right: 10px; +} +.mce-menu-item { + border-left: 4px solid transparent; + clear: both; + color: #333; + cursor: pointer; + display: block; + font-weight: normal; + line-height: normal; + margin-bottom: 1px; + padding: 6px 15px 6px 12px; + white-space: nowrap; +} +.mce-menu-item .mce-ico, .mce-menu-item .mce-text { + color: #333; +} +.mce-menu-item.mce-disabled .mce-text, .mce-menu-item.mce-disabled .mce-ico { + color: #adadad; +} +.mce-menu-item:hover .mce-text, .mce-menu-item.mce-selected .mce-text, .mce-menu-item:hover .mce-ico, .mce-menu-item.mce-selected .mce-ico, .mce-menu-item:focus .mce-ico { + color: #fff; +} +.mce-menu-item.mce-disabled:hover { + background: none repeat scroll 0 0 #ccc; +} +.mce-menu-shortcut { + color: #adadad; + display: inline-block; + padding: 0 15px 0 20px; +} +.mce-menu-item:hover .mce-menu-shortcut, .mce-menu-item.mce-selected .mce-menu-shortcut, .mce-menu-item:focus .mce-menu-shortcut { + color: #fff; +} +.mce-menu-item .mce-caret { + border-bottom: 4px solid transparent; + border-left: 4px solid #333; + border-top: 4px solid transparent; + margin-right: 6px; + margin-top: 4px; +} +.mce-menu-item.mce-selected .mce-caret, .mce-menu-item:focus .mce-caret, .mce-menu-item:hover .mce-caret { + border-left-color: #fff; +} +.mce-menu-align .mce-menu-shortcut { + position: absolute; + right: 0; +} +.mce-menu-align .mce-caret { + position: absolute; + right: 0; +} +.mce-menu-item.mce-active i { + visibility: visible; +} +.mce-menu-item-normal.mce-active { + background-color: #c8def4; +} +.mce-menu-item-preview.mce-active { + border-left: 5px solid #aaa; +} +.mce-menu-item-normal.mce-active .mce-text { + color: #333; +} +.mce-menu-item-normal.mce-active:hover .mce-text, .mce-menu-item-normal.mce-active:hover .mce-ico { + color: #fff; +} +.mce-menu-item:hover, .mce-menu-item.mce-selected, .mce-menu-item:focus { + background-color: #0081c2; + color: #fff; + text-decoration: none; +} +div.mce-menu .mce-menu-item-sep, .mce-menu-item-sep:hover { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + background: none repeat scroll 0 0 #cbcbcb; + border-color: -moz-use-text-color -moz-use-text-color #fff; + border-image: none; + border-style: none none solid; + border-width: 0 0 1px; + cursor: default; + filter: none; + height: 1px; + margin: 9px 1px; + overflow: hidden; + padding: 0; +} +.mce-menu.mce-rtl { + direction: rtl; +} +.mce-rtl .mce-menu-item { + direction: rtl; + padding: 6px 12px 6px 15px; + text-align: right; +} +.mce-menu-align.mce-rtl .mce-menu-shortcut, .mce-menu-align.mce-rtl .mce-caret { + left: 0; + right: auto; +} +.mce-rtl .mce-menu-item .mce-caret { + border-left: 0 none; + border-right: 4px solid #333; + margin-left: 6px; + margin-right: 0; +} +.mce-rtl .mce-menu-item.mce-selected .mce-caret, .mce-rtl .mce-menu-item:focus .mce-caret, .mce-rtl .mce-menu-item:hover .mce-caret { + border-left-color: transparent; + border-right-color: #fff; +} +.mce-menu { + background: none repeat scroll 0 0 #fff; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + left: 0; + margin: 2px 0 0; + max-height: 400px; + min-width: 160px; + overflow-x: hidden; + overflow-y: auto; + padding: 5px 0; + position: absolute; + top: 0; + z-index: 1002; +} +.mce-menu i { + display: none; +} +.mce-menu-has-icons i { + display: inline-block; +} +.mce-menu-sub-tr-tl { + margin: -6px 0 0 -1px; +} +.mce-menu-sub-br-bl { + margin: 6px 0 0 -1px; +} +.mce-menu-sub-tl-tr { + margin: -6px 0 0 1px; +} +.mce-menu-sub-bl-br { + margin: 6px 0 0 1px; +} +.mce-container-body .mce-resizehandle { + bottom: 0; + cursor: s-resize; + height: 16px; + margin: 0; + position: absolute; + right: 0; + visibility: visible; + width: 16px; +} +.mce-container-body .mce-resizehandle-both { + cursor: se-resize; +} +i.mce-i-resize { + color: #333; +} +.mce-spacer { + visibility: hidden; +} +.mce-splitbtn .mce-open { + border-left: 1px solid transparent; + border-right: 1px solid transparent; +} +.mce-splitbtn button { + padding-right: 4px; +} +.mce-splitbtn .mce-open { + padding-left: 4px; +} +.mce-splitbtn .mce-open.mce-active { + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15) inset, 0 1px 2px rgba(0, 0, 0, 0.05); +} +.mce-splitbtn.mce-btn-small .mce-open { + padding: 0 3px; +} +.mce-rtl .mce-splitbtn { + direction: rtl; + text-align: right; +} +.mce-rtl .mce-splitbtn button { + padding-left: 10px; + padding-right: 10px; +} +.mce-rtl .mce-splitbtn .mce-open { + padding-left: 4px; + padding-right: 4px; +} +.mce-stack-layout-item { + display: block; +} +.mce-tabs { + border-bottom: 1px solid #c5c5c5; + display: block; +} +.mce-tab { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + background: none repeat scroll 0 0 #e3e3e3; + border-color: #c5c5c5; + border-image: none; + border-style: solid; + border-width: 0 1px 0 0; + cursor: pointer; + display: inline-block; + height: 13px; + padding: 8px; +} +.mce-tab:hover { + background: none repeat scroll 0 0 #fdfdfd; +} +.mce-tab.mce-active { + background: none repeat scroll 0 0 #fdfdfd; + border-bottom-color: transparent; + height: 14px; + margin-bottom: -1px; +} +.mce-rtl .mce-tabs { + direction: rtl; + text-align: right; +} +.mce-rtl .mce-tab { + border-width: 0 0 0 1px; +} +.mce-textbox { + background: none repeat scroll 0 0 #fff; + border: 1px solid #c5c5c5; + border-radius: 3px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset; + color: #333; + display: inline-block; + height: 28px; + padding: 0 4px; + resize: none; + transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s; + white-space: pre-wrap; +} +.mce-textbox:focus, .mce-textbox.mce-focus { + border-color: rgba(82, 168, 236, 0.8); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.65); +} +.mce-placeholder .mce-textbox { + color: #aaa; +} +.mce-textbox.mce-multiline { + padding: 4px; +} +.mce-textbox.mce-disabled { + color: #adadad; +} +.mce-rtl .mce-textbox { + direction: rtl; + text-align: right; +} +.mce-throbber { + background: url("img/loader.gif") no-repeat scroll center center #fff; + height: 100%; + left: 0; + opacity: 0.6; + position: absolute; + top: 0; + width: 100%; +} +.mce-i-none { + height: 16px; + margin: 2px 0; + width: 16px; +} +.mce-ico { + font-size: 14px; + line-height: 20px; +} +.mce-i-save:before { + content: "?"; +} +.mce-i-newdocument:before { + content: "?"; +} +.mce-i-fullpage:before { + content: "?"; +} +.mce-i-alignleft:before { + content: "?"; +} +.mce-i-aligncenter:before { + content: "?"; +} +.mce-i-alignright:before { + content: "?"; +} +.mce-i-alignjustify:before { + content: "?"; +} +.mce-i-cut:before { + content: "?"; +} +.mce-i-paste:before { + content: "?"; +} +.mce-i-searchreplace:before { + content: "?"; +} +.mce-i-bullist:before { + content: "?"; +} +.mce-i-numlist:before { + content: "?"; +} +.mce-i-indent:before { + content: "?"; +} +.mce-i-outdent:before { + content: "?"; +} +.mce-i-blockquote:before { + content: "?"; +} +.mce-i-undo:before { + content: "?"; +} +.mce-i-redo:before { + content: "?"; +} +.mce-i-link:before { + content: "?"; +} +.mce-i-unlink:before { + content: "?"; +} +.mce-i-anchor:before { + content: "?"; +} +.mce-i-image:before { + content: "?"; +} +.mce-i-media:before { + content: "?"; +} +.mce-i-help:before { + content: "?"; +} +.mce-i-code:before { + content: "?"; +} +.mce-i-inserttime:before { + content: "?"; +} +.mce-i-preview:before { + content: "?"; +} +.mce-i-forecolor:before, .mce-i-backcolor:before { + content: ""; +} +.mce-i-table:before { + content: "?"; +} +.mce-i-hr:before { + content: ""; +} +.mce-i-removeformat:before { + content: ""; +} +.mce-i-subscript:before { + content: "?"; +} +.mce-i-superscript:before { + content: "?"; +} +.mce-i-charmap:before { + content: ""; +} +.mce-i-emoticons:before { + content: "?"; +} +.mce-i-print:before { + content: "?"; +} +.mce-i-fullscreen:before { + content: "?"; +} +.mce-i-spellchecker:before { + content: ""; +} +.mce-i-nonbreaking:before { + content: ""; +} +.mce-i-template:before { + content: ""; +} +.mce-i-pagebreak:before { + content: ""; +} +.mce-i-restoredraft:before { + content: ""; +} +.mce-i-untitled:before { + content: ""; +} +.mce-i-bold:before { + content: "?"; +} +.mce-i-italic:before { + content: "?"; +} +.mce-i-underline:before { + content: "?"; +} +.mce-i-strikethrough:before { + content: "?"; +} +.mce-i-visualchars:before, .mce-i-visualblocks:before { + content: ""; +} +.mce-i-ltr:before { + content: ""; +} +.mce-i-rtl:before { + content: "?"; +} +.mce-i-copy:before { + content: "?"; +} +.mce-i-resize:before { + content: "?"; +} +.mce-i-browse:before { + content: "?"; +} +.mce-i-pastetext:before { + content: ""; +} +.mce-i-checkbox:before { + content: "?"; +} +.mce-i-selected { + visibility: hidden; +} +.mce-i-selected:before { + content: "?"; +} +i.mce-i-backcolor { + background: none repeat scroll 0 0 #bbb; +} +#growls { + position: fixed; + z-index: 50000; +} +#growls.default { + right: 10px; + top: 100px; +} +#growls.tl { + left: 10px; + top: 10px; +} +#growls.tr { + right: 10px; + top: 10px; +} +#growls.bl { + bottom: 10px; + left: 10px; +} +#growls.br { + bottom: 10px; + right: 10px; +} +.growl { + border-radius: 4px; + opacity: 1; + position: relative; + transition: all 0.4s ease-in-out 0s; +} +.growl.growl-incoming { + opacity: 0; +} +.growl.growl-outgoing { + opacity: 0; +} +.growl.growl-small { + margin: 5px; + padding: 5px; + width: 200px; +} +.growl.growl-medium { + margin: 10px; + padding: 10px; + width: 250px; +} +.growl.growl-large { + margin: 15px; + padding: 15px; + width: 300px; +} +.growl.growl-default { + background: none repeat scroll 0 0 gray; + color: #fff; +} +.growl.growl-error { + background: none repeat scroll 0 0 rgba(217, 83, 79, 0.8); + color: #fff; +} +.growl.growl-notice { + background: none repeat scroll 0 0 rgba(121, 189, 60, 0.8); + color: #fff; +} +.growl.growl-warning { + background: none repeat scroll 0 0 rgba(240, 173, 78, 0.8); + color: #fff; +} +.growl .growl-close { + cursor: pointer; + float: right; + font-family: helvetica,verdana,sans-serif; + font-size: 14px; + font-weight: normal; + line-height: 18px; +} +.growl .growl-title { + font-size: 18px; + line-height: 24px; +} +.growl .growl-message { + font-size: 14px; + line-height: 18px; +} +.chosen-select { + width: 100%; +} +.chosen-select-deselect { + width: 100%; +} +.chosen-container { + display: inline-block; + font-size: 12px; + position: relative; + vertical-align: middle; +} +.chosen-container .chosen-drop { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + background: none repeat scroll 0 0 #fff; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-color: #d9d9d9 #999 #999; + border-image: none; + border-right: 1px solid #999; + border-style: solid; + border-width: 1px; + box-shadow: 0 8px 8px rgba(0, 0, 0, 0.25); + left: -9000px; + margin-top: -1px; + position: absolute; + top: 100%; + z-index: 1060; +} +.chosen-container.chosen-with-drop .chosen-drop { + left: 0; + right: 0; +} +.chosen-container .chosen-results { + color: #555; + margin: 0 4px 4px 0; + max-height: 240px; + overflow-x: hidden; + overflow-y: auto; + padding: 0 0 0 4px; + position: relative; +} +.chosen-container .chosen-results li { + display: none; + line-height: 1.42857; + list-style: outside none none; + margin: 0; + padding: 5px 6px; +} +.chosen-container .chosen-results li em { + background: none repeat scroll 0 0 #feffde; + font-style: normal; +} +.chosen-container .chosen-results li.group-result { + color: #999; + cursor: default; + display: list-item; + font-weight: bold; +} +.chosen-container .chosen-results li.group-option { + padding-left: 15px; +} +.chosen-container .chosen-results li.active-result { + cursor: pointer; + display: list-item; +} +.chosen-container .chosen-results li.highlighted { + background-color: #00aff0; + color: #fff; +} +.chosen-container .chosen-results li.highlighted em { + background: none repeat scroll 0 0 transparent; +} +.chosen-container .chosen-results li.disabled-result { + color: #999; + display: list-item; +} +.chosen-container .chosen-results .no-results { + background: none repeat scroll 0 0 #eee; + display: list-item; +} +.chosen-container .chosen-results-scroll { + background: none repeat scroll 0 0 #fff; + margin: 0 4px; + position: absolute; + text-align: center; + width: 321px; + z-index: 1; +} +.chosen-container .chosen-results-scroll span { + display: inline-block; + text-indent: -5000px; + width: 9px; +} +.chosen-container .chosen-results-scroll-down { + bottom: 0; +} +.chosen-container .chosen-results-scroll-down span { + background: url("chosen-sprite.png") no-repeat scroll -4px -3px rgba(0, 0, 0, 0); +} +.chosen-container .chosen-results-scroll-up span { + background: url("chosen-sprite.png") no-repeat scroll -22px -3px rgba(0, 0, 0, 0); +} +.chosen-container-single .chosen-single { + background-color: #fff; + border: 1px solid #ccc; + border-radius: 3px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset; + color: #555; + display: block; + height: 27px; + line-height: 27px; + overflow: hidden; + padding: 0 0 0 8px; + position: relative; + text-decoration: none; + white-space: nowrap; +} +.chosen-container-single .chosen-single:hover { + cursor: pointer; + text-decoration: none; +} +.chosen-container-single .chosen-single.chosen-disabled .chosen-single abbr:hover { + background-position: right 2px; +} +.chosen-container-single .chosen-single div { + display: block; + height: 100%; + position: absolute; + right: 0; + top: 0; + width: 18px; +} +.chosen-container-single .chosen-single div b { + display: block; + font-size: 14px; + height: 100%; + line-height: 28px; + text-align: center; + width: 100%; +} +.chosen-container-single .chosen-default { + color: #999; +} +.chosen-container-single .chosen-search { + margin: 0; + overflow: hidden; + padding: 3px 4px; + position: relative; + white-space: nowrap; + z-index: 1000; +} +.chosen-container-single .chosen-search input { + border: 1px solid #ccc; + border-radius: 3px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset; + margin: 1px 0; + padding: 4px 20px 4px 4px; + width: 100%; +} +.chosen-container-single .chosen-search:before { + color: #00aff0; + display: block; + font-size: 14px; + height: 22px; + line-height: 22px; + position: absolute; + right: 7px; + text-align: center; + top: 7px; + width: 22px; +} +.chosen-container-single .chosen-drop { + background-clip: padding-box; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + margin-top: -1px; +} +.chosen-container-single-nosearch .chosen-search input { + left: -9000px; + position: absolute; +} +.chosen-container-multi .chosen-choices { + background-color: #fff; + border: 1px solid #ccc; + border-radius: 0; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset; + cursor: text; + height: auto !important; + margin: 0; + overflow: hidden; + padding: 0; + position: relative; +} +.chosen-container-multi .chosen-choices li { + float: left; + list-style: outside none none; +} +.chosen-container-multi .chosen-choices .search-field { + margin: 0; + padding: 0; + white-space: nowrap; +} +.chosen-container-multi .chosen-choices .search-field input { + background: none repeat scroll 0 0 transparent !important; + border: 0 none !important; + box-shadow: none; + color: #555; + height: 25px; + margin: 0; + outline: 0 none; + padding: 4px; +} +.chosen-container-multi .chosen-choices .search-field .default { + color: #999; +} +.chosen-container-multi .chosen-choices .search-choice { + background-clip: padding-box; + background-color: #eee; + background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%); + background-repeat: repeat-x; + border: 1px solid #ccc; + border-radius: 3px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset; + color: #333; + cursor: default; + line-height: 13px; + margin: 6px 0 3px 5px; + padding: 3px 20px 3px 5px; + position: relative; +} +.chosen-container-multi .chosen-choices .search-choice .search-choice-close { + background: url("chosen-sprite.png") no-repeat scroll right top rgba(0, 0, 0, 0); + display: block; + font-size: 1px; + height: 10px; + position: absolute; + right: 4px; + top: 5px; + width: 12px; +} +.chosen-container-multi .chosen-choices .search-choice .search-choice-close:hover { + background-position: right -11px; +} +.chosen-container-multi .chosen-choices .search-choice-focus { + background: none repeat scroll 0 0 #d4d4d4; +} +.chosen-container-multi .chosen-choices .search-choice-focus .search-choice-close { + background-position: right -11px; +} +.chosen-container-multi .chosen-results { + margin: 0; + padding: 0; +} +.chosen-container-multi .chosen-drop .result-selected { + display: none; +} +.chosen-container-active .chosen-single { + border: 1px solid rgba(82, 168, 236, 0.8); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6); + transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s; +} +.chosen-container-active.chosen-with-drop .chosen-single { + background-color: #eee; + border: 1px solid rgba(82, 168, 236, 0.8); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6); + transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s; +} +.chosen-container-active.chosen-with-drop .chosen-single div { + background: none repeat scroll 0 0 transparent; + border-left: medium none; +} +.chosen-container-active.chosen-with-drop .chosen-single div b { + background-position: -18px 7px; +} +.chosen-container-active .chosen-choices { + border: 1px solid rgba(82, 168, 236, 0.8); + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6); + transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s; +} +.chosen-container-active .chosen-choices .search-field input { + color: #111 !important; +} +.chosen-disabled { + cursor: default; + opacity: 0.5 !important; +} +.chosen-disabled .chosen-single { + cursor: default; +} +.chosen-disabled .chosen-choices .search-choice .search-choice-close { + cursor: default; +} +.chosen-rtl { + text-align: right; +} +.chosen-rtl .chosen-single { + overflow: visible; + padding: 0 8px 0 0; +} +.chosen-rtl .chosen-single span { + direction: rtl; + margin-left: 26px; + margin-right: 0; +} +.chosen-rtl .chosen-single div { + left: 7px; + right: auto; +} +.chosen-rtl .chosen-single abbr { + left: 26px; + right: auto; +} +.chosen-rtl .chosen-choices .search-field input { + direction: rtl; +} +.chosen-rtl .chosen-choices li { + float: right; +} +.chosen-rtl .chosen-choices .search-choice { + margin: 6px 5px 3px 0; + padding: 3px 5px 3px 19px; +} +.chosen-rtl .chosen-choices .search-choice .search-choice-close { + background-position: right top; + left: 4px; + right: auto; +} +.chosen-rtl.chosen-container-single .chosen-results { + margin: 0 0 4px 4px; + padding: 0 4px 0 0; +} +.chosen-rtl .chosen-results .group-option { + padding-left: 0; + padding-right: 15px; +} +.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div { + border-right: medium none; +} +.chosen-rtl .chosen-search input { + background: url("chosen-sprite.png") no-repeat scroll -28px -20px, none repeat scroll 0 0 #fff; + direction: rtl; + padding: 4px 5px 4px 20px; +} +.ladda-button { + position: relative; +} +.ladda-button .ladda-spinner { + display: inline-block; + height: 32px; + margin-top: -16px; + opacity: 0; + pointer-events: none; + position: absolute; + top: 50%; + width: 32px; + z-index: 2; +} +.ladda-button .ladda-label { + position: relative; + z-index: 3; +} +.ladda-button .ladda-progress { + background: none repeat scroll 0 0 rgba(0, 0, 0, 0.2); + height: 100%; + left: 0; + opacity: 0; + position: absolute; + top: 0; + transition: all 0.1s linear 0s !important; + visibility: hidden; + width: 0; +} +.ladda-button .ladda-progress[data-loading] .ladda-progress { + opacity: 1; + visibility: visible; +} +.ladda-button, .ladda-button .ladda-spinner, .ladda-button .ladda-label { + transition: background-color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s !important; +} +.ladda-button[data-style="zoom-in"], .ladda-button[data-style="zoom-in"] .ladda-spinner, .ladda-button[data-style="zoom-in"] .ladda-label, .ladda-button[data-style="zoom-out"], .ladda-button[data-style="zoom-out"] .ladda-spinner, .ladda-button[data-style="zoom-out"] .ladda-label { + transition: all 0.3s ease 0s !important; +} +.ladda-button[data-style="expand-right"] .ladda-spinner { + right: 14px; +} +.ladda-button[data-style="expand-right"][data-size="s"] .ladda-spinner, .ladda-button[data-style="expand-right"][data-size="xs"] .ladda-spinner { + right: 4px; +} +.ladda-button[data-style="expand-right"][data-loading] { + padding-right: 56px; +} +.ladda-button[data-style="expand-right"][data-loading] .ladda-spinner { + opacity: 1; +} +.ladda-button[data-style="expand-right"][data-loading][data-size="s"], .ladda-button[data-style="expand-right"][data-loading][data-size="xs"] { + padding-right: 40px; +} +.ladda-button[data-style="expand-left"] .ladda-spinner { + left: 14px; +} +.ladda-button[data-style="expand-left"][data-size="s"] .ladda-spinner, .ladda-button[data-style="expand-left"][data-size="xs"] .ladda-spinner { + left: 4px; +} +.ladda-button[data-style="expand-left"][data-loading] { + padding-left: 56px; +} +.ladda-button[data-style="expand-left"][data-loading] .ladda-spinner { + opacity: 1; +} +.ladda-button[data-style="expand-left"][data-loading][data-size="s"], .ladda-button[data-style="expand-left"][data-loading][data-size="xs"] { + padding-left: 40px; +} +.ladda-button[data-style="expand-up"] { + overflow: hidden; +} +.ladda-button[data-style="expand-up"] .ladda-spinner { + left: 50%; + margin-left: -16px; + top: -32px; +} +.ladda-button[data-style="expand-up"][data-loading] { + padding-top: 54px; +} +.ladda-button[data-style="expand-up"][data-loading] .ladda-spinner { + margin-top: 0; + opacity: 1; + top: 14px; +} +.ladda-button[data-style="expand-up"][data-loading][data-size="s"], .ladda-button[data-style="expand-up"][data-loading][data-size="xs"] { + padding-top: 32px; +} +.ladda-button[data-style="expand-up"][data-loading][data-size="s"] .ladda-spinner, .ladda-button[data-style="expand-up"][data-loading][data-size="xs"] .ladda-spinner { + top: 4px; +} +.ladda-button[data-style="slide-left"] { + overflow: hidden; +} +.ladda-button[data-style="slide-left"] .ladda-label { + position: relative; +} +.ladda-button[data-style="slide-left"] .ladda-spinner { + left: 100%; + margin-left: -16px; +} +.ladda-button[data-style="slide-left"][data-loading] .ladda-label { + left: -100%; + opacity: 0; +} +.ladda-button[data-style="slide-left"][data-loading] .ladda-spinner { + left: 50%; + opacity: 1; +} +.ladda-button[data-style="slide-right"] { + overflow: hidden; +} +.ladda-button[data-style="slide-right"] .ladda-label { + position: relative; +} +.ladda-button[data-style="slide-right"] .ladda-spinner { + margin-left: -16px; + right: 100%; +} +.ladda-button[data-style="slide-right"][data-loading] .ladda-label { + left: 100%; + opacity: 0; +} +.ladda-button[data-style="slide-right"][data-loading] .ladda-spinner { + left: 50%; + opacity: 1; +} +.ladda-button[data-style="slide-up"] { + overflow: hidden; +} +.ladda-button[data-style="slide-up"] .ladda-label { + position: relative; +} +.ladda-button[data-style="slide-up"] .ladda-spinner { + left: 50%; + margin-left: -16px; + margin-top: 1em; +} +.ladda-button[data-style="slide-up"][data-loading] .ladda-label { + opacity: 0; + top: -1em; +} +.ladda-button[data-style="slide-up"][data-loading] .ladda-spinner { + margin-top: -16px; + opacity: 1; +} +.ladda-button[data-style="slide-down"] { + overflow: hidden; +} +.ladda-button[data-style="slide-down"] .ladda-label { + position: relative; +} +.ladda-button[data-style="slide-down"] .ladda-spinner { + left: 50%; + margin-left: -16px; + margin-top: -2em; +} +.ladda-button[data-style="slide-down"][data-loading] .ladda-label { + opacity: 0; + top: 1em; +} +.ladda-button[data-style="slide-down"][data-loading] .ladda-spinner { + margin-top: -16px; + opacity: 1; +} +.ladda-button[data-style="zoom-out"] { + overflow: hidden; +} +.ladda-button[data-style="zoom-out"] .ladda-spinner { + left: 50%; + margin-left: -16px; + transform: scale(2.5); +} +.ladda-button[data-style="zoom-out"] .ladda-label { + display: inline-block; + position: relative; +} +.ladda-button[data-style="zoom-out"][data-loading] .ladda-label { + opacity: 0; + transform: scale(0.5); +} +.ladda-button[data-style="zoom-out"][data-loading] .ladda-spinner { + opacity: 1; + transform: none; +} +.ladda-button[data-style="zoom-in"] { + overflow: hidden; +} +.ladda-button[data-style="zoom-in"] .ladda-spinner { + left: 50%; + margin-left: -16px; + transform: scale(0.2); +} +.ladda-button[data-style="zoom-in"] .ladda-label { + display: inline-block; + position: relative; +} +.ladda-button[data-style="zoom-in"][data-loading] .ladda-label { + opacity: 0; + transform: scale(2.2); +} +.ladda-button[data-style="zoom-in"][data-loading] .ladda-spinner { + opacity: 1; + transform: none; +} +.ladda-button[data-style="contract"] { + overflow: hidden; + width: 100px; +} +.ladda-button[data-style="contract"] .ladda-spinner { + left: 50%; + margin-left: -16px; +} +.ladda-button[data-style="contract"][data-loading] { + border-radius: 50%; + width: 52px; +} +.ladda-button[data-style="contract"][data-loading] .ladda-label { + opacity: 0; +} +.ladda-button[data-style="contract"][data-loading] .ladda-spinner { + opacity: 1; +} +.ladda-button[data-style="contract-overlay"] { + box-shadow: 0 0 0 3000px rgba(0, 0, 0, 0); + overflow: hidden; + width: 100px; +} +.ladda-button[data-style="contract-overlay"] .ladda-spinner { + left: 50%; + margin-left: -16px; +} +.ladda-button[data-style="contract-overlay"][data-loading] { + border-radius: 50%; + box-shadow: 0 0 0 3000px rgba(0, 0, 0, 0.8); + width: 52px; +} +.ladda-button[data-style="contract-overlay"][data-loading] .ladda-label { + opacity: 0; +} +.ladda-button[data-style="contract-overlay"][data-loading] .ladda-spinner { + opacity: 1; +} +.ladda-button[disabled], .ladda-button[data-loading] { + background-color: #999; + border-color: rgba(0, 0, 0, 0.07); + cursor: default; +} +.ladda-button[disabled]:hover, .ladda-button[data-loading]:hover { + background-color: #999; + cursor: default; +} +.ladda-button[data-size="xs"] { + padding: 4px 8px; +} +.ladda-button[data-size="xs"] .ladda-label { + font-size: 0.7em; +} +.ladda-button[data-size="s"] { + padding: 6px 10px; +} +.ladda-button[data-size="s"] .ladda-label { + font-size: 0.9em; +} +.ladda-button[data-size="l"] .ladda-label { + font-size: 1.2em; +} +.ladda-button[data-size="xl"] .ladda-label { + font-size: 1.5em; +} +.ui-datepicker { + border-radius: 4px; + left: 0; + margin-top: 1px; + padding: 4px; + top: 0; +} +.ui-datepicker:before { + border-bottom: 7px solid rgba(0, 0, 0, 0.2); + border-left: 7px solid transparent; + border-right: 7px solid transparent; + content: ""; + display: inline-block !important; + left: 6px; + position: absolute; + top: -7px; +} +.ui-datepicker:after { + border-bottom: 6px solid #fff; + border-left: 6px solid transparent; + border-right: 6px solid transparent; + content: ""; + display: inline-block !important; + left: 7px; + position: absolute; + top: -6px; +} +.ui-datepicker .ui-datepicker-header { + background: none repeat scroll 0 0 transparent !important; + color: gray; + font-weight: normal; +} +.ui-datepicker .ui-state-default { + background: none repeat scroll 0 0 transparent !important; +} +.ui-datepicker .ui-state-highlight { + background: none repeat scroll 0 0 #fefbe2 !important; + border: 1px solid #dac307 !important; +} +.ui-datepicker .ui-state-active { + background: none repeat scroll 0 0 #00aff0 !important; + border: 1px solid #008abd !important; + color: #fff !important; +} +.select2-container { + display: inline-block; + margin: 0; + position: relative; + vertical-align: middle; +} +.select2-container, .select2-drop, .select2-search, .select2-search input { + box-sizing: border-box; +} +.select2-container .select2-choice { + -moz-user-select: none; + background-clip: padding-box; + background-color: #fff; + background-image: linear-gradient(to top, #eeeeee 0%, #ffffff 50%); + border: 1px solid #aaa; + border-radius: 4px; + color: #444; + display: block; + height: 26px; + line-height: 26px; + overflow: hidden; + padding: 0 0 0 8px; + position: relative; + text-decoration: none; + white-space: nowrap; +} +.select2-container.select2-drop-above .select2-choice { + border-bottom-color: #aaa; + border-radius: 0 0 4px 4px; +} +.select2-container.select2-allowclear .select2-choice .select2-chosen { + margin-right: 42px; +} +.select2-container .select2-choice > .select2-chosen { + display: block; + float: none; + margin-right: 26px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + width: auto; +} +.select2-container .select2-choice abbr { + background: url("../img/select2.png") no-repeat scroll right top rgba(0, 0, 0, 0); + border: 0 none; + cursor: pointer; + display: none; + font-size: 1px; + height: 12px; + outline: 0 none; + position: absolute; + right: 24px; + text-decoration: none; + top: 8px; + width: 12px; +} +.select2-container.select2-allowclear .select2-choice abbr { + display: inline-block; +} +.select2-container .select2-choice abbr:hover { + background-position: right -11px; + cursor: pointer; +} +.select2-drop-mask { + background-color: #fff; + border: 0 none; + height: auto; + left: 0; + margin: 0; + min-height: 100%; + min-width: 100%; + opacity: 0; + padding: 0; + position: fixed; + top: 0; + width: auto; + z-index: 9998; +} +.select2-drop { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + background: none repeat scroll 0 0 #fff; + border-color: -moz-use-text-color #ccc #ccc; + border-image: none; + border-radius: 0 0 4px 4px; + border-right: 1px solid #ccc; + border-style: none solid solid; + border-width: 0 1px 1px; + box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15); + color: #000; + margin-top: -1px; + position: absolute; + top: 100%; + width: 100%; + z-index: 9999; +} +.select2-drop.select2-drop-above { + border-bottom: 0 none; + border-radius: 4px 4px 0 0; + border-top: 1px solid #aaa; + box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15); + margin-top: 1px; +} +.select2-drop-active { + border-top: medium none; +} +.select2-drop-auto-width { + border-top: 1px solid #aaa; + width: auto; +} +.select2-drop-auto-width .select2-search { + padding-top: 4px; +} +.select2-container .select2-choice .select2-arrow { + background-clip: padding-box; + background-color: #eeeeee; + border-left: 1px solid #ccc; + border-radius: 0 4px 4px 0; + display: inline-block; + height: 100%; + position: absolute; + right: 0; + top: 0; + width: 18px; +} +.select2-container .select2-choice .select2-arrow b { + background: url("../img/select2.png") no-repeat scroll 0 1px rgba(0, 0, 0, 0); + display: block; + height: 100%; + width: 100%; +} +.select2-search { + display: inline-block; + margin: 0; + min-height: 26px; + padding-left: 4px; + padding-right: 4px; + padding-top: 4px; + position: relative; + white-space: nowrap; + width: 100%; + z-index: 10000; +} +.select2-search input { + background: url("../img/select2.png") no-repeat scroll 100% -22px rgba(0, 0, 0, 0); + border: 1px solid #aaa; + border-radius: 0; + box-shadow: none; + font-family: sans-serif; + font-size: 1em; + height: auto !important; + margin: 0; + min-height: 26px; + outline: 0 none; + padding: 4px 20px 4px 5px; + width: 100%; +} +.select2-drop.select2-drop-above .select2-search input { + margin-top: 4px; +} +.select2-search input.select2-active { + background: url("../img/select2-spinner.gif") no-repeat scroll 100% center rgba(0, 0, 0, 0); +} +.select2-container-active .select2-choice, .select2-container-active .select2-choices { + box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); + outline: medium none; +} +.select2-dropdown-open .select2-choice { + background-color: #eee; + border-bottom-color: transparent; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + box-shadow: 0 1px 0 #fff inset; +} +.select2-dropdown-open.select2-drop-above .select2-choice, .select2-dropdown-open.select2-drop-above .select2-choices { + border-top-color: transparent; +} +.select2-dropdown-open .select2-choice .select2-arrow { + background: none repeat scroll 0 0 transparent; + border-left: medium none; + filter: none; +} +.select2-dropdown-open .select2-choice .select2-arrow b { + background-position: -18px 1px; +} +.select2-hidden-accessible { + border: 0 none; + clip: rect(0px, 0px, 0px, 0px); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} +.select2-results { + margin: 4px 4px 4px 0 !important; + max-height: 200px; + overflow-x: hidden; + overflow-y: auto; + padding: 0 0 0 4px !important; + position: relative; +} +.select2-results ul.select2-result-sub { + margin: 0; + padding-left: 0; +} +.select2-results ul.select2-result-sub > li .select2-result-label { + padding-left: 20px; +} +.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { + padding-left: 40px; +} +.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { + padding-left: 60px; +} +.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { + padding-left: 80px; +} +.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { + padding-left: 100px; +} +.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { + padding-left: 110px; +} +.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { + padding-left: 120px; +} +.select2-results li { + background-image: none; + display: list-item; + list-style: outside none none; +} +.select2-results li.select2-result-with-children > .select2-result-label { + font-weight: bold; +} +.select2-results .select2-result-label { + -moz-user-select: none; + cursor: pointer; + margin: 0; + min-height: 1em; + padding: 3px 7px 4px; +} +.select2-results .select2-highlighted { + background: none repeat scroll 0 0 #3875d7; + color: #fff; +} +.select2-results li em { + background: none repeat scroll 0 0 #feffde; + font-style: normal; +} +.select2-results .select2-highlighted em { + background: none repeat scroll 0 0 transparent; +} +.select2-results .select2-highlighted ul { + background: none repeat scroll 0 0 #fff; + color: #000; +} +.select2-results .select2-no-results, .select2-results .select2-searching, .select2-results .select2-selection-limit { + background: none repeat scroll 0 0 #f4f4f4; + display: list-item; + padding: 5px; +} +.select2-results .select2-disabled.select2-highlighted { + background: none repeat scroll 0 0 #f4f4f4; + color: #666; + cursor: default; + display: list-item; +} +.select2-results .select2-disabled { + background: none repeat scroll 0 0 #f4f4f4; + cursor: default; + display: list-item; +} +.select2-results .select2-selected { + display: none; +} +.select2-more-results.select2-active { + background: url("../img/select2-spinner.gif") no-repeat scroll 100% center #f4f4f4; +} +.select2-more-results { + background: none repeat scroll 0 0 #f4f4f4; + display: list-item; +} +.select2-container.select2-container-disabled .select2-choice { + background-color: #f4f4f4; + background-image: none; + border: 1px solid #ddd; + cursor: default; +} +.select2-container.select2-container-disabled .select2-choice .select2-arrow { + background-color: #f4f4f4; + background-image: none; + border-left: 0 none; +} +.select2-container.select2-container-disabled .select2-choice abbr { + display: none; +} +.select2-container-multi .select2-choices { + background-color: #fff; + border: 1px solid #aaa; + cursor: text; + height: auto !important; + margin: 0; + overflow: hidden; + padding: 0; + position: relative; +} +.select2-locked { + padding: 3px 5px !important; +} +.select2-container-multi .select2-choices { + min-height: 26px; +} +.select2-container-multi.select2-container-active .select2-choices { + box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); + outline: medium none; +} +.select2-container-multi .select2-choices li { + float: left; + list-style: outside none none; +} +html[dir="rtl"] .select2-container-multi .select2-choices li { + float: right; +} +.select2-container-multi .select2-choices .select2-search-field { + margin: 0; + padding: 0; + white-space: nowrap; +} +.select2-container-multi .select2-choices .select2-search-field input { + background: none repeat scroll 0 0 transparent !important; + border: 0 none; + box-shadow: none; + color: #666; + font-family: sans-serif; + font-size: 100%; + margin: 1px 0; + outline: 0 none; + padding: 5px; +} +.select2-container-multi .select2-choices .select2-search-field input.select2-active { + background: url("../img/select2-spinner.gif") no-repeat scroll 100% center #fff !important; +} +.select2-default { + color: #999 !important; +} +.select2-container-multi .select2-choices .select2-search-choice { + -moz-user-select: none; + background-clip: padding-box; + background-color: #e4e4e4; + background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); + border: 1px solid #aaaaaa; + border-radius: 3px; + color: #333; + cursor: default; + line-height: 13px; + margin: 3px 0 3px 5px; + padding: 3px 5px 3px 18px; + position: relative; +} +html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice { + margin-left: 0; + margin-right: 5px; +} +.select2-container-multi .select2-choices .select2-search-choice .select2-chosen { + cursor: default; +} +.select2-container-multi .select2-choices .select2-search-choice-focus { + background: none repeat scroll 0 0 #d4d4d4; +} +.select2-search-choice-close { + background: url("../img/select2.png") no-repeat scroll right top rgba(0, 0, 0, 0); + display: block; + font-size: 1px; + height: 13px; + outline: medium none; + position: absolute; + right: 3px; + top: 4px; + width: 12px; +} +html[dir="rtl"] .select2-search-choice-close { + left: 3px; + right: auto; +} +.select2-container-multi .select2-search-choice-close { + left: 3px; +} +.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover { + background-position: right -11px; +} +.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close { + background-position: right -11px; +} +.select2-container-multi.select2-container-disabled .select2-choices { + background-color: #f4f4f4; + background-image: none; + border: 1px solid #ddd; + cursor: default; +} +.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice { + background-color: #f4f4f4; + background-image: none; + border: 1px solid #ddd; + padding: 3px 5px; +} +.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close { + background: none repeat scroll 0 0 rgba(0, 0, 0, 0); + display: none; +} +.select2-result-selectable .select2-match, .select2-result-unselectable .select2-match { + text-decoration: underline; +} +.select2-offscreen, .select2-offscreen:focus { + border: 0 none !important; + clip: rect(0px, 0px, 0px, 0px) !important; + height: 1px !important; + left: 0 !important; + margin: 0 !important; + outline: 0 none !important; + overflow: hidden !important; + padding: 0 !important; + position: absolute !important; + top: 0 !important; + width: 1px !important; +} +.select2-display-none { + display: none; +} +.select2-measure-scrollbar { + height: 100px; + left: -10000px; + overflow: scroll; + position: absolute; + top: -10000px; + width: 100px; +} +@media not all, only screen and (min-resolution: 2dppx) { +.select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b { + background-image: url("../img/select2x2.png") !important; + background-repeat: no-repeat !important; + background-size: 60px 40px !important; +} +.select2-search input { + background-position: 100% -21px !important; +} +} +.form-control .select2-choice, .bootstrap input[type="text"] .select2-choice, .bootstrap input[type="search"] .select2-choice, .bootstrap input[type="password"] .select2-choice, .bootstrap textarea .select2-choice, .bootstrap select .select2-choice { + border: 0 none; + border-radius: 2px; +} +.form-control .select2-choice .select2-arrow, .bootstrap input[type="text"] .select2-choice .select2-arrow, .bootstrap input[type="search"] .select2-choice .select2-arrow, .bootstrap input[type="password"] .select2-choice .select2-arrow, .bootstrap textarea .select2-choice .select2-arrow, .bootstrap select .select2-choice .select2-arrow { + border-radius: 0 2px 2px 0; +} +.form-control.select2-container, .bootstrap input.select2-container[type="text"], .bootstrap input.select2-container[type="search"], .bootstrap input.select2-container[type="password"], .bootstrap textarea.select2-container, .bootstrap select.select2-container { + height: auto !important; + padding: 0; +} +.form-control.select2-container.select2-dropdown-open, .bootstrap input.select2-container.select2-dropdown-open[type="text"], .bootstrap input.select2-container.select2-dropdown-open[type="search"], .bootstrap input.select2-container.select2-dropdown-open[type="password"], .bootstrap textarea.select2-container.select2-dropdown-open, .bootstrap select.select2-container.select2-dropdown-open { + border-radius: 3px 3px 0 0; +} +.form-control .select2-container.select2-dropdown-open .select2-choices, .bootstrap input[type="text"] .select2-container.select2-dropdown-open .select2-choices, .bootstrap input[type="search"] .select2-container.select2-dropdown-open .select2-choices, .bootstrap input[type="password"] .select2-container.select2-dropdown-open .select2-choices, .bootstrap textarea .select2-container.select2-dropdown-open .select2-choices, .bootstrap select .select2-container.select2-dropdown-open .select2-choices { + border-radius: 3px 3px 0 0; +} +.form-control.select2-container .select2-choices, .bootstrap input.select2-container[type="text"] .select2-choices, .bootstrap input.select2-container[type="search"] .select2-choices, .bootstrap input.select2-container[type="password"] .select2-choices, .bootstrap textarea.select2-container .select2-choices, .bootstrap select.select2-container .select2-choices { + border: 0 none !important; + border-radius: 3px; +} +.control-group.warning .select2-container .select2-choice, .control-group.warning .select2-container .select2-choices, .control-group.warning .select2-container-active .select2-choice, .control-group.warning .select2-container-active .select2-choices, .control-group.warning .select2-dropdown-open.select2-drop-above .select2-choice, .control-group.warning .select2-dropdown-open.select2-drop-above .select2-choices, .control-group.warning .select2-container-multi.select2-container-active .select2-choices { + border: 1px solid #c09853 !important; +} +.control-group.warning .select2-container .select2-choice div { + background: none repeat scroll 0 0 #fcf8e3 !important; + border-left: 1px solid #c09853 !important; +} +.control-group.error .select2-container .select2-choice, .control-group.error .select2-container .select2-choices, .control-group.error .select2-container-active .select2-choice, .control-group.error .select2-container-active .select2-choices, .control-group.error .select2-dropdown-open.select2-drop-above .select2-choice, .control-group.error .select2-dropdown-open.select2-drop-above .select2-choices, .control-group.error .select2-container-multi.select2-container-active .select2-choices { + border: 1px solid #b94a48 !important; +} +.control-group.error .select2-container .select2-choice div { + background: none repeat scroll 0 0 #f2dede !important; + border-left: 1px solid #b94a48 !important; +} +.control-group.info .select2-container .select2-choice, .control-group.info .select2-container .select2-choices, .control-group.info .select2-container-active .select2-choice, .control-group.info .select2-container-active .select2-choices, .control-group.info .select2-dropdown-open.select2-drop-above .select2-choice, .control-group.info .select2-dropdown-open.select2-drop-above .select2-choices, .control-group.info .select2-container-multi.select2-container-active .select2-choices { + border: 1px solid #3a87ad !important; +} +.control-group.info .select2-container .select2-choice div { + background: none repeat scroll 0 0 #d9edf7 !important; + border-left: 1px solid #3a87ad !important; +} +.control-group.success .select2-container .select2-choice, .control-group.success .select2-container .select2-choices, .control-group.success .select2-container-active .select2-choice, .control-group.success .select2-container-active .select2-choices, .control-group.success .select2-dropdown-open.select2-drop-above .select2-choice, .control-group.success .select2-dropdown-open.select2-drop-above .select2-choices, .control-group.success .select2-container-multi.select2-container-active .select2-choices { + border: 1px solid #468847 !important; +} +.control-group.success .select2-container .select2-choice div { + background: none repeat scroll 0 0 #dff0d8 !important; + border-left: 1px solid #468847 !important; +} +.nobootstrap { + background-color: #fff; + min-width: 1200px; + padding: 100px 30px; +} +.nobootstrap form p { + margin: 0.5em 0 0; + padding: 0 0 0.5em; +} +.nobootstrap fieldset { + background-color: #ebedf4; + border: 1px solid #ccced7; + color: #585a69; + margin: 0 0 10px; + padding: 1em; +} +.nobootstrap fieldset img { + padding: 0 4px 0 0; + vertical-align: bottom; +} +.nobootstrap legend { + background: none repeat scroll 0 0 #ebedf4; + border: 1px solid #ccced7; + font-weight: 700; + margin: 0; + padding: 0.2em 0.5em; + text-align: left; +} +.nobootstrap legend a { + color: #585984; + text-decoration: none; +} +.nobootstrap label { + color: #585a69; + float: left; + font-weight: bold; + padding: 0.2em 0.5em 0 0; + text-align: right; + text-shadow: 0 1px 0 #fff; + width: 250px; +} +.nobootstrap label.t { + clear: none; + float: none; + font-size: 12px; + font-weight: normal; + margin: 0; + padding: 0 5px; + text-shadow: none; +} +.nobootstrap a { + color: #415260; +} +.nobootstrap .pull-right, .nobootstrap .pull-left { + float: none; +} +.nobootstrap .clear { + clear: both; +} +.nobootstrap .margin-form { + color: #7f7f7f; + font-size: 0.85em; + padding: 0 0 1em 260px; +} +.nobootstrap .button { + background: -moz-linear-gradient(center top , #f9f9f9, #e3e3e3) repeat scroll 0 0 transparent; + border-color: #ccc #bbb #a0a0a0; + border-radius: 3px; + border-style: solid; + border-width: 1px; + color: #000; + cursor: pointer; + margin: 5px 0; + outline: medium none; + padding: 3px 8px; + text-align: center; + text-decoration: none; + text-shadow: 0 1px 0 #fff; + vertical-align: middle; + white-space: nowrap; +} +.nobootstrap .button:hover { + border-color: #aaa #999 #888; +} +.nobootstrap input { + vertical-align: middle; +} +.nobootstrap select { + border: 1px solid #ccc; + font-size: 12px; +} +.nobootstrap input, .nobootstrap textarea, .nobootstrap option { + color: #000; + font-size: 12px; + margin: 0; + padding: 0; +} +.nobootstrap input[type="text"], .nobootstrap input[type="password"], .nobootstrap input[type="file"], .nobootstrap textarea { + background-color: #fff; + border: 1px solid #ccc; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset; + padding: 2px 4px; +} +.nobootstrap .table_grid { + width: 100%; +} +.nobootstrap .table { + background-color: #fff; + border: 1px solid #ccc; + border-radius: 3px; + padding: 0; +} +.nobootstrap .table th a { + text-decoration: underline; +} +.nobootstrap .table th a:hover { + text-decoration: none; +} +.nobootstrap .table tr th { + background-color: #f1f1f1; + color: #333; + font-size: 13px; + padding: 4px 6px; + text-align: left; +} +.nobootstrap .table tr th.right { + text-align: center; +} +.nobootstrap .table tr td { + border-bottom: 1px solid #ccc; + color: #333; + font-size: 12px; + padding: 4px 4px 4px 6px; +} +.nobootstrap .table tr.row_hover.filter:hover td { + background: none repeat scroll 0 0 #f1f9ff; +} +.nobootstrap .table tr td.row_hover:hover table tr td { + background: none repeat scroll 0 0 rgba(0, 0, 0, 0); +} +.nobootstrap .table tr.action_details td { + background: none repeat scroll 0 0 #fafafa; +} +.nobootstrap .table tr.alt_row.action_details td { + background: none repeat scroll 0 0 #e8e8e8; +} +.nobootstrap .table tr td.empty { + background: none repeat scroll 0 0 #fff !important; + border-bottom: medium none; +} +.nobootstrap .table tr td.first { + border-left: 1px solid #dedede; +} +.nobootstrap .table tr td.last { + border-right: 1px solid #dedede; +} +.nobootstrap .table tr.small td { + height: 15px; +} +.nobootstrap .table tr.last td { + border-bottom: medium none; +} +.nobootstrap .table tr .filter { + background-color: #f1f9ff; +} +.nobootstrap .form-group { + clear: both; + float: left; + margin-bottom: 1em; + width: 100%; +} +.nobootstrap .form-group > div { + float: left; +} +.nobootstrap .panel:not(.bootstrap), .nobootstrap .bootstrap #dash_version:not(.bootstrap), .bootstrap .nobootstrap #dash_version:not(.bootstrap), .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap), .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap), .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap), .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) { + background-color: #ebedf4; + border: 1px solid #ccced7; + box-sizing: border-box; + color: #585a69; + float: left; + margin: 0 0 10px; + padding: 1em; + width: 100%; +} +.nobootstrap .panel:not(.bootstrap) img, .nobootstrap .bootstrap #dash_version:not(.bootstrap) img, .bootstrap .nobootstrap #dash_version:not(.bootstrap) img, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) img, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) img, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) img, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) img { + padding: 0 4px 0 0; + vertical-align: bottom; +} +.nobootstrap .panel:not(.bootstrap) h3, .nobootstrap .bootstrap #dash_version:not(.bootstrap) h3, .bootstrap .nobootstrap #dash_version:not(.bootstrap) h3, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) h3, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) h3, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) h3, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) h3 { + background: none repeat scroll 0 0 #ebedf4; + border: 1px solid #ccced7; + display: inline-block; + font-weight: 700; + margin: 0; + padding: 0.2em 0.5em; + position: relative; + text-align: left; + top: -25px; +} +.nobootstrap .panel:not(.bootstrap) h3 a, .nobootstrap .bootstrap #dash_version:not(.bootstrap) h3 a, .bootstrap .nobootstrap #dash_version:not(.bootstrap) h3 a, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) h3 a, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) h3 a, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) h3 a, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) h3 a { + color: #585984; + text-decoration: none; +} +.nobootstrap .panel:not(.bootstrap) h3 i, .nobootstrap .bootstrap #dash_version:not(.bootstrap) h3 i, .bootstrap .nobootstrap #dash_version:not(.bootstrap) h3 i, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) h3 i, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) h3 i, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) h3 i, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) h3 i { + font-family: "FontAwesome"; +} +.nobootstrap .panel:not(.bootstrap) .help-block, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .help-block, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .help-block, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .help-block, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .help-block, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .help-block, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .help-block { + clear: both; + float: left; +} +.nobootstrap .panel:not(.bootstrap) .switch, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .switch, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .switch, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .switch, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .switch, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .switch, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .switch { + clear: both; + float: left; + line-height: 1.3em; +} +.nobootstrap .panel:not(.bootstrap) .switch label, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .switch label, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .switch label, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .switch label, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .switch label, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .switch label, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .switch label { + float: left; + padding: 0 10px 0 5px; + width: auto; +} +.nobootstrap .panel:not(.bootstrap) .switch input[type="checkbox"], .nobootstrap .bootstrap #dash_version:not(.bootstrap) .switch input[type="checkbox"], .bootstrap .nobootstrap #dash_version:not(.bootstrap) .switch input[type="checkbox"], .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .switch input[type="checkbox"], .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .switch input[type="checkbox"], .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .switch input[type="checkbox"], .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .switch input[type="checkbox"], .nobootstrap .panel:not(.bootstrap) .switch input[type="radio"], .nobootstrap .bootstrap #dash_version:not(.bootstrap) .switch input[type="radio"], .bootstrap .nobootstrap #dash_version:not(.bootstrap) .switch input[type="radio"], .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .switch input[type="radio"], .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .switch input[type="radio"], .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .switch input[type="radio"], .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .switch input[type="radio"] { + float: left; +} +.nobootstrap .panel:not(.bootstrap) .radio label, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .radio label, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .radio label, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .radio label, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .radio label, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .radio label, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .radio label { + clear: both; + margin-right: 4px; + width: auto; +} +.nobootstrap .panel:not(.bootstrap) button, .nobootstrap .bootstrap #dash_version:not(.bootstrap) button, .bootstrap .nobootstrap #dash_version:not(.bootstrap) button, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) button, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) button, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) button, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) button { + background: -moz-linear-gradient(center top , #f9f9f9, #e3e3e3) repeat scroll 0 0 transparent; + border-color: #ccc #bbb #a0a0a0; + border-radius: 3px; + border-style: solid; + border-width: 1px; + color: #000; + cursor: pointer; + margin: 5px 0; + outline: medium none; + padding: 3px 8px; + text-align: center; + text-decoration: none; + text-shadow: 0 1px 0 #fff; + vertical-align: middle; + white-space: nowrap; +} +.nobootstrap .panel:not(.bootstrap) button:hover, .nobootstrap .bootstrap #dash_version:not(.bootstrap) button:hover, .bootstrap .nobootstrap #dash_version:not(.bootstrap) button:hover, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) button:hover, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) button:hover, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) button:hover, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) button:hover { + border-color: #aaa #999 #888; +} +.nobootstrap .panel:not(.bootstrap) .tree-panel-heading-controls, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree-panel-heading-controls, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree-panel-heading-controls, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree-panel-heading-controls, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree-panel-heading-controls, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree-panel-heading-controls, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree-panel-heading-controls { + background-color: #dde0e9; + border-bottom: 1px solid #dfdfdf; + font-size: 13px; + margin: -8px -8px 20px; + padding: 5px; +} +.nobootstrap .panel:not(.bootstrap) .tree-panel-heading-controls a, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree-panel-heading-controls a, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree-panel-heading-controls a, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree-panel-heading-controls a, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree-panel-heading-controls a, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree-panel-heading-controls a, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree-panel-heading-controls a { + border-right: 1px solid #888; + display: inline-block; + padding: 0 8px; +} +.nobootstrap .panel:not(.bootstrap) .tree, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree { + list-style: outside none none; + padding: 0 0 0 20px; +} +.nobootstrap .panel:not(.bootstrap) .tree input, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree input, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree input, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree input, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree input, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree input, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree input { + line-height: normal; + margin-right: 4px; + vertical-align: baseline; +} +.nobootstrap .panel:not(.bootstrap) .tree i, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree i, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree i, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree i, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree i, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree i, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree i { + font-size: 14px; +} +.nobootstrap .panel:not(.bootstrap) .tree .tree-item-name, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-item-name, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-item-name, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-item-name, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-item-name, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-item-name, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-item-name, .nobootstrap .panel:not(.bootstrap) .tree .tree-folder-name, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-folder-name, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-folder-name { + border-radius: 4px; + padding: 2px 5px; +} +.nobootstrap .panel:not(.bootstrap) .tree .tree-item-name label, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-item-name label, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-item-name label, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-item-name label, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-item-name label, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-item-name label, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-item-name label, .nobootstrap .panel:not(.bootstrap) .tree .tree-folder-name label, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name label, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name label, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name label, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name label, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-folder-name label, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-folder-name label { + float: none; + font-size: 13px; + font-weight: 400; + text-shadow: none; +} +.nobootstrap .panel:not(.bootstrap) .tree .tree-item-name:hover, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-item-name:hover, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-item-name:hover, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-item-name:hover, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-item-name:hover, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-item-name:hover, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-item-name:hover, .nobootstrap .panel:not(.bootstrap) .tree .tree-folder-name:hover, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name:hover, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name:hover, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name:hover, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name:hover, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-folder-name:hover, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-folder-name:hover { + background-color: #eee; + cursor: pointer; +} +.nobootstrap .panel:not(.bootstrap) .tree .tree-selected, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-selected, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-selected, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-selected, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-selected, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-selected, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-selected { + background-color: #ccced7; +} +.nobootstrap .panel:not(.bootstrap) .tree .tree-selected:hover, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-selected:hover, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-selected:hover, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-selected:hover, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-selected:hover, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-selected:hover, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-selected:hover { + background-color: #a1a5b5; +} +.nobootstrap .panel:not(.bootstrap) .tree .tree-selected i.tree-dot, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-selected i.tree-dot, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-selected i.tree-dot, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-selected i.tree-dot, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-selected i.tree-dot, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-selected i.tree-dot, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-selected i.tree-dot { + background-color: #eee; +} +.nobootstrap .panel:not(.bootstrap) .tree .tree-folder, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-folder, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-folder, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-folder, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-folder, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-folder, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-folder, .nobootstrap .panel:not(.bootstrap) .tree .tree-item, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-item, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-item, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-item, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-item, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-item, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-item { + margin: 3px 0; +} +.nobootstrap .panel:not(.bootstrap) .tree i.tree-dot, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree i.tree-dot, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree i.tree-dot, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree i.tree-dot, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree i.tree-dot, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree i.tree-dot, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree i.tree-dot { + background-color: #ccc; + border-radius: 6px; + display: inline-block; + height: 6px; + margin: 0 4px; + position: relative; + width: 6px; +} +.nobootstrap .panel:not(.bootstrap) .tree .tree-item-disable, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-item-disable, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-item-disable, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-item-disable, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-item-disable, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-item-disable, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-item-disable, .nobootstrap .panel:not(.bootstrap) .tree .tree-folder-name-disable, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name-disable, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name-disable, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name-disable, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name-disable, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-folder-name-disable, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-folder-name-disable { + color: #ccc; +} +.nobootstrap .panel:not(.bootstrap) .tree .tree-item-disable:hover, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-item-disable:hover, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-item-disable:hover, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-item-disable:hover, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-item-disable:hover, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-item-disable:hover, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-item-disable:hover, .nobootstrap .panel:not(.bootstrap) .tree .tree-folder-name-disable:hover, .nobootstrap .bootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name-disable:hover, .bootstrap .nobootstrap #dash_version:not(.bootstrap) .tree .tree-folder-name-disable:hover, .nobootstrap .bootstrap .message-item-initial .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name-disable:hover, .bootstrap .message-item-initial .nobootstrap .message-item-initial-body:not(.bootstrap) .tree .tree-folder-name-disable:hover, .nobootstrap .bootstrap .timeline .timeline-item .timeline-caption .timeline-panel:not(.bootstrap) .tree .tree-folder-name-disable:hover, .bootstrap .timeline .timeline-item .timeline-caption .nobootstrap .timeline-panel:not(.bootstrap) .tree .tree-folder-name-disable:hover { + color: #ccc; +} +@media print { +* { + background: none repeat scroll 0 0 transparent !important; + border-color: #000 !important; + box-shadow: none !important; + color: #000 !important; + font-family: Georgia,"Times New Roman",Times,serif !important; + text-shadow: none !important; +} +[class^="icon-"], [class^="process-icon-"] { + font-family: "FontAwesome" !important; +} +#header, #footer, #nav-sidebar, #nav-topbar, .hidden-print { + display: none !important; +} +.visible-print { + display: block !important; +} +hr { + display: none !important; +} +#main { + float: none !important; + margin: 0 auto !important; + padding: 0 !important; + width: 8.5in !important; +} +#main #content.bootstrap { + margin: 0 !important; + padding: 0 !important; +} +#main #content.bootstrap .page-head { + display: none !important; +} +#main #content.bootstrap .panel, #main #content.bootstrap #dash_version, #main #content.bootstrap .message-item-initial .message-item-initial-body, #main #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel { + border: medium none !important; + box-shadow: none !important; + clear: both !important; + margin: 0 0 40px !important; + padding: 0 !important; + page-break-inside: avoid !important; +} +#main #content.bootstrap .panel .panel-heading, #main #content.bootstrap #dash_version .panel-heading, #main #content.bootstrap .message-item-initial .message-item-initial-body .panel-heading, #main #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel-heading { + margin: 0 0 20px !important; +} +#main #content.bootstrap .panel .panel, #main #content.bootstrap #dash_version .panel, #main #content.bootstrap .message-item-initial .message-item-initial-body .panel, #main #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .panel, #main #content.bootstrap .panel #dash_version, #main #content.bootstrap #dash_version #dash_version, #main #content.bootstrap .message-item-initial .message-item-initial-body #dash_version, #main #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel #dash_version, #main #content.bootstrap .panel .message-item-initial .message-item-initial-body, #main #content.bootstrap .message-item-initial .panel .message-item-initial-body, #main #content.bootstrap #dash_version .message-item-initial .message-item-initial-body, #main #content.bootstrap .message-item-initial #dash_version .message-item-initial-body, #main #content.bootstrap .message-item-initial .message-item-initial-body .message-item-initial-body, #main #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .message-item-initial .message-item-initial-body, #main #content.bootstrap .message-item-initial .timeline .timeline-item .timeline-caption .timeline-panel .message-item-initial-body, #main #content.bootstrap .panel .timeline .timeline-item .timeline-caption .timeline-panel, #main #content.bootstrap .timeline .timeline-item .timeline-caption .panel .timeline-panel, #main #content.bootstrap #dash_version .timeline .timeline-item .timeline-caption .timeline-panel, #main #content.bootstrap .timeline .timeline-item .timeline-caption #dash_version .timeline-panel, #main #content.bootstrap .message-item-initial .message-item-initial-body .timeline .timeline-item .timeline-caption .timeline-panel, #main #content.bootstrap .timeline .timeline-item .timeline-caption .message-item-initial .message-item-initial-body .timeline-panel, #main #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .timeline-panel, #main #content.bootstrap .panel .well, #main #content.bootstrap #dash_version .well, #main #content.bootstrap .message-item-initial .message-item-initial-body .well, #main #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel .well { + margin: 0 !important; +} +#main #content.bootstrap .tab-pane { + margin-bottom: 20px !important; +} +#main #content.bootstrap .row, #main #content.bootstrap .multishop-well, #main #content.bootstrap #dashboard .data_list_vertical { + margin-bottom: 20px !important; +} +#main #content.bootstrap .panel, #main #content.bootstrap #dash_version, #main #content.bootstrap .message-item-initial .message-item-initial-body, #main #content.bootstrap .timeline .timeline-item .timeline-caption .timeline-panel { + clear: both !important; +} +#main #content.bootstrap .btn { + display: none !important; +} +#main #content.bootstrap .panel-heading-action { + display: none; +} +#main #content.bootstrap .nav-tabs li a { + background-color: #fff !important; + border-bottom-color: #fff !important; + display: none; +} +#main #content.bootstrap .tab-content > .tab-pane { + display: block !important; + opacity: 1 !important; +} +#main #content.bootstrap h4 { + margin: 0 0 10px !important; +} +#main #content.bootstrap #shipping .form-horizontal { + padding-bottom: 10px !important; +} +#main #content.bootstrap #addressShipping { + float: left !important; + margin-bottom: 0 !important; + width: 49% !important; +} +#main #content.bootstrap #addressInvoice { + float: right !important; + margin-bottom: 0 !important; + width: 49% !important; +} +#main #content.bootstrap #status tr:first-child td { + font-weight: bold !important; +} +#main #content.bootstrap .table { + border: 1px solid #000 !important; + margin-bottom: 10px !important; +} +#main #content.bootstrap .table th { + font-style: italic; +} +#main #content.bootstrap .label-inactive { + font-size: 11pt !important; + text-decoration: line-through !important; +} +#main #content.bootstrap .label-inactive i { + display: none !important; +} +#main #content.bootstrap .kpi-container.panel, #main #content.bootstrap #dash_version.kpi-container, #main #content.bootstrap .message-item-initial .kpi-container.message-item-initial-body, #main #content.bootstrap .timeline .timeline-item .timeline-caption .kpi-container.timeline-panel { + border: 1px solid #000 !important; + margin: 30px 0 20px !important; +} +#main #content.bootstrap .kpi-container.panel .box-stats, #main #content.bootstrap #dash_version.kpi-container .box-stats, #main #content.bootstrap .message-item-initial .kpi-container.message-item-initial-body .box-stats, #main #content.bootstrap .timeline .timeline-item .timeline-caption .kpi-container.timeline-panel .box-stats { + font-size: 8pt !important; + height: auto !important; + padding: 10px 0 !important; + width: 25% !important; +} +#main #content.bootstrap .kpi-container.panel .box-stats i, #main #content.bootstrap #dash_version.kpi-container .box-stats i, #main #content.bootstrap .message-item-initial .kpi-container.message-item-initial-body .box-stats i, #main #content.bootstrap .timeline .timeline-item .timeline-caption .kpi-container.timeline-panel .box-stats i { + font-size: 20pt !important; +} +#main #content.bootstrap .alert, #main #content.bootstrap #carrier_wizard .wizard_error { + border: 1px solid #000 !important; +} +#main #content.bootstrap .alert:before, #main #content.bootstrap #carrier_wizard .wizard_error:before { + color: #000 !important; +} +#main #content.bootstrap .table-responsive { + border: medium none !important; + margin: 0 !important; +} +#main #content.bootstrap .panel-total td { + font-size: 13pt !important; +} +} +.row{background:#fff !important;} + +#content.bootstrap { + margin: 0; + padding: 30px; +} +#content .table:nth-child(1) tr th, #content .table:last-child tr th { + background: -moz-linear-gradient(center top , #f9f9f9, #ececec) repeat-x scroll left top #ececec; + color: #333; + font-size: 13px; + padding: 4px 6px; + text-align: left; + text-shadow: 0 1px 0 #fff; +} +#main { + float: left; + margin: 0; + padding: 0; + width: 100%; + z-index: 10; +} +.table tr th{background:#fff !important; border:0 !important; background-image:none !important;} +.table{border:0 !important;} +.mceLayout{width:100% !important;} +.cirkuitSkin table.mceToolbar { + float: left ; +} +#content.bootstrap .template-generator form .label{float:none !important;} +label{float:none;text-align:left;} +#content .alert.alert-success{background:#90CB5C; border:1px solid #90CB5C} + +.input-group > span { + -moz-border-bottom-colors: none; + -moz-border-left-colors: none; + -moz-border-right-colors: none; + -moz-border-top-colors: none; + background: #eee none repeat scroll 0 0; + border-color: #cdcdcd #cdcdcd #cdcdcd -moz-use-text-color; + border-image: none; + border-style: solid solid solid none; + border-width: 1px 1px 1px 0; + display: table-cell; + padding: 1px; + vertical-align: middle; + width: 24px; +} + + +.process-icon-save:before{ + content:"\f0c7"; + font-family:"FontAwesome" + +} \ No newline at end of file diff --git a/modules/lgcookieslaw/views/css/back.css b/modules/lgcookieslaw/views/css/back.css new file mode 100644 index 00000000..9eaa2236 --- /dev/null +++ b/modules/lgcookieslaw/views/css/back.css @@ -0,0 +1,41 @@ +@font-face { + font-family: 'Glyphicons Halflings'; + + src: url('../fonts/glyphicons-halflings-regular.eot'); + src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); +} +.icon:after,.icon:before +{ +font-family:'Glyphicons Halflings'; +} +.icon-caret-down:before, #content .process-icon-dropdown:before, .chosen-container-single .chosen-single div b:before { + content: "\f0d7"} +.icon-trash-o:before, .icon-trash:before, #content .process-icon-delete:before, #content .process-icon-uninstall:before { + content: "\f014"} +.icon-search-plus:before, .icon-zoom-in:before { + content: "\f00e"} +.icon-refresh:before{ + content: "\f021"} +.process-icon-sitemap:before{ + content: "\f0e8"} +.icon-save:before, #content .process-icon-save:before, #content .process-icon-save-and-stay:before, #content .process-icon-save-and-preview:before, .icon-floppy-o:before, .icon-save:before, #content .process-icon-save:before, #content .process-icon-save-and-stay:before, #content .process-icon-save-and-preview:before { + content: "\f0c7"} +[class^="process-icon-"] { + background: none repeat scroll center center / 26px auto transparent; + display: block; + font-size: 28px; + height: 30px; + margin: 0 auto; + width: 30px; +} + +.ui-widget-header, .ui-widget-content,.ui-progressbar-overlay +{ +background:none; +border:0; +} +.bootstrap .table tbody > tr > td.generating +{ + font-size:0 !important; + background:url('../img/loading.gif') no-repeat center center #fff; +} \ No newline at end of file diff --git a/modules/lgcookieslaw/views/css/bootstrap-theme.css b/modules/lgcookieslaw/views/css/bootstrap-theme.css new file mode 100644 index 00000000..bb663496 --- /dev/null +++ b/modules/lgcookieslaw/views/css/bootstrap-theme.css @@ -0,0 +1,476 @@ +/*! + * Bootstrap v3.3.2 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +.btn-default, +.btn-primary, +.btn-success, +.btn-info, +.btn-warning, +.btn-danger { + text-shadow: 0 -1px 0 rgba(0, 0, 0, .2); + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); +} +.btn-default:active, +.btn-primary:active, +.btn-success:active, +.btn-info:active, +.btn-warning:active, +.btn-danger:active, +.btn-default.active, +.btn-primary.active, +.btn-success.active, +.btn-info.active, +.btn-warning.active, +.btn-danger.active { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); +} +.btn-default .badge, +.btn-primary .badge, +.btn-success .badge, +.btn-info .badge, +.btn-warning .badge, +.btn-danger .badge { + text-shadow: none; +} +.btn:active, +.btn.active { + background-image: none; +} +.btn-default { + text-shadow: 0 1px 0 #fff; + background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%); + background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0)); + background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #dbdbdb; + border-color: #ccc; +} +.btn-default:hover, +.btn-default:focus { + background-color: #e0e0e0; + background-position: 0 -15px; +} +.btn-default:active, +.btn-default.active { + background-color: #e0e0e0; + border-color: #dbdbdb; +} +.btn-default.disabled, +.btn-default:disabled, +.btn-default[disabled] { + background-color: #e0e0e0; + background-image: none; +} +.btn-primary { + background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88)); + background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #245580; +} +.btn-primary:hover, +.btn-primary:focus { + background-color: #265a88; + background-position: 0 -15px; +} +.btn-primary:active, +.btn-primary.active { + background-color: #265a88; + border-color: #245580; +} +.btn-primary.disabled, +.btn-primary:disabled, +.btn-primary[disabled] { + background-color: #265a88; + background-image: none; +} +.btn-success { + background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%); + background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641)); + background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #3e8f3e; +} +.btn-success:hover, +.btn-success:focus { + background-color: #419641; + background-position: 0 -15px; +} +.btn-success:active, +.btn-success.active { + background-color: #419641; + border-color: #3e8f3e; +} +.btn-success.disabled, +.btn-success:disabled, +.btn-success[disabled] { + background-color: #419641; + background-image: none; +} +.btn-info { + background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); + background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2)); + background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #28a4c9; +} +.btn-info:hover, +.btn-info:focus { + background-color: #2aabd2; + background-position: 0 -15px; +} +.btn-info:active, +.btn-info.active { + background-color: #2aabd2; + border-color: #28a4c9; +} +.btn-info.disabled, +.btn-info:disabled, +.btn-info[disabled] { + background-color: #2aabd2; + background-image: none; +} +.btn-warning { + background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); + background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316)); + background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #e38d13; +} +.btn-warning:hover, +.btn-warning:focus { + background-color: #eb9316; + background-position: 0 -15px; +} +.btn-warning:active, +.btn-warning.active { + background-color: #eb9316; + border-color: #e38d13; +} +.btn-warning.disabled, +.btn-warning:disabled, +.btn-warning[disabled] { + background-color: #eb9316; + background-image: none; +} +.btn-danger { + background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%); + background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a)); + background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #b92c28; +} +.btn-danger:hover, +.btn-danger:focus { + background-color: #c12e2a; + background-position: 0 -15px; +} +.btn-danger:active, +.btn-danger.active { + background-color: #c12e2a; + border-color: #b92c28; +} +.btn-danger.disabled, +.btn-danger:disabled, +.btn-danger[disabled] { + background-color: #c12e2a; + background-image: none; +} +.thumbnail, +.img-thumbnail { + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); + box-shadow: 0 1px 2px rgba(0, 0, 0, .075); +} +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus { + background-color: #e8e8e8; + background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); + background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); + background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); + background-repeat: repeat-x; +} +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + background-color: #2e6da4; + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); + background-repeat: repeat-x; +} +.navbar-default { + background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%); + background-image: -o-linear-gradient(top, #fff 0%, #f8f8f8 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8)); + background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); +} +.navbar-default .navbar-nav > .open > a, +.navbar-default .navbar-nav > .active > a { + background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); + background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2)); + background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0); + background-repeat: repeat-x; + -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); + box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); +} +.navbar-brand, +.navbar-nav > li > a { + text-shadow: 0 1px 0 rgba(255, 255, 255, .25); +} +.navbar-inverse { + background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%); + background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222)); + background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; +} +.navbar-inverse .navbar-nav > .open > a, +.navbar-inverse .navbar-nav > .active > a { + background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%); + background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f)); + background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0); + background-repeat: repeat-x; + -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); + box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); +} +.navbar-inverse .navbar-brand, +.navbar-inverse .navbar-nav > li > a { + text-shadow: 0 -1px 0 rgba(0, 0, 0, .25); +} +.navbar-static-top, +.navbar-fixed-top, +.navbar-fixed-bottom { + border-radius: 0; +} +@media (max-width: 767px) { + .navbar .navbar-nav .open .dropdown-menu > .active > a, + .navbar .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #fff; + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); + background-repeat: repeat-x; + } +} +.alert { + text-shadow: 0 1px 0 rgba(255, 255, 255, .2); + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); +} +.alert-success { + background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); + background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc)); + background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0); + background-repeat: repeat-x; + border-color: #b2dba1; +} +.alert-info { + background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%); + background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0)); + background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); + background-repeat: repeat-x; + border-color: #9acfea; +} +.alert-warning { + background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); + background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0)); + background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); + background-repeat: repeat-x; + border-color: #f5e79e; +} +.alert-danger { + background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); + background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3)); + background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); + background-repeat: repeat-x; + border-color: #dca7a7; +} +.progress { + background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); + background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5)); + background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar { + background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090)); + background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-success { + background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%); + background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44)); + background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-info { + background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); + background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5)); + background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-warning { + background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); + background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f)); + background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-danger { + background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%); + background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c)); + background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-striped { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +} +.list-group { + border-radius: 4px; + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); + box-shadow: 0 1px 2px rgba(0, 0, 0, .075); +} +.list-group-item.active, +.list-group-item.active:hover, +.list-group-item.active:focus { + text-shadow: 0 -1px 0 #286090; + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a)); + background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0); + background-repeat: repeat-x; + border-color: #2b669a; +} +.list-group-item.active .badge, +.list-group-item.active:hover .badge, +.list-group-item.active:focus .badge { + text-shadow: none; +} +.panel { + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05); + box-shadow: 0 1px 2px rgba(0, 0, 0, .05); +} +.panel-default > .panel-heading { + background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); + background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); + background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); + background-repeat: repeat-x; +} +.panel-primary > .panel-heading { + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); + background-repeat: repeat-x; +} +.panel-success > .panel-heading { + background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); + background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6)); + background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0); + background-repeat: repeat-x; +} +.panel-info > .panel-heading { + background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); + background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3)); + background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0); + background-repeat: repeat-x; +} +.panel-warning > .panel-heading { + background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); + background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc)); + background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0); + background-repeat: repeat-x; +} +.panel-danger > .panel-heading { + background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%); + background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc)); + background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0); + background-repeat: repeat-x; +} +.well { + background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); + background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5)); + background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0); + background-repeat: repeat-x; + border-color: #dcdcdc; + -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); + box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); +} +/*# sourceMappingURL=bootstrap-theme.css.map */ diff --git a/modules/lgcookieslaw/views/css/bootstrap-theme.min.css b/modules/lgcookieslaw/views/css/bootstrap-theme.min.css new file mode 100644 index 00000000..ac8dd550 --- /dev/null +++ b/modules/lgcookieslaw/views/css/bootstrap-theme.min.css @@ -0,0 +1,5 @@ +/*! + * Bootstrap v3.3.2 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default:disabled,.btn-default[disabled]{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary:disabled,.btn-primary[disabled]{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success:disabled,.btn-success[disabled]{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info:disabled,.btn-info[disabled]{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning:disabled,.btn-warning[disabled]{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger:disabled,.btn-danger[disabled]{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)} \ No newline at end of file diff --git a/modules/lgcookieslaw/views/css/bootstrap.css b/modules/lgcookieslaw/views/css/bootstrap.css new file mode 100644 index 00000000..c46af7df --- /dev/null +++ b/modules/lgcookieslaw/views/css/bootstrap.css @@ -0,0 +1,6566 @@ +/*! + * Bootstrap v3.3.2 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ +html { + font-family: sans-serif; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} +body { + margin: 0; +} +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; +} +audio, +canvas, +progress, +video { + display: inline-block; + vertical-align: baseline; +} +audio:not([controls]) { + display: none; + height: 0; +} +[hidden], +template { + display: none; +} +a { + background-color: transparent; +} +a:active, +a:hover { + outline: 0; +} +abbr[title] { + border-bottom: 1px dotted; +} +b, +strong { + font-weight: bold; +} +dfn { + font-style: italic; +} +h1 { + margin: .67em 0; + font-size: 2em; +} +mark { + color: #000; + background: #ff0; +} +small { + font-size: 80%; +} +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} +sup { + top: -.5em; +} +sub { + bottom: -.25em; +} +img { + border: 0; +} +svg:not(:root) { + overflow: hidden; +} +figure { + margin: 1em 40px; +} +hr { + height: 0; + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; +} +pre { + overflow: auto; +} +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} +button, +input, +optgroup, +select, +textarea { + margin: 0; + font: inherit; + color: inherit; +} +button { + overflow: visible; +} +button, +select { + text-transform: none; +} +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; + cursor: pointer; +} +button[disabled], +html input[disabled] { + cursor: default; +} +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0; +} +input { + line-height: normal; +} +input[type="checkbox"], +input[type="radio"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + padding: 0; +} +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; +} +input[type="search"] { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + -webkit-appearance: textfield; +} +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} +fieldset { + padding: .35em .625em .75em; + margin: 0 2px; + border: 1px solid #c0c0c0; +} +legend { + padding: 0; + border: 0; +} +textarea { + overflow: auto; +} +optgroup { + font-weight: bold; +} +table { + border-spacing: 0; + border-collapse: collapse; +} +td, +th { + padding: 0; +} +/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ +@media print { + *, + *:before, + *:after { + color: #000 !important; + text-shadow: none !important; + background: transparent !important; + -webkit-box-shadow: none !important; + box-shadow: none !important; + } + a, + a:visited { + text-decoration: underline; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + a[href^="#"]:after, + a[href^="javascript:"]:after { + content: ""; + } + pre, + blockquote { + border: 1px solid #999; + + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + img { + max-width: 100% !important; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } + select { + background: #fff !important; + } + .navbar { + display: none; + } + .btn > .caret, + .dropup > .btn > .caret { + border-top-color: #000 !important; + } + .label { + border: 1px solid #000; + } + .table { + border-collapse: collapse !important; + } + .table td, + .table th { + background-color: #fff !important; + } + .table-bordered th, + .table-bordered td { + border: 1px solid #ddd !important; + } +} +@font-face { + font-family: 'Glyphicons Halflings'; + + src: url('../fonts/glyphicons-halflings-regular.eot'); + src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); +} +.glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + font-style: normal; + font-weight: normal; + line-height: 1; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.glyphicon-asterisk:before { + content: "\2a"; +} +.glyphicon-plus:before { + content: "\2b"; +} +.glyphicon-euro:before, +.glyphicon-eur:before { + content: "\20ac"; +} +.glyphicon-minus:before { + content: "\2212"; +} +.glyphicon-cloud:before { + content: "\2601"; +} +.glyphicon-envelope:before { + content: "\2709"; +} +.glyphicon-pencil:before { + content: "\270f"; +} +.glyphicon-glass:before { + content: "\e001"; +} +.glyphicon-music:before { + content: "\e002"; +} +.glyphicon-search:before { + content: "\e003"; +} +.glyphicon-heart:before { + content: "\e005"; +} +.glyphicon-star:before { + content: "\e006"; +} +.glyphicon-star-empty:before { + content: "\e007"; +} +.glyphicon-user:before { + content: "\e008"; +} +.glyphicon-film:before { + content: "\e009"; +} +.glyphicon-th-large:before { + content: "\e010"; +} +.glyphicon-th:before { + content: "\e011"; +} +.glyphicon-th-list:before { + content: "\e012"; +} +.glyphicon-ok:before { + content: "\e013"; +} +.glyphicon-remove:before { + content: "\e014"; +} +.glyphicon-zoom-in:before { + content: "\e015"; +} +.glyphicon-zoom-out:before { + content: "\e016"; +} +.glyphicon-off:before { + content: "\e017"; +} +.glyphicon-signal:before { + content: "\e018"; +} +.glyphicon-cog:before { + content: "\e019"; +} +.glyphicon-trash:before { + content: "\e020"; +} +.glyphicon-home:before { + content: "\e021"; +} +.glyphicon-file:before { + content: "\e022"; +} +.glyphicon-time:before { + content: "\e023"; +} +.glyphicon-road:before { + content: "\e024"; +} +.glyphicon-download-alt:before { + content: "\e025"; +} +.glyphicon-download:before { + content: "\e026"; +} +.glyphicon-upload:before { + content: "\e027"; +} +.glyphicon-inbox:before { + content: "\e028"; +} +.glyphicon-play-circle:before { + content: "\e029"; +} +.glyphicon-repeat:before { + content: "\e030"; +} +.glyphicon-refresh:before { + content: "\e031"; +} +.glyphicon-list-alt:before { + content: "\e032"; +} +.glyphicon-lock:before { + content: "\e033"; +} +.glyphicon-flag:before { + content: "\e034"; +} +.glyphicon-headphones:before { + content: "\e035"; +} +.glyphicon-volume-off:before { + content: "\e036"; +} +.glyphicon-volume-down:before { + content: "\e037"; +} +.glyphicon-volume-up:before { + content: "\e038"; +} +.glyphicon-qrcode:before { + content: "\e039"; +} +.glyphicon-barcode:before { + content: "\e040"; +} +.glyphicon-tag:before { + content: "\e041"; +} +.glyphicon-tags:before { + content: "\e042"; +} +.glyphicon-book:before { + content: "\e043"; +} +.glyphicon-bookmark:before { + content: "\e044"; +} +.glyphicon-print:before { + content: "\e045"; +} +.glyphicon-camera:before { + content: "\e046"; +} +.glyphicon-font:before { + content: "\e047"; +} +.glyphicon-bold:before { + content: "\e048"; +} +.glyphicon-italic:before { + content: "\e049"; +} +.glyphicon-text-height:before { + content: "\e050"; +} +.glyphicon-text-width:before { + content: "\e051"; +} +.glyphicon-align-left:before { + content: "\e052"; +} +.glyphicon-align-center:before { + content: "\e053"; +} +.glyphicon-align-right:before { + content: "\e054"; +} +.glyphicon-align-justify:before { + content: "\e055"; +} +.glyphicon-list:before { + content: "\e056"; +} +.glyphicon-indent-left:before { + content: "\e057"; +} +.glyphicon-indent-right:before { + content: "\e058"; +} +.glyphicon-facetime-video:before { + content: "\e059"; +} +.glyphicon-picture:before { + content: "\e060"; +} +.glyphicon-map-marker:before { + content: "\e062"; +} +.glyphicon-adjust:before { + content: "\e063"; +} +.glyphicon-tint:before { + content: "\e064"; +} +.glyphicon-edit:before { + content: "\e065"; +} +.glyphicon-share:before { + content: "\e066"; +} +.glyphicon-check:before { + content: "\e067"; +} +.glyphicon-move:before { + content: "\e068"; +} +.glyphicon-step-backward:before { + content: "\e069"; +} +.glyphicon-fast-backward:before { + content: "\e070"; +} +.glyphicon-backward:before { + content: "\e071"; +} +.glyphicon-play:before { + content: "\e072"; +} +.glyphicon-pause:before { + content: "\e073"; +} +.glyphicon-stop:before { + content: "\e074"; +} +.glyphicon-forward:before { + content: "\e075"; +} +.glyphicon-fast-forward:before { + content: "\e076"; +} +.glyphicon-step-forward:before { + content: "\e077"; +} +.glyphicon-eject:before { + content: "\e078"; +} +.glyphicon-chevron-left:before { + content: "\e079"; +} +.glyphicon-chevron-right:before { + content: "\e080"; +} +.glyphicon-plus-sign:before { + content: "\e081"; +} +.glyphicon-minus-sign:before { + content: "\e082"; +} +.glyphicon-remove-sign:before { + content: "\e083"; +} +.glyphicon-ok-sign:before { + content: "\e084"; +} +.glyphicon-question-sign:before { + content: "\e085"; +} +.glyphicon-info-sign:before { + content: "\e086"; +} +.glyphicon-screenshot:before { + content: "\e087"; +} +.glyphicon-remove-circle:before { + content: "\e088"; +} +.glyphicon-ok-circle:before { + content: "\e089"; +} +.glyphicon-ban-circle:before { + content: "\e090"; +} +.glyphicon-arrow-left:before { + content: "\e091"; +} +.glyphicon-arrow-right:before { + content: "\e092"; +} +.glyphicon-arrow-up:before { + content: "\e093"; +} +.glyphicon-arrow-down:before { + content: "\e094"; +} +.glyphicon-share-alt:before { + content: "\e095"; +} +.glyphicon-resize-full:before { + content: "\e096"; +} +.glyphicon-resize-small:before { + content: "\e097"; +} +.glyphicon-exclamation-sign:before { + content: "\e101"; +} +.glyphicon-gift:before { + content: "\e102"; +} +.glyphicon-leaf:before { + content: "\e103"; +} +.glyphicon-fire:before { + content: "\e104"; +} +.glyphicon-eye-open:before { + content: "\e105"; +} +.glyphicon-eye-close:before { + content: "\e106"; +} +.glyphicon-warning-sign:before { + content: "\e107"; +} +.glyphicon-plane:before { + content: "\e108"; +} +.glyphicon-calendar:before { + content: "\e109"; +} +.glyphicon-random:before { + content: "\e110"; +} +.glyphicon-comment:before { + content: "\e111"; +} +.glyphicon-magnet:before { + content: "\e112"; +} +.glyphicon-chevron-up:before { + content: "\e113"; +} +.glyphicon-chevron-down:before { + content: "\e114"; +} +.glyphicon-retweet:before { + content: "\e115"; +} +.glyphicon-shopping-cart:before { + content: "\e116"; +} +.glyphicon-folder-close:before { + content: "\e117"; +} +.glyphicon-folder-open:before { + content: "\e118"; +} +.glyphicon-resize-vertical:before { + content: "\e119"; +} +.glyphicon-resize-horizontal:before { + content: "\e120"; +} +.glyphicon-hdd:before { + content: "\e121"; +} +.glyphicon-bullhorn:before { + content: "\e122"; +} +.glyphicon-bell:before { + content: "\e123"; +} +.glyphicon-certificate:before { + content: "\e124"; +} +.glyphicon-thumbs-up:before { + content: "\e125"; +} +.glyphicon-thumbs-down:before { + content: "\e126"; +} +.glyphicon-hand-right:before { + content: "\e127"; +} +.glyphicon-hand-left:before { + content: "\e128"; +} +.glyphicon-hand-up:before { + content: "\e129"; +} +.glyphicon-hand-down:before { + content: "\e130"; +} +.glyphicon-circle-arrow-right:before { + content: "\e131"; +} +.glyphicon-circle-arrow-left:before { + content: "\e132"; +} +.glyphicon-circle-arrow-up:before { + content: "\e133"; +} +.glyphicon-circle-arrow-down:before { + content: "\e134"; +} +.glyphicon-globe:before { + content: "\e135"; +} +.glyphicon-wrench:before { + content: "\e136"; +} +.glyphicon-tasks:before { + content: "\e137"; +} +.glyphicon-filter:before { + content: "\e138"; +} +.glyphicon-briefcase:before { + content: "\e139"; +} +.glyphicon-fullscreen:before { + content: "\e140"; +} +.glyphicon-dashboard:before { + content: "\e141"; +} +.glyphicon-paperclip:before { + content: "\e142"; +} +.glyphicon-heart-empty:before { + content: "\e143"; +} +.glyphicon-link:before { + content: "\e144"; +} +.glyphicon-phone:before { + content: "\e145"; +} +.glyphicon-pushpin:before { + content: "\e146"; +} +.glyphicon-usd:before { + content: "\e148"; +} +.glyphicon-gbp:before { + content: "\e149"; +} +.glyphicon-sort:before { + content: "\e150"; +} +.glyphicon-sort-by-alphabet:before { + content: "\e151"; +} +.glyphicon-sort-by-alphabet-alt:before { + content: "\e152"; +} +.glyphicon-sort-by-order:before { + content: "\e153"; +} +.glyphicon-sort-by-order-alt:before { + content: "\e154"; +} +.glyphicon-sort-by-attributes:before { + content: "\e155"; +} +.glyphicon-sort-by-attributes-alt:before { + content: "\e156"; +} +.glyphicon-unchecked:before { + content: "\e157"; +} +.glyphicon-expand:before { + content: "\e158"; +} +.glyphicon-collapse-down:before { + content: "\e159"; +} +.glyphicon-collapse-up:before { + content: "\e160"; +} +.glyphicon-log-in:before { + content: "\e161"; +} +.glyphicon-flash:before { + content: "\e162"; +} +.glyphicon-log-out:before { + content: "\e163"; +} +.glyphicon-new-window:before { + content: "\e164"; +} +.glyphicon-record:before { + content: "\e165"; +} +.glyphicon-save:before { + content: "\e166"; +} +.glyphicon-open:before { + content: "\e167"; +} +.glyphicon-saved:before { + content: "\e168"; +} +.glyphicon-import:before { + content: "\e169"; +} +.glyphicon-export:before { + content: "\e170"; +} +.glyphicon-send:before { + content: "\e171"; +} +.glyphicon-floppy-disk:before { + content: "\e172"; +} +.glyphicon-floppy-saved:before { + content: "\e173"; +} +.glyphicon-floppy-remove:before { + content: "\e174"; +} +.glyphicon-floppy-save:before { + content: "\e175"; +} +.glyphicon-floppy-open:before { + content: "\e176"; +} +.glyphicon-credit-card:before { + content: "\e177"; +} +.glyphicon-transfer:before { + content: "\e178"; +} +.glyphicon-cutlery:before { + content: "\e179"; +} +.glyphicon-header:before { + content: "\e180"; +} +.glyphicon-compressed:before { + content: "\e181"; +} +.glyphicon-earphone:before { + content: "\e182"; +} +.glyphicon-phone-alt:before { + content: "\e183"; +} +.glyphicon-tower:before { + content: "\e184"; +} +.glyphicon-stats:before { + content: "\e185"; +} +.glyphicon-sd-video:before { + content: "\e186"; +} +.glyphicon-hd-video:before { + content: "\e187"; +} +.glyphicon-subtitles:before { + content: "\e188"; +} +.glyphicon-sound-stereo:before { + content: "\e189"; +} +.glyphicon-sound-dolby:before { + content: "\e190"; +} +.glyphicon-sound-5-1:before { + content: "\e191"; +} +.glyphicon-sound-6-1:before { + content: "\e192"; +} +.glyphicon-sound-7-1:before { + content: "\e193"; +} +.glyphicon-copyright-mark:before { + content: "\e194"; +} +.glyphicon-registration-mark:before { + content: "\e195"; +} +.glyphicon-cloud-download:before { + content: "\e197"; +} +.glyphicon-cloud-upload:before { + content: "\e198"; +} +.glyphicon-tree-conifer:before { + content: "\e199"; +} +.glyphicon-tree-deciduous:before { + content: "\e200"; +} +.glyphicon-cd:before { + content: "\e201"; +} +.glyphicon-save-file:before { + content: "\e202"; +} +.glyphicon-open-file:before { + content: "\e203"; +} +.glyphicon-level-up:before { + content: "\e204"; +} +.glyphicon-copy:before { + content: "\e205"; +} +.glyphicon-paste:before { + content: "\e206"; +} +.glyphicon-alert:before { + content: "\e209"; +} +.glyphicon-equalizer:before { + content: "\e210"; +} +.glyphicon-king:before { + content: "\e211"; +} +.glyphicon-queen:before { + content: "\e212"; +} +.glyphicon-pawn:before { + content: "\e213"; +} +.glyphicon-bishop:before { + content: "\e214"; +} +.glyphicon-knight:before { + content: "\e215"; +} +.glyphicon-baby-formula:before { + content: "\e216"; +} +.glyphicon-tent:before { + content: "\26fa"; +} +.glyphicon-blackboard:before { + content: "\e218"; +} +.glyphicon-bed:before { + content: "\e219"; +} +.glyphicon-apple:before { + content: "\f8ff"; +} +.glyphicon-erase:before { + content: "\e221"; +} +.glyphicon-hourglass:before { + content: "\231b"; +} +.glyphicon-lamp:before { + content: "\e223"; +} +.glyphicon-duplicate:before { + content: "\e224"; +} +.glyphicon-piggy-bank:before { + content: "\e225"; +} +.glyphicon-scissors:before { + content: "\e226"; +} +.glyphicon-bitcoin:before { + content: "\e227"; +} +.glyphicon-yen:before { + content: "\00a5"; +} +.glyphicon-ruble:before { + content: "\20bd"; +} +.glyphicon-scale:before { + content: "\e230"; +} +.glyphicon-ice-lolly:before { + content: "\e231"; +} +.glyphicon-ice-lolly-tasted:before { + content: "\e232"; +} +.glyphicon-education:before { + content: "\e233"; +} +.glyphicon-option-horizontal:before { + content: "\e234"; +} +.glyphicon-option-vertical:before { + content: "\e235"; +} +.glyphicon-menu-hamburger:before { + content: "\e236"; +} +.glyphicon-modal-window:before { + content: "\e237"; +} +.glyphicon-oil:before { + content: "\e238"; +} +.glyphicon-grain:before { + content: "\e239"; +} +.glyphicon-sunglasses:before { + content: "\e240"; +} +.glyphicon-text-size:before { + content: "\e241"; +} +.glyphicon-text-color:before { + content: "\e242"; +} +.glyphicon-text-background:before { + content: "\e243"; +} +.glyphicon-object-align-top:before { + content: "\e244"; +} +.glyphicon-object-align-bottom:before { + content: "\e245"; +} +.glyphicon-object-align-horizontal:before { + content: "\e246"; +} +.glyphicon-object-align-left:before { + content: "\e247"; +} +.glyphicon-object-align-vertical:before { + content: "\e248"; +} +.glyphicon-object-align-right:before { + content: "\e249"; +} +.glyphicon-triangle-right:before { + content: "\e250"; +} +.glyphicon-triangle-left:before { + content: "\e251"; +} +.glyphicon-triangle-bottom:before { + content: "\e252"; +} +.glyphicon-triangle-top:before { + content: "\e253"; +} +.glyphicon-console:before { + content: "\e254"; +} +.glyphicon-superscript:before { + content: "\e255"; +} +.glyphicon-subscript:before { + content: "\e256"; +} +.glyphicon-menu-left:before { + content: "\e257"; +} +.glyphicon-menu-right:before { + content: "\e258"; +} +.glyphicon-menu-down:before { + content: "\e259"; +} +.glyphicon-menu-up:before { + content: "\e260"; +} +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +*:before, +*:after { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +html { + font-size: 10px; + + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} +body { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 1.42857143; + color: #333; + background-color: #fff; +} +input, +button, +select, +textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit; +} +a { + color: #337ab7; + text-decoration: none; +} +a:hover, +a:focus { + color: #23527c; + text-decoration: underline; +} +a:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +figure { + margin: 0; +} +img { + vertical-align: middle; +} +.img-responsive, +.thumbnail > img, +.thumbnail a > img, +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: block; + max-width: 100%; + height: auto; +} +.img-rounded { + border-radius: 6px; +} +.img-thumbnail { + display: inline-block; + max-width: 100%; + height: auto; + padding: 4px; + line-height: 1.42857143; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; + -webkit-transition: all .2s ease-in-out; + -o-transition: all .2s ease-in-out; + transition: all .2s ease-in-out; +} +.img-circle { + border-radius: 50%; +} +hr { + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #eee; +} +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} +.sr-only-focusable:active, +.sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; +} +h1, +h2, +h3, +h4, +h5, +h6, +.h1, +.h2, +.h3, +.h4, +.h5, +.h6 { + font-family: inherit; + font-weight: 500; + line-height: 1.1; + color: inherit; +} +h1 small, +h2 small, +h3 small, +h4 small, +h5 small, +h6 small, +.h1 small, +.h2 small, +.h3 small, +.h4 small, +.h5 small, +.h6 small, +h1 .small, +h2 .small, +h3 .small, +h4 .small, +h5 .small, +h6 .small, +.h1 .small, +.h2 .small, +.h3 .small, +.h4 .small, +.h5 .small, +.h6 .small { + font-weight: normal; + line-height: 1; + color: #777; +} +h1, +.h1, +h2, +.h2, +h3, +.h3 { + margin-top: 20px; + margin-bottom: 10px; +} +h1 small, +.h1 small, +h2 small, +.h2 small, +h3 small, +.h3 small, +h1 .small, +.h1 .small, +h2 .small, +.h2 .small, +h3 .small, +.h3 .small { + font-size: 65%; +} +h4, +.h4, +h5, +.h5, +h6, +.h6 { + margin-top: 10px; + margin-bottom: 10px; +} +h4 small, +.h4 small, +h5 small, +.h5 small, +h6 small, +.h6 small, +h4 .small, +.h4 .small, +h5 .small, +.h5 .small, +h6 .small, +.h6 .small { + font-size: 75%; +} +h1, +.h1 { + font-size: 36px; +} +h2, +.h2 { + font-size: 30px; +} +h3, +.h3 { + font-size: 24px; +} +h4, +.h4 { + font-size: 18px; +} +h5, +.h5 { + font-size: 14px; +} +h6, +.h6 { + font-size: 12px; +} +p { + margin: 0 0 10px; +} +.lead { + margin-bottom: 20px; + font-size: 16px; + font-weight: 300; + line-height: 1.4; +} +@media (min-width: 768px) { + .lead { + font-size: 21px; + } +} +small, +.small { + font-size: 85%; +} +mark, +.mark { + padding: .2em; + background-color: #fcf8e3; +} +.text-left { + text-align: left; +} +.text-right { + text-align: right; +} +.text-center { + text-align: center; +} +.text-justify { + text-align: justify; +} +.text-nowrap { + white-space: nowrap; +} +.text-lowercase { + text-transform: lowercase; +} +.text-uppercase { + text-transform: uppercase; +} +.text-capitalize { + text-transform: capitalize; +} +.text-muted { + color: #777; +} +.text-primary { + color: #337ab7; +} +a.text-primary:hover { + color: #286090; +} +.text-success { + color: #3c763d; +} +a.text-success:hover { + color: #2b542c; +} +.text-info { + color: #31708f; +} +a.text-info:hover { + color: #245269; +} +.text-warning { + color: #8a6d3b; +} +a.text-warning:hover { + color: #66512c; +} +.text-danger { + color: #a94442; +} +a.text-danger:hover { + color: #843534; +} +.bg-primary { + color: #fff; + background-color: #337ab7; +} +a.bg-primary:hover { + background-color: #286090; +} +.bg-success { + background-color: #dff0d8; +} +a.bg-success:hover { + background-color: #c1e2b3; +} +.bg-info { + background-color: #d9edf7; +} +a.bg-info:hover { + background-color: #afd9ee; +} +.bg-warning { + background-color: #fcf8e3; +} +a.bg-warning:hover { + background-color: #f7ecb5; +} +.bg-danger { + background-color: #f2dede; +} +a.bg-danger:hover { + background-color: #e4b9b9; +} +.page-header { + padding-bottom: 9px; + margin: 40px 0 20px; + border-bottom: 1px solid #eee; +} +ul, +ol { + margin-top: 0; + margin-bottom: 10px; +} +ul ul, +ol ul, +ul ol, +ol ol { + margin-bottom: 0; +} +.list-unstyled { + padding-left: 0; + list-style: none; +} +.list-inline { + padding-left: 0; + margin-left: -5px; + list-style: none; +} +.list-inline > li { + display: inline-block; + padding-right: 5px; + padding-left: 5px; +} +dl { + margin-top: 0; + margin-bottom: 20px; +} +dt, +dd { + line-height: 1.42857143; +} +dt { + font-weight: bold; +} +dd { + margin-left: 0; +} +@media (min-width: 768px) { + .dl-horizontal dt { + float: left; + width: 160px; + overflow: hidden; + clear: left; + text-align: right; + text-overflow: ellipsis; + white-space: nowrap; + } + .dl-horizontal dd { + margin-left: 180px; + } +} +abbr[title], +abbr[data-original-title] { + cursor: help; + border-bottom: 1px dotted #777; +} +.initialism { + font-size: 90%; + text-transform: uppercase; +} +blockquote { + padding: 10px 20px; + margin: 0 0 20px; + font-size: 17.5px; + border-left: 5px solid #eee; +} +blockquote p:last-child, +blockquote ul:last-child, +blockquote ol:last-child { + margin-bottom: 0; +} +blockquote footer, +blockquote small, +blockquote .small { + display: block; + font-size: 80%; + line-height: 1.42857143; + color: #777; +} +blockquote footer:before, +blockquote small:before, +blockquote .small:before { + content: '\2014 \00A0'; +} +.blockquote-reverse, +blockquote.pull-right { + padding-right: 15px; + padding-left: 0; + text-align: right; + border-right: 5px solid #eee; + border-left: 0; +} +.blockquote-reverse footer:before, +blockquote.pull-right footer:before, +.blockquote-reverse small:before, +blockquote.pull-right small:before, +.blockquote-reverse .small:before, +blockquote.pull-right .small:before { + content: ''; +} +.blockquote-reverse footer:after, +blockquote.pull-right footer:after, +.blockquote-reverse small:after, +blockquote.pull-right small:after, +.blockquote-reverse .small:after, +blockquote.pull-right .small:after { + content: '\00A0 \2014'; +} +address { + margin-bottom: 20px; + font-style: normal; + line-height: 1.42857143; +} +code, +kbd, +pre, +samp { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; +} +code { + padding: 2px 4px; + font-size: 90%; + color: #c7254e; + background-color: #f9f2f4; + border-radius: 4px; +} +kbd { + padding: 2px 4px; + font-size: 90%; + color: #fff; + background-color: #333; + border-radius: 3px; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); +} +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: bold; + -webkit-box-shadow: none; + box-shadow: none; +} +pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 1.42857143; + color: #333; + word-break: break-all; + word-wrap: break-word; + background-color: #f5f5f5; + border: 1px solid #ccc; + border-radius: 4px; +} +pre code { + padding: 0; + font-size: inherit; + color: inherit; + white-space: pre-wrap; + background-color: transparent; + border-radius: 0; +} +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} +.container { + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} +@media (min-width: 768px) { + .container { + width: 750px; + } +} +@media (min-width: 992px) { + .container { + width: 970px; + } +} +@media (min-width: 1200px) { + .container { + width: 1170px; + } +} +.container-fluid { + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} +.row { + margin-right: -15px; + margin-left: -15px; +} +.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; +} +.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { + float: left; +} +.col-xs-12 { + width: 100%; +} +.col-xs-11 { + width: 91.66666667%; +} +.col-xs-10 { + width: 83.33333333%; +} +.col-xs-9 { + width: 75%; +} +.col-xs-8 { + width: 66.66666667%; +} +.col-xs-7 { + width: 58.33333333%; +} +.col-xs-6 { + width: 50%; +} +.col-xs-5 { + width: 41.66666667%; +} +.col-xs-4 { + width: 33.33333333%; +} +.col-xs-3 { + width: 25%; +} +.col-xs-2 { + width: 16.66666667%; +} +.col-xs-1 { + width: 8.33333333%; +} +.col-xs-pull-12 { + right: 100%; +} +.col-xs-pull-11 { + right: 91.66666667%; +} +.col-xs-pull-10 { + right: 83.33333333%; +} +.col-xs-pull-9 { + right: 75%; +} +.col-xs-pull-8 { + right: 66.66666667%; +} +.col-xs-pull-7 { + right: 58.33333333%; +} +.col-xs-pull-6 { + right: 50%; +} +.col-xs-pull-5 { + right: 41.66666667%; +} +.col-xs-pull-4 { + right: 33.33333333%; +} +.col-xs-pull-3 { + right: 25%; +} +.col-xs-pull-2 { + right: 16.66666667%; +} +.col-xs-pull-1 { + right: 8.33333333%; +} +.col-xs-pull-0 { + right: auto; +} +.col-xs-push-12 { + left: 100%; +} +.col-xs-push-11 { + left: 91.66666667%; +} +.col-xs-push-10 { + left: 83.33333333%; +} +.col-xs-push-9 { + left: 75%; +} +.col-xs-push-8 { + left: 66.66666667%; +} +.col-xs-push-7 { + left: 58.33333333%; +} +.col-xs-push-6 { + left: 50%; +} +.col-xs-push-5 { + left: 41.66666667%; +} +.col-xs-push-4 { + left: 33.33333333%; +} +.col-xs-push-3 { + left: 25%; +} +.col-xs-push-2 { + left: 16.66666667%; +} +.col-xs-push-1 { + left: 8.33333333%; +} +.col-xs-push-0 { + left: auto; +} +.col-xs-offset-12 { + margin-left: 100%; +} +.col-xs-offset-11 { + margin-left: 91.66666667%; +} +.col-xs-offset-10 { + margin-left: 83.33333333%; +} +.col-xs-offset-9 { + margin-left: 75%; +} +.col-xs-offset-8 { + margin-left: 66.66666667%; +} +.col-xs-offset-7 { + margin-left: 58.33333333%; +} +.col-xs-offset-6 { + margin-left: 50%; +} +.col-xs-offset-5 { + margin-left: 41.66666667%; +} +.col-xs-offset-4 { + margin-left: 33.33333333%; +} +.col-xs-offset-3 { + margin-left: 25%; +} +.col-xs-offset-2 { + margin-left: 16.66666667%; +} +.col-xs-offset-1 { + margin-left: 8.33333333%; +} +.col-xs-offset-0 { + margin-left: 0; +} +@media (min-width: 768px) { + .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { + float: left; + } + .col-sm-12 { + width: 100%; + } + .col-sm-11 { + width: 91.66666667%; + } + .col-sm-10 { + width: 83.33333333%; + } + .col-sm-9 { + width: 75%; + } + .col-sm-8 { + width: 66.66666667%; + } + .col-sm-7 { + width: 58.33333333%; + } + .col-sm-6 { + width: 50%; + } + .col-sm-5 { + width: 41.66666667%; + } + .col-sm-4 { + width: 33.33333333%; + } + .col-sm-3 { + width: 25%; + } + .col-sm-2 { + width: 16.66666667%; + } + .col-sm-1 { + width: 8.33333333%; + } + .col-sm-pull-12 { + right: 100%; + } + .col-sm-pull-11 { + right: 91.66666667%; + } + .col-sm-pull-10 { + right: 83.33333333%; + } + .col-sm-pull-9 { + right: 75%; + } + .col-sm-pull-8 { + right: 66.66666667%; + } + .col-sm-pull-7 { + right: 58.33333333%; + } + .col-sm-pull-6 { + right: 50%; + } + .col-sm-pull-5 { + right: 41.66666667%; + } + .col-sm-pull-4 { + right: 33.33333333%; + } + .col-sm-pull-3 { + right: 25%; + } + .col-sm-pull-2 { + right: 16.66666667%; + } + .col-sm-pull-1 { + right: 8.33333333%; + } + .col-sm-pull-0 { + right: auto; + } + .col-sm-push-12 { + left: 100%; + } + .col-sm-push-11 { + left: 91.66666667%; + } + .col-sm-push-10 { + left: 83.33333333%; + } + .col-sm-push-9 { + left: 75%; + } + .col-sm-push-8 { + left: 66.66666667%; + } + .col-sm-push-7 { + left: 58.33333333%; + } + .col-sm-push-6 { + left: 50%; + } + .col-sm-push-5 { + left: 41.66666667%; + } + .col-sm-push-4 { + left: 33.33333333%; + } + .col-sm-push-3 { + left: 25%; + } + .col-sm-push-2 { + left: 16.66666667%; + } + .col-sm-push-1 { + left: 8.33333333%; + } + .col-sm-push-0 { + left: auto; + } + .col-sm-offset-12 { + margin-left: 100%; + } + .col-sm-offset-11 { + margin-left: 91.66666667%; + } + .col-sm-offset-10 { + margin-left: 83.33333333%; + } + .col-sm-offset-9 { + margin-left: 75%; + } + .col-sm-offset-8 { + margin-left: 66.66666667%; + } + .col-sm-offset-7 { + margin-left: 58.33333333%; + } + .col-sm-offset-6 { + margin-left: 50%; + } + .col-sm-offset-5 { + margin-left: 41.66666667%; + } + .col-sm-offset-4 { + margin-left: 33.33333333%; + } + .col-sm-offset-3 { + margin-left: 25%; + } + .col-sm-offset-2 { + margin-left: 16.66666667%; + } + .col-sm-offset-1 { + margin-left: 8.33333333%; + } + .col-sm-offset-0 { + margin-left: 0; + } +} +@media (min-width: 992px) { + .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { + float: left; + } + .col-md-12 { + width: 100%; + } + .col-md-11 { + width: 91.66666667%; + } + .col-md-10 { + width: 83.33333333%; + } + .col-md-9 { + width: 75%; + } + .col-md-8 { + width: 66.66666667%; + } + .col-md-7 { + width: 58.33333333%; + } + .col-md-6 { + width: 50%; + } + .col-md-5 { + width: 41.66666667%; + } + .col-md-4 { + width: 33.33333333%; + } + .col-md-3 { + width: 25%; + } + .col-md-2 { + width: 16.66666667%; + } + .col-md-1 { + width: 8.33333333%; + } + .col-md-pull-12 { + right: 100%; + } + .col-md-pull-11 { + right: 91.66666667%; + } + .col-md-pull-10 { + right: 83.33333333%; + } + .col-md-pull-9 { + right: 75%; + } + .col-md-pull-8 { + right: 66.66666667%; + } + .col-md-pull-7 { + right: 58.33333333%; + } + .col-md-pull-6 { + right: 50%; + } + .col-md-pull-5 { + right: 41.66666667%; + } + .col-md-pull-4 { + right: 33.33333333%; + } + .col-md-pull-3 { + right: 25%; + } + .col-md-pull-2 { + right: 16.66666667%; + } + .col-md-pull-1 { + right: 8.33333333%; + } + .col-md-pull-0 { + right: auto; + } + .col-md-push-12 { + left: 100%; + } + .col-md-push-11 { + left: 91.66666667%; + } + .col-md-push-10 { + left: 83.33333333%; + } + .col-md-push-9 { + left: 75%; + } + .col-md-push-8 { + left: 66.66666667%; + } + .col-md-push-7 { + left: 58.33333333%; + } + .col-md-push-6 { + left: 50%; + } + .col-md-push-5 { + left: 41.66666667%; + } + .col-md-push-4 { + left: 33.33333333%; + } + .col-md-push-3 { + left: 25%; + } + .col-md-push-2 { + left: 16.66666667%; + } + .col-md-push-1 { + left: 8.33333333%; + } + .col-md-push-0 { + left: auto; + } + .col-md-offset-12 { + margin-left: 100%; + } + .col-md-offset-11 { + margin-left: 91.66666667%; + } + .col-md-offset-10 { + margin-left: 83.33333333%; + } + .col-md-offset-9 { + margin-left: 75%; + } + .col-md-offset-8 { + margin-left: 66.66666667%; + } + .col-md-offset-7 { + margin-left: 58.33333333%; + } + .col-md-offset-6 { + margin-left: 50%; + } + .col-md-offset-5 { + margin-left: 41.66666667%; + } + .col-md-offset-4 { + margin-left: 33.33333333%; + } + .col-md-offset-3 { + margin-left: 25%; + } + .col-md-offset-2 { + margin-left: 16.66666667%; + } + .col-md-offset-1 { + margin-left: 8.33333333%; + } + .col-md-offset-0 { + margin-left: 0; + } +} +@media (min-width: 1200px) { + .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { + float: left; + } + .col-lg-12 { + width: 100%; + } + .col-lg-11 { + width: 91.66666667%; + } + .col-lg-10 { + width: 83.33333333%; + } + .col-lg-9 { + width: 75%; + } + .col-lg-8 { + width: 66.66666667%; + } + .col-lg-7 { + width: 58.33333333%; + } + .col-lg-6 { + width: 50%; + } + .col-lg-5 { + width: 41.66666667%; + } + .col-lg-4 { + width: 33.33333333%; + } + .col-lg-3 { + width: 25%; + } + .col-lg-2 { + width: 16.66666667%; + } + .col-lg-1 { + width: 8.33333333%; + } + .col-lg-pull-12 { + right: 100%; + } + .col-lg-pull-11 { + right: 91.66666667%; + } + .col-lg-pull-10 { + right: 83.33333333%; + } + .col-lg-pull-9 { + right: 75%; + } + .col-lg-pull-8 { + right: 66.66666667%; + } + .col-lg-pull-7 { + right: 58.33333333%; + } + .col-lg-pull-6 { + right: 50%; + } + .col-lg-pull-5 { + right: 41.66666667%; + } + .col-lg-pull-4 { + right: 33.33333333%; + } + .col-lg-pull-3 { + right: 25%; + } + .col-lg-pull-2 { + right: 16.66666667%; + } + .col-lg-pull-1 { + right: 8.33333333%; + } + .col-lg-pull-0 { + right: auto; + } + .col-lg-push-12 { + left: 100%; + } + .col-lg-push-11 { + left: 91.66666667%; + } + .col-lg-push-10 { + left: 83.33333333%; + } + .col-lg-push-9 { + left: 75%; + } + .col-lg-push-8 { + left: 66.66666667%; + } + .col-lg-push-7 { + left: 58.33333333%; + } + .col-lg-push-6 { + left: 50%; + } + .col-lg-push-5 { + left: 41.66666667%; + } + .col-lg-push-4 { + left: 33.33333333%; + } + .col-lg-push-3 { + left: 25%; + } + .col-lg-push-2 { + left: 16.66666667%; + } + .col-lg-push-1 { + left: 8.33333333%; + } + .col-lg-push-0 { + left: auto; + } + .col-lg-offset-12 { + margin-left: 100%; + } + .col-lg-offset-11 { + margin-left: 91.66666667%; + } + .col-lg-offset-10 { + margin-left: 83.33333333%; + } + .col-lg-offset-9 { + margin-left: 75%; + } + .col-lg-offset-8 { + margin-left: 66.66666667%; + } + .col-lg-offset-7 { + margin-left: 58.33333333%; + } + .col-lg-offset-6 { + margin-left: 50%; + } + .col-lg-offset-5 { + margin-left: 41.66666667%; + } + .col-lg-offset-4 { + margin-left: 33.33333333%; + } + .col-lg-offset-3 { + margin-left: 25%; + } + .col-lg-offset-2 { + margin-left: 16.66666667%; + } + .col-lg-offset-1 { + margin-left: 8.33333333%; + } + .col-lg-offset-0 { + margin-left: 0; + } +} +table { + background-color: transparent; +} +caption { + padding-top: 8px; + padding-bottom: 8px; + color: #777; + text-align: left; +} +th { + text-align: left; +} +.table { + width: 100%; + max-width: 100%; + margin-bottom: 20px; +} +.table > thead > tr > th, +.table > tbody > tr > th, +.table > tfoot > tr > th, +.table > thead > tr > td, +.table > tbody > tr > td, +.table > tfoot > tr > td { + padding: 8px; + line-height: 1.42857143; + vertical-align: top; + border-top: 1px solid #ddd; +} +.table > thead > tr > th { + vertical-align: bottom; + border-bottom: 2px solid #ddd; +} +.table > caption + thead > tr:first-child > th, +.table > colgroup + thead > tr:first-child > th, +.table > thead:first-child > tr:first-child > th, +.table > caption + thead > tr:first-child > td, +.table > colgroup + thead > tr:first-child > td, +.table > thead:first-child > tr:first-child > td { + border-top: 0; +} +.table > tbody + tbody { + border-top: 2px solid #ddd; +} +.table .table { + background-color: #fff; +} +.table-condensed > thead > tr > th, +.table-condensed > tbody > tr > th, +.table-condensed > tfoot > tr > th, +.table-condensed > thead > tr > td, +.table-condensed > tbody > tr > td, +.table-condensed > tfoot > tr > td { + padding: 5px; +} +.table-bordered { + border: 1px solid #ddd; +} +.table-bordered > thead > tr > th, +.table-bordered > tbody > tr > th, +.table-bordered > tfoot > tr > th, +.table-bordered > thead > tr > td, +.table-bordered > tbody > tr > td, +.table-bordered > tfoot > tr > td { + border: 1px solid #ddd; +} +.table-bordered > thead > tr > th, +.table-bordered > thead > tr > td { + border-bottom-width: 2px; +} +.table-striped > tbody > tr:nth-of-type(odd) { + background-color: #f9f9f9; +} +.table-hover > tbody > tr:hover { + background-color: #f5f5f5; +} +table col[class*="col-"] { + position: static; + display: table-column; + float: none; +} +table td[class*="col-"], +table th[class*="col-"] { + position: static; + display: table-cell; + float: none; +} +.table > thead > tr > td.active, +.table > tbody > tr > td.active, +.table > tfoot > tr > td.active, +.table > thead > tr > th.active, +.table > tbody > tr > th.active, +.table > tfoot > tr > th.active, +.table > thead > tr.active > td, +.table > tbody > tr.active > td, +.table > tfoot > tr.active > td, +.table > thead > tr.active > th, +.table > tbody > tr.active > th, +.table > tfoot > tr.active > th { + background-color: #f5f5f5; +} +.table-hover > tbody > tr > td.active:hover, +.table-hover > tbody > tr > th.active:hover, +.table-hover > tbody > tr.active:hover > td, +.table-hover > tbody > tr:hover > .active, +.table-hover > tbody > tr.active:hover > th { + background-color: #e8e8e8; +} +.table > thead > tr > td.success, +.table > tbody > tr > td.success, +.table > tfoot > tr > td.success, +.table > thead > tr > th.success, +.table > tbody > tr > th.success, +.table > tfoot > tr > th.success, +.table > thead > tr.success > td, +.table > tbody > tr.success > td, +.table > tfoot > tr.success > td, +.table > thead > tr.success > th, +.table > tbody > tr.success > th, +.table > tfoot > tr.success > th { + background-color: #dff0d8; +} +.table-hover > tbody > tr > td.success:hover, +.table-hover > tbody > tr > th.success:hover, +.table-hover > tbody > tr.success:hover > td, +.table-hover > tbody > tr:hover > .success, +.table-hover > tbody > tr.success:hover > th { + background-color: #d0e9c6; +} +.table > thead > tr > td.info, +.table > tbody > tr > td.info, +.table > tfoot > tr > td.info, +.table > thead > tr > th.info, +.table > tbody > tr > th.info, +.table > tfoot > tr > th.info, +.table > thead > tr.info > td, +.table > tbody > tr.info > td, +.table > tfoot > tr.info > td, +.table > thead > tr.info > th, +.table > tbody > tr.info > th, +.table > tfoot > tr.info > th { + background-color: #d9edf7; +} +.table-hover > tbody > tr > td.info:hover, +.table-hover > tbody > tr > th.info:hover, +.table-hover > tbody > tr.info:hover > td, +.table-hover > tbody > tr:hover > .info, +.table-hover > tbody > tr.info:hover > th { + background-color: #c4e3f3; +} +.table > thead > tr > td.warning, +.table > tbody > tr > td.warning, +.table > tfoot > tr > td.warning, +.table > thead > tr > th.warning, +.table > tbody > tr > th.warning, +.table > tfoot > tr > th.warning, +.table > thead > tr.warning > td, +.table > tbody > tr.warning > td, +.table > tfoot > tr.warning > td, +.table > thead > tr.warning > th, +.table > tbody > tr.warning > th, +.table > tfoot > tr.warning > th { + background-color: #fcf8e3; +} +.table-hover > tbody > tr > td.warning:hover, +.table-hover > tbody > tr > th.warning:hover, +.table-hover > tbody > tr.warning:hover > td, +.table-hover > tbody > tr:hover > .warning, +.table-hover > tbody > tr.warning:hover > th { + background-color: #faf2cc; +} +.table > thead > tr > td.danger, +.table > tbody > tr > td.danger, +.table > tfoot > tr > td.danger, +.table > thead > tr > th.danger, +.table > tbody > tr > th.danger, +.table > tfoot > tr > th.danger, +.table > thead > tr.danger > td, +.table > tbody > tr.danger > td, +.table > tfoot > tr.danger > td, +.table > thead > tr.danger > th, +.table > tbody > tr.danger > th, +.table > tfoot > tr.danger > th { + background-color: #f2dede; +} +.table-hover > tbody > tr > td.danger:hover, +.table-hover > tbody > tr > th.danger:hover, +.table-hover > tbody > tr.danger:hover > td, +.table-hover > tbody > tr:hover > .danger, +.table-hover > tbody > tr.danger:hover > th { + background-color: #ebcccc; +} +.table-responsive { + min-height: .01%; + overflow-x: auto; +} +@media screen and (max-width: 767px) { + .table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-y: hidden; + -ms-overflow-style: -ms-autohiding-scrollbar; + border: 1px solid #ddd; + } + .table-responsive > .table { + margin-bottom: 0; + } + .table-responsive > .table > thead > tr > th, + .table-responsive > .table > tbody > tr > th, + .table-responsive > .table > tfoot > tr > th, + .table-responsive > .table > thead > tr > td, + .table-responsive > .table > tbody > tr > td, + .table-responsive > .table > tfoot > tr > td { + white-space: nowrap; + } + .table-responsive > .table-bordered { + border: 0; + } + .table-responsive > .table-bordered > thead > tr > th:first-child, + .table-responsive > .table-bordered > tbody > tr > th:first-child, + .table-responsive > .table-bordered > tfoot > tr > th:first-child, + .table-responsive > .table-bordered > thead > tr > td:first-child, + .table-responsive > .table-bordered > tbody > tr > td:first-child, + .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; + } + .table-responsive > .table-bordered > thead > tr > th:last-child, + .table-responsive > .table-bordered > tbody > tr > th:last-child, + .table-responsive > .table-bordered > tfoot > tr > th:last-child, + .table-responsive > .table-bordered > thead > tr > td:last-child, + .table-responsive > .table-bordered > tbody > tr > td:last-child, + .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; + } + .table-responsive > .table-bordered > tbody > tr:last-child > th, + .table-responsive > .table-bordered > tfoot > tr:last-child > th, + .table-responsive > .table-bordered > tbody > tr:last-child > td, + .table-responsive > .table-bordered > tfoot > tr:last-child > td { + border-bottom: 0; + } +} +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: inherit; + color: #333; + border: 0; + border-bottom: 1px solid #e5e5e5; +} +label { + display: inline-block; + max-width: 100%; + margin-bottom: 5px; + font-weight: bold; +} +input[type="search"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +input[type="radio"], +input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px \9; + line-height: normal; +} +input[type="file"] { + display: block; +} +input[type="range"] { + display: block; + width: 100%; +} +select[multiple], +select[size] { + height: auto; +} +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +output { + display: block; + padding-top: 7px; + font-size: 14px; + line-height: 1.42857143; + color: #555; +} +.form-control { + display: block; + width: 100%; + height: 34px; + padding: 6px 12px; + font-size: 14px; + line-height: 1.42857143; + color: #555; + background-color: #fff; + background-image: none; + border: 1px solid #ccc; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; + -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; +} +.form-control:focus { + border-color: #66afe9; + outline: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); + box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); +} +.form-control::-moz-placeholder { + color: #999; + opacity: 1; +} +.form-control:-ms-input-placeholder { + color: #999; +} +.form-control::-webkit-input-placeholder { + color: #999; +} +.form-control[disabled], +.form-control[readonly], +fieldset[disabled] .form-control { + cursor: not-allowed; + background-color: #eee; + opacity: 1; +} +textarea.form-control { + height: auto; +} +input[type="search"] { + -webkit-appearance: none; +} +@media screen and (-webkit-min-device-pixel-ratio: 0) { + input[type="date"], + input[type="time"], + input[type="datetime-local"], + input[type="month"] { + line-height: 34px; + } + input[type="date"].input-sm, + input[type="time"].input-sm, + input[type="datetime-local"].input-sm, + input[type="month"].input-sm, + .input-group-sm input[type="date"], + .input-group-sm input[type="time"], + .input-group-sm input[type="datetime-local"], + .input-group-sm input[type="month"] { + line-height: 30px; + } + input[type="date"].input-lg, + input[type="time"].input-lg, + input[type="datetime-local"].input-lg, + input[type="month"].input-lg, + .input-group-lg input[type="date"], + .input-group-lg input[type="time"], + .input-group-lg input[type="datetime-local"], + .input-group-lg input[type="month"] { + line-height: 46px; + } +} +.form-group { + margin-bottom: 15px; +} +.radio, +.checkbox { + position: relative; + display: block; + margin-top: 10px; + margin-bottom: 10px; +} +.radio label, +.checkbox label { + min-height: 20px; + padding-left: 20px; + margin-bottom: 0; + font-weight: normal; + cursor: pointer; +} +.radio input[type="radio"], +.radio-inline input[type="radio"], +.checkbox input[type="checkbox"], +.checkbox-inline input[type="checkbox"] { + position: absolute; + margin-top: 4px \9; + margin-left: -20px; +} +.radio + .radio, +.checkbox + .checkbox { + margin-top: -5px; +} +.radio-inline, +.checkbox-inline { + display: inline-block; + padding-left: 20px; + margin-bottom: 0; + font-weight: normal; + vertical-align: middle; + cursor: pointer; +} +.radio-inline + .radio-inline, +.checkbox-inline + .checkbox-inline { + margin-top: 0; + margin-left: 10px; +} +input[type="radio"][disabled], +input[type="checkbox"][disabled], +input[type="radio"].disabled, +input[type="checkbox"].disabled, +fieldset[disabled] input[type="radio"], +fieldset[disabled] input[type="checkbox"] { + cursor: not-allowed; +} +.radio-inline.disabled, +.checkbox-inline.disabled, +fieldset[disabled] .radio-inline, +fieldset[disabled] .checkbox-inline { + cursor: not-allowed; +} +.radio.disabled label, +.checkbox.disabled label, +fieldset[disabled] .radio label, +fieldset[disabled] .checkbox label { + cursor: not-allowed; +} +.form-control-static { + padding-top: 7px; + padding-bottom: 7px; + margin-bottom: 0; +} +.form-control-static.input-lg, +.form-control-static.input-sm { + padding-right: 0; + padding-left: 0; +} +.input-sm { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +select.input-sm { + height: 30px; + line-height: 30px; +} +textarea.input-sm, +select[multiple].input-sm { + height: auto; +} +.form-group-sm .form-control { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +select.form-group-sm .form-control { + height: 30px; + line-height: 30px; +} +textarea.form-group-sm .form-control, +select[multiple].form-group-sm .form-control { + height: auto; +} +.form-group-sm .form-control-static { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; +} +.input-lg { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +select.input-lg { + height: 46px; + line-height: 46px; +} +textarea.input-lg, +select[multiple].input-lg { + height: auto; +} +.form-group-lg .form-control { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +select.form-group-lg .form-control { + height: 46px; + line-height: 46px; +} +textarea.form-group-lg .form-control, +select[multiple].form-group-lg .form-control { + height: auto; +} +.form-group-lg .form-control-static { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; +} +.has-feedback { + position: relative; +} +.has-feedback .form-control { + padding-right: 42.5px; +} +.form-control-feedback { + position: absolute; + top: 0; + right: 0; + z-index: 2; + display: block; + width: 34px; + height: 34px; + line-height: 34px; + text-align: center; + pointer-events: none; +} +.input-lg + .form-control-feedback { + width: 46px; + height: 46px; + line-height: 46px; +} +.input-sm + .form-control-feedback { + width: 30px; + height: 30px; + line-height: 30px; +} +.has-success .help-block, +.has-success .control-label, +.has-success .radio, +.has-success .checkbox, +.has-success .radio-inline, +.has-success .checkbox-inline, +.has-success.radio label, +.has-success.checkbox label, +.has-success.radio-inline label, +.has-success.checkbox-inline label { + color: #3c763d; +} +.has-success .form-control { + border-color: #3c763d; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +} +.has-success .form-control:focus { + border-color: #2b542c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; +} +.has-success .input-group-addon { + color: #3c763d; + background-color: #dff0d8; + border-color: #3c763d; +} +.has-success .form-control-feedback { + color: #3c763d; +} +.has-warning .help-block, +.has-warning .control-label, +.has-warning .radio, +.has-warning .checkbox, +.has-warning .radio-inline, +.has-warning .checkbox-inline, +.has-warning.radio label, +.has-warning.checkbox label, +.has-warning.radio-inline label, +.has-warning.checkbox-inline label { + color: #8a6d3b; +} +.has-warning .form-control { + border-color: #8a6d3b; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +} +.has-warning .form-control:focus { + border-color: #66512c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; +} +.has-warning .input-group-addon { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #8a6d3b; +} +.has-warning .form-control-feedback { + color: #8a6d3b; +} +.has-error .help-block, +.has-error .control-label, +.has-error .radio, +.has-error .checkbox, +.has-error .radio-inline, +.has-error .checkbox-inline, +.has-error.radio label, +.has-error.checkbox label, +.has-error.radio-inline label, +.has-error.checkbox-inline label { + color: #a94442; +} +.has-error .form-control { + border-color: #a94442; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +} +.has-error .form-control:focus { + border-color: #843534; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; +} +.has-error .input-group-addon { + color: #a94442; + background-color: #f2dede; + border-color: #a94442; +} +.has-error .form-control-feedback { + color: #a94442; +} +.has-feedback label ~ .form-control-feedback { + top: 25px; +} +.has-feedback label.sr-only ~ .form-control-feedback { + top: 0; +} +.help-block { + display: block; + margin-top: 5px; + margin-bottom: 10px; + color: #737373; +} +@media (min-width: 768px) { + .form-inline .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .form-inline .form-control-static { + display: inline-block; + } + .form-inline .input-group { + display: inline-table; + vertical-align: middle; + } + .form-inline .input-group .input-group-addon, + .form-inline .input-group .input-group-btn, + .form-inline .input-group .form-control { + width: auto; + } + .form-inline .input-group > .form-control { + width: 100%; + } + .form-inline .control-label { + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .radio, + .form-inline .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .radio label, + .form-inline .checkbox label { + padding-left: 0; + } + .form-inline .radio input[type="radio"], + .form-inline .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0; + } + .form-inline .has-feedback .form-control-feedback { + top: 0; + } +} +.form-horizontal .radio, +.form-horizontal .checkbox, +.form-horizontal .radio-inline, +.form-horizontal .checkbox-inline { + padding-top: 7px; + margin-top: 0; + margin-bottom: 0; +} +.form-horizontal .radio, +.form-horizontal .checkbox { + min-height: 27px; +} +.form-horizontal .form-group { + margin-right: -15px; + margin-left: -15px; +} +@media (min-width: 768px) { + .form-horizontal .control-label { + padding-top: 7px; + margin-bottom: 0; + text-align: right; + } +} +.form-horizontal .has-feedback .form-control-feedback { + right: 15px; +} +@media (min-width: 768px) { + .form-horizontal .form-group-lg .control-label { + padding-top: 14.333333px; + } +} +@media (min-width: 768px) { + .form-horizontal .form-group-sm .control-label { + padding-top: 6px; + } +} +.btn { + display: inline-block; + padding: 6px 12px; + margin-bottom: 0; + font-size: 14px; + font-weight: normal; + 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 transparent; + border-radius: 4px; +} +.btn:focus, +.btn:active:focus, +.btn.active:focus, +.btn.focus, +.btn:active.focus, +.btn.active.focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.btn:hover, +.btn:focus, +.btn.focus { + color: #333; + text-decoration: none; +} +.btn:active, +.btn.active { + background-image: none; + outline: 0; + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); +} +.btn.disabled, +.btn[disabled], +fieldset[disabled] .btn { + pointer-events: none; + cursor: not-allowed; + filter: alpha(opacity=65); + -webkit-box-shadow: none; + box-shadow: none; + opacity: .65; +} +.btn-default { + color: #333; + background-color: #fff; + border-color: #ccc; +} +.btn-default:hover, +.btn-default:focus, +.btn-default.focus, +.btn-default:active, +.btn-default.active, +.open > .dropdown-toggle.btn-default { + color: #333; + background-color: #e6e6e6; + border-color: #adadad; +} +.btn-default:active, +.btn-default.active, +.open > .dropdown-toggle.btn-default { + background-image: none; +} +.btn-default.disabled, +.btn-default[disabled], +fieldset[disabled] .btn-default, +.btn-default.disabled:hover, +.btn-default[disabled]:hover, +fieldset[disabled] .btn-default:hover, +.btn-default.disabled:focus, +.btn-default[disabled]:focus, +fieldset[disabled] .btn-default:focus, +.btn-default.disabled.focus, +.btn-default[disabled].focus, +fieldset[disabled] .btn-default.focus, +.btn-default.disabled:active, +.btn-default[disabled]:active, +fieldset[disabled] .btn-default:active, +.btn-default.disabled.active, +.btn-default[disabled].active, +fieldset[disabled] .btn-default.active { + background-color: #fff; + border-color: #ccc; +} +.btn-default .badge { + color: #fff; + background-color: #333; +} +.btn-primary { + color: #fff; + background-color: #337ab7; + border-color: #2e6da4; +} +.btn-primary:hover, +.btn-primary:focus, +.btn-primary.focus, +.btn-primary:active, +.btn-primary.active, +.open > .dropdown-toggle.btn-primary { + color: #fff; + background-color: #286090; + border-color: #204d74; +} +.btn-primary:active, +.btn-primary.active, +.open > .dropdown-toggle.btn-primary { + background-image: none; +} +.btn-primary.disabled, +.btn-primary[disabled], +fieldset[disabled] .btn-primary, +.btn-primary.disabled:hover, +.btn-primary[disabled]:hover, +fieldset[disabled] .btn-primary:hover, +.btn-primary.disabled:focus, +.btn-primary[disabled]:focus, +fieldset[disabled] .btn-primary:focus, +.btn-primary.disabled.focus, +.btn-primary[disabled].focus, +fieldset[disabled] .btn-primary.focus, +.btn-primary.disabled:active, +.btn-primary[disabled]:active, +fieldset[disabled] .btn-primary:active, +.btn-primary.disabled.active, +.btn-primary[disabled].active, +fieldset[disabled] .btn-primary.active { + background-color: #337ab7; + border-color: #2e6da4; +} +.btn-primary .badge { + color: #337ab7; + background-color: #fff; +} +.btn-success { + color: #fff; + background-color: #5cb85c; + border-color: #4cae4c; +} +.btn-success:hover, +.btn-success:focus, +.btn-success.focus, +.btn-success:active, +.btn-success.active, +.open > .dropdown-toggle.btn-success { + color: #fff; + background-color: #449d44; + border-color: #398439; +} +.btn-success:active, +.btn-success.active, +.open > .dropdown-toggle.btn-success { + background-image: none; +} +.btn-success.disabled, +.btn-success[disabled], +fieldset[disabled] .btn-success, +.btn-success.disabled:hover, +.btn-success[disabled]:hover, +fieldset[disabled] .btn-success:hover, +.btn-success.disabled:focus, +.btn-success[disabled]:focus, +fieldset[disabled] .btn-success:focus, +.btn-success.disabled.focus, +.btn-success[disabled].focus, +fieldset[disabled] .btn-success.focus, +.btn-success.disabled:active, +.btn-success[disabled]:active, +fieldset[disabled] .btn-success:active, +.btn-success.disabled.active, +.btn-success[disabled].active, +fieldset[disabled] .btn-success.active { + background-color: #5cb85c; + border-color: #4cae4c; +} +.btn-success .badge { + color: #5cb85c; + background-color: #fff; +} +.btn-info { + color: #fff; + background-color: #5bc0de; + border-color: #46b8da; +} +.btn-info:hover, +.btn-info:focus, +.btn-info.focus, +.btn-info:active, +.btn-info.active, +.open > .dropdown-toggle.btn-info { + color: #fff; + background-color: #31b0d5; + border-color: #269abc; +} +.btn-info:active, +.btn-info.active, +.open > .dropdown-toggle.btn-info { + background-image: none; +} +.btn-info.disabled, +.btn-info[disabled], +fieldset[disabled] .btn-info, +.btn-info.disabled:hover, +.btn-info[disabled]:hover, +fieldset[disabled] .btn-info:hover, +.btn-info.disabled:focus, +.btn-info[disabled]:focus, +fieldset[disabled] .btn-info:focus, +.btn-info.disabled.focus, +.btn-info[disabled].focus, +fieldset[disabled] .btn-info.focus, +.btn-info.disabled:active, +.btn-info[disabled]:active, +fieldset[disabled] .btn-info:active, +.btn-info.disabled.active, +.btn-info[disabled].active, +fieldset[disabled] .btn-info.active { + background-color: #5bc0de; + border-color: #46b8da; +} +.btn-info .badge { + color: #5bc0de; + background-color: #fff; +} +.btn-warning { + color: #fff; + background-color: #f0ad4e; + border-color: #eea236; +} +.btn-warning:hover, +.btn-warning:focus, +.btn-warning.focus, +.btn-warning:active, +.btn-warning.active, +.open > .dropdown-toggle.btn-warning { + color: #fff; + background-color: #ec971f; + border-color: #d58512; +} +.btn-warning:active, +.btn-warning.active, +.open > .dropdown-toggle.btn-warning { + background-image: none; +} +.btn-warning.disabled, +.btn-warning[disabled], +fieldset[disabled] .btn-warning, +.btn-warning.disabled:hover, +.btn-warning[disabled]:hover, +fieldset[disabled] .btn-warning:hover, +.btn-warning.disabled:focus, +.btn-warning[disabled]:focus, +fieldset[disabled] .btn-warning:focus, +.btn-warning.disabled.focus, +.btn-warning[disabled].focus, +fieldset[disabled] .btn-warning.focus, +.btn-warning.disabled:active, +.btn-warning[disabled]:active, +fieldset[disabled] .btn-warning:active, +.btn-warning.disabled.active, +.btn-warning[disabled].active, +fieldset[disabled] .btn-warning.active { + background-color: #f0ad4e; + border-color: #eea236; +} +.btn-warning .badge { + color: #f0ad4e; + background-color: #fff; +} +.btn-danger { + color: #fff; + background-color: #d9534f; + border-color: #d43f3a; +} +.btn-danger:hover, +.btn-danger:focus, +.btn-danger.focus, +.btn-danger:active, +.btn-danger.active, +.open > .dropdown-toggle.btn-danger { + color: #fff; + background-color: #c9302c; + border-color: #ac2925; +} +.btn-danger:active, +.btn-danger.active, +.open > .dropdown-toggle.btn-danger { + background-image: none; +} +.btn-danger.disabled, +.btn-danger[disabled], +fieldset[disabled] .btn-danger, +.btn-danger.disabled:hover, +.btn-danger[disabled]:hover, +fieldset[disabled] .btn-danger:hover, +.btn-danger.disabled:focus, +.btn-danger[disabled]:focus, +fieldset[disabled] .btn-danger:focus, +.btn-danger.disabled.focus, +.btn-danger[disabled].focus, +fieldset[disabled] .btn-danger.focus, +.btn-danger.disabled:active, +.btn-danger[disabled]:active, +fieldset[disabled] .btn-danger:active, +.btn-danger.disabled.active, +.btn-danger[disabled].active, +fieldset[disabled] .btn-danger.active { + background-color: #d9534f; + border-color: #d43f3a; +} +.btn-danger .badge { + color: #d9534f; + background-color: #fff; +} +.btn-link { + font-weight: normal; + color: #337ab7; + border-radius: 0; +} +.btn-link, +.btn-link:active, +.btn-link.active, +.btn-link[disabled], +fieldset[disabled] .btn-link { + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} +.btn-link, +.btn-link:hover, +.btn-link:focus, +.btn-link:active { + border-color: transparent; +} +.btn-link:hover, +.btn-link:focus { + color: #23527c; + text-decoration: underline; + background-color: transparent; +} +.btn-link[disabled]:hover, +fieldset[disabled] .btn-link:hover, +.btn-link[disabled]:focus, +fieldset[disabled] .btn-link:focus { + color: #777; + text-decoration: none; +} +.btn-lg, +.btn-group-lg > .btn { + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +.btn-sm, +.btn-group-sm > .btn { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.btn-xs, +.btn-group-xs > .btn { + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.btn-block { + display: block; + width: 100%; +} +.btn-block + .btn-block { + margin-top: 5px; +} +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} +.fade { + opacity: 0; + -webkit-transition: opacity .15s linear; + -o-transition: opacity .15s linear; + transition: opacity .15s linear; +} +.fade.in { + opacity: 1; +} +.collapse { + display: none; + visibility: hidden; +} +.collapse.in { + display: block; + visibility: visible; +} +tr.collapse.in { + display: table-row; +} +tbody.collapse.in { + display: table-row-group; +} +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition-timing-function: ease; + -o-transition-timing-function: ease; + transition-timing-function: ease; + -webkit-transition-duration: .35s; + -o-transition-duration: .35s; + transition-duration: .35s; + -webkit-transition-property: height, visibility; + -o-transition-property: height, visibility; + transition-property: height, visibility; +} +.caret { + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px solid; + border-right: 4px solid transparent; + border-left: 4px solid transparent; +} +.dropup, +.dropdown { + position: relative; +} +.dropdown-toggle:focus { + outline: 0; +} +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + font-size: 14px; + text-align: left; + list-style: none; + background-color: #fff; + -webkit-background-clip: padding-box; + background-clip: padding-box; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, .15); + border-radius: 4px; + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); + box-shadow: 0 6px 12px rgba(0, 0, 0, .175); +} +.dropdown-menu.pull-right { + right: 0; + left: auto; +} +.dropdown-menu .divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} +.dropdown-menu > li > a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: normal; + line-height: 1.42857143; + color: #333; + white-space: nowrap; +} +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus { + color: #262626; + text-decoration: none; + background-color: #f5f5f5; +} +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + color: #fff; + text-decoration: none; + background-color: #337ab7; + outline: 0; +} +.dropdown-menu > .disabled > a, +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + color: #777; +} +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + text-decoration: none; + cursor: not-allowed; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} +.open > .dropdown-menu { + display: block; +} +.open > a { + outline: 0; +} +.dropdown-menu-right { + right: 0; + left: auto; +} +.dropdown-menu-left { + right: auto; + left: 0; +} +.dropdown-header { + display: block; + padding: 3px 20px; + font-size: 12px; + line-height: 1.42857143; + color: #777; + white-space: nowrap; +} +.dropdown-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 990; +} +.pull-right > .dropdown-menu { + right: 0; + left: auto; +} +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + content: ""; + border-top: 0; + border-bottom: 4px solid; +} +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 2px; +} +@media (min-width: 768px) { + .navbar-right .dropdown-menu { + right: 0; + left: auto; + } + .navbar-right .dropdown-menu-left { + right: auto; + left: 0; + } +} +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-block; + vertical-align: middle; +} +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + float: left; +} +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover, +.btn-group > .btn:focus, +.btn-group-vertical > .btn:focus, +.btn-group > .btn:active, +.btn-group-vertical > .btn:active, +.btn-group > .btn.active, +.btn-group-vertical > .btn.active { + z-index: 2; +} +.btn-group .btn + .btn, +.btn-group .btn + .btn-group, +.btn-group .btn-group + .btn, +.btn-group .btn-group + .btn-group { + margin-left: -1px; +} +.btn-toolbar { + margin-left: -5px; +} +.btn-toolbar .btn-group, +.btn-toolbar .input-group { + float: left; +} +.btn-toolbar > .btn, +.btn-toolbar > .btn-group, +.btn-toolbar > .input-group { + margin-left: 5px; +} +.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; +} +.btn-group > .btn:first-child { + margin-left: 0; +} +.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.btn-group > .btn:last-child:not(:first-child), +.btn-group > .dropdown-toggle:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group > .btn-group { + float: left; +} +.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} +.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, +.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} +.btn-group > .btn + .dropdown-toggle { + padding-right: 8px; + padding-left: 8px; +} +.btn-group > .btn-lg + .dropdown-toggle { + padding-right: 12px; + padding-left: 12px; +} +.btn-group.open .dropdown-toggle { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); +} +.btn-group.open .dropdown-toggle.btn-link { + -webkit-box-shadow: none; + box-shadow: none; +} +.btn .caret { + margin-left: 0; +} +.btn-lg .caret { + border-width: 5px 5px 0; + border-bottom-width: 0; +} +.dropup .btn-lg .caret { + border-width: 0 5px 5px; +} +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group, +.btn-group-vertical > .btn-group > .btn { + display: block; + float: none; + width: 100%; + max-width: 100%; +} +.btn-group-vertical > .btn-group > .btn { + float: none; +} +.btn-group-vertical > .btn + .btn, +.btn-group-vertical > .btn + .btn-group, +.btn-group-vertical > .btn-group + .btn, +.btn-group-vertical > .btn-group + .btn-group { + margin-top: -1px; + margin-left: 0; +} +.btn-group-vertical > .btn:not(:first-child):not(:last-child) { + border-radius: 0; +} +.btn-group-vertical > .btn:first-child:not(:last-child) { + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn:last-child:not(:first-child) { + border-top-left-radius: 0; + border-top-right-radius: 0; + border-bottom-left-radius: 4px; +} +.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.btn-group-justified { + display: table; + width: 100%; + table-layout: fixed; + border-collapse: separate; +} +.btn-group-justified > .btn, +.btn-group-justified > .btn-group { + display: table-cell; + float: none; + width: 1%; +} +.btn-group-justified > .btn-group .btn { + width: 100%; +} +.btn-group-justified > .btn-group .dropdown-menu { + left: auto; +} +[data-toggle="buttons"] > .btn input[type="radio"], +[data-toggle="buttons"] > .btn-group > .btn input[type="radio"], +[data-toggle="buttons"] > .btn input[type="checkbox"], +[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} +.input-group { + position: relative; + display: table; + border-collapse: separate; +} +.input-group[class*="col-"] { + float: none; + padding-right: 0; + padding-left: 0; +} +.input-group .form-control { + position: relative; + z-index: 2; + float: left; + width: 100%; + margin-bottom: 0; +} +.input-group-lg > .form-control, +.input-group-lg > .input-group-addon, +.input-group-lg > .input-group-btn > .btn { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +select.input-group-lg > .form-control, +select.input-group-lg > .input-group-addon, +select.input-group-lg > .input-group-btn > .btn { + height: 46px; + line-height: 46px; +} +textarea.input-group-lg > .form-control, +textarea.input-group-lg > .input-group-addon, +textarea.input-group-lg > .input-group-btn > .btn, +select[multiple].input-group-lg > .form-control, +select[multiple].input-group-lg > .input-group-addon, +select[multiple].input-group-lg > .input-group-btn > .btn { + height: auto; +} +.input-group-sm > .form-control, +.input-group-sm > .input-group-addon, +.input-group-sm > .input-group-btn > .btn { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +select.input-group-sm > .form-control, +select.input-group-sm > .input-group-addon, +select.input-group-sm > .input-group-btn > .btn { + height: 30px; + line-height: 30px; +} +textarea.input-group-sm > .form-control, +textarea.input-group-sm > .input-group-addon, +textarea.input-group-sm > .input-group-btn > .btn, +select[multiple].input-group-sm > .form-control, +select[multiple].input-group-sm > .input-group-addon, +select[multiple].input-group-sm > .input-group-btn > .btn { + height: auto; +} +.input-group-addon, +.input-group-btn, +.input-group .form-control { + display: table-cell; +} +.input-group-addon:not(:first-child):not(:last-child), +.input-group-btn:not(:first-child):not(:last-child), +.input-group .form-control:not(:first-child):not(:last-child) { + border-radius: 0; +} +.input-group-addon, +.input-group-btn { + width: 1%; + white-space: nowrap; + vertical-align: middle; +} +.input-group-addon { + padding: 6px 12px; + font-size: 14px; + font-weight: normal; + line-height: 1; + color: #555; + text-align: center; + background-color: #eee; + border: 1px solid #ccc; + border-radius: 4px; +} +.input-group-addon.input-sm { + padding: 5px 10px; + font-size: 12px; + border-radius: 3px; +} +.input-group-addon.input-lg { + padding: 10px 16px; + font-size: 18px; + border-radius: 6px; +} +.input-group-addon input[type="radio"], +.input-group-addon input[type="checkbox"] { + margin-top: 0; +} +.input-group .form-control:first-child, +.input-group-addon:first-child, +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .btn-group > .btn, +.input-group-btn:first-child > .dropdown-toggle, +.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.input-group-addon:first-child { + border-right: 0; +} +.input-group .form-control:last-child, +.input-group-addon:last-child, +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .btn-group > .btn, +.input-group-btn:last-child > .dropdown-toggle, +.input-group-btn:first-child > .btn:not(:first-child), +.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.input-group-addon:last-child { + border-left: 0; +} +.input-group-btn { + position: relative; + font-size: 0; + white-space: nowrap; +} +.input-group-btn > .btn { + position: relative; +} +.input-group-btn > .btn + .btn { + margin-left: -1px; +} +.input-group-btn > .btn:hover, +.input-group-btn > .btn:focus, +.input-group-btn > .btn:active { + z-index: 2; +} +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .btn-group { + margin-right: -1px; +} +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .btn-group { + margin-left: -1px; +} +.nav { + padding-left: 0; + margin-bottom: 0; + list-style: none; +} +.nav > li { + position: relative; + display: block; +} +.nav > li > a { + position: relative; + display: block; + padding: 10px 15px; +} +.nav > li > a:hover, +.nav > li > a:focus { + text-decoration: none; + background-color: #eee; +} +.nav > li.disabled > a { + color: #777; +} +.nav > li.disabled > a:hover, +.nav > li.disabled > a:focus { + color: #777; + text-decoration: none; + cursor: not-allowed; + background-color: transparent; +} +.nav .open > a, +.nav .open > a:hover, +.nav .open > a:focus { + background-color: #eee; + border-color: #337ab7; +} +.nav .nav-divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} +.nav > li > a > img { + max-width: none; +} +.nav-tabs { + border-bottom: 1px solid #ddd; +} +.nav-tabs > li { + float: left; + margin-bottom: -1px; +} +.nav-tabs > li > a { + margin-right: 2px; + line-height: 1.42857143; + border: 1px solid transparent; + border-radius: 4px 4px 0 0; +} +.nav-tabs > li > a:hover { + border-color: #eee #eee #ddd; +} +.nav-tabs > li.active > a, +.nav-tabs > li.active > a:hover, +.nav-tabs > li.active > a:focus { + color: #555; + cursor: default; + background-color: #fff; + border: 1px solid #ddd; + border-bottom-color: transparent; +} +.nav-tabs.nav-justified { + width: 100%; + border-bottom: 0; +} +.nav-tabs.nav-justified > li { + float: none; +} +.nav-tabs.nav-justified > li > a { + margin-bottom: 5px; + text-align: center; +} +.nav-tabs.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} +@media (min-width: 768px) { + .nav-tabs.nav-justified > li { + display: table-cell; + width: 1%; + } + .nav-tabs.nav-justified > li > a { + margin-bottom: 0; + } +} +.nav-tabs.nav-justified > li > a { + margin-right: 0; + border-radius: 4px; +} +.nav-tabs.nav-justified > .active > a, +.nav-tabs.nav-justified > .active > a:hover, +.nav-tabs.nav-justified > .active > a:focus { + border: 1px solid #ddd; +} +@media (min-width: 768px) { + .nav-tabs.nav-justified > li > a { + border-bottom: 1px solid #ddd; + border-radius: 4px 4px 0 0; + } + .nav-tabs.nav-justified > .active > a, + .nav-tabs.nav-justified > .active > a:hover, + .nav-tabs.nav-justified > .active > a:focus { + border-bottom-color: #fff; + } +} +.nav-pills > li { + float: left; +} +.nav-pills > li > a { + border-radius: 4px; +} +.nav-pills > li + li { + margin-left: 2px; +} +.nav-pills > li.active > a, +.nav-pills > li.active > a:hover, +.nav-pills > li.active > a:focus { + color: #fff; + background-color: #337ab7; +} +.nav-stacked > li { + float: none; +} +.nav-stacked > li + li { + margin-top: 2px; + margin-left: 0; +} +.nav-justified { + width: 100%; +} +.nav-justified > li { + float: none; +} +.nav-justified > li > a { + margin-bottom: 5px; + text-align: center; +} +.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} +@media (min-width: 768px) { + .nav-justified > li { + display: table-cell; + width: 1%; + } + .nav-justified > li > a { + margin-bottom: 0; + } +} +.nav-tabs-justified { + border-bottom: 0; +} +.nav-tabs-justified > li > a { + margin-right: 0; + border-radius: 4px; +} +.nav-tabs-justified > .active > a, +.nav-tabs-justified > .active > a:hover, +.nav-tabs-justified > .active > a:focus { + border: 1px solid #ddd; +} +@media (min-width: 768px) { + .nav-tabs-justified > li > a { + border-bottom: 1px solid #ddd; + border-radius: 4px 4px 0 0; + } + .nav-tabs-justified > .active > a, + .nav-tabs-justified > .active > a:hover, + .nav-tabs-justified > .active > a:focus { + border-bottom-color: #fff; + } +} +.tab-content > .tab-pane { + display: none; + visibility: hidden; +} +.tab-content > .active { + display: block; + visibility: visible; +} +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.navbar { + position: relative; + min-height: 50px; + margin-bottom: 20px; + border: 1px solid transparent; +} +@media (min-width: 768px) { + .navbar { + border-radius: 4px; + } +} +@media (min-width: 768px) { + .navbar-header { + float: left; + } +} +.navbar-collapse { + padding-right: 15px; + padding-left: 15px; + overflow-x: visible; + -webkit-overflow-scrolling: touch; + border-top: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); +} +.navbar-collapse.in { + overflow-y: auto; +} +@media (min-width: 768px) { + .navbar-collapse { + width: auto; + border-top: 0; + -webkit-box-shadow: none; + box-shadow: none; + } + .navbar-collapse.collapse { + display: block !important; + height: auto !important; + padding-bottom: 0; + overflow: visible !important; + visibility: visible !important; + } + .navbar-collapse.in { + overflow-y: visible; + } + .navbar-fixed-top .navbar-collapse, + .navbar-static-top .navbar-collapse, + .navbar-fixed-bottom .navbar-collapse { + padding-right: 0; + padding-left: 0; + } +} +.navbar-fixed-top .navbar-collapse, +.navbar-fixed-bottom .navbar-collapse { + max-height: 340px; +} +@media (max-device-width: 480px) and (orientation: landscape) { + .navbar-fixed-top .navbar-collapse, + .navbar-fixed-bottom .navbar-collapse { + max-height: 200px; + } +} +.container > .navbar-header, +.container-fluid > .navbar-header, +.container > .navbar-collapse, +.container-fluid > .navbar-collapse { + margin-right: -15px; + margin-left: -15px; +} +@media (min-width: 768px) { + .container > .navbar-header, + .container-fluid > .navbar-header, + .container > .navbar-collapse, + .container-fluid > .navbar-collapse { + margin-right: 0; + margin-left: 0; + } +} +.navbar-static-top { + z-index: 1000; + border-width: 0 0 1px; +} +@media (min-width: 768px) { + .navbar-static-top { + border-radius: 0; + } +} +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030; +} +@media (min-width: 768px) { + .navbar-fixed-top, + .navbar-fixed-bottom { + border-radius: 0; + } +} +.navbar-fixed-top { + top: 0; + border-width: 0 0 1px; +} +.navbar-fixed-bottom { + bottom: 0; + margin-bottom: 0; + border-width: 1px 0 0; +} +.navbar-brand { + float: left; + height: 50px; + padding: 15px 15px; + font-size: 18px; + line-height: 20px; +} +.navbar-brand:hover, +.navbar-brand:focus { + text-decoration: none; +} +.navbar-brand > img { + display: block; +} +@media (min-width: 768px) { + .navbar > .container .navbar-brand, + .navbar > .container-fluid .navbar-brand { + margin-left: -15px; + } +} +.navbar-toggle { + position: relative; + float: right; + padding: 9px 10px; + margin-top: 8px; + margin-right: 15px; + margin-bottom: 8px; + background-color: transparent; + background-image: none; + border: 1px solid transparent; + border-radius: 4px; +} +.navbar-toggle:focus { + outline: 0; +} +.navbar-toggle .icon-bar { + display: block; + width: 22px; + height: 2px; + border-radius: 1px; +} +.navbar-toggle .icon-bar + .icon-bar { + margin-top: 4px; +} +@media (min-width: 768px) { + .navbar-toggle { + display: none; + } +} +.navbar-nav { + margin: 7.5px -15px; +} +.navbar-nav > li > a { + padding-top: 10px; + padding-bottom: 10px; + line-height: 20px; +} +@media (max-width: 767px) { + .navbar-nav .open .dropdown-menu { + position: static; + float: none; + width: auto; + margin-top: 0; + background-color: transparent; + border: 0; + -webkit-box-shadow: none; + box-shadow: none; + } + .navbar-nav .open .dropdown-menu > li > a, + .navbar-nav .open .dropdown-menu .dropdown-header { + padding: 5px 15px 5px 25px; + } + .navbar-nav .open .dropdown-menu > li > a { + line-height: 20px; + } + .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-nav .open .dropdown-menu > li > a:focus { + background-image: none; + } +} +@media (min-width: 768px) { + .navbar-nav { + float: left; + margin: 0; + } + .navbar-nav > li { + float: left; + } + .navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + } +} +.navbar-form { + padding: 10px 15px; + margin-top: 8px; + margin-right: -15px; + margin-bottom: 8px; + margin-left: -15px; + border-top: 1px solid transparent; + border-bottom: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); +} +@media (min-width: 768px) { + .navbar-form .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .navbar-form .form-control-static { + display: inline-block; + } + .navbar-form .input-group { + display: inline-table; + vertical-align: middle; + } + .navbar-form .input-group .input-group-addon, + .navbar-form .input-group .input-group-btn, + .navbar-form .input-group .form-control { + width: auto; + } + .navbar-form .input-group > .form-control { + width: 100%; + } + .navbar-form .control-label { + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .radio, + .navbar-form .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .radio label, + .navbar-form .checkbox label { + padding-left: 0; + } + .navbar-form .radio input[type="radio"], + .navbar-form .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0; + } + .navbar-form .has-feedback .form-control-feedback { + top: 0; + } +} +@media (max-width: 767px) { + .navbar-form .form-group { + margin-bottom: 5px; + } + .navbar-form .form-group:last-child { + margin-bottom: 0; + } +} +@media (min-width: 768px) { + .navbar-form { + width: auto; + padding-top: 0; + padding-bottom: 0; + margin-right: 0; + margin-left: 0; + border: 0; + -webkit-box-shadow: none; + box-shadow: none; + } +} +.navbar-nav > li > .dropdown-menu { + margin-top: 0; + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { + margin-bottom: 0; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.navbar-btn { + margin-top: 8px; + margin-bottom: 8px; +} +.navbar-btn.btn-sm { + margin-top: 10px; + margin-bottom: 10px; +} +.navbar-btn.btn-xs { + margin-top: 14px; + margin-bottom: 14px; +} +.navbar-text { + margin-top: 15px; + margin-bottom: 15px; +} +@media (min-width: 768px) { + .navbar-text { + float: left; + margin-right: 15px; + margin-left: 15px; + } +} +@media (min-width: 768px) { + .navbar-left { + float: left !important; + } + .navbar-right { + float: right !important; + margin-right: -15px; + } + .navbar-right ~ .navbar-right { + margin-right: 0; + } +} +.navbar-default { + background-color: #f8f8f8; + border-color: #e7e7e7; +} +.navbar-default .navbar-brand { + color: #777; +} +.navbar-default .navbar-brand:hover, +.navbar-default .navbar-brand:focus { + color: #5e5e5e; + background-color: transparent; +} +.navbar-default .navbar-text { + color: #777; +} +.navbar-default .navbar-nav > li > a { + color: #777; +} +.navbar-default .navbar-nav > li > a:hover, +.navbar-default .navbar-nav > li > a:focus { + color: #333; + background-color: transparent; +} +.navbar-default .navbar-nav > .active > a, +.navbar-default .navbar-nav > .active > a:hover, +.navbar-default .navbar-nav > .active > a:focus { + color: #555; + background-color: #e7e7e7; +} +.navbar-default .navbar-nav > .disabled > a, +.navbar-default .navbar-nav > .disabled > a:hover, +.navbar-default .navbar-nav > .disabled > a:focus { + color: #ccc; + background-color: transparent; +} +.navbar-default .navbar-toggle { + border-color: #ddd; +} +.navbar-default .navbar-toggle:hover, +.navbar-default .navbar-toggle:focus { + background-color: #ddd; +} +.navbar-default .navbar-toggle .icon-bar { + background-color: #888; +} +.navbar-default .navbar-collapse, +.navbar-default .navbar-form { + border-color: #e7e7e7; +} +.navbar-default .navbar-nav > .open > a, +.navbar-default .navbar-nav > .open > a:hover, +.navbar-default .navbar-nav > .open > a:focus { + color: #555; + background-color: #e7e7e7; +} +@media (max-width: 767px) { + .navbar-default .navbar-nav .open .dropdown-menu > li > a { + color: #777; + } + .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { + color: #333; + background-color: transparent; + } + .navbar-default .navbar-nav .open .dropdown-menu > .active > a, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #555; + background-color: #e7e7e7; + } + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #ccc; + background-color: transparent; + } +} +.navbar-default .navbar-link { + color: #777; +} +.navbar-default .navbar-link:hover { + color: #333; +} +.navbar-default .btn-link { + color: #777; +} +.navbar-default .btn-link:hover, +.navbar-default .btn-link:focus { + color: #333; +} +.navbar-default .btn-link[disabled]:hover, +fieldset[disabled] .navbar-default .btn-link:hover, +.navbar-default .btn-link[disabled]:focus, +fieldset[disabled] .navbar-default .btn-link:focus { + color: #ccc; +} +.navbar-inverse { + background-color: #222; + border-color: #080808; +} +.navbar-inverse .navbar-brand { + color: #9d9d9d; +} +.navbar-inverse .navbar-brand:hover, +.navbar-inverse .navbar-brand:focus { + color: #fff; + background-color: transparent; +} +.navbar-inverse .navbar-text { + color: #9d9d9d; +} +.navbar-inverse .navbar-nav > li > a { + color: #9d9d9d; +} +.navbar-inverse .navbar-nav > li > a:hover, +.navbar-inverse .navbar-nav > li > a:focus { + color: #fff; + background-color: transparent; +} +.navbar-inverse .navbar-nav > .active > a, +.navbar-inverse .navbar-nav > .active > a:hover, +.navbar-inverse .navbar-nav > .active > a:focus { + color: #fff; + background-color: #080808; +} +.navbar-inverse .navbar-nav > .disabled > a, +.navbar-inverse .navbar-nav > .disabled > a:hover, +.navbar-inverse .navbar-nav > .disabled > a:focus { + color: #444; + background-color: transparent; +} +.navbar-inverse .navbar-toggle { + border-color: #333; +} +.navbar-inverse .navbar-toggle:hover, +.navbar-inverse .navbar-toggle:focus { + background-color: #333; +} +.navbar-inverse .navbar-toggle .icon-bar { + background-color: #fff; +} +.navbar-inverse .navbar-collapse, +.navbar-inverse .navbar-form { + border-color: #101010; +} +.navbar-inverse .navbar-nav > .open > a, +.navbar-inverse .navbar-nav > .open > a:hover, +.navbar-inverse .navbar-nav > .open > a:focus { + color: #fff; + background-color: #080808; +} +@media (max-width: 767px) { + .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { + border-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu .divider { + background-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { + color: #9d9d9d; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { + color: #fff; + background-color: transparent; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #fff; + background-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #444; + background-color: transparent; + } +} +.navbar-inverse .navbar-link { + color: #9d9d9d; +} +.navbar-inverse .navbar-link:hover { + color: #fff; +} +.navbar-inverse .btn-link { + color: #9d9d9d; +} +.navbar-inverse .btn-link:hover, +.navbar-inverse .btn-link:focus { + color: #fff; +} +.navbar-inverse .btn-link[disabled]:hover, +fieldset[disabled] .navbar-inverse .btn-link:hover, +.navbar-inverse .btn-link[disabled]:focus, +fieldset[disabled] .navbar-inverse .btn-link:focus { + color: #444; +} +.breadcrumb { + padding: 8px 15px; + margin-bottom: 20px; + list-style: none; + background-color: #f5f5f5; + border-radius: 4px; +} +.breadcrumb > li { + display: inline-block; +} +.breadcrumb > li + li:before { + padding: 0 5px; + color: #ccc; + content: "/\00a0"; +} +.breadcrumb > .active { + color: #777; +} +.pagination { + display: inline-block; + padding-left: 0; + margin: 20px 0; + border-radius: 4px; +} +.pagination > li { + display: inline; +} +.pagination > li > a, +.pagination > li > span { + position: relative; + float: left; + padding: 6px 12px; + margin-left: -1px; + line-height: 1.42857143; + color: #337ab7; + text-decoration: none; + background-color: #fff; + border: 1px solid #ddd; +} +.pagination > li:first-child > a, +.pagination > li:first-child > span { + margin-left: 0; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} +.pagination > li:last-child > a, +.pagination > li:last-child > span { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} +.pagination > li > a:hover, +.pagination > li > span:hover, +.pagination > li > a:focus, +.pagination > li > span:focus { + color: #23527c; + background-color: #eee; + border-color: #ddd; +} +.pagination > .active > a, +.pagination > .active > span, +.pagination > .active > a:hover, +.pagination > .active > span:hover, +.pagination > .active > a:focus, +.pagination > .active > span:focus { + z-index: 2; + color: #fff; + cursor: default; + background-color: #337ab7; + border-color: #337ab7; +} +.pagination > .disabled > span, +.pagination > .disabled > span:hover, +.pagination > .disabled > span:focus, +.pagination > .disabled > a, +.pagination > .disabled > a:hover, +.pagination > .disabled > a:focus { + color: #777; + cursor: not-allowed; + background-color: #fff; + border-color: #ddd; +} +.pagination-lg > li > a, +.pagination-lg > li > span { + padding: 10px 16px; + font-size: 18px; +} +.pagination-lg > li:first-child > a, +.pagination-lg > li:first-child > span { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} +.pagination-lg > li:last-child > a, +.pagination-lg > li:last-child > span { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} +.pagination-sm > li > a, +.pagination-sm > li > span { + padding: 5px 10px; + font-size: 12px; +} +.pagination-sm > li:first-child > a, +.pagination-sm > li:first-child > span { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; +} +.pagination-sm > li:last-child > a, +.pagination-sm > li:last-child > span { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} +.pager { + padding-left: 0; + margin: 20px 0; + text-align: center; + list-style: none; +} +.pager li { + display: inline; +} +.pager li > a, +.pager li > span { + display: inline-block; + padding: 5px 14px; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 15px; +} +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; + background-color: #eee; +} +.pager .next > a, +.pager .next > span { + float: right; +} +.pager .previous > a, +.pager .previous > span { + float: left; +} +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #777; + cursor: not-allowed; + background-color: #fff; +} +.label { + display: inline; + padding: .2em .6em .3em; + font-size: 75%; + font-weight: bold; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: .25em; +} +a.label:hover, +a.label:focus { + color: #fff; + text-decoration: none; + cursor: pointer; +} +.label:empty { + display: none; +} +.btn .label { + position: relative; + top: -1px; +} +.label-default { + background-color: #777; +} +.label-default[href]:hover, +.label-default[href]:focus { + background-color: #5e5e5e; +} +.label-primary { + background-color: #337ab7; +} +.label-primary[href]:hover, +.label-primary[href]:focus { + background-color: #286090; +} +.label-success { + background-color: #5cb85c; +} +.label-success[href]:hover, +.label-success[href]:focus { + background-color: #449d44; +} +.label-info { + background-color: #5bc0de; +} +.label-info[href]:hover, +.label-info[href]:focus { + background-color: #31b0d5; +} +.label-warning { + background-color: #f0ad4e; +} +.label-warning[href]:hover, +.label-warning[href]:focus { + background-color: #ec971f; +} +.label-danger { + background-color: #d9534f; +} +.label-danger[href]:hover, +.label-danger[href]:focus { + background-color: #c9302c; +} +.badge { + display: inline-block; + min-width: 10px; + padding: 3px 7px; + font-size: 12px; + font-weight: bold; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + background-color: #777; + border-radius: 10px; +} +.badge:empty { + display: none; +} +.btn .badge { + position: relative; + top: -1px; +} +.btn-xs .badge { + top: 0; + padding: 1px 5px; +} +a.badge:hover, +a.badge:focus { + color: #fff; + text-decoration: none; + cursor: pointer; +} +.list-group-item.active > .badge, +.nav-pills > .active > a > .badge { + color: #337ab7; + background-color: #fff; +} +.list-group-item > .badge { + float: right; +} +.list-group-item > .badge + .badge { + margin-right: 5px; +} +.nav-pills > li > a > .badge { + margin-left: 3px; +} +.jumbotron { + padding: 30px 15px; + margin-bottom: 30px; + color: inherit; + background-color: #eee; +} +.jumbotron h1, +.jumbotron .h1 { + color: inherit; +} +.jumbotron p { + margin-bottom: 15px; + font-size: 21px; + font-weight: 200; +} +.jumbotron > hr { + border-top-color: #d5d5d5; +} +.container .jumbotron, +.container-fluid .jumbotron { + border-radius: 6px; +} +.jumbotron .container { + max-width: 100%; +} +@media screen and (min-width: 768px) { + .jumbotron { + padding: 48px 0; + } + .container .jumbotron, + .container-fluid .jumbotron { + padding-right: 60px; + padding-left: 60px; + } + .jumbotron h1, + .jumbotron .h1 { + font-size: 63px; + } +} +.thumbnail { + display: block; + padding: 4px; + margin-bottom: 20px; + line-height: 1.42857143; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; + -webkit-transition: border .2s ease-in-out; + -o-transition: border .2s ease-in-out; + transition: border .2s ease-in-out; +} +.thumbnail > img, +.thumbnail a > img { + margin-right: auto; + margin-left: auto; +} +a.thumbnail:hover, +a.thumbnail:focus, +a.thumbnail.active { + border-color: #337ab7; +} +.thumbnail .caption { + padding: 9px; + color: #333; +} +.alert { + padding: 15px; + margin-bottom: 20px; + border: 1px solid transparent; + border-radius: 4px; +} +.alert h4 { + margin-top: 0; + color: inherit; +} +.alert .alert-link { + font-weight: bold; +} +.alert > p, +.alert > ul { + margin-bottom: 0; +} +.alert > p + p { + margin-top: 5px; +} +.alert-dismissable, +.alert-dismissible { + padding-right: 35px; +} +.alert-dismissable .close, +.alert-dismissible .close { + position: relative; + top: -2px; + right: -21px; + color: inherit; +} +.alert-success { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; +} +.alert-success hr { + border-top-color: #c9e2b3; +} +.alert-success .alert-link { + color: #2b542c; +} +.alert-info { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; +} +.alert-info hr { + border-top-color: #a6e1ec; +} +.alert-info .alert-link { + color: #245269; +} +.alert-warning { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; +} +.alert-warning hr { + border-top-color: #f7e1b5; +} +.alert-warning .alert-link { + color: #66512c; +} +.alert-danger { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; +} +.alert-danger hr { + border-top-color: #e4b9c0; +} +.alert-danger .alert-link { + color: #843534; +} +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@-o-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +.progress { + height: 20px; + margin-bottom: 20px; + overflow: hidden; + background-color: #f5f5f5; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); +} +.progress-bar { + float: left; + width: 0; + height: 100%; + font-size: 12px; + line-height: 20px; + color: #fff; + text-align: center; + background-color: #337ab7; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); + -webkit-transition: width .6s ease; + -o-transition: width .6s ease; + transition: width .6s ease; +} +.progress-striped .progress-bar, +.progress-bar-striped { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + -webkit-background-size: 40px 40px; + background-size: 40px 40px; +} +.progress.active .progress-bar, +.progress-bar.active { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; +} +.progress-bar-success { + background-color: #5cb85c; +} +.progress-striped .progress-bar-success { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +} +.progress-bar-info { + background-color: #5bc0de; +} +.progress-striped .progress-bar-info { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +} +.progress-bar-warning { + background-color: #f0ad4e; +} +.progress-striped .progress-bar-warning { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +} +.progress-bar-danger { + background-color: #d9534f; +} +.progress-striped .progress-bar-danger { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +} +.media { + margin-top: 15px; +} +.media:first-child { + margin-top: 0; +} +.media, +.media-body { + overflow: hidden; + zoom: 1; +} +.media-body { + width: 10000px; +} +.media-object { + display: block; +} +.media-right, +.media > .pull-right { + padding-left: 10px; +} +.media-left, +.media > .pull-left { + padding-right: 10px; +} +.media-left, +.media-right, +.media-body { + display: table-cell; + vertical-align: top; +} +.media-middle { + vertical-align: middle; +} +.media-bottom { + vertical-align: bottom; +} +.media-heading { + margin-top: 0; + margin-bottom: 5px; +} +.media-list { + padding-left: 0; + list-style: none; +} +.list-group { + padding-left: 0; + margin-bottom: 20px; +} +.list-group-item { + position: relative; + display: block; + padding: 10px 15px; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid #ddd; +} +.list-group-item:first-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; +} +a.list-group-item { + color: #555; +} +a.list-group-item .list-group-item-heading { + color: #333; +} +a.list-group-item:hover, +a.list-group-item:focus { + color: #555; + text-decoration: none; + background-color: #f5f5f5; +} +.list-group-item.disabled, +.list-group-item.disabled:hover, +.list-group-item.disabled:focus { + color: #777; + cursor: not-allowed; + background-color: #eee; +} +.list-group-item.disabled .list-group-item-heading, +.list-group-item.disabled:hover .list-group-item-heading, +.list-group-item.disabled:focus .list-group-item-heading { + color: inherit; +} +.list-group-item.disabled .list-group-item-text, +.list-group-item.disabled:hover .list-group-item-text, +.list-group-item.disabled:focus .list-group-item-text { + color: #777; +} +.list-group-item.active, +.list-group-item.active:hover, +.list-group-item.active:focus { + z-index: 2; + color: #fff; + background-color: #337ab7; + border-color: #337ab7; +} +.list-group-item.active .list-group-item-heading, +.list-group-item.active:hover .list-group-item-heading, +.list-group-item.active:focus .list-group-item-heading, +.list-group-item.active .list-group-item-heading > small, +.list-group-item.active:hover .list-group-item-heading > small, +.list-group-item.active:focus .list-group-item-heading > small, +.list-group-item.active .list-group-item-heading > .small, +.list-group-item.active:hover .list-group-item-heading > .small, +.list-group-item.active:focus .list-group-item-heading > .small { + color: inherit; +} +.list-group-item.active .list-group-item-text, +.list-group-item.active:hover .list-group-item-text, +.list-group-item.active:focus .list-group-item-text { + color: #c7ddef; +} +.list-group-item-success { + color: #3c763d; + background-color: #dff0d8; +} +a.list-group-item-success { + color: #3c763d; +} +a.list-group-item-success .list-group-item-heading { + color: inherit; +} +a.list-group-item-success:hover, +a.list-group-item-success:focus { + color: #3c763d; + background-color: #d0e9c6; +} +a.list-group-item-success.active, +a.list-group-item-success.active:hover, +a.list-group-item-success.active:focus { + color: #fff; + background-color: #3c763d; + border-color: #3c763d; +} +.list-group-item-info { + color: #31708f; + background-color: #d9edf7; +} +a.list-group-item-info { + color: #31708f; +} +a.list-group-item-info .list-group-item-heading { + color: inherit; +} +a.list-group-item-info:hover, +a.list-group-item-info:focus { + color: #31708f; + background-color: #c4e3f3; +} +a.list-group-item-info.active, +a.list-group-item-info.active:hover, +a.list-group-item-info.active:focus { + color: #fff; + background-color: #31708f; + border-color: #31708f; +} +.list-group-item-warning { + color: #8a6d3b; + background-color: #fcf8e3; +} +a.list-group-item-warning { + color: #8a6d3b; +} +a.list-group-item-warning .list-group-item-heading { + color: inherit; +} +a.list-group-item-warning:hover, +a.list-group-item-warning:focus { + color: #8a6d3b; + background-color: #faf2cc; +} +a.list-group-item-warning.active, +a.list-group-item-warning.active:hover, +a.list-group-item-warning.active:focus { + color: #fff; + background-color: #8a6d3b; + border-color: #8a6d3b; +} +.list-group-item-danger { + color: #a94442; + background-color: #f2dede; +} +a.list-group-item-danger { + color: #a94442; +} +a.list-group-item-danger .list-group-item-heading { + color: inherit; +} +a.list-group-item-danger:hover, +a.list-group-item-danger:focus { + color: #a94442; + background-color: #ebcccc; +} +a.list-group-item-danger.active, +a.list-group-item-danger.active:hover, +a.list-group-item-danger.active:focus { + color: #fff; + background-color: #a94442; + border-color: #a94442; +} +.list-group-item-heading { + margin-top: 0; + margin-bottom: 5px; +} +.list-group-item-text { + margin-bottom: 0; + line-height: 1.3; +} +.panel { + margin-bottom: 20px; + background-color: #fff; + border: 1px solid transparent; + border-radius: 4px; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); + box-shadow: 0 1px 1px rgba(0, 0, 0, .05); +} +.panel-body { + padding: 15px; +} +.panel-heading { + padding: 10px 15px; + border-bottom: 1px solid transparent; + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel-heading > .dropdown .dropdown-toggle { + color: inherit; +} +.panel-title { + margin-top: 0; + margin-bottom: 0; + font-size: 16px; + color: inherit; +} +.panel-title > a, +.panel-title > small, +.panel-title > .small, +.panel-title > small > a, +.panel-title > .small > a { + color: inherit; +} +.panel-footer { + padding: 10px 15px; + background-color: #f5f5f5; + border-top: 1px solid #ddd; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .list-group, +.panel > .panel-collapse > .list-group { + margin-bottom: 0; +} +.panel > .list-group .list-group-item, +.panel > .panel-collapse > .list-group .list-group-item { + border-width: 1px 0; + border-radius: 0; +} +.panel > .list-group:first-child .list-group-item:first-child, +.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { + border-top: 0; + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel > .list-group:last-child .list-group-item:last-child, +.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { + border-bottom: 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel-heading + .list-group .list-group-item:first-child { + border-top-width: 0; +} +.list-group + .panel-footer { + border-top-width: 0; +} +.panel > .table, +.panel > .table-responsive > .table, +.panel > .panel-collapse > .table { + margin-bottom: 0; +} +.panel > .table caption, +.panel > .table-responsive > .table caption, +.panel > .panel-collapse > .table caption { + padding-right: 15px; + padding-left: 15px; +} +.panel > .table:first-child, +.panel > .table-responsive:first-child > .table:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { + border-top-left-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { + border-top-right-radius: 3px; +} +.panel > .table:last-child, +.panel > .table-responsive:last-child > .table:last-child { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { + border-bottom-right-radius: 3px; +} +.panel > .panel-body + .table, +.panel > .panel-body + .table-responsive, +.panel > .table + .panel-body, +.panel > .table-responsive + .panel-body { + border-top: 1px solid #ddd; +} +.panel > .table > tbody:first-child > tr:first-child th, +.panel > .table > tbody:first-child > tr:first-child td { + border-top: 0; +} +.panel > .table-bordered, +.panel > .table-responsive > .table-bordered { + border: 0; +} +.panel > .table-bordered > thead > tr > th:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, +.panel > .table-bordered > tbody > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, +.panel > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-bordered > thead > tr > td:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, +.panel > .table-bordered > tbody > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, +.panel > .table-bordered > tfoot > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; +} +.panel > .table-bordered > thead > tr > th:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, +.panel > .table-bordered > tbody > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, +.panel > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-bordered > thead > tr > td:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, +.panel > .table-bordered > tbody > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, +.panel > .table-bordered > tfoot > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; +} +.panel > .table-bordered > thead > tr:first-child > td, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, +.panel > .table-bordered > tbody > tr:first-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, +.panel > .table-bordered > thead > tr:first-child > th, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, +.panel > .table-bordered > tbody > tr:first-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { + border-bottom: 0; +} +.panel > .table-bordered > tbody > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, +.panel > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-bordered > tbody > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, +.panel > .table-bordered > tfoot > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { + border-bottom: 0; +} +.panel > .table-responsive { + margin-bottom: 0; + border: 0; +} +.panel-group { + margin-bottom: 20px; +} +.panel-group .panel { + margin-bottom: 0; + border-radius: 4px; +} +.panel-group .panel + .panel { + margin-top: 5px; +} +.panel-group .panel-heading { + border-bottom: 0; +} +.panel-group .panel-heading + .panel-collapse > .panel-body, +.panel-group .panel-heading + .panel-collapse > .list-group { + border-top: 1px solid #ddd; +} +.panel-group .panel-footer { + border-top: 0; +} +.panel-group .panel-footer + .panel-collapse .panel-body { + border-bottom: 1px solid #ddd; +} +.panel-default { + border-color: #ddd; +} +.panel-default > .panel-heading { + color: #333; + background-color: #f5f5f5; + border-color: #ddd; +} +.panel-default > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ddd; +} +.panel-default > .panel-heading .badge { + color: #f5f5f5; + background-color: #333; +} +.panel-default > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ddd; +} +.panel-primary { + border-color: #337ab7; +} +.panel-primary > .panel-heading { + color: #fff; + background-color: #337ab7; + border-color: #337ab7; +} +.panel-primary > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #337ab7; +} +.panel-primary > .panel-heading .badge { + color: #337ab7; + background-color: #fff; +} +.panel-primary > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #337ab7; +} +.panel-success { + border-color: #d6e9c6; +} +.panel-success > .panel-heading { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; +} +.panel-success > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #d6e9c6; +} +.panel-success > .panel-heading .badge { + color: #dff0d8; + background-color: #3c763d; +} +.panel-success > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #d6e9c6; +} +.panel-info { + border-color: #bce8f1; +} +.panel-info > .panel-heading { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; +} +.panel-info > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #bce8f1; +} +.panel-info > .panel-heading .badge { + color: #d9edf7; + background-color: #31708f; +} +.panel-info > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #bce8f1; +} +.panel-warning { + border-color: #faebcc; +} +.panel-warning > .panel-heading { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; +} +.panel-warning > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #faebcc; +} +.panel-warning > .panel-heading .badge { + color: #fcf8e3; + background-color: #8a6d3b; +} +.panel-warning > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #faebcc; +} +.panel-danger { + border-color: #ebccd1; +} +.panel-danger > .panel-heading { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; +} +.panel-danger > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ebccd1; +} +.panel-danger > .panel-heading .badge { + color: #f2dede; + background-color: #a94442; +} +.panel-danger > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ebccd1; +} +.embed-responsive { + position: relative; + display: block; + height: 0; + padding: 0; + overflow: hidden; +} +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} +.embed-responsive.embed-responsive-16by9 { + padding-bottom: 56.25%; +} +.embed-responsive.embed-responsive-4by3 { + padding-bottom: 75%; +} +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); +} +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, .15); +} +.well-lg { + padding: 24px; + border-radius: 6px; +} +.well-sm { + padding: 9px; + border-radius: 3px; +} +.close { + float: right; + font-size: 21px; + font-weight: bold; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + filter: alpha(opacity=20); + opacity: .2; +} +.close:hover, +.close:focus { + color: #000; + text-decoration: none; + cursor: pointer; + filter: alpha(opacity=50); + opacity: .5; +} +button.close { + -webkit-appearance: none; + padding: 0; + cursor: pointer; + background: transparent; + border: 0; +} +.modal-open { + overflow: hidden; +} +.modal { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + display: none; + overflow: hidden; + -webkit-overflow-scrolling: touch; + outline: 0; +} +.modal.fade .modal-dialog { + -webkit-transition: -webkit-transform .3s ease-out; + -o-transition: -o-transform .3s ease-out; + transition: transform .3s ease-out; + -webkit-transform: translate(0, -25%); + -ms-transform: translate(0, -25%); + -o-transform: translate(0, -25%); + transform: translate(0, -25%); +} +.modal.in .modal-dialog { + -webkit-transform: translate(0, 0); + -ms-transform: translate(0, 0); + -o-transform: translate(0, 0); + transform: translate(0, 0); +} +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; +} +.modal-dialog { + position: relative; + width: auto; + margin: 10px; +} +.modal-content { + position: relative; + background-color: #fff; + -webkit-background-clip: padding-box; + background-clip: padding-box; + border: 1px solid #999; + border: 1px solid rgba(0, 0, 0, .2); + border-radius: 6px; + outline: 0; + -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5); + box-shadow: 0 3px 9px rgba(0, 0, 0, .5); +} +.modal-backdrop { + position: absolute; + top: 0; + right: 0; + left: 0; + background-color: #000; +} +.modal-backdrop.fade { + filter: alpha(opacity=0); + opacity: 0; +} +.modal-backdrop.in { + filter: alpha(opacity=50); + opacity: .5; +} +.modal-header { + min-height: 16.42857143px; + padding: 15px; + border-bottom: 1px solid #e5e5e5; +} +.modal-header .close { + margin-top: -2px; +} +.modal-title { + margin: 0; + line-height: 1.42857143; +} +.modal-body { + position: relative; + padding: 15px; +} +.modal-footer { + padding: 15px; + text-align: right; + border-top: 1px solid #e5e5e5; +} +.modal-footer .btn + .btn { + margin-bottom: 0; + margin-left: 5px; +} +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} +.modal-footer .btn-block + .btn-block { + margin-left: 0; +} +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; +} +@media (min-width: 768px) { + .modal-dialog { + width: 600px; + margin: 30px auto; + } + .modal-content { + -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); + box-shadow: 0 5px 15px rgba(0, 0, 0, .5); + } + .modal-sm { + width: 300px; + } +} +@media (min-width: 992px) { + .modal-lg { + width: 900px; + } +} +.tooltip { + position: absolute; + z-index: 1070; + display: block; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 12px; + font-weight: normal; + line-height: 1.4; + visibility: visible; + filter: alpha(opacity=0); + opacity: 0; +} +.tooltip.in { + filter: alpha(opacity=90); + opacity: .9; +} +.tooltip.top { + padding: 5px 0; + margin-top: -3px; +} +.tooltip.right { + padding: 0 5px; + margin-left: 3px; +} +.tooltip.bottom { + padding: 5px 0; + margin-top: 3px; +} +.tooltip.left { + padding: 0 5px; + margin-left: -3px; +} +.tooltip-inner { + max-width: 200px; + padding: 3px 8px; + color: #fff; + text-align: center; + text-decoration: none; + background-color: #000; + border-radius: 4px; +} +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.top-left .tooltip-arrow { + right: 5px; + bottom: 0; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.top-right .tooltip-arrow { + bottom: 0; + left: 5px; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-width: 5px 5px 5px 0; + border-right-color: #000; +} +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-width: 5px 0 5px 5px; + border-left-color: #000; +} +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} +.tooltip.bottom-left .tooltip-arrow { + top: 0; + right: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} +.tooltip.bottom-right .tooltip-arrow { + top: 0; + left: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: none; + max-width: 276px; + padding: 1px; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + font-weight: normal; + line-height: 1.42857143; + text-align: left; + white-space: normal; + background-color: #fff; + -webkit-background-clip: padding-box; + background-clip: padding-box; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, .2); + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); + box-shadow: 0 5px 10px rgba(0, 0, 0, .2); +} +.popover.top { + margin-top: -10px; +} +.popover.right { + margin-left: 10px; +} +.popover.bottom { + margin-top: 10px; +} +.popover.left { + margin-left: -10px; +} +.popover-title { + padding: 8px 14px; + margin: 0; + font-size: 14px; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-radius: 5px 5px 0 0; +} +.popover-content { + padding: 9px 14px; +} +.popover > .arrow, +.popover > .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.popover > .arrow { + border-width: 11px; +} +.popover > .arrow:after { + content: ""; + border-width: 10px; +} +.popover.top > .arrow { + bottom: -11px; + left: 50%; + margin-left: -11px; + border-top-color: #999; + border-top-color: rgba(0, 0, 0, .25); + border-bottom-width: 0; +} +.popover.top > .arrow:after { + bottom: 1px; + margin-left: -10px; + content: " "; + border-top-color: #fff; + border-bottom-width: 0; +} +.popover.right > .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-right-color: #999; + border-right-color: rgba(0, 0, 0, .25); + border-left-width: 0; +} +.popover.right > .arrow:after { + bottom: -10px; + left: 1px; + content: " "; + border-right-color: #fff; + border-left-width: 0; +} +.popover.bottom > .arrow { + top: -11px; + left: 50%; + margin-left: -11px; + border-top-width: 0; + border-bottom-color: #999; + border-bottom-color: rgba(0, 0, 0, .25); +} +.popover.bottom > .arrow:after { + top: 1px; + margin-left: -10px; + content: " "; + border-top-width: 0; + border-bottom-color: #fff; +} +.popover.left > .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-right-width: 0; + border-left-color: #999; + border-left-color: rgba(0, 0, 0, .25); +} +.popover.left > .arrow:after { + right: 1px; + bottom: -10px; + content: " "; + border-right-width: 0; + border-left-color: #fff; +} +.carousel { + position: relative; +} +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} +.carousel-inner > .item { + position: relative; + display: none; + -webkit-transition: .6s ease-in-out left; + -o-transition: .6s ease-in-out left; + transition: .6s ease-in-out left; +} +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + line-height: 1; +} +@media all and (transform-3d), (-webkit-transform-3d) { + .carousel-inner > .item { + -webkit-transition: -webkit-transform .6s ease-in-out; + -o-transition: -o-transform .6s ease-in-out; + transition: transform .6s ease-in-out; + + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-perspective: 1000; + perspective: 1000; + } + .carousel-inner > .item.next, + .carousel-inner > .item.active.right { + left: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } + .carousel-inner > .item.prev, + .carousel-inner > .item.active.left { + left: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } + .carousel-inner > .item.next.left, + .carousel-inner > .item.prev.right, + .carousel-inner > .item.active { + left: 0; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.carousel-inner > .active, +.carousel-inner > .next, +.carousel-inner > .prev { + display: block; +} +.carousel-inner > .active { + left: 0; +} +.carousel-inner > .next, +.carousel-inner > .prev { + position: absolute; + top: 0; + width: 100%; +} +.carousel-inner > .next { + left: 100%; +} +.carousel-inner > .prev { + left: -100%; +} +.carousel-inner > .next.left, +.carousel-inner > .prev.right { + left: 0; +} +.carousel-inner > .active.left { + left: -100%; +} +.carousel-inner > .active.right { + left: 100%; +} +.carousel-control { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 15%; + font-size: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, .6); + filter: alpha(opacity=50); + opacity: .5; +} +.carousel-control.left { + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); + background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001))); + background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); + background-repeat: repeat-x; +} +.carousel-control.right { + right: 0; + left: auto; + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); + background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5))); + background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); + background-repeat: repeat-x; +} +.carousel-control:hover, +.carousel-control:focus { + color: #fff; + text-decoration: none; + filter: alpha(opacity=90); + outline: 0; + opacity: .9; +} +.carousel-control .icon-prev, +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-left, +.carousel-control .glyphicon-chevron-right { + position: absolute; + top: 50%; + z-index: 5; + display: inline-block; +} +.carousel-control .icon-prev, +.carousel-control .glyphicon-chevron-left { + left: 50%; + margin-left: -10px; +} +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-right { + right: 50%; + margin-right: -10px; +} +.carousel-control .icon-prev, +.carousel-control .icon-next { + width: 20px; + height: 20px; + margin-top: -10px; + font-family: serif; + line-height: 1; +} +.carousel-control .icon-prev:before { + content: '\2039'; +} +.carousel-control .icon-next:before { + content: '\203a'; +} +.carousel-indicators { + position: absolute; + bottom: 10px; + left: 50%; + z-index: 15; + width: 60%; + padding-left: 0; + margin-left: -30%; + text-align: center; + list-style: none; +} +.carousel-indicators li { + display: inline-block; + width: 10px; + height: 10px; + margin: 1px; + text-indent: -999px; + cursor: pointer; + background-color: #000 \9; + background-color: rgba(0, 0, 0, 0); + border: 1px solid #fff; + border-radius: 10px; +} +.carousel-indicators .active { + width: 12px; + height: 12px; + margin: 0; + background-color: #fff; +} +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, .6); +} +.carousel-caption .btn { + text-shadow: none; +} +@media screen and (min-width: 768px) { + .carousel-control .glyphicon-chevron-left, + .carousel-control .glyphicon-chevron-right, + .carousel-control .icon-prev, + .carousel-control .icon-next { + width: 30px; + height: 30px; + margin-top: -15px; + font-size: 30px; + } + .carousel-control .glyphicon-chevron-left, + .carousel-control .icon-prev { + margin-left: -15px; + } + .carousel-control .glyphicon-chevron-right, + .carousel-control .icon-next { + margin-right: -15px; + } + .carousel-caption { + right: 20%; + left: 20%; + padding-bottom: 30px; + } + .carousel-indicators { + bottom: 20px; + } +} +.clearfix:before, +.clearfix:after, +.dl-horizontal dd:before, +.dl-horizontal dd:after, +.container:before, +.container:after, +.container-fluid:before, +.container-fluid:after, +.row:before, +.row:after, +.form-horizontal .form-group:before, +.form-horizontal .form-group:after, +.btn-toolbar:before, +.btn-toolbar:after, +.btn-group-vertical > .btn-group:before, +.btn-group-vertical > .btn-group:after, +.nav:before, +.nav:after, +.navbar:before, +.navbar:after, +.navbar-header:before, +.navbar-header:after, +.navbar-collapse:before, +.navbar-collapse:after, +.pager:before, +.pager:after, +.panel-body:before, +.panel-body:after, +.modal-footer:before, +.modal-footer:after { + display: table; + content: " "; +} +.clearfix:after, +.dl-horizontal dd:after, +.container:after, +.container-fluid:after, +.row:after, +.form-horizontal .form-group:after, +.btn-toolbar:after, +.btn-group-vertical > .btn-group:after, +.nav:after, +.navbar:after, +.navbar-header:after, +.navbar-collapse:after, +.pager:after, +.panel-body:after, +.modal-footer:after { + clear: both; +} +.center-block { + display: block; + margin-right: auto; + margin-left: auto; +} +.pull-right { + float: right !important; +} +.pull-left { + float: left !important; +} +.hide { + display: none !important; +} +.show { + display: block !important; +} +.invisible { + visibility: hidden; +} +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} +.hidden { + display: none !important; + visibility: hidden !important; +} +.affix { + position: fixed; +} +@-ms-viewport { + width: device-width; +} +.visible-xs, +.visible-sm, +.visible-md, +.visible-lg { + display: none !important; +} +.visible-xs-block, +.visible-xs-inline, +.visible-xs-inline-block, +.visible-sm-block, +.visible-sm-inline, +.visible-sm-inline-block, +.visible-md-block, +.visible-md-inline, +.visible-md-inline-block, +.visible-lg-block, +.visible-lg-inline, +.visible-lg-inline-block { + display: none !important; +} +@media (max-width: 767px) { + .visible-xs { + display: block !important; + } + table.visible-xs { + display: table; + } + tr.visible-xs { + display: table-row !important; + } + th.visible-xs, + td.visible-xs { + display: table-cell !important; + } +} +@media (max-width: 767px) { + .visible-xs-block { + display: block !important; + } +} +@media (max-width: 767px) { + .visible-xs-inline { + display: inline !important; + } +} +@media (max-width: 767px) { + .visible-xs-inline-block { + display: inline-block !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm { + display: block !important; + } + table.visible-sm { + display: table; + } + tr.visible-sm { + display: table-row !important; + } + th.visible-sm, + td.visible-sm { + display: table-cell !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-block { + display: block !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline { + display: inline !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline-block { + display: inline-block !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md { + display: block !important; + } + table.visible-md { + display: table; + } + tr.visible-md { + display: table-row !important; + } + th.visible-md, + td.visible-md { + display: table-cell !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-block { + display: block !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline { + display: inline !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline-block { + display: inline-block !important; + } +} +@media (min-width: 1200px) { + .visible-lg { + display: block !important; + } + table.visible-lg { + display: table; + } + tr.visible-lg { + display: table-row !important; + } + th.visible-lg, + td.visible-lg { + display: table-cell !important; + } +} +@media (min-width: 1200px) { + .visible-lg-block { + display: block !important; + } +} +@media (min-width: 1200px) { + .visible-lg-inline { + display: inline !important; + } +} +@media (min-width: 1200px) { + .visible-lg-inline-block { + display: inline-block !important; + } +} +@media (max-width: 767px) { + .hidden-xs { + display: none !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .hidden-sm { + display: none !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-md { + display: none !important; + } +} +@media (min-width: 1200px) { + .hidden-lg { + display: none !important; + } +} +.visible-print { + display: none !important; +} +@media print { + .visible-print { + display: block !important; + } + table.visible-print { + display: table; + } + tr.visible-print { + display: table-row !important; + } + th.visible-print, + td.visible-print { + display: table-cell !important; + } +} +.visible-print-block { + display: none !important; +} +@media print { + .visible-print-block { + display: block !important; + } +} +.visible-print-inline { + display: none !important; +} +@media print { + .visible-print-inline { + display: inline !important; + } +} +.visible-print-inline-block { + display: none !important; +} +@media print { + .visible-print-inline-block { + display: inline-block !important; + } +} +@media print { + .hidden-print { + display: none !important; + } +} +/*# sourceMappingURL=bootstrap.css.map */ diff --git a/modules/lgcookieslaw/views/css/bootstrap.min.css b/modules/lgcookieslaw/views/css/bootstrap.min.css new file mode 100644 index 00000000..28f154de --- /dev/null +++ b/modules/lgcookieslaw/views/css/bootstrap.min.css @@ -0,0 +1,5 @@ +/*! + * Bootstrap v3.3.2 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + *//*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date],input[type=time],input[type=datetime-local],input[type=month]{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px \9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.form-group-sm .form-control{height:30px;line-height:30px}select[multiple].form-group-sm .form-control,textarea.form-group-sm .form-control{height:auto}.form-group-sm .form-control-static{height:30px;padding:5px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.form-group-lg .form-control{height:46px;line-height:46px}select[multiple].form-group-lg .form-control,textarea.form-group-lg .form-control{height:auto}.form-group-lg .form-control-static{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.33px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{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 transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.active,.btn-default.focus,.btn-default:active,.btn-default:focus,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.active,.btn-primary.focus,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.active,.btn-success.focus,.btn-success:active,.btn-success:focus,.btn-success:hover,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.active,.btn-info.focus,.btn-info:active,.btn-info:focus,.btn-info:hover,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.active,.btn-warning.focus,.btn-warning:active,.btn-warning:focus,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.active,.btn-danger.focus,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none;visibility:hidden}.collapse.in{display:block;visibility:visible}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px solid}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none;visibility:hidden}.tab-content>.active{display:block;visibility:visible}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important;visibility:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px 15px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding:48px 0}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:absolute;top:0;right:0;left:0;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{min-height:16.43px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:1.4;visibility:visible;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:1.42857143;text-align:left;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000;perspective:1000}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;margin-top:-10px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} \ No newline at end of file diff --git a/modules/lgcookieslaw/views/css/front.css b/modules/lgcookieslaw/views/css/front.css new file mode 100644 index 00000000..81288323 --- /dev/null +++ b/modules/lgcookieslaw/views/css/front.css @@ -0,0 +1,285 @@ +#lgcookieslaw_banner { + display: none; + z-index: 10000; + position: fixed; + bottom: 0; + left: 0; + width: 100%; + padding: 1rem 0; + color: #fff; +} +#lgcookieslaw_banner a { + text-decoration: none; + margin-left: 7px; + cursor: pointer; +} +.lgcookieslaw_container { + padding-top: 15px; + display: block; +} +.lgcookieslaw_message { + display: block; + width: 80%; + float: left; +} +.lgcookieslaw_button_container { + display: block; + width: 20%; + float: left; +} +.lgcookieslaw_button_container div:first-child { + display: block; + width: 50%; + text-align: right; + float: left; +} +.lgcookieslaw_button_container div:last-child { + display: block; + width: 50%; + text-align: left; + float: left; +} +#lgcookieslaw_accept { + display: block; + text-align: center; + width: 100%; + line-height: 50px; + cursor: pointer; + font-size: 1.143rem; + text-transform: uppercase; +} + +@media only screen and (max-width: 600px) { + .lgcookieslaw_container { + padding-top: 15px; + display: block; + } + .lgcookieslaw_message { + display: block; + width: 100%; + float:left; + margin-bottom: 15px; + } + .lgcookieslaw_button_container { + display: block; + width: 100%; + float: left; + } + .lgcookieslaw_button_container div:first-child { + display: block; + width: 50%; + text-align: right; + float: left; + } + .lgcookieslaw_button_container div:last-child { + display: block; + width: 50%; + text-align: left; + float: left; + } +} + +#lgcookieslaw-modal { + background: #fff; +} +.lgcookieslaw-modal-body { + padding: 15px; + display: block; + position: relative; + overflow: auto; + border-top: 4px solid #8BC954; +} +.lgcookieslaw-section { + padding: 15px; + display: block; + float: left; + width: 100%; + border: 1px solid #e4e3e3; + margin-bottom: 15px; + border-radius: 2px; + -webkit-box-shadow: 0 0 10px rgba(0,0,0,.1); +} + +.lgcookieslaw-section-name { + display: block; + float: left; + width: 80%; + font-weight: bold; + padding: 10px 15px; +} + +.lgcookieslaw-section-description { + display: block; + float: left; + width: 100%; + padding: 10px 15px; +} + +.lgcookieslaw-section-checkbox { + display: block; + float: left; + width: 20%; + text-align: right; + padding-right:25px; +} + +.lgcookieslaw-modal-footer { + display: block; + width: 100%; + position: relative; + bottom: 0px; + border: 0px; + border-top: 1px solid #e4e3e3; + padding: 15px; + overflow: auto; +} + +.lgcookieslaw-section-description ul li { + color: #5c5c5c; + position: relative; + width: 100%; + display: inline-block; + z-index: 1; + margin: 6px 0; + line-height: 1em; +} + +.lgcookieslaw-section-description ul li:before { + /*font-family: ff_icons,Helvetica,Arial,sans-serif;*/ + content: "\2714"; + color: #8BC954; + font-size: 1em; + position: absolute; + top: 0px; + left: -18px; + z-index: 2; + width: 12px; + height: 12px; +} + +.lgcookieslaw_switch { + position: relative; + display: inline-block; + width: 60px; + height: 34px; +} + +.lgcookieslaw_slider_option_left, .lgcookieslaw_slider_option_right { + position: absolute; + display: inline-block; + line-height: 34px; + font-weight: bold; +} + +.lgcookieslaw_slider_option_left { + left: -35px +} + +.lgcookieslaw_slider_option_right { + left: 70px; +} + +.lgcookieslaw_switch input { + opacity: 0!important; + width: 0!important; + height: 0!important; +} + +.lgcookieslaw_switch div.checker, .lgcookieslaw_switch div.checker span, .lgcookieslaw_switch div.checker input { + width: 0!important; + height: 0!important; +} + +.lgcookieslaw_slider { + position: absolute; + cursor: pointer; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: #ccc; + -webkit-transition: .4s; + transition: .4s; +} + +.lgcookieslaw_slider:before { + position: absolute; + content: ""; + height: 26px; + width: 26px; + left: 4px; + bottom: 4px; + background-color: white; + -webkit-transition: .4s; + transition: .4s; +} + +input:checked + .lgcookieslaw_slider { + background-color: #8BC954; +} + +input:focus + .lgcookieslaw_slider { + box-shadow: 0 0 1px #8BC954; +} + +/* +input:checked + .lgcookieslaw_slider_disabled { + background-color: #CCCCCC!important; +} +*/ + +input:checked + .lgcookieslaw_slider:before, .lgcookieslaw_slider_checked:before { + -webkit-transform: translateX(26px); + -ms-transform: translateX(26px); + transform: translateX(26px); +} + +.lgcookieslaw_slider.round { + border-radius: 34px; +} + +.lgcookieslaw_slider.round:before { + border-radius: 50%; +} + +.lgcookieslaw-modal-footer-left { + width: 50%; + float: left; + text-align: left; + overflow: auto; +} + +.lgcookieslaw-modal-footer-right { + width: 50%; + float: left; + text-align: right; + overflow: auto; +} +#lgcookieslaw-close { + cursor: pointer; + background: none; +} + +#lgcookieslaw-save { + color: #fff; + background: #8BC954; +} + +@media only screen and (max-width: 600px) { + .lgcookieslaw-modal-footer-left { + width: 100%; + float: right; + text-align: center; + } + .lgcookieslaw-modal-footer-right { + width: 100%; + float: left; + text-align: center; + } + .lgcookieslaw-section-name { + width: 50%; + } + .lgcookieslaw-section-checkbox { + width: 50%; + } +} \ No newline at end of file diff --git a/modules/lgcookieslaw/views/css/index.php b/modules/lgcookieslaw/views/css/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/views/css/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/views/css/lgcookieslaw.css b/modules/lgcookieslaw/views/css/lgcookieslaw.css new file mode 100644 index 00000000..4ba97f09 --- /dev/null +++ b/modules/lgcookieslaw/views/css/lgcookieslaw.css @@ -0,0 +1,50 @@ +.lgcookieslaw_banner { + background-color: rgba(117,179,0,0.8); + border-color: 117,179,0,0.8; + border-left: 1px solid 117,179,0,0.8; + border-right: 1px solid 117,179,0,0.8; + color: #FFFFFF !important; + -webkit-box-shadow: 0px 1px 5px 0px #707070; + -moz-box-shadow: 0px 1px 5px 0px #707070; + box-shadow: 0px 1px 5px 0px #707070; + + bottom:0; + +} +#lgcookieslaw_banner a { + color: #FFFFFF !important; + border-bottom: 1px solid #FFFFFF; +} +.lgcookieslaw-modal-body { + border-top: 4px solid #8BC954; +} +.lgcookieslaw_banner .lgcookieslaw_btn { + border-color: #8BC954 !important; + background: #8BC954 !important; + color: #FFFFFF !important; +} +.lgcookieslaw_banner a.lgcookieslaw_btn { + border-color: ; + background: ; + color: !important; +} +.lgcookieslaw_banner a:hover.lgcookieslaw_btn { + border-color: ; + background: ; + color: !important; +} +/* New module*/ + +.lgcookieslaw-section-description ul li:before { + color: #8BC954!important; +} +input:checked + .lgcookieslaw_slider, .lgcookieslaw_slider_checked { + background-color: #8BC954!important; +} +input:focus + .lgcookieslaw_slider, .lgcookieslaw_slider_checked { + box-shadow: 0 0 1px #8BC954!important; +} +#lgcookieslaw-save { + background: #8BC954!important; +} + diff --git a/modules/lgcookieslaw/views/css/publi/index.php b/modules/lgcookieslaw/views/css/publi/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/views/css/publi/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/views/css/publi/lgpubli.css b/modules/lgcookieslaw/views/css/publi/lgpubli.css new file mode 100644 index 00000000..a9e0acdc --- /dev/null +++ b/modules/lgcookieslaw/views/css/publi/lgpubli.css @@ -0,0 +1,208 @@ +.lg-block { + position: relative; + padding: 20px; + margin-bottom: 20px; + border: solid 1px #d3d8db; + background-color: #fff; + -webkit-border-radius: 5px; + border-radius: 5px; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); + box-sizing: border-box; + font: 400 12px/1.42857 "Open Sans", Helvetica, Arial, sans-serif; + color: #555; + display: inline-block; + width: 100%; +} +.lg-block a:focus { + text-decoration: none; + outline: none; +} +.lg-block .lg-block-icon { + display: inline-block; + margin-right: 20px; +} +.lg-block .lg-block-icon a { + display: inline-block; +} +.lg-block .lg-block-icon a * { + display: block; +} +.lg-block .lg-block-icon a img { + margin: 0 auto; +} +.lg-block .lg-block-icon a .text { + text-transform: uppercase; + margin-top: 5px; + font-weight: bold; + text-align: center; + font-size: 11px; +} +.lg-block .lg-block-icon a.readme { + color: #8BCDD1; +} +.lg-block .lg-block-icon a.support { + color: #EF5D5A; +} +.lg-block .lg-block-icon a.faq { + color: #D7A9E4; +} +.lg-block .lg-block-icon a.opinion { + color: #FFC13D; +} +.lg-block .lg-block-icon a.see-modules { + color: #91C157; +} +.lg-block .lg-block-icon.right { + vertical-align: middle; + margin: 0 0 0 20px; + padding-left: 20px; + border-left: 1px solid #CCC; +} +.lg-block-company { + border-bottom: 1px solid #CCC; + margin-bottom: 25px; + padding: 10px 10px 25px 10px; +} +.lg-block-company span { + display: block; + font-weight: bold; + margin-bottom: 10px; +} +.lg-block-partner { + width: 60%; + display: inline-block; +} +.lg-block-partner span { + width: 115px; + margin: 20px 0 0 13px; + position: absolute; +} +.lg-block-creator { + width: 35%; + display: inline-block; +} +.lg-block-creator span { + width: 115px; + margin: 14px 0 0 13px; + position: absolute; +} +.lg-module-block { + border: 1px solid #CCC; + padding: 10px; + position: relative; +} +.lg-module-block a, +.lg-module-block a:hover, +.lg-module-block a:focus { + text-decoration: none; + color: #333333; + outline: none; +} +.lg-module-block .lg-title { + position: relative; +} +.lg-module-block .lg-module-name { + font-family: "Montserrat", Helvetica, Verdana, sans-serif; + font-weight: 400; + color: #251b5b; + margin: 0; + padding-left: 15px; + display: inline-block; + position: absolute; + font-size: 14px; + overflow: hidden; + height: 57px; +} +.lg-module-block .lg-description { + margin-top: 10px; + padding-bottom: 10px; + border-bottom: 1px solid #CCC; + height: 80px; + overflow: hidden; +} +.lg-module-block .lg-rating { + padding: 12px 0; + text-align: center; + font-size: 12px; + font-weight: 900; +} +.lg-module-block .lg-rating img { + margin-left: 7px; +} +.lg-module-block .lg-button span { + padding: 8px; + text-transform: uppercase; + color: #FFFFFF; + text-align: center; + font-weight: 700; + background: #251B5B; + display: block; + font-size: 11px; + transition: background .2s ease-out; + -moz-transition: background .2s ease-out; + -webkit-transition: background .2s ease-out; + -o-transition: background .2s ease-out; +} +.lg-module-block:hover .lg-button span, +.lg-module-block a:hover .lg-button span { + background: #DF0067; +} +.lg-background-image { + background: url('../../img/publi/ico_see_modules_big.png') no-repeat; + margin-left: -16px; + height: 175px; + margin-top: 33px; + position: relative; +} +.lg-vertical-text { + display: block; + position: absolute; + left: -47px; + top: 70px; + text-transform: uppercase; + font-size: 12px; + font-weight: 900; + width: 140px; + text-align: center; + -webkit-transform: rotate(90deg); + -moz-transform: rotate(90deg); + -ms-transform: rotate(90deg); + -o-transform: rotate(90deg); + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} +.lg-vertical-text a { + color: #FFFFFF; +} +.lg-vertical-text a:hover, +.lg-vertical-text a:focus { + color: #FFFFFF; + text-decoration: underline; +} +@media(max-width: 1600px) { + .lg-block-partner, + .lg-block-creator { + display: inline-block; + text-align: center; + } + .lg-block-creator { + margin-top: 20px; + } + .lg-block-partner img { + width: 8em; + } + .lg-block-creator img { + width: 3em; + } + .lg-block-creator span, + .lg-block-partner span { + margin: 10px auto 0 auto; + position: relative; + display: block; + } +} +@media(max-width: 1200px) { + .lg-block-partner, + .lg-block-creator { + margin-bottom: 20px; + } +} \ No newline at end of file diff --git a/modules/lgcookieslaw/views/css/publi/style.css b/modules/lgcookieslaw/views/css/publi/style.css new file mode 100644 index 00000000..0b96d82d --- /dev/null +++ b/modules/lgcookieslaw/views/css/publi/style.css @@ -0,0 +1,79 @@ +#banner-lg.panel { + border: 1px solid #e6e6e6; + border-collapse: separate; + border-radius: 3px; + box-shadow: 0 2px rgba(0, 0, 0, 0.1), 0 0 0 3px #fff inset; + margin: 0 auto; + padding: 20px; + width: auto; +} +a{ + text-decoration:none; +} +.enlaceverde{ + color:#67aa1c; +} +.enlacenegro{ + color:#000000; +} + + +#logo{ + width:16%; + text-align:center; +} +#titulo{ + width:16%; + font-size:10px; + color:#67aa1c; + font-family:arial; + font-weight:bold; + text-align:center; +} +.logos{ + width:5%; + height:60px; + text-align:center; +} +.modulos{ + width:6%; + height:60px; + font-size:9px; + font-family:arial; +} +#boton{ + width:7%; + text-align:center; + +} +#opinion, #video, #guia, #soporte{ + width:6%; + text-align:center; +} + +#iframe{ + width:100%; + height:60px; + position:absolute; + top:0; + left:0; +} + +@media screen and (max-width: 800px) { + #titulo, .logos, .modulos, #boton, #logo { + display:none; + } +} + +form.lgcookieslaw .prestashop-switch label { + width: 50% !important; +} + +form.lgcookieslaw .btn.btn-default:hover { + background: #00aff0 repeat scroll 0 0; + border-color: #008abd; + box-shadow: none; + text-shadow: none; + color: #ffffff; +} + diff --git a/modules/lgcookieslaw/views/fonts/FontAwesome.otf b/modules/lgcookieslaw/views/fonts/FontAwesome.otf new file mode 100644 index 00000000..3461e3fc Binary files /dev/null and b/modules/lgcookieslaw/views/fonts/FontAwesome.otf differ diff --git a/modules/lgcookieslaw/views/fonts/fontawesome-webfont.eot b/modules/lgcookieslaw/views/fonts/fontawesome-webfont.eot new file mode 100644 index 00000000..6cfd5660 Binary files /dev/null and b/modules/lgcookieslaw/views/fonts/fontawesome-webfont.eot differ diff --git a/modules/lgcookieslaw/views/fonts/fontawesome-webfont.svg b/modules/lgcookieslaw/views/fonts/fontawesome-webfont.svg new file mode 100644 index 00000000..a9f84695 --- /dev/null +++ b/modules/lgcookieslaw/views/fonts/fontawesome-webfont.svg @@ -0,0 +1,504 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/lgcookieslaw/views/fonts/fontawesome-webfont.ttf b/modules/lgcookieslaw/views/fonts/fontawesome-webfont.ttf new file mode 100644 index 00000000..5cd6cff6 Binary files /dev/null and b/modules/lgcookieslaw/views/fonts/fontawesome-webfont.ttf differ diff --git a/modules/lgcookieslaw/views/fonts/fontawesome-webfont.woff b/modules/lgcookieslaw/views/fonts/fontawesome-webfont.woff new file mode 100644 index 00000000..9eaecb37 Binary files /dev/null and b/modules/lgcookieslaw/views/fonts/fontawesome-webfont.woff differ diff --git a/modules/lgcookieslaw/views/fonts/glyphicons-halflings-regular.eot b/modules/lgcookieslaw/views/fonts/glyphicons-halflings-regular.eot new file mode 100644 index 00000000..b93a4953 Binary files /dev/null and b/modules/lgcookieslaw/views/fonts/glyphicons-halflings-regular.eot differ diff --git a/modules/lgcookieslaw/views/fonts/glyphicons-halflings-regular.svg b/modules/lgcookieslaw/views/fonts/glyphicons-halflings-regular.svg new file mode 100644 index 00000000..94fb5490 --- /dev/null +++ b/modules/lgcookieslaw/views/fonts/glyphicons-halflings-regular.svg @@ -0,0 +1,288 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/lgcookieslaw/views/fonts/glyphicons-halflings-regular.ttf b/modules/lgcookieslaw/views/fonts/glyphicons-halflings-regular.ttf new file mode 100644 index 00000000..1413fc60 Binary files /dev/null and b/modules/lgcookieslaw/views/fonts/glyphicons-halflings-regular.ttf differ diff --git a/modules/lgcookieslaw/views/fonts/glyphicons-halflings-regular.woff b/modules/lgcookieslaw/views/fonts/glyphicons-halflings-regular.woff new file mode 100644 index 00000000..9e612858 Binary files /dev/null and b/modules/lgcookieslaw/views/fonts/glyphicons-halflings-regular.woff differ diff --git a/modules/lgcookieslaw/views/fonts/glyphicons-halflings-regular.woff2 b/modules/lgcookieslaw/views/fonts/glyphicons-halflings-regular.woff2 new file mode 100644 index 00000000..64539b54 Binary files /dev/null and b/modules/lgcookieslaw/views/fonts/glyphicons-halflings-regular.woff2 differ diff --git a/modules/lgcookieslaw/views/fonts/index.php b/modules/lgcookieslaw/views/fonts/index.php new file mode 100644 index 00000000..dab9caa9 --- /dev/null +++ b/modules/lgcookieslaw/views/fonts/index.php @@ -0,0 +1,34 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/views/img/account_button_icon_15.png b/modules/lgcookieslaw/views/img/account_button_icon_15.png new file mode 100644 index 00000000..17a2de31 Binary files /dev/null and b/modules/lgcookieslaw/views/img/account_button_icon_15.png differ diff --git a/modules/lgcookieslaw/views/img/account_button_icon_16.png b/modules/lgcookieslaw/views/img/account_button_icon_16.png new file mode 100644 index 00000000..ce544063 Binary files /dev/null and b/modules/lgcookieslaw/views/img/account_button_icon_16.png differ diff --git a/modules/lgcookieslaw/views/img/account_button_icon_17.png b/modules/lgcookieslaw/views/img/account_button_icon_17.png new file mode 100644 index 00000000..f050cbc7 Binary files /dev/null and b/modules/lgcookieslaw/views/img/account_button_icon_17.png differ diff --git a/modules/lgcookieslaw/views/img/arrow.gif b/modules/lgcookieslaw/views/img/arrow.gif new file mode 100644 index 00000000..246478a8 Binary files /dev/null and b/modules/lgcookieslaw/views/img/arrow.gif differ diff --git a/modules/lgcookieslaw/views/img/close.png b/modules/lgcookieslaw/views/img/close.png new file mode 100644 index 00000000..aad0deb4 Binary files /dev/null and b/modules/lgcookieslaw/views/img/close.png differ diff --git a/modules/lgcookieslaw/views/img/cross.gif b/modules/lgcookieslaw/views/img/cross.gif new file mode 100644 index 00000000..0ee9c7ac Binary files /dev/null and b/modules/lgcookieslaw/views/img/cross.gif differ diff --git a/modules/lgcookieslaw/views/img/hs.png b/modules/lgcookieslaw/views/img/hs.png new file mode 100644 index 00000000..3d94486c Binary files /dev/null and b/modules/lgcookieslaw/views/img/hs.png differ diff --git a/modules/lgcookieslaw/views/img/hv.png b/modules/lgcookieslaw/views/img/hv.png new file mode 100644 index 00000000..1c5e01f8 Binary files /dev/null and b/modules/lgcookieslaw/views/img/hv.png differ diff --git a/modules/lgcookieslaw/views/img/important.png b/modules/lgcookieslaw/views/img/important.png new file mode 100644 index 00000000..7f75cefd Binary files /dev/null and b/modules/lgcookieslaw/views/img/important.png differ diff --git a/modules/lgcookieslaw/views/img/index.php b/modules/lgcookieslaw/views/img/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/views/img/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/views/img/info.png b/modules/lgcookieslaw/views/img/info.png new file mode 100644 index 00000000..f07650c3 Binary files /dev/null and b/modules/lgcookieslaw/views/img/info.png differ diff --git a/modules/lgcookieslaw/views/img/publi/en/img/all.png b/modules/lgcookieslaw/views/img/publi/en/img/all.png new file mode 100644 index 00000000..d61dcffc Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/en/img/all.png differ diff --git a/modules/lgcookieslaw/views/img/publi/en/img/help.png b/modules/lgcookieslaw/views/img/publi/en/img/help.png new file mode 100644 index 00000000..dec55ba1 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/en/img/help.png differ diff --git a/modules/lgcookieslaw/views/img/publi/en/img/index.php b/modules/lgcookieslaw/views/img/publi/en/img/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/views/img/publi/en/img/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/views/img/publi/en/img/logo.jpg b/modules/lgcookieslaw/views/img/publi/en/img/logo.jpg new file mode 100644 index 00000000..a520d89a Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/en/img/logo.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/en/img/opinion.jpg b/modules/lgcookieslaw/views/img/publi/en/img/opinion.jpg new file mode 100644 index 00000000..88937860 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/en/img/opinion.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/en/img/rateus.png b/modules/lgcookieslaw/views/img/publi/en/img/rateus.png new file mode 100644 index 00000000..6339ccbe Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/en/img/rateus.png differ diff --git a/modules/lgcookieslaw/views/img/publi/en/img/redirect.jpg b/modules/lgcookieslaw/views/img/publi/en/img/redirect.jpg new file mode 100644 index 00000000..56d59f87 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/en/img/redirect.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/en/img/sorting.jpg b/modules/lgcookieslaw/views/img/publi/en/img/sorting.jpg new file mode 100644 index 00000000..350af85d Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/en/img/sorting.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/en/img/support.png b/modules/lgcookieslaw/views/img/publi/en/img/support.png new file mode 100644 index 00000000..c2d9b531 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/en/img/support.png differ diff --git a/modules/lgcookieslaw/views/img/publi/en/img/video.png b/modules/lgcookieslaw/views/img/publi/en/img/video.png new file mode 100644 index 00000000..63d4d4a8 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/en/img/video.png differ diff --git a/modules/lgcookieslaw/views/img/publi/en/index.php b/modules/lgcookieslaw/views/img/publi/en/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/views/img/publi/en/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/views/img/publi/es/img/all.png b/modules/lgcookieslaw/views/img/publi/es/img/all.png new file mode 100644 index 00000000..b6e12171 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/es/img/all.png differ diff --git a/modules/lgcookieslaw/views/img/publi/es/img/help.png b/modules/lgcookieslaw/views/img/publi/es/img/help.png new file mode 100644 index 00000000..ff7052a9 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/es/img/help.png differ diff --git a/modules/lgcookieslaw/views/img/publi/es/img/index.php b/modules/lgcookieslaw/views/img/publi/es/img/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/views/img/publi/es/img/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/views/img/publi/es/img/logo.jpg b/modules/lgcookieslaw/views/img/publi/es/img/logo.jpg new file mode 100644 index 00000000..a520d89a Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/es/img/logo.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/es/img/opinion.jpg b/modules/lgcookieslaw/views/img/publi/es/img/opinion.jpg new file mode 100644 index 00000000..88937860 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/es/img/opinion.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/es/img/rateus.png b/modules/lgcookieslaw/views/img/publi/es/img/rateus.png new file mode 100644 index 00000000..5b35e398 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/es/img/rateus.png differ diff --git a/modules/lgcookieslaw/views/img/publi/es/img/redirect.jpg b/modules/lgcookieslaw/views/img/publi/es/img/redirect.jpg new file mode 100644 index 00000000..56d59f87 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/es/img/redirect.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/es/img/sorting.jpg b/modules/lgcookieslaw/views/img/publi/es/img/sorting.jpg new file mode 100644 index 00000000..350af85d Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/es/img/sorting.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/es/img/support.png b/modules/lgcookieslaw/views/img/publi/es/img/support.png new file mode 100644 index 00000000..0ffc33fb Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/es/img/support.png differ diff --git a/modules/lgcookieslaw/views/img/publi/es/img/video.png b/modules/lgcookieslaw/views/img/publi/es/img/video.png new file mode 100644 index 00000000..63d4d4a8 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/es/img/video.png differ diff --git a/modules/lgcookieslaw/views/img/publi/es/index.php b/modules/lgcookieslaw/views/img/publi/es/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/views/img/publi/es/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/views/img/publi/fr/img/all.png b/modules/lgcookieslaw/views/img/publi/fr/img/all.png new file mode 100644 index 00000000..01a8dc45 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/fr/img/all.png differ diff --git a/modules/lgcookieslaw/views/img/publi/fr/img/help.png b/modules/lgcookieslaw/views/img/publi/fr/img/help.png new file mode 100644 index 00000000..12d5eb12 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/fr/img/help.png differ diff --git a/modules/lgcookieslaw/views/img/publi/fr/img/index.php b/modules/lgcookieslaw/views/img/publi/fr/img/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/views/img/publi/fr/img/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/views/img/publi/fr/img/logo.jpg b/modules/lgcookieslaw/views/img/publi/fr/img/logo.jpg new file mode 100644 index 00000000..a520d89a Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/fr/img/logo.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/fr/img/opinion.jpg b/modules/lgcookieslaw/views/img/publi/fr/img/opinion.jpg new file mode 100644 index 00000000..88937860 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/fr/img/opinion.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/fr/img/rateus.png b/modules/lgcookieslaw/views/img/publi/fr/img/rateus.png new file mode 100644 index 00000000..95051529 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/fr/img/rateus.png differ diff --git a/modules/lgcookieslaw/views/img/publi/fr/img/redirect.jpg b/modules/lgcookieslaw/views/img/publi/fr/img/redirect.jpg new file mode 100644 index 00000000..56d59f87 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/fr/img/redirect.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/fr/img/sorting.jpg b/modules/lgcookieslaw/views/img/publi/fr/img/sorting.jpg new file mode 100644 index 00000000..350af85d Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/fr/img/sorting.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/fr/img/support.png b/modules/lgcookieslaw/views/img/publi/fr/img/support.png new file mode 100644 index 00000000..6906a3d2 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/fr/img/support.png differ diff --git a/modules/lgcookieslaw/views/img/publi/fr/img/video.png b/modules/lgcookieslaw/views/img/publi/fr/img/video.png new file mode 100644 index 00000000..eac399f9 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/fr/img/video.png differ diff --git a/modules/lgcookieslaw/views/img/publi/fr/index.php b/modules/lgcookieslaw/views/img/publi/fr/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/views/img/publi/fr/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/views/img/publi/ico_creator.png b/modules/lgcookieslaw/views/img/publi/ico_creator.png new file mode 100644 index 00000000..d0c964fa Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/ico_creator.png differ diff --git a/modules/lgcookieslaw/views/img/publi/ico_faq.png b/modules/lgcookieslaw/views/img/publi/ico_faq.png new file mode 100644 index 00000000..1eb27984 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/ico_faq.png differ diff --git a/modules/lgcookieslaw/views/img/publi/ico_lgcomment.jpg b/modules/lgcookieslaw/views/img/publi/ico_lgcomment.jpg new file mode 100644 index 00000000..0f479b6a Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/ico_lgcomment.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/ico_lgregenerate.jpg b/modules/lgcookieslaw/views/img/publi/ico_lgregenerate.jpg new file mode 100644 index 00000000..b0184a19 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/ico_lgregenerate.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/ico_lgsitemap.jpg b/modules/lgcookieslaw/views/img/publi/ico_lgsitemap.jpg new file mode 100644 index 00000000..527eeccf Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/ico_lgsitemap.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/ico_opinion.png b/modules/lgcookieslaw/views/img/publi/ico_opinion.png new file mode 100644 index 00000000..2d678a0f Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/ico_opinion.png differ diff --git a/modules/lgcookieslaw/views/img/publi/ico_partners.png b/modules/lgcookieslaw/views/img/publi/ico_partners.png new file mode 100644 index 00000000..1d5fd1e6 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/ico_partners.png differ diff --git a/modules/lgcookieslaw/views/img/publi/ico_readme.png b/modules/lgcookieslaw/views/img/publi/ico_readme.png new file mode 100644 index 00000000..30e96d31 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/ico_readme.png differ diff --git a/modules/lgcookieslaw/views/img/publi/ico_see_modules.png b/modules/lgcookieslaw/views/img/publi/ico_see_modules.png new file mode 100644 index 00000000..aa71b493 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/ico_see_modules.png differ diff --git a/modules/lgcookieslaw/views/img/publi/ico_see_modules_big.png b/modules/lgcookieslaw/views/img/publi/ico_see_modules_big.png new file mode 100644 index 00000000..0d0d0925 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/ico_see_modules_big.png differ diff --git a/modules/lgcookieslaw/views/img/publi/ico_support.png b/modules/lgcookieslaw/views/img/publi/ico_support.png new file mode 100644 index 00000000..651c7e02 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/ico_support.png differ diff --git a/modules/lgcookieslaw/views/img/publi/index.php b/modules/lgcookieslaw/views/img/publi/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/views/img/publi/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/views/img/publi/it/img/all.png b/modules/lgcookieslaw/views/img/publi/it/img/all.png new file mode 100644 index 00000000..614ee2d1 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/it/img/all.png differ diff --git a/modules/lgcookieslaw/views/img/publi/it/img/help.png b/modules/lgcookieslaw/views/img/publi/it/img/help.png new file mode 100644 index 00000000..26641a4a Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/it/img/help.png differ diff --git a/modules/lgcookieslaw/views/img/publi/it/img/index.php b/modules/lgcookieslaw/views/img/publi/it/img/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/views/img/publi/it/img/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/views/img/publi/it/img/logo.jpg b/modules/lgcookieslaw/views/img/publi/it/img/logo.jpg new file mode 100644 index 00000000..a520d89a Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/it/img/logo.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/it/img/opinion.jpg b/modules/lgcookieslaw/views/img/publi/it/img/opinion.jpg new file mode 100644 index 00000000..88937860 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/it/img/opinion.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/it/img/rateus.png b/modules/lgcookieslaw/views/img/publi/it/img/rateus.png new file mode 100644 index 00000000..c491a552 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/it/img/rateus.png differ diff --git a/modules/lgcookieslaw/views/img/publi/it/img/redirect.jpg b/modules/lgcookieslaw/views/img/publi/it/img/redirect.jpg new file mode 100644 index 00000000..56d59f87 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/it/img/redirect.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/it/img/sorting.jpg b/modules/lgcookieslaw/views/img/publi/it/img/sorting.jpg new file mode 100644 index 00000000..350af85d Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/it/img/sorting.jpg differ diff --git a/modules/lgcookieslaw/views/img/publi/it/img/support.png b/modules/lgcookieslaw/views/img/publi/it/img/support.png new file mode 100644 index 00000000..a45c4047 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/it/img/support.png differ diff --git a/modules/lgcookieslaw/views/img/publi/it/img/video.png b/modules/lgcookieslaw/views/img/publi/it/img/video.png new file mode 100644 index 00000000..63d4d4a8 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/it/img/video.png differ diff --git a/modules/lgcookieslaw/views/img/publi/it/index.php b/modules/lgcookieslaw/views/img/publi/it/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/views/img/publi/it/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/views/img/publi/logo_lgaddons.png b/modules/lgcookieslaw/views/img/publi/logo_lgaddons.png new file mode 100644 index 00000000..175d9e7e Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/logo_lgaddons.png differ diff --git a/modules/lgcookieslaw/views/img/publi/stars_10_peq.png b/modules/lgcookieslaw/views/img/publi/stars_10_peq.png new file mode 100644 index 00000000..cf0a4337 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/stars_10_peq.png differ diff --git a/modules/lgcookieslaw/views/img/publi/stars_9_peq.png b/modules/lgcookieslaw/views/img/publi/stars_9_peq.png new file mode 100644 index 00000000..b36478b1 Binary files /dev/null and b/modules/lgcookieslaw/views/img/publi/stars_9_peq.png differ diff --git a/modules/lgcookieslaw/views/index.php b/modules/lgcookieslaw/views/index.php new file mode 100644 index 00000000..a85fb997 --- /dev/null +++ b/modules/lgcookieslaw/views/index.php @@ -0,0 +1,36 @@ + +* @copyright 2007-2012 PrestaShop SA +* @version Release: $Revision: 14011 $ +* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) +* International Registered Trademark & Property of PrestaShop SA +*/ + +header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); +header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); + +header("Cache-Control: no-store, no-cache, must-revalidate"); +header("Cache-Control: post-check=0, pre-check=0", false); +header("Pragma: no-cache"); + +header("Location: ../"); +exit; \ No newline at end of file diff --git a/modules/lgcookieslaw/views/js/admin15.js b/modules/lgcookieslaw/views/js/admin15.js new file mode 100644 index 00000000..f102b9da --- /dev/null +++ b/modules/lgcookieslaw/views/js/admin15.js @@ -0,0 +1,32 @@ +/** + * Please read the terms of the CLUF license attached to this module(cf "licences" folder) + * + * @author Línea Gráfica E.C.E. S.L. + * @copyright Lineagrafica.es - Línea Gráfica E.C.E. S.L. all rights reserved. + * @license https://www.lineagrafica.es/licenses/license_en.pdf + * https://www.lineagrafica.es/licenses/license_es.pdf + * https://www.lineagrafica.es/licenses/license_fr.pdf + */ + +$(document).ready(function(){ + $('#content').addClass('bootstrap'); + $('.nav li a').click(function(){ + $('.nav li').removeClass('active'); + $('.tab-pane').removeClass('active'); + $($(this).attr('href')).addClass('active'); + $(this).closest('li').addClass('active'); + return false; + }); + $('.lang-btn').click(function(){ + $(this).closest('div').addClass('open') + }); +}); +function hideOtherLanguage(id) +{ + $('.translatable-field').hide(); + $('.lang-' + id).show(); + + var id_old_language = id_language; + id_language = id; + +} diff --git a/modules/lgcookieslaw/views/js/bootstrap.js b/modules/lgcookieslaw/views/js/bootstrap.js new file mode 100644 index 00000000..6eeb15ce --- /dev/null +++ b/modules/lgcookieslaw/views/js/bootstrap.js @@ -0,0 +1,6 @@ +/*! +* Bootstrap.js by @fat & @mdo +* Copyright 2012 Twitter, Inc. +* http://www.apache.org/licenses/LICENSE-2.0.txt +*/ +!function($){"use strict";$(function(){$.support.transition=function(){var transitionEnd=function(){var name,el=document.createElement("bootstrap"),transEndEventNames={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(name in transEndEventNames)if(void 0!==el.style[name])return transEndEventNames[name]}();return transitionEnd&&{end:transitionEnd}}()})}(window.jQuery),!function($){"use strict";var dismiss='[data-dismiss="alert"]',Alert=function(el){$(el).on("click",dismiss,this.close)};Alert.prototype.close=function(e){function removeElement(){$parent.trigger("closed").remove()}var $parent,$this=$(this),selector=$this.attr("data-target");selector||(selector=$this.attr("href"),selector=selector&&selector.replace(/.*(?=#[^\s]*$)/,"")),$parent=$(selector),e&&e.preventDefault(),$parent.length||($parent=$this.hasClass("alert")?$this:$this.parent()),$parent.trigger(e=$.Event("close")),e.isDefaultPrevented()||($parent.removeClass("in"),$.support.transition&&$parent.hasClass("fade")?$parent.on($.support.transition.end,removeElement):removeElement())};var old=$.fn.alert;$.fn.alert=function(option){return this.each(function(){var $this=$(this),data=$this.data("alert");data||$this.data("alert",data=new Alert(this)),"string"==typeof option&&data[option].call($this)})},$.fn.alert.Constructor=Alert,$.fn.alert.noConflict=function(){return $.fn.alert=old,this},$(document).on("click.alert.data-api",dismiss,Alert.prototype.close)}(window.jQuery),!function($){"use strict";var Button=function(element,options){this.$element=$(element),this.options=$.extend({},$.fn.button.defaults,options)};Button.prototype.setState=function(state){var d="disabled",$el=this.$element,data=$el.data(),val=$el.is("input")?"val":"html";state+="Text",data.resetText||$el.data("resetText",$el[val]()),$el[val](data[state]||this.options[state]),setTimeout(function(){"loadingText"==state?$el.addClass(d).attr(d,d):$el.removeClass(d).removeAttr(d)},0)},Button.prototype.toggle=function(){var $parent=this.$element.closest('[data-toggle="buttons-radio"]');$parent&&$parent.find(".active").removeClass("active"),this.$element.toggleClass("active")};var old=$.fn.button;$.fn.button=function(option){return this.each(function(){var $this=$(this),data=$this.data("button"),options="object"==typeof option&&option;data||$this.data("button",data=new Button(this,options)),"toggle"==option?data.toggle():option&&data.setState(option)})},$.fn.button.defaults={loadingText:"loading..."},$.fn.button.Constructor=Button,$.fn.button.noConflict=function(){return $.fn.button=old,this},$(document).on("click.button.data-api","[data-toggle^=button]",function(e){var $btn=$(e.target);$btn.hasClass("btn")||($btn=$btn.closest(".btn")),$btn.button("toggle")})}(window.jQuery),!function($){"use strict";var Carousel=function(element,options){this.$element=$(element),this.options=options,"hover"==this.options.pause&&this.$element.on("mouseenter",$.proxy(this.pause,this)).on("mouseleave",$.proxy(this.cycle,this))};Carousel.prototype={cycle:function(e){return e||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval($.proxy(this.next,this),this.options.interval)),this},to:function(pos){var $active=this.$element.find(".item.active"),children=$active.parent().children(),activePos=children.index($active),that=this;if(!(pos>children.length-1||0>pos))return this.sliding?this.$element.one("slid",function(){that.to(pos)}):activePos==pos?this.pause().cycle():this.slide(pos>activePos?"next":"prev",$(children[pos]))},pause:function(e){return e||(this.paused=!0),this.$element.find(".next, .prev").length&&$.support.transition.end&&(this.$element.trigger($.support.transition.end),this.cycle()),clearInterval(this.interval),this.interval=null,this},next:function(){return this.sliding?void 0:this.slide("next")},prev:function(){return this.sliding?void 0:this.slide("prev")},slide:function(type,next){var e,$active=this.$element.find(".item.active"),$next=next||$active[type](),isCycling=this.interval,direction="next"==type?"left":"right",fallback="next"==type?"first":"last",that=this;if(this.sliding=!0,isCycling&&this.pause(),$next=$next.length?$next:this.$element.find(".item")[fallback](),e=$.Event("slide",{relatedTarget:$next[0]}),!$next.hasClass("active")){if($.support.transition&&this.$element.hasClass("slide")){if(this.$element.trigger(e),e.isDefaultPrevented())return;$next.addClass(type),$next[0].offsetWidth,$active.addClass(direction),$next.addClass(direction),this.$element.one($.support.transition.end,function(){$next.removeClass([type,direction].join(" ")).addClass("active"),$active.removeClass(["active",direction].join(" ")),that.sliding=!1,setTimeout(function(){that.$element.trigger("slid")},0)})}else{if(this.$element.trigger(e),e.isDefaultPrevented())return;$active.removeClass("active"),$next.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return isCycling&&this.cycle(),this}}};var old=$.fn.carousel;$.fn.carousel=function(option){return this.each(function(){var $this=$(this),data=$this.data("carousel"),options=$.extend({},$.fn.carousel.defaults,"object"==typeof option&&option),action="string"==typeof option?option:options.slide;data||$this.data("carousel",data=new Carousel(this,options)),"number"==typeof option?data.to(option):action?data[action]():options.interval&&data.cycle()})},$.fn.carousel.defaults={interval:5e3,pause:"hover"},$.fn.carousel.Constructor=Carousel,$.fn.carousel.noConflict=function(){return $.fn.carousel=old,this},$(document).on("click.carousel.data-api","[data-slide]",function(e){var href,$this=$(this),$target=$($this.attr("data-target")||(href=$this.attr("href"))&&href.replace(/.*(?=#[^\s]+$)/,"")),options=$.extend({},$target.data(),$this.data());$target.carousel(options),e.preventDefault()})}(window.jQuery),!function($){"use strict";var Collapse=function(element,options){this.$element=$(element),this.options=$.extend({},$.fn.collapse.defaults,options),this.options.parent&&(this.$parent=$(this.options.parent)),this.options.toggle&&this.toggle()};Collapse.prototype={constructor:Collapse,dimension:function(){var hasWidth=this.$element.hasClass("width");return hasWidth?"width":"height"},show:function(){var dimension,scroll,actives,hasData;if(!this.transitioning){if(dimension=this.dimension(),scroll=$.camelCase(["scroll",dimension].join("-")),actives=this.$parent&&this.$parent.find("> .accordion-group > .in"),actives&&actives.length){if(hasData=actives.data("collapse"),hasData&&hasData.transitioning)return;actives.collapse("hide"),hasData||actives.data("collapse",null)}this.$element[dimension](0),this.transition("addClass",$.Event("show"),"shown"),$.support.transition&&this.$element[dimension](this.$element[0][scroll])}},hide:function(){var dimension;this.transitioning||(dimension=this.dimension(),this.reset(this.$element[dimension]()),this.transition("removeClass",$.Event("hide"),"hidden"),this.$element[dimension](0))},reset:function(size){var dimension=this.dimension();return this.$element.removeClass("collapse")[dimension](size||"auto")[0].offsetWidth,this.$element[null!==size?"addClass":"removeClass"]("collapse"),this},transition:function(method,startEvent,completeEvent){var that=this,complete=function(){"show"==startEvent.type&&that.reset(),that.transitioning=0,that.$element.trigger(completeEvent)};this.$element.trigger(startEvent),startEvent.isDefaultPrevented()||(this.transitioning=1,this.$element[method]("in"),$.support.transition&&this.$element.hasClass("collapse")?this.$element.one($.support.transition.end,complete):complete())},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var old=$.fn.collapse;$.fn.collapse=function(option){return this.each(function(){var $this=$(this),data=$this.data("collapse"),options="object"==typeof option&&option;data||$this.data("collapse",data=new Collapse(this,options)),"string"==typeof option&&data[option]()})},$.fn.collapse.defaults={toggle:!0},$.fn.collapse.Constructor=Collapse,$.fn.collapse.noConflict=function(){return $.fn.collapse=old,this},$(document).on("click.collapse.data-api","[data-toggle=collapse]",function(e){var href,$this=$(this),target=$this.attr("data-target")||e.preventDefault()||(href=$this.attr("href"))&&href.replace(/.*(?=#[^\s]+$)/,""),option=$(target).data("collapse")?"toggle":$this.data();$this[$(target).hasClass("in")?"addClass":"removeClass"]("collapsed"),$(target).collapse(option)})}(window.jQuery),!function($){"use strict";function clearMenus(){$(toggle).each(function(){getParent($(this)).removeClass("open")})}function getParent($this){var $parent,selector=$this.attr("data-target");return selector||(selector=$this.attr("href"),selector=selector&&/#/.test(selector)&&selector.replace(/.*(?=#[^\s]*$)/,"")),$parent=$(selector),$parent.length||($parent=$this.parent()),$parent}var toggle="[data-toggle=dropdown]",Dropdown=function(element){var $el=$(element).on("click.dropdown.data-api",this.toggle);$("html").on("click.dropdown.data-api",function(){$el.parent().removeClass("open")})};Dropdown.prototype={constructor:Dropdown,toggle:function(){var $parent,isActive,$this=$(this);if(!$this.is(".disabled, :disabled"))return $parent=getParent($this),isActive=$parent.hasClass("open"),clearMenus(),isActive||$parent.toggleClass("open"),$this.focus(),!1},keydown:function(e){var $this,$items,$parent,isActive,index;if(/(38|40|27)/.test(e.keyCode)&&($this=$(this),e.preventDefault(),e.stopPropagation(),!$this.is(".disabled, :disabled"))){if($parent=getParent($this),isActive=$parent.hasClass("open"),!isActive||isActive&&27==e.keyCode)return $this.click();$items=$("[role=menu] li:not(.divider):visible a",$parent),$items.length&&(index=$items.index($items.filter(":focus")),38==e.keyCode&&index>0&&index--,40==e.keyCode&&$items.length-1>index&&index++,~index||(index=0),$items.eq(index).focus())}}};var old=$.fn.dropdown;$.fn.dropdown=function(option){return this.each(function(){var $this=$(this),data=$this.data("dropdown");data||$this.data("dropdown",data=new Dropdown(this)),"string"==typeof option&&data[option].call($this)})},$.fn.dropdown.Constructor=Dropdown,$.fn.dropdown.noConflict=function(){return $.fn.dropdown=old,this},$(document).on("click.dropdown.data-api touchstart.dropdown.data-api",clearMenus).on("click.dropdown touchstart.dropdown.data-api",".dropdown form",function(e){e.stopPropagation()}).on("touchstart.dropdown.data-api",".dropdown-menu",function(e){e.stopPropagation()}).on("click.dropdown.data-api touchstart.dropdown.data-api",toggle,Dropdown.prototype.toggle).on("keydown.dropdown.data-api touchstart.dropdown.data-api",toggle+", [role=menu]",Dropdown.prototype.keydown)}(window.jQuery),!function($){"use strict";var Modal=function(element,options){this.options=options,this.$element=$(element).delegate('[data-dismiss="modal"]',"click.dismiss.modal",$.proxy(this.hide,this)),this.options.remote&&this.$element.find(".modal-body").load(this.options.remote)};Modal.prototype={constructor:Modal,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var that=this,e=$.Event("show");this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.escape(),this.backdrop(function(){var transition=$.support.transition&&that.$element.hasClass("fade");that.$element.parent().length||that.$element.appendTo(document.body),that.$element.show(),transition&&that.$element[0].offsetWidth,that.$element.addClass("in").attr("aria-hidden",!1),that.enforceFocus(),transition?that.$element.one($.support.transition.end,function(){that.$element.focus().trigger("shown")}):that.$element.focus().trigger("shown")}))},hide:function(e){e&&e.preventDefault(),e=$.Event("hide"),this.$element.trigger(e),this.isShown&&!e.isDefaultPrevented()&&(this.isShown=!1,this.escape(),$(document).off("focusin.modal"),this.$element.removeClass("in").attr("aria-hidden",!0),$.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal())},enforceFocus:function(){var that=this;$(document).on("focusin.modal",function(e){that.$element[0]===e.target||that.$element.has(e.target).length||that.$element.focus()})},escape:function(){var that=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.modal",function(e){27==e.which&&that.hide()}):this.isShown||this.$element.off("keyup.dismiss.modal")},hideWithTransition:function(){var that=this,timeout=setTimeout(function(){that.$element.off($.support.transition.end),that.hideModal()},500);this.$element.one($.support.transition.end,function(){clearTimeout(timeout),that.hideModal()})},hideModal:function(){this.$element.hide().trigger("hidden"),this.backdrop()},removeBackdrop:function(){this.$backdrop.remove(),this.$backdrop=null},backdrop:function(callback){var animate=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var doAnimate=$.support.transition&&animate;this.$backdrop=$('